From 9f93871e2a53baa02a8694ce0eabd53c500c6ae0 Mon Sep 17 00:00:00 2001 From: Index Date: Sat, 11 Oct 2025 17:44:03 +0800 Subject: [PATCH 1/5] feat(button): improve a11y support according to WCAG 2.1 --- packages/components/button/Button.tsx | 54 ++++++-- .../button/__tests__/button.a11y.test.tsx | 123 ++++++++++++++++++ 2 files changed, 165 insertions(+), 12 deletions(-) create mode 100644 packages/components/button/__tests__/button.a11y.test.tsx diff --git a/packages/components/button/Button.tsx b/packages/components/button/Button.tsx index c11d623c2e..5fc8970b01 100644 --- a/packages/components/button/Button.tsx +++ b/packages/components/button/Button.tsx @@ -8,13 +8,15 @@ import { TdButtonProps } from './type'; import { buttonDefaultProps } from './defaultProps'; import parseTNode from '../_util/parseTNode'; import useDefaultProps from '../hooks/useDefaultProps'; +import composeRefs from '../_util/composeRefs'; export interface ButtonProps extends TdButtonProps, Omit, 'content' | 'shape' | 'size' | 'type'> {} -const Button = forwardRef((originProps: ButtonProps, ref: React.RefObject) => { +const Button = forwardRef((originProps, ref) => { const props = useDefaultProps(originProps, buttonDefaultProps); + const { type, theme, @@ -37,20 +39,20 @@ const Button = forwardRef((originProps: ButtonProps, ref: React.RefObject; + if (loading) { + iconNode = ; + } else if (icon && React.isValidElement(icon)) { + iconNode = React.cloneElement(icon as React.ReactElement, { 'aria-hidden': true }); + } const renderTheme = useMemo(() => { - if (!theme) { - if (variant === 'base') return 'primary'; - return 'default'; - } + if (!theme) return variant === 'base' ? 'primary' : 'default'; return theme; }, [theme, variant]); @@ -60,14 +62,40 @@ const Button = forwardRef((originProps: ButtonProps, ref: React.RefObject = { + role: renderTag === 'div' ? 'button' : undefined, + 'aria-disabled': renderTag === 'div' && disabled ? true : undefined, + 'aria-busy': loading ? true : undefined, + 'aria-label': !renderChildren && icon && !('aria-label' in buttonProps) ? 'button' : undefined, + tabIndex: renderTag === 'div' && !disabled ? 0 : undefined, + }; + + const handleKeyDown = (e: React.KeyboardEvent) => { + if (!disabled && !loading) { + if (e.key === 'Enter') { + onClick?.(e as unknown as React.MouseEvent); + } + if (e.key === ' ') { + e.preventDefault(); + } + } + }; + + const handleKeyUp = (e: React.KeyboardEvent) => { + if (!disabled && !loading && e.key === ' ') { + onClick?.(e as unknown as React.MouseEvent); + } + }; + return React.createElement( renderTag, { ...buttonProps, - href, - type, - ref: ref || setRefCurrent, - disabled: disabled || loading, + ...a11yProps, + href: renderTag === 'a' ? href : undefined, + type: renderTag === 'button' ? type : undefined, + ref: composeRefs(ref, (node) => setRefCurrent(node as HTMLElement)), + disabled: renderTag === 'button' ? disabled || loading : undefined, className: classNames( className, [ @@ -86,6 +114,8 @@ const Button = forwardRef((originProps: ButtonProps, ref: React.RefObject {iconNode} diff --git a/packages/components/button/__tests__/button.a11y.test.tsx b/packages/components/button/__tests__/button.a11y.test.tsx new file mode 100644 index 0000000000..d103c90574 --- /dev/null +++ b/packages/components/button/__tests__/button.a11y.test.tsx @@ -0,0 +1,123 @@ +import React from 'react'; +import { render, fireEvent, vi } from '@test/utils'; +import { axe } from 'jest-axe'; +import { Button } from '..'; + +describe('Button Accessibility', () => { + it('renders a basic button without any accessibility violations (WCAG 2.1: All relevant rules)', async () => { + const { container } = render(); + const results = await axe(container); + expect(results.violations.length).toBe(0); + }); + + it('hides decorative icons from screen readers (WCAG 2.1: 1.3.1 Info and Relationships)', () => { + const { container } = render(); + const el = container.querySelector('button'); + expect(el).not.toHaveAttribute('aria-label'); + expect(el?.textContent).toBe('Submit'); + }); + + it('assigns role="button" when a div is used (WCAG 2.1: 4.1.2 Name, Role, Value)', () => { + const { container } = render(); + const el = container.querySelector('div'); + expect(el).toHaveAttribute('role', 'button'); + }); + + it('renders div role button when disabled and no tag specified (WCAG 2.1: 4.1.2 Name, Role, Value)', () => { + const { container } = render(); + const el = container.querySelector('div'); + expect(el).toBeTruthy(); + expect(el).toHaveAttribute('role', 'button'); + expect(el).toHaveAttribute('aria-disabled', 'true'); + }); + + it('renders anchor with href when not disabled and href provided (WCAG 2.1: 4.1.2 Name, Role, Value)', () => { + const { container } = render( + , + ); + const anchor = container.querySelector('a'); + expect(anchor).toBeTruthy(); + expect(anchor).toHaveAttribute('href', 'https://tdesign.tencent.com/'); + expect(anchor).not.toHaveAttribute('role'); + expect(anchor).not.toHaveAttribute('aria-disabled'); + }); + + it('applies aria-busy when loading (WCAG 2.1: 4.1.3 Status Messages)', () => { + const { container } = render(); + expect(container.firstChild).toHaveAttribute('aria-busy', 'true'); + }); + + it('applies aria-disabled on div buttons when disabled (WCAG 2.1: 4.1.2 Name, Role, Value)', () => { + const { container } = render(, + ); + expect(c1.querySelector('button')).toHaveAttribute('disabled'); + + const { container: c2 } = render( + , + ); + expect(c2.querySelector('button')).toHaveAttribute('disabled'); + }); + + it('suppresses click when disabled or loading (WCAG 2.1: 2.1.1 Keyboard)', () => { + const fn1 = vi.fn(); + const { container: c1 } = render( + , + ); + fireEvent.click(c1.firstChild as Element); + expect(fn1).not.toHaveBeenCalled(); + + const fn2 = vi.fn(); + const { container: c2 } = render( + , + ); + fireEvent.click(c2.firstChild as Element); + expect(fn2).not.toHaveBeenCalled(); + }); + + it('div role button should be keyboard operable (Enter triggers click) (WCAG 2.1: 2.1.1 Keyboard)', () => { + const fn = vi.fn(); + const { container } = render( + , + ); + const el = container.querySelector('div') as HTMLElement; + fireEvent.keyDown(el, { key: 'Enter', code: 'Enter', charCode: 13 }); + expect(fn).toHaveBeenCalled(); + }); + + it('div role button should be focusable via keyboard (WCAG 2.1: 2.1.1 Keyboard)', () => { + const { container } = render(); + const el = container.querySelector('div') as HTMLElement; + el.focus(); + expect(document.activeElement).toBe(el); + }); +}); From e7f09a471ef540e749649977b02582eb99626625 Mon Sep 17 00:00:00 2001 From: Dcose Date: Sat, 11 Oct 2025 23:57:01 +0800 Subject: [PATCH 2/5] chore: add jest-axe for a11y tests --- package.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index decbbcce85..1e9511d53b 100644 --- a/package.json +++ b/package.json @@ -103,6 +103,7 @@ "glob": "^9.0.3", "happy-dom": "^15.11.0", "husky": "^7.0.4", + "jest-axe": "^10.0.0", "jest-canvas-mock": "^2.4.0", "jsdom": "^20.0.1", "less": "^4.1.2", @@ -132,7 +133,8 @@ "rollup-plugin-terser": "^7.0.2", "rollup-plugin-typescript2": "^0.31.2", "typescript": "5.6.2", - "vitest": "^2.1.1" + "vitest": "^2.1.1", + "jest-axe": "^10.0.0" }, "dependencies": { "@tdesign/common": "workspace:^", From 65ac5f500261319eb5c5ecba31facdf70816ade1 Mon Sep 17 00:00:00 2001 From: Dcose Date: Sat, 11 Oct 2025 23:57:42 +0800 Subject: [PATCH 3/5] test(snap): update SSR/CSR snapshots --- test/snap/__snapshots__/csr.test.jsx.snap | 152089 ++++++++++++++++++- test/snap/__snapshots__/ssr.test.jsx.snap | 1274 + 2 files changed, 152727 insertions(+), 636 deletions(-) diff --git a/test/snap/__snapshots__/csr.test.jsx.snap b/test/snap/__snapshots__/csr.test.jsx.snap index 96a1b4aacf..43a277efa8 100644 --- a/test/snap/__snapshots__/csr.test.jsx.snap +++ b/test/snap/__snapshots__/csr.test.jsx.snap @@ -149310,1276 +149310,152093 @@ exports[`csr snapshot test > csr test packages/components/upload/_example/single `; +exports[`csr snapshot test > csr test packages\\components\\affix\\_example\\base.tsx 1`] = ` +
+
+
+ +
+
+
+`; + +exports[`csr snapshot test > csr test packages\\components\\affix\\_example\\container.tsx 1`] = ` +
+
+
+
+
+ +
+
+
+
+
+`; + +exports[`csr snapshot test > csr test packages\\components\\alert\\_example\\base.tsx 1`] = ` +
+
+
+
+
+ + + +
+
+
+
+ 这是一条成功的消息提示 +
+
+
+
+
+
+
+
+ + + +
+
+
+
+ 这是一条普通的消息提示 +
+
+
+
+
+
+
+
+ + + +
+
+
+
+ 这是一条警示消息 +
+
+
+
+
+
+
+
+ + + +
+
+
+
+ 高危操作/出错信息提示 +
+
+
+
+
+
+
+`; + +exports[`csr snapshot test > csr test packages\\components\\alert\\_example\\close.tsx 1`] = ` +
+
+
+
+
+ + + +
+
+
+
+ 这是一条成功的消息提示 +
+
+
+
+ + + + + +
+
+
+
+
+
+ + + +
+
+
+
+ 这是一条普通的消息提示 +
+
+
+
+ 知道了 +
+
+
+
+
+
+ + + +
+
+
+
+ 这是一条警示消息 +
+
+
+
+ FunctionPropClose +
+
+
+
+
+
+ + + +
+
+
+
+ 高危操作/出错信息提示 +
+
+
+
+
+ + 关闭 + +
+
+
+
+
+
+`; + +exports[`csr snapshot test > csr test packages\\components\\alert\\_example\\collapse.tsx 1`] = ` +
+
+
+ + + +
+
+
+
+
+ 1.这是一条普通的消息提示描述, +
+
+ 2.这是一条普通的消息提示描述, +
+
+ 展开更多 +
+
+
+
+
+ + + + + +
+
+
+`; + +exports[`csr snapshot test > csr test packages\\components\\alert\\_example\\icon.tsx 1`] = ` +
+
+
+
+
+ + + +
+
+
+
+ 这是一条成功的消息提示 +
+
+
+
+
+
+
+
+ + + +
+
+
+
+ 这是一条普通的消息提示 +
+
+
+
+
+
+
+
+ + + +
+
+
+
+ 这是一条警示消息 +
+
+
+
+
+
+
+
+ + + +
+
+
+
+ 高危操作/出错信息提示 +
+
+
+
+
+
+
+`; + +exports[`csr snapshot test > csr test packages\\components\\alert\\_example\\operation.tsx 1`] = ` +
+
+
+
+
+ + + +
+
+
+
+ 这是一条成功的消息提示 +
+
+ + 相关操作 + +
+
+
+
+ + + + + +
+
+
+
+
+
+ + + +
+
+
+
+ 这是一条普通的消息提示 +
+
+ + 相关操作 + +
+
+
+
+ + + + + +
+
+
+
+
+
+ + + +
+
+
+
+ 这是一条警示消息 +
+
+ + 相关操作 + +
+
+
+
+ + + + + +
+
+
+
+
+
+ + + +
+
+
+
+ 高危操作/出错信息提示 +
+
+ + 相关操作 + +
+
+
+
+ + + + + +
+
+
+
+
+`; + +exports[`csr snapshot test > csr test packages\\components\\alert\\_example\\swiper.tsx 1`] = ` +
+
+
+
+
+ + + +
+
+
+
+ 这是一条成功的消息提示 +
+
+
+
+
+
+
+
+ + + +
+
+
+
+ 这是一条普通的消息提示 +
+
+
+
+
+
+
+
+ + + +
+
+
+
+ 这是一条警示消息 +
+
+
+
+
+
+
+
+ + + +
+
+
+
+ 高危操作/出错信息提示 +
+
+
+
+
+
+
+`; + +exports[`csr snapshot test > csr test packages\\components\\alert\\_example\\title.tsx 1`] = ` +
+
+
+ + + +
+
+
+ 这是一条普通的消息提示 +
+
+
+ 这是一条普通的消息提示描述,这是一条普通的消息提示描述 +
+
+ + 相关操作 + +
+
+
+
+ + + + + +
+
+
+`; + +exports[`csr snapshot test > csr test packages\\components\\anchor\\_example\\base.tsx 1`] = ` +
+
+ +`; + +exports[`csr snapshot test > csr test packages\\components\\anchor\\_example\\container.tsx 1`] = ` +
+
+
+ +
+
+ content-1 +
+
+ content-2 +
+
+ content-3 +
+
+ content-4 +
+
+ content-5 +
+
+
+
+`; + +exports[`csr snapshot test > csr test packages\\components\\anchor\\_example\\cursor.tsx 1`] = ` +
+ +`; + +exports[`csr snapshot test > csr test packages\\components\\anchor\\_example\\customize-highlight.tsx 1`] = ` +
+
+ +`; + +exports[`csr snapshot test > csr test packages\\components\\anchor\\_example\\large.tsx 1`] = ` +
+ +`; + +exports[`csr snapshot test > csr test packages\\components\\anchor\\_example\\multiple.tsx 1`] = ` +
+ +`; + +exports[`csr snapshot test > csr test packages\\components\\anchor\\_example\\small.tsx 1`] = ` +
+ +`; + +exports[`csr snapshot test > csr test packages\\components\\anchor\\_example\\target.tsx 1`] = ` +
+
+

+ 基础锚点 + + + + + + + +

+

+ 多级锚点 + + + + + + + +

+

+ 尺寸大小 + + + + + + + +

+

+ 指定容器 + + + + + + + +

+
+
+`; + +exports[`csr snapshot test > csr test packages\\components\\auto-complete\\_example\\base.tsx 1`] = ` +
+
+
+
+
+
+ +
+
+
+
+
+ +
+
+
+`; + +exports[`csr snapshot test > csr test packages\\components\\auto-complete\\_example\\filter.tsx 1`] = ` +
+
+
+
+
+
+ +
+
+
+
+
+
+
+
+ +
+
+
+
+
+
+`; + +exports[`csr snapshot test > csr test packages\\components\\auto-complete\\_example\\option.tsx 1`] = ` +
+
+
+
+
+ +
+
+
+
+
+`; + +exports[`csr snapshot test > csr test packages\\components\\auto-complete\\_example\\size.tsx 1`] = ` +
+
+
+
+
+
+
+ 小尺寸: +
+ +
+
+
+
+
+
+
+
+
+ 中尺寸: +
+ +
+
+
+
+
+
+
+
+
+ 大尺寸: +
+ +
+
+
+
+
+
+`; + +exports[`csr snapshot test > csr test packages\\components\\auto-complete\\_example\\status.tsx 1`] = ` +
+
+
+
+
+
+ +
+
+ 这是禁用状态 +
+
+
+
+
+
+
+
+ +
+
+ 这是只读状态 +
+
+
+
+
+
+
+
+ +
+
+ 这是普通状态 +
+
+
+
+
+
+
+
+ +
+
+ 这是告警状态 +
+
+
+
+
+
+
+
+ +
+
+ 这是错误状态 +
+
+
+
+
+
+
+
+ +
+
+ 这是成功状态 +
+
+
+
+
+
+`; + +exports[`csr snapshot test > csr test packages\\components\\auto-complete\\_example\\trigger-element.tsx 1`] = ` +
+
+
+ +
+
+
+
+ +
+
+
+
+ +
+
+ 正常提示 +
+
+
+
+
+
+ +
+
+ 成功提示 +
+
+
+
+
+
+ +
+
+ 警告提示 +
+
+
+
+
+
+ +
+
+ 错误提示 +
+
+
+
+
+
+`; + +exports[`csr snapshot test > csr test packages\\components\\time-picker\\_example\\disabled.tsx 1`] = ` +
+
+
+

+ 禁用整个选择器 +

+
+
+
+
+
+
+ + + + + + + + + + +
+
+
+
+
+
+

+ 禁用指定时间 +

+
+
+
+
+
+
+ + + + + + + + + + +
+
+
+
+
+
+
+`; + +exports[`csr snapshot test > csr test packages\\components\\time-picker\\_example\\hide-clear-button.tsx 1`] = ` +
+
+
+

+ 禁止清空 +

+
+
+
+
+
+
+ + + + + + + + + + +
+
+
+
+
+
+

+ 允许清空 +

+
+
+
+
+
+
+ + + + + + + + + + +
+
+
+
+
+
+
+`; + +exports[`csr snapshot test > csr test packages\\components\\time-picker\\_example\\hm.tsx 1`] = ` +
+
+
+

+ 时分选择 +

+
+
+
+
+
+
+ + + + + + + + + + +
+
+
+
+
+
+

+ 毫秒选择 +

+
+
+
+
+
+
+ + + + + + + + + + +
+
+
+
+
+
+
+`; + +exports[`csr snapshot test > csr test packages\\components\\time-picker\\_example\\hms.tsx 1`] = ` +
+
+
+
+
+ + + + + + + + + + +
+
+
+
+
+`; + +exports[`csr snapshot test > csr test packages\\components\\time-picker\\_example\\keyboard.tsx 1`] = ` +
+
+
+
+
+ + + + + + + + + + +
+
+
+
+
+`; + +exports[`csr snapshot test > csr test packages\\components\\time-picker\\_example\\panel.tsx 1`] = ` +
+
+
+
+
+
+
+
+
+
    +
  • + 00 +
  • +
  • + 01 +
  • +
  • + 02 +
  • +
  • + 03 +
  • +
  • + 04 +
  • +
  • + 05 +
  • +
  • + 06 +
  • +
  • + 07 +
  • +
  • + 08 +
  • +
  • + 09 +
  • +
  • + 10 +
  • +
  • + 11 +
  • +
  • + 12 +
  • +
  • + 13 +
  • +
  • + 14 +
  • +
  • + 15 +
  • +
  • + 16 +
  • +
  • + 17 +
  • +
  • + 18 +
  • +
  • + 19 +
  • +
  • + 20 +
  • +
  • + 21 +
  • +
  • + 22 +
  • +
  • + 23 +
  • +
+
    +
  • + 00 +
  • +
  • + 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 +
  • +
  • + 32 +
  • +
  • + 33 +
  • +
  • + 34 +
  • +
  • + 35 +
  • +
  • + 36 +
  • +
  • + 37 +
  • +
  • + 38 +
  • +
  • + 39 +
  • +
  • + 40 +
  • +
  • + 41 +
  • +
  • + 42 +
  • +
  • + 43 +
  • +
  • + 44 +
  • +
  • + 45 +
  • +
  • + 46 +
  • +
  • + 47 +
  • +
  • + 48 +
  • +
  • + 49 +
  • +
  • + 50 +
  • +
  • + 51 +
  • +
  • + 52 +
  • +
  • + 53 +
  • +
  • + 54 +
  • +
  • + 55 +
  • +
  • + 56 +
  • +
  • + 57 +
  • +
  • + 58 +
  • +
  • + 59 +
  • +
+
    +
  • + 00 +
  • +
  • + 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 +
  • +
  • + 32 +
  • +
  • + 33 +
  • +
  • + 34 +
  • +
  • + 35 +
  • +
  • + 36 +
  • +
  • + 37 +
  • +
  • + 38 +
  • +
  • + 39 +
  • +
  • + 40 +
  • +
  • + 41 +
  • +
  • + 42 +
  • +
  • + 43 +
  • +
  • + 44 +
  • +
  • + 45 +
  • +
  • + 46 +
  • +
  • + 47 +
  • +
  • + 48 +
  • +
  • + 49 +
  • +
  • + 50 +
  • +
  • + 51 +
  • +
  • + 52 +
  • +
  • + 53 +
  • +
  • + 54 +
  • +
  • + 55 +
  • +
  • + 56 +
  • +
  • + 57 +
  • +
  • + 58 +
  • +
  • + 59 +
  • +
+
+
+
+
+`; + +exports[`csr snapshot test > csr test packages\\components\\time-picker\\_example\\presets.tsx 1`] = ` +
+
+
+
+
+
+
+ + + + + + + + + + +
+
+
+
+
+
+
+
+
+
+
+
+ +
+
+
+ - +
+
+
+ +
+
+ + + + + + + + + +
+
+
+
+
+
+
+`; + +exports[`csr snapshot test > csr test packages\\components\\time-picker\\_example\\range.tsx 1`] = ` +
+
+
+
+
+
+
+ +
+
+
+ - +
+
+
+ +
+
+ + + + + + + + + +
+
+
+
+
+`; + +exports[`csr snapshot test > csr test packages\\components\\time-picker\\_example\\show-steps.tsx 1`] = ` +
+
+
+
+
+ + + + + + + + + + +
+
+
+
+
+`; + +exports[`csr snapshot test > csr test packages\\components\\time-picker\\_example\\twelve-hour-meridian.tsx 1`] = ` +
+
+
+
+
+ + + + + + + + + + +
+
+
+
+
+`; + +exports[`csr snapshot test > csr test packages\\components\\timeline\\_example\\base.tsx 1`] = ` +
+
+
+
+
+

+ 时间轴方向 +

+
+
+
+ + +
+
+
+
+
+
+
    +
  • +
    +
    +
    +
    +
    + 事件一 +
    + 2022-01-01 +
    +
    +
  • +
  • +
    +
    +
    +
    +
    + 事件二 +
    + 2022-02-01 +
    +
    +
  • +
  • +
    +
    +
    +
    +
    + 事件三 +
    + 2022-03-01 +
    +
    +
  • +
  • +
    +
    +
    +
    +
    + 事件四 +
    + 2022-04-01 +
    +
    +
  • +
+
+
+
+`; + +exports[`csr snapshot test > csr test packages\\components\\timeline\\_example\\customContent.tsx 1`] = ` +
+
    +
  • +
    +
    +
    +
    +
    +
    + 事件一 +
    +
    + 事件一自定义内容 +
    +
    + 2022-01-01 +
    +
    +
  • +
  • +
    +
    +
    +
    +
    +
    + 事件二 +
    +
    + 事件二自定义内容 +
    +
    + 2022-02-01 +
    +
    +
  • +
  • +
    +
    +
    +
    +
    +
    + 事件三 +
    +
    + 事件三自定义内容 +
    +
    + 2022-03-01 +
    +
    +
  • +
  • +
    +
    +
    +
    +
    +
    + 事件四 +
    +
    + 事件四自定义内容 +
    +
    + 2022-04-01 +
    +
    +
  • +
+
+`; + +exports[`csr snapshot test > csr test packages\\components\\timeline\\_example\\customDot.tsx 1`] = ` +
+
+
+
+
+

+ 时间轴样式 +

+
+
+
+ + +
+
+
+
+
+
+
    +
  • +
    +
    + + + + + + +
    +
    +
    +
    + 事件一 +
    + 2022-01-01 +
    +
    +
  • +
  • +
    +
    + + + + + + + + + + + + +
    +
    +
    +
    + 事件二 +
    + 2022-02-01 +
    +
    +
  • +
  • +
    +
    + + + + + + +
    +
    +
    +
    + 事件三 +
    + 2022-03-01 +
    +
    +
  • +
  • +
    +
    + + + + + + + + +
    +
    +
    +
    + 事件四 +
    + 2022-04-01 +
    +
    +
  • +
+
+
+
+`; + +exports[`csr snapshot test > csr test packages\\components\\timeline\\_example\\layout.tsx 1`] = ` +
+
+
+
+
+

+ 时间轴方向 +

+
+
+
+ + +
+
+
+
+
+
+
+
+

+ 对齐方式 +

+
+
+
+ + + +
+
+
+
+
+
+
+
+

+ label对齐方式 +

+
+
+
+ + +
+
+
+
+
+
+
    +
  • +
    +
    +
    +
    +
    + 事件一 +
    + 2022-01-01 +
    +
    +
  • +
  • +
    +
    +
    +
    +
    + 事件二 +
    + 2022-02-01 +
    +
    +
  • +
  • +
    +
    +
    +
    +
    + 事件三 +
    + 2022-03-01 +
    +
    +
  • +
  • +
    +
    +
    +
    +
    + 事件四 +
    + 2022-04-01 +
    +
    +
  • +
+
+
+
+`; + +exports[`csr snapshot test > csr test packages\\components\\timeline\\_example\\loading.tsx 1`] = ` +
+
+
+
+
+

+ 加载中 +

+
+
+ +
+
+
+
+
    +
  • +
    +
    +
    +
    +
    + 事件一 +
    + 2022-01-01 +
    +
    +
  • +
  • +
    +
    +
    +
    +
    + 事件二 +
    + 2022-02-01 +
    +
    +
  • +
  • +
    +
    +
    +
    +
    + 事件三 +
    + 2022-03-01 +
    +
    +
  • +
  • +
    +
    +
    +
    +
    + 事件四 +
    + 2022-04-01 +
    +
    +
  • +
+
+
+
+`; + +exports[`csr snapshot test > csr test packages\\components\\timeline\\_example\\reverse.tsx 1`] = ` +
+
+
+
+
+

+ 是否倒序 +

+
+
+ +
+
+
+
+
    +
  • +
    +
    +
    +
    +
    + 事件一 +
    + 2022-01-01 +
    +
    +
  • +
  • +
    +
    +
    +
    +
    + 事件二 +
    + 2022-02-01 +
    +
    +
  • +
  • +
    +
    +
    +
    +
    + 事件三 +
    + 2022-03-01 +
    +
    +
  • +
  • +
    +
    +
    +
    +
    + 事件四 +
    + 2022-04-01 +
    +
    +
  • +
+
+
+
+`; + +exports[`csr snapshot test > csr test packages\\components\\timeline\\_example\\theme.tsx 1`] = ` +
+
    +
  • +
    +
    +
    +
    +
    + 已完成的时间 +
    + 2022-01-01 +
    +
    +
  • +
  • +
    +
    +
    +
    +
    + 成功的时间 +
    + 2022-02-01 +
    +
    +
  • +
  • +
    +
    +
    +
    +
    + 危险时间 +
    + 2022-03-01 +
    +
    +
  • +
  • +
    +
    +
    +
    +
    + 告警事件 +
    + 2022-04-01 +
    +
    +
  • +
  • +
    +
    +
    +
    +
    + 默认的时间 +
    + 2022-05-01 +
    +
    +
  • +
  • +
    +
    +
    +
    +
    + 自定义主题色 +
    + 2022-06-01 +
    +
    +
  • +
+
+`; + +exports[`csr snapshot test > csr test packages\\components\\tooltip\\_example\\arrow.tsx 1`] = ` +
+ +
+`; + +exports[`csr snapshot test > csr test packages\\components\\tooltip\\_example\\base.tsx 1`] = ` +
+
+ + + + + + + + + + + + +
+
+`; + +exports[`csr snapshot test > csr test packages\\components\\tooltip\\_example\\duration.tsx 1`] = ` +
+ +
+
+ 提示在5秒后消失 +
+
+
+ +
+`; + +exports[`csr snapshot test > csr test packages\\components\\tooltip\\_example\\lite.tsx 1`] = ` +
+
+
+
+
+
+ +
+
+
+
+ +
+
+
+
+ +
+
+
+
+ +
+
+
+
+ +
+
+
+
+
+
+
+
+ +
+
+
+
+ +
+
+
+
+
+ + 不可用状态下提示 + +
+
+
+
+
+
+
+`; + +exports[`csr snapshot test > csr test packages\\components\\tooltip\\_example\\mouse.tsx 1`] = ` + +`; + +exports[`csr snapshot test > csr test packages\\components\\tooltip\\_example\\no-arrow.tsx 1`] = ` +
+ +
+`; + +exports[`csr snapshot test > csr test packages\\components\\tooltip\\_example\\theme.tsx 1`] = ` +
+
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+
+`; + +exports[`csr snapshot test > csr test packages\\components\\tooltip\\_example\\trigger.tsx 1`] = ` +
+
+
+ +
+
+
+
+ +
+
+
+
+ +
+
+ +
+
+
+`; + +exports[`csr snapshot test > csr test packages\\components\\transfer\\_example\\base.tsx 1`] = ` +
+
+
+
+
+ + + 0 / 19 项 + +
+ +
+
+
+
+ + + + + + + + + + + + + + + + + + + +
+
+
+
+
+
+ + + + + + + +
+
+ + + + + + + +
+
+
+
+
+ + + 0 / 1 项 + +
+ +
+
+
+
+ +
+
+
+
+
+
+`; + +exports[`csr snapshot test > csr test packages\\components\\transfer\\_example\\checked.tsx 1`] = ` +
+
+
+
+
+ + + 3 / 20 项 + +
+ +
+
+
+
+ + + + + + + + + + + + + + + + + + + + +
+
+
+
+
+ +
+ + + + + + + +
+
+
+
+
+ + + 0 / 0 项 + +
+ +
+
+
+
+ + 暂无数据 + +
+
+
+
+
+
+`; + +exports[`csr snapshot test > csr test packages\\components\\transfer\\_example\\custom.tsx 1`] = ` +
+ +
+`; + +exports[`csr snapshot test > csr test packages\\components\\transfer\\_example\\custom-render.tsx 1`] = ` +
+
+
+
+
+ + + 0 / 20 项 + +
+ +
+
+
+
+ + + + + + + + + + + + + + + + + + + + +
+
+
+
+
+
+ + + + + + + +
+
+ + + + + + + +
+
+
+
+
+ + + 0 / 0 项 + +
+ +
+
+
+
+ + 暂无数据 + +
+
+
+
+
+
+`; + +exports[`csr snapshot test > csr test packages\\components\\transfer\\_example\\empty.tsx 1`] = ` +
+
+

+ 默认暂无数据 +

+
+
+
+
+ + + 0 / 0 项 + +
+ +
+
+
+
+ + 暂无数据 + +
+
+
+
+
+
+ + + + + + + +
+
+ + + + + + + +
+
+
+
+
+ + + 0 / 0 项 + +
+ +
+
+
+
+ + 暂无数据 + +
+
+
+
+
+

+ 自定义暂无数据 +

+
+
+
+
+ + + 0 / 0 项 + +
+ +
+
+
+
+ + No Source + +
+
+
+
+
+
+ + + + + + + +
+
+ + + + + + + +
+
+
+
+
+ + + 0 / 0 项 + +
+ +
+
+
+
+ No Target +
+
+
+
+
+
+
+`; + +exports[`csr snapshot test > csr test packages\\components\\transfer\\_example\\pagination.tsx 1`] = ` +
+
+
+
+
+ + + 0 / 20 项 + +
+ +
+
+
+
+ + + + + + + + + + +
+
+
+
+
+
+ + + + + +
+
+ 跳至 +
+
+
+
+ +
+
+
+ + + / 2 页 + + +
+
+
+ + + + + +
+
+
+
+
+
+ + + + + + + +
+
+ + + + + + + +
+
+
+
+
+ + + 0 / 0 项 + +
+ +
+
+
+
+ + 暂无数据 + +
+
+
+
+
+
+ + + + + +
+
+ 跳至 +
+
+
+
+ +
+
+
+ + + / 1 页 + + +
+
+
+ + + + + +
+
+
+
+
+
+`; + +exports[`csr snapshot test > csr test packages\\components\\transfer\\_example\\search.tsx 1`] = ` +
+ +
+`; + +exports[`csr snapshot test > csr test packages\\components\\transfer\\_example\\tree.tsx 1`] = ` +
+
+
+
+
+ + + 0 / 5 项 + +
+ +
+
+
+
+ 暂无数据 +
+
+
+
+
+
+ + + + + + + +
+
+ + + + + + + +
+
+
+
+
+ + + 0 / 0 项 + +
+ +
+
+
+
+ + 暂无数据 + +
+
+
+
+
+
+`; + +exports[`csr snapshot test > csr test packages\\components\\tree\\_example\\activable.tsx 1`] = ` +
+
+
+
+
+
+ +
+
+
+ +
+
+
+
+
+ +
+
+
+ +
+
+
+
+
+ +
+
+
+ +
+
+
+
+
+
+
+ 暂无数据 +
+
+
+
+`; + +exports[`csr snapshot test > csr test packages\\components\\tree\\_example\\base.tsx 1`] = ` +
+
+ 暂无数据 +
+
+`; + +exports[`csr snapshot test > csr test packages\\components\\tree\\_example\\checkable.tsx 1`] = ` +
+
+
+
+
+
+ +
+
+
+ +
+
+
+
+
+ +
+
+
+ +
+
+
+
+
+ +
+
+
+
+ + + +
+
+
+
+
+
+
+
+ 暂无数据 +
+
+
+
+`; + +exports[`csr snapshot test > csr test packages\\components\\tree\\_example\\controlled.tsx 1`] = ` +
+
+
+
+ + + checked: + + +
+
+ +
+
+
+
+
+
+ + + expanded: + + +
+
+ +
+
+
+
+
+
+ + + actived: + + +
+
+ +
+
+
+
+
+
+ 暂无数据 +
+
+
+
+`; + +exports[`csr snapshot test > csr test packages\\components\\tree\\_example\\disabled.tsx 1`] = ` +
+
+
+
+
+
+ +
+
+
+ +
+
+
+
+
+
+
+ 暂无数据 +
+
+
+
+`; + +exports[`csr snapshot test > csr test packages\\components\\tree\\_example\\draggable.tsx 1`] = ` +
+
+
+
+ 暂无数据 +
+
+
+
+`; + +exports[`csr snapshot test > csr test packages\\components\\tree\\_example\\empty.tsx 1`] = ` +
+
+
+
+ 暂无数据 +
+
+
+
+ 😊 空数据(string) +
+
+
+
+
+ 😊 空数据( empty props ) +
+
+
+
+
+`; + +exports[`csr snapshot test > csr test packages\\components\\tree\\_example\\expand-all.tsx 1`] = ` +
+
+
+
+
+
+ +
+
+
+ +
+
+
+
+
+ +
+
+
+ +
+
+
+
+
+ +
+
+
+ +
+
+
+
+
+
+
+ 暂无数据 +
+
+
+
+`; + +exports[`csr snapshot test > csr test packages\\components\\tree\\_example\\expand-level.tsx 1`] = ` +
+
+ 暂无数据 +
+
+`; + +exports[`csr snapshot test > csr test packages\\components\\tree\\_example\\expand-mutex.tsx 1`] = ` +
+
+
+
+
+
+ +
+
+
+ +
+
+
+
+
+ +
+
+
+ +
+
+
+
+
+
+
+ 暂无数据 +
+
+
+
+`; + +exports[`csr snapshot test > csr test packages\\components\\tree\\_example\\filter.tsx 1`] = ` +
+
+
+
+ + + filter: + + +
+
+ +
+
+
+
+
+
+ 暂无数据 +
+
+
+
+ + + filter: + + +
+
+ +
+
+
+
+
+
+ 暂无数据 +
+
+
+
+`; + +exports[`csr snapshot test > csr test packages\\components\\tree\\_example\\icon.tsx 1`] = ` +
+
+
+

+ render 1: +

+
+
+
+ 暂无数据 +
+
+
+

+ render 2: +

+
+
+
+ 暂无数据 +
+
+
+
+`; + +exports[`csr snapshot test > csr test packages\\components\\tree\\_example\\label.tsx 1`] = ` +
+
+ 暂无数据 +
+
+`; + +exports[`csr snapshot test > csr test packages\\components\\tree\\_example\\lazy.tsx 1`] = ` +
+
+ 暂无数据 +
+
+`; + +exports[`csr snapshot test > csr test packages\\components\\tree\\_example\\line.tsx 1`] = ` +
+
+
+
+
+
+ +
+
+
+ +
+
+
+
+
+ +
+
+
+ +
+
+
+
+
+
+
+ 暂无数据 +
+
+
+

+ render +

+
+
+
+ 暂无数据 +
+
+
+
+`; + +exports[`csr snapshot test > csr test packages\\components\\tree\\_example\\load.tsx 1`] = ` +
+
+ 暂无数据 +
+
+`; + +exports[`csr snapshot test > csr test packages\\components\\tree\\_example\\operations.tsx 1`] = ` +
+
+
+

+ render: +

+
+
+
+ 暂无数据 +
+
+
+

+ api: +

+
+
+
+
+
+
+ +
+
+
+ +
+
+
+
+
+ +
+
+
+ +
+
+
+
+
+
+
+
+
+ + + filter: + + +
+
+ +
+
+
+
+
+
+
+ 暂无数据 +
+
+
+

+ api: +

+
+
+
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+
+
+
+`; + +exports[`csr snapshot test > csr test packages\\components\\tree\\_example\\state.tsx 1`] = ` +
+
+
+

+ state: +

+
+
+
+ 暂无数据 +
+
+
+

+ api: +

+
+
+
+ +
+
+
+
+`; + +exports[`csr snapshot test > csr test packages\\components\\tree\\_example\\sync.tsx 1`] = ` +
+
+
+
+ + + checked: + + +
+
+ +
+
+
+
+
+
+ + + expanded: + + +
+
+ +
+
+
+
+
+
+ + + actived: + + +
+
+ +
+
+
+
+
+
+ 暂无数据 +
+
+
+
+`; + +exports[`csr snapshot test > csr test packages\\components\\tree\\_example\\vscroll.tsx 1`] = ` +
+
+
+
+
+
+ +
+
+
+ +
+
+
+
+
+ +
+
+
+ +
+
+
+
+
+
+ +
+
+
+ 暂无数据 +
+
+
+
+`; + +exports[`csr snapshot test > csr test packages\\components\\tree-select\\_example\\base.tsx 1`] = ` +
+
+
+
+ + + + + + +
+
+
+
+`; + +exports[`csr snapshot test > csr test packages\\components\\tree-select\\_example\\collapsed.tsx 1`] = ` +
+
+
+
+
+
+
+
+ + 广州市 + + + + + + +
+
+ + + + 1 + +
+
+ + + + + + + +
+
+
+
+
+
+
+
+
+
+ + 广州市 + + + + + + +
+
+ + 更多... + +
+
+ + + + + + + +
+
+
+
+
+
+`; + +exports[`csr snapshot test > csr test packages\\components\\tree-select\\_example\\filterable.tsx 1`] = ` +
+
+
+
+ + +
+
+
+
+
+
+
+ + + + + + +
+
+
+
+
+
+
+
+
+ + + 请选择 + + + + + + +
+
+
+
+
+
+`; + +exports[`csr snapshot test > csr test packages\\components\\tree-select\\_example\\lazy.tsx 1`] = ` +
+
+
+
+
+ + + + + + +
+
+
+
+
+`; + +exports[`csr snapshot test > csr test packages\\components\\tree-select\\_example\\multiple.tsx 1`] = ` +
+
+
+
+
+
+ + 广州市 + + + + + + +
+
+ + 深圳市 + + + + + + +
+
+ + + + + + + +
+
+
+
+`; + +exports[`csr snapshot test > csr test packages\\components\\tree-select\\_example\\panelContent.tsx 1`] = ` +
+
+
+
+
+
+ + + + + + +
+
+
+
+
+
+`; + +exports[`csr snapshot test > csr test packages\\components\\tree-select\\_example\\prefix.tsx 1`] = ` +
+
+
+
+
+ + + + + + + + + + + + +
+ + + + + + +
+
+
+
+`; + +exports[`csr snapshot test > csr test packages\\components\\tree-select\\_example\\prefixsuffix.tsx 1`] = ` +
+
+
+
+
+ + + + + + + + + + + + +
+ + + + + + +
+
+
+
+`; + +exports[`csr snapshot test > csr test packages\\components\\tree-select\\_example\\props.tsx 1`] = ` +
+
+
+
+ + + + + + +
+
+
+
+`; + +exports[`csr snapshot test > csr test packages\\components\\tree-select\\_example\\valuedisplay.tsx 1`] = ` +
+
+
+
+
+
+
+ 广州市(guangzhou) +
+ + + + + + +
+
+
+
+
+
+
+
+
+
+ + 广州市 + ( + guangzhou + ) + + + + + + +
+
+ + 深圳市 + ( + shenzhen + ) + + + + + + +
+
+ + + + + + + +
+
+
+
+
+
+`; + +exports[`csr snapshot test > csr test packages\\components\\tree-select\\_example\\valuetype.tsx 1`] = ` +
+
+
+
+
+
+ + + + + + +
+
+
+
+
+
+
+
+
+
+ + 广州市 + + + + + + +
+
+ + 深圳市 + + + + + + +
+
+ + + + + + + +
+
+
+
+
+
+`; + +exports[`csr snapshot test > csr test packages\\components\\typography\\_example\\base.tsx 1`] = ` +
+

+ What is TDesign +

+ + + TDesign is an enterprise-level design system accumulated by Tencent's various business teams. + + +
+ + + TDesign features a unified design values, consistent design language, and visual style, helping users form continuous and coherent perceptions of the experience. + + + + Based on this, TDesign offers out-of-the-box UI component libraries, design guidelines, and design assets, elegantly and efficiently freeing design and development from repetitive tasks. Simultaneously, it facilitates easy extension on top of TDesign, enabling a better alignment with business requirements. +
+

+ Comprehensive +

+
+ TDesign Support + + + Vue 2 + + + , + + + Vue 3 + + + , + + + React + + + , components for Desktop Application and + + + Vue 3 + + + , + + + Wechat MiniProgram + + + components for Mobile Application. +
+
+
+
+
    +
  • + Features +
  • +
  • + Comprehensive +
      +
    • + Consistency +
    • +
    • + Usability +
    • +
    +
  • +
  • + Join TDesign +
  • +
+
    +
  1. + Features +
  2. +
  3. + Comprehensive +
      +
    1. + Consistency +
    2. +
    3. + Usability +
    4. +
    +
  4. +
  5. + Join TDesign +
  6. +
+
+
+
+
+`; + +exports[`csr snapshot test > csr test packages\\components\\typography\\_example\\copyable.tsx 1`] = ` +
+ + This is a copyable text. + + +
+
+ + + + This is a copyable long text. + TDesign was founded with the principles of open-source collaboration from the beginning. The collaboration scheme discussion, component design, and API design, including source code, are fully open within the company, garnering widespread attention from internal developers and designers. TDesign follows an equal, open, and strict policy, regardless of the participants' roles. + + + + ... + + + + +
+ +
+ + This is a copyable long text with custom suffix. + + +
+`; + +exports[`csr snapshot test > csr test packages\\components\\typography\\_example\\ellipsis.tsx 1`] = ` +
+
+ + + + TDesign was founded with the principles of open-source collaboration from the beginning. The collaboration scheme discussion, component design, and API design, including source code, are fully open within the company, garnering widespread attention from internal developers and designers. TDesign follows an equal, open, and strict policy, regardless of the participants' roles. + + + + ... + + + + +
+
+ + + + TDesign was founded with the principles of open-source collaboration from the beginning. The collaboration scheme discussion, component design, and API design, including source code, are fully open within the company, garnering widespread attention from internal developers and designers. TDesign follows an equal, open, and strict policy, regardless of the participants' roles. + + + + ... + + + + + + +
+
+ + + + TDesign was founded with the principles of open-source collaboration from the beginning. The collaboration scheme discussion, component design, and API design, including source code, are fully open within the company, garnering widespread attention from internal developers and designers. TDesign follows an equal, open, and strict policy, regardless of the participants' roles. + + + + + ... + + + + + +
+
+ + + + TDesign was founded with the principles of open-source collaboration from the beginning. The collaboration scheme discussion, component design, and API design, including source code, are fully open within the company, garnering widespread attention from internal developers and designers. TDesign follows an equal, open, and strict policy, regardless of the participants' roles. + + + + ... + + + + + + + + + + + + +
+
+`; + +exports[`csr snapshot test > csr test packages\\components\\typography\\_example\\text.tsx 1`] = ` +
+
+
+ + TDesign (primary) + +
+
+ + TDesign (secondary) + +
+
+ + TDesign (disabled) + +
+
+ + TDesign (success) + +
+
+ + TDesign (warning) + +
+
+ + TDesign (error) + +
+
+ + + TDesign (mark) + + +
+
+ + + TDesign (code) + + +
+
+ + + TDesign (keyboard) + + +
+
+ + + TDesign (underline) + + +
+
+ + + TDesign (delete) + + +
+
+ + + TDesign (strong) + + +
+
+ + + TDesign (italic) + + +
+
+
+`; + +exports[`csr snapshot test > csr test packages\\components\\typography\\_example\\title.tsx 1`] = ` +
+

+ H1. TDesign +

+

+ H2. TDesign +

+

+ H3. TDesign +

+

+ H4. TDesign +

+
+ H5. TDesign +
+
+ H6. TDesign +
+
+`; + +exports[`csr snapshot test > csr test packages\\components\\upload\\_example\\base.tsx 1`] = ` +
+
+
+
+
+
+ + +
+
+
+
+
+
+
+
+ +
+
+ +
+
+
+
+
+
+
+
+
+
+ +
+
+ +
+ + 要求文件大小在 1M 以内 + +
+
+
+
+
+ +
+
+ +
+ +
+
+
+
+
+ +
+
+ +
+ + 文件上传失败示例 + +
+
+
+
+
+
+
+`; + +exports[`csr snapshot test > csr test packages\\components\\upload\\_example\\custom-drag.tsx 1`] = ` +
+
+
+ +
+
+
+ +
+
+ +
+
+
+
+
+
+
+
+`; + +exports[`csr snapshot test > csr test packages\\components\\upload\\_example\\draggable.tsx 1`] = ` +
+
+
+
+ 是否自动上传: + +
+
+
+
+ + +
+
+
+
+
+
+
+
+
+
+ +
+
+
+ + 点击上传 + + +   /   + 拖拽到此区域 + +
+
+
+
+
+
+
+ +
+
+
+
+ + 默认文件 + + + + +
+ + 文件大小 + : + 1.0 KB + + + 上传日期 + : + 2022-09-25 + + +
+
+
+
+
+
+
+
+`; + +exports[`csr snapshot test > csr test packages\\components\\upload\\_example\\file-flow-list.tsx 1`] = ` +
+
+
+
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+
+
+
+
+
+
+ +
+
+
+ +
+ + 支持批量上传文件,文件格式不限,最多只能上传 10 份文件 + +
+
+
+ 点击上方“选择文件”或将文件拖拽到此区域 +
+
+
+
+ + 取消上传 + +
+
+ + 点击上传 + +
+
+
+
+
+
+
+`; + +exports[`csr snapshot test > csr test packages\\components\\upload\\_example\\image.tsx 1`] = ` +
+
+
+
+
+ +
+
+ +
+
+ +
+
+
+
+
+
+
+
+
+
+
+
+ +
+
    +
  • +
    + + + + + +

    + 请选择图片 +

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

    + 点击上传图片 +

    +
    +
  • +
+
+ + 单张图片文件上传(上传失败状态演示) + +
+
+
+
+
+
+ +
+
    +
  • +
    +
    + +
    +
    +
    + + + + + + + + +
    +
    + 图片加载中 +
    +
    +
    +
    +
    + + + + + + + + + + + + + + + + + + + + +
    +
    + + default.jpeg + +
  • +
+
+
+
+
+
+ +
+
    +
  • +
    + + + + + +

    + 点击上传图片 +

    +
    +
  • +
+
+ + 允许选择多张图片文件上传,最多只能上传 3 张图片 + +
+
+
+
+
+
+`; + +exports[`csr snapshot test > csr test packages\\components\\upload\\_example\\img-flow-list.tsx 1`] = ` +
+
+
+
+
+
+ AutoUpload + +
+
+
+ +
+
+ +
+
+
+
+
+
+
+
+ +
+
+
+ +
+ + 支持批量上传图片文件 + +
+
+
    +
  • +
    +
    + +
    +
    +
    + + + + + + + + +
    +
    +
    +
    +
    + + + + + + + + + + + + + + + + + + + + +
    +
    +

    + + + + demo…-1.png +

    +
  • +
  • +
    +
    + +
    +
    +
    + + + + + + + + +
    +
    +
    +
    +
    + + + + + + + + + + + + + + + + + + + + +
    +
    +

    + + + + avatar.jpg +

    +
  • +
+
+
+
+ + 取消上传 + +
+ +
+
+
+
+
+
+
+
+
+ + Different Status Images + +
+
+
+
+ +
+
+
+ +
+
+
+
    +
  • +
    +
    + +
    +
    +
    + + + + + + + + +
    +
    +
    +
    +
    + + + + + + + + + + + + + + + + + + + + +
    +
    +

    + + + + loading.svg +

    +
  • +
  • +
    +
    + +
    +
    +
    + + + + + + + + +
    +
    +
    +
    +
    + + + + + + + + + + + + + + + + + + + + +
    +
    +

    + + + + loading.svg +

    +
  • +
  • +
    +
    +
    + + +
    + + +
    +

    + 上传中 + 10% +

    + +
    + + + + + + + + + +
    + +

    + loading.svg +

    + +
  • +
    +
    + + + +

    + 上传失败 +

    +
    +
    + + + + + + + + + +
    +
    +

    + loading.svg +

    +
  • + + + + + + + +`; + +exports[`csr snapshot test > csr test packages\\components\\upload\\_example\\request-method.tsx 1`] = ` +
    +
    +
    +
    + + +
    +
    +
    +
    +
    + +
    +
    + +
    + + 自定义上传方法需要返回成功或失败信息 + +
    +
    +
    +
    +
    +`; + +exports[`csr snapshot test > csr test packages\\components\\upload\\_example\\single-custom.tsx 1`] = ` +
    +
    +
    +
    + +
    + +
    + + 上传文件大小在 1M 以内 + +
    +
    +
    +
    +`; + +exports[`csr snapshot test > csr test packages\\components\\upload\\_example\\single-input.tsx 1`] = ` +
    +
    +
    +
    +
    + +
    +
    + +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +
    + + 请选择文件 + +
    +
    +
    + +
    +
    +
    +
    +
    +
    +`; + exports[`ssr snapshot test > ssr test packages/components/affix/_example/base.tsx 1`] = `"
    "`; -exports[`ssr snapshot test > ssr test packages/components/affix/_example/container.tsx 1`] = `"
    "`; +exports[`ssr snapshot test > ssr test packages/components/affix/_example/container.tsx 1`] = `"
    "`; + +exports[`ssr snapshot test > ssr test packages/components/alert/_example/base.tsx 1`] = `"
    这是一条成功的消息提示
    这是一条普通的消息提示
    这是一条警示消息
    高危操作/出错信息提示
    "`; + +exports[`ssr snapshot test > ssr test packages/components/alert/_example/close.tsx 1`] = `"
    这是一条成功的消息提示
    这是一条普通的消息提示
    知道了
    这是一条警示消息
    FunctionPropClose
    高危操作/出错信息提示
    关闭
    "`; + +exports[`ssr snapshot test > ssr test packages/components/alert/_example/collapse.tsx 1`] = `"
    1.这是一条普通的消息提示描述,
    2.这是一条普通的消息提示描述,
    展开更多
    "`; + +exports[`ssr snapshot test > ssr test packages/components/alert/_example/icon.tsx 1`] = `"
    这是一条成功的消息提示
    这是一条普通的消息提示
    这是一条警示消息
    高危操作/出错信息提示
    "`; + +exports[`ssr snapshot test > ssr test packages/components/alert/_example/operation.tsx 1`] = `"
    这是一条成功的消息提示
    相关操作
    这是一条普通的消息提示
    相关操作
    这是一条警示消息
    相关操作
    高危操作/出错信息提示
    相关操作
    "`; + +exports[`ssr snapshot test > ssr test packages/components/alert/_example/swiper.tsx 1`] = `"
    这是一条成功的消息提示
    这是一条普通的消息提示
    这是一条警示消息
    高危操作/出错信息提示
    "`; + +exports[`ssr snapshot test > ssr test packages/components/alert/_example/title.tsx 1`] = `"
    这是一条普通的消息提示
    这是一条普通的消息提示描述,这是一条普通的消息提示描述
    相关操作
    "`; + +exports[`ssr snapshot test > ssr test packages/components/anchor/_example/base.tsx 1`] = `""`; + +exports[`ssr snapshot test > ssr test packages/components/anchor/_example/container.tsx 1`] = `"
    content-1
    content-2
    content-3
    content-4
    content-5
    "`; + +exports[`ssr snapshot test > ssr test packages/components/anchor/_example/cursor.tsx 1`] = `""`; + +exports[`ssr snapshot test > ssr test packages/components/anchor/_example/customize-highlight.tsx 1`] = `""`; + +exports[`ssr snapshot test > ssr test packages/components/anchor/_example/large.tsx 1`] = `""`; + +exports[`ssr snapshot test > ssr test packages/components/anchor/_example/multiple.tsx 1`] = `""`; + +exports[`ssr snapshot test > ssr test packages/components/anchor/_example/small.tsx 1`] = `""`; + +exports[`ssr snapshot test > ssr test packages/components/anchor/_example/target.tsx 1`] = `"

    基础锚点

    多级锚点

    尺寸大小

    指定容器

    "`; + +exports[`ssr snapshot test > ssr test packages/components/auto-complete/_example/base.tsx 1`] = `"
    "`; + +exports[`ssr snapshot test > ssr test packages/components/auto-complete/_example/filter.tsx 1`] = `"
    "`; + +exports[`ssr snapshot test > ssr test packages/components/auto-complete/_example/option.tsx 1`] = `"
    "`; + +exports[`ssr snapshot test > ssr test packages/components/auto-complete/_example/size.tsx 1`] = `"
    小尺寸:
    中尺寸:
    大尺寸:
    "`; + +exports[`ssr snapshot test > ssr test packages/components/auto-complete/_example/status.tsx 1`] = `"
    这是禁用状态
    这是只读状态
    这是普通状态
    这是告警状态
    这是错误状态
    这是成功状态
    "`; + +exports[`ssr snapshot test > ssr test packages/components/auto-complete/_example/trigger-element.tsx 1`] = `"
    "`; + +exports[`ssr snapshot test > ssr test packages/components/avatar/_example/adjust.tsx 1`] = `"
    王亿
    王亿亿
    "`; + +exports[`ssr snapshot test > ssr test packages/components/avatar/_example/base.tsx 1`] = `"
    图片加载中
    W
    "`; + +exports[`ssr snapshot test > ssr test packages/components/avatar/_example/group.tsx 1`] = `"
    图片加载中
    W
    图片加载中
    W
    "`; + +exports[`ssr snapshot test > ssr test packages/components/avatar/_example/group-cascading.tsx 1`] = `"
    图片加载中
    W
    图片加载中
    W
    "`; + +exports[`ssr snapshot test > ssr test packages/components/avatar/_example/group-max.tsx 1`] = `"
    图片加载中
    Avatar
    +1
    图片加载中
    Avatar
    图片加载中
    Avatar
    more
    "`; + +exports[`ssr snapshot test > ssr test packages/components/avatar/_example/shape.tsx 1`] = `"
    W
    W
    "`; + +exports[`ssr snapshot test > ssr test packages/components/avatar/_example/size.tsx 1`] = `"
    W
    W
    W
    W
    W
    W
    W
    W
    test
    图片加载中
    图片加载中
    图片加载中
    图片加载中
    "`; + +exports[`ssr snapshot test > ssr test packages/components/back-top/_example/baseList.tsx 1`] = `"
    • 列表内容
    • 列表内容
    • 列表内容
    • 列表内容
    • 列表内容
    • 列表内容
    • 列表内容
    • 列表内容
    • 列表内容
    • 列表内容
    • 列表内容
    • 列表内容
    • 列表内容
    • 列表内容
    • 列表内容
    • 列表内容
    • 列表内容
    • 列表内容
    • 列表内容
    • 列表内容
    • 列表内容
    • 列表内容
    • 列表内容
    • 列表内容
    • 列表内容
    • 列表内容
    • 列表内容
    • 列表内容
    • 列表内容
    • 列表内容
    • 列表内容
    • 列表内容
    • 列表内容
    • 列表内容
    • 列表内容
    • 列表内容
    • 列表内容
    • 列表内容
    • 列表内容
    • 列表内容
    • 列表内容
    • 列表内容
    • 列表内容
    • 列表内容
    • 列表内容
    • 列表内容
    • 列表内容
    • 列表内容
    • 列表内容
    • 列表内容
    "`; + +exports[`ssr snapshot test > ssr test packages/components/back-top/_example/baseListSmall.tsx 1`] = `"
    • 列表内容
    • 列表内容
    • 列表内容
    • 列表内容
    • 列表内容
    • 列表内容
    • 列表内容
    • 列表内容
    • 列表内容
    • 列表内容
    • 列表内容
    • 列表内容
    • 列表内容
    • 列表内容
    • 列表内容
    • 列表内容
    • 列表内容
    • 列表内容
    • 列表内容
    • 列表内容
    • 列表内容
    • 列表内容
    • 列表内容
    • 列表内容
    • 列表内容
    • 列表内容
    • 列表内容
    • 列表内容
    • 列表内容
    • 列表内容
    • 列表内容
    • 列表内容
    • 列表内容
    • 列表内容
    • 列表内容
    • 列表内容
    • 列表内容
    • 列表内容
    • 列表内容
    • 列表内容
    • 列表内容
    • 列表内容
    • 列表内容
    • 列表内容
    • 列表内容
    • 列表内容
    • 列表内容
    • 列表内容
    • 列表内容
    • 列表内容
    "`; + +exports[`ssr snapshot test > ssr test packages/components/back-top/_example/custom.tsx 1`] = `"
    "`; + +exports[`ssr snapshot test > ssr test packages/components/back-top/_example/shape.tsx 1`] = `"
    "`; + +exports[`ssr snapshot test > ssr test packages/components/back-top/_example/size.tsx 1`] = `"
    "`; + +exports[`ssr snapshot test > ssr test packages/components/back-top/_example/theme.tsx 1`] = `"
    "`; + +exports[`ssr snapshot test > ssr test packages/components/badge/_example/base.tsx 1`] = `"解锁新徽章"`; + +exports[`ssr snapshot test > ssr test packages/components/badge/_example/color.tsx 1`] = `"
    "`; + +exports[`ssr snapshot test > ssr test packages/components/badge/_example/custom.tsx 1`] = `"
    hot
    new
    100
    hot
    new
    new
    "`; + +exports[`ssr snapshot test > ssr test packages/components/badge/_example/number.tsx 1`] = `"29999+"`; + +exports[`ssr snapshot test > ssr test packages/components/badge/_example/offset.tsx 1`] = `"22222"`; + +exports[`ssr snapshot test > ssr test packages/components/badge/_example/shape.tsx 1`] = `"299"`; + +exports[`ssr snapshot test > ssr test packages/components/badge/_example/size.tsx 1`] = `"

    1.默认大小

    29999+

    2.小

    29999+"`; + +exports[`ssr snapshot test > ssr test packages/components/breadcrumb/_example/base.tsx 1`] = `"
    页面1
    页面2页面2页面2页面2页面2页面2页面2页面2
    页面3页面3页面3页面3页面3页面3页面3页面3页面3页面3页面3页面3页面3页面3页面3
    "`; + +exports[`ssr snapshot test > ssr test packages/components/breadcrumb/_example/custom.tsx 1`] = `"
    页面1>>
    页面2>>
    页面3>>
    页面1/////
    页面2/////
    页面3/////
    "`; + +exports[`ssr snapshot test > ssr test packages/components/breadcrumb/_example/custom-ellipsis.tsx 1`] = `"
    页面1
    页面2
    页面5
    页面1
    页面2
    页面5
    "`; + +exports[`ssr snapshot test > ssr test packages/components/breadcrumb/_example/ellipsis.tsx 1`] = `"
    页面1
    页面2
    页面5
    页面1
    页面2
    页面5
    "`; + +exports[`ssr snapshot test > ssr test packages/components/breadcrumb/_example/href.tsx 1`] = `"
    页面2
    页面3
    点击计数器:0
    "`; + +exports[`ssr snapshot test > ssr test packages/components/breadcrumb/_example/icon.tsx 1`] = `"
    页面1
    页面2
    页面3
    "`; + +exports[`ssr snapshot test > ssr test packages/components/breadcrumb/_example/options.tsx 1`] = `"
    页面1
    页面2
    "`; + +exports[`ssr snapshot test > ssr test packages/components/breadcrumb/_example/to.tsx 1`] = `""`; + +exports[`ssr snapshot test > ssr test packages/components/breadcrumb/_example/width.tsx 1`] = `"
    父级设置100px父级设置100px
    设置最大宽度160px设置最大宽度160px设置最大宽度160px
    设置最大宽度240px设置最大宽度240px设置最大宽度240px设置最大宽度240px设置最大宽度240px
    父级设置100px父级设置100px
    "`; + +exports[`ssr snapshot test > ssr test packages/components/button/_example/base.tsx 1`] = `"
    "`; + +exports[`ssr snapshot test > ssr test packages/components/button/_example/block.tsx 1`] = `"
    "`; + +exports[`ssr snapshot test > ssr test packages/components/button/_example/custom-element.tsx 1`] = `""`; + +exports[`ssr snapshot test > ssr test packages/components/button/_example/ghost.tsx 1`] = `"
    "`; + +exports[`ssr snapshot test > ssr test packages/components/button/_example/icon.tsx 1`] = `"
    "`; + +exports[`ssr snapshot test > ssr test packages/components/button/_example/shape.tsx 1`] = `"
    "`; + +exports[`ssr snapshot test > ssr test packages/components/button/_example/size.tsx 1`] = `"
    "`; + +exports[`ssr snapshot test > ssr test packages/components/button/_example/status.tsx 1`] = `"
    填充按钮
    "`; + +exports[`ssr snapshot test > ssr test packages/components/button/_example/theme.tsx 1`] = `"
    "`; + +exports[`ssr snapshot test > ssr test packages/components/calendar/_example/base.tsx 1`] = `"
    请选择
    请选择
    隐藏周末
    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
    "`; + +exports[`ssr snapshot test > ssr test packages/components/calendar/_example/card.tsx 1`] = `"
    请选择
    请选择
    30
    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
    "`; + +exports[`ssr snapshot test > ssr test packages/components/calendar/_example/cell.tsx 1`] = `"
    请选择
    请选择
    隐藏周末
    30
    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
    "`; + +exports[`ssr snapshot test > ssr test packages/components/calendar/_example/cell-append.tsx 1`] = `"
    请选择
    请选择
    隐藏周末
    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
    "`; + +exports[`ssr snapshot test > ssr test packages/components/calendar/_example/controller-config.tsx 1`] = `"
    控件全局



    控件局部






    请选择
    请选择
    隐藏周末
    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
    "`; + +exports[`ssr snapshot test > ssr test packages/components/calendar/_example/events.tsx 1`] = `"
    请选择
    请选择
    隐藏周末
    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
    "`; + +exports[`ssr snapshot test > ssr test packages/components/calendar/_example/filter.tsx 1`] = `"
    请选择
    请选择
    隐藏周末
    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
    "`; + +exports[`ssr snapshot test > ssr test packages/components/calendar/_example/first-day-of-week.tsx 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 packages/components/calendar/_example/head.tsx 1`] = `"
    🗓 TDesign开发计划
    请选择
    请选择
    隐藏周末
    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
    "`; + +exports[`ssr snapshot test > ssr test packages/components/calendar/_example/mode.tsx 1`] = `"
    请选择
    请选择
    隐藏周末
    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
    "`; + +exports[`ssr snapshot test > ssr test packages/components/calendar/_example/range.tsx 1`] = `"
    请选择
    请选择
    隐藏周末
    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
    "`; + +exports[`ssr snapshot test > ssr test packages/components/calendar/_example/slot-props-api.tsx 1`] = `"
    2020-12 工作安排
    请选择
    请选择
    隐藏周末
    30
    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
    "`; + +exports[`ssr snapshot test > ssr test packages/components/calendar/_example/value.tsx 1`] = `"
    请选择
    请选择
    隐藏周末
    26
    27
    28
    29
    30
    31
    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
    01
    02
    03
    04
    05
    06
    "`; + +exports[`ssr snapshot test > ssr test packages/components/calendar/_example/week.tsx 1`] = `"
    请选择
    请选择
    隐藏周末
    星期1
    星期2
    星期3
    星期4
    星期5
    星期6
    星期7
    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
    "`; + +exports[`ssr snapshot test > ssr test packages/components/card/_example/base.tsx 1`] = `"
    标题
    操作
    仅有内容区域的卡片形式。卡片内容区域可以是文字、图片、表单、表格等形式信息内容。可使用大中小不同的卡片尺寸,按业务需求进行呈现。
    "`; + +exports[`ssr snapshot test > ssr test packages/components/card/_example/bordered.tsx 1`] = `"
    仅有内容区域的卡片形式。卡片内容区域可以是文字、图片、表单、表格等形式信息内容。可使用大中小不同的卡片尺寸,按业务需求进行呈现。
    "`; + +exports[`ssr snapshot test > ssr test packages/components/card/_example/bordered-none.tsx 1`] = `"
    标题
    仅有内容区域的卡片形式。卡片内容区域可以是文字、图片、表单、表格等形式信息内容。可使用大中小不同的卡片尺寸,按业务需求进行呈现。
    "`; + +exports[`ssr snapshot test > ssr test packages/components/card/_example/custom-loading-props.tsx 1`] = `"
    自定义loadingProps Card
    仅有内容区域的卡片形式。卡片内容区域可以是文字、图片、表单、表格等形式信息内容。可使用大中小不同的卡片尺寸,按业务需求进行呈现。
    TDesign努力加载中...
    "`; + +exports[`ssr snapshot test > ssr test packages/components/card/_example/footer.tsx 1`] = `"
    默认标签
    "`; + +exports[`ssr snapshot test > ssr test packages/components/card/_example/footer-actions.tsx 1`] = `"
    "`; + +exports[`ssr snapshot test > ssr test packages/components/card/_example/footer-content.tsx 1`] = `"
    "`; + +exports[`ssr snapshot test > ssr test packages/components/card/_example/footer-content-actions.tsx 1`] = `"
    "`; + +exports[`ssr snapshot test > ssr test packages/components/card/_example/header.tsx 1`] = `"
    标题
    卡片内容,以描述性为主,可以是文字、图片或图文组合的形式。按业务需求进行自定义组合。
    "`; + +exports[`ssr snapshot test > ssr test packages/components/card/_example/header-all-props.tsx 1`] = `"
    标题
    副标题

    描述

    操作
    卡片内容,以描述性为主,可以是文字、图片或图文组合的形式。按业务需求进行自定义组合。
    "`; + +exports[`ssr snapshot test > ssr test packages/components/card/_example/header-bordered.tsx 1`] = `"
    标题
    卡片内容,以描述性为主,可以是文字、图片或图文组合的形式。按业务需求进行自定义组合。
    "`; + +exports[`ssr snapshot test > ssr test packages/components/card/_example/header-description.tsx 1`] = `"
    标题

    描述

    操作
    卡片内容,以描述性为主,可以是文字、图片或图文组合的形式。按业务需求进行自定义组合。
    "`; + +exports[`ssr snapshot test > ssr test packages/components/card/_example/header-footer-actions.tsx 1`] = `"
    图片加载中
    标题

    卡片内容

    "`; + +exports[`ssr snapshot test > ssr test packages/components/card/_example/header-subtitle.tsx 1`] = `"
    标题
    副标题
    操作
    卡片内容,以描述性为主,可以是文字、图片或图文组合的形式。按业务需求进行自定义组合。
    "`; + +exports[`ssr snapshot test > ssr test packages/components/card/_example/header-subtitle-footer-actions.tsx 1`] = `"
    标题
    副标题
    "`; + +exports[`ssr snapshot test > ssr test packages/components/cascader/_example/base.tsx 1`] = `"
    "`; + +exports[`ssr snapshot test > ssr test packages/components/cascader/_example/check-strictly.tsx 1`] = `"
    请选择
    "`; + +exports[`ssr snapshot test > ssr test packages/components/cascader/_example/collapsed.tsx 1`] = `"
    请选择
    请选择
    "`; + +exports[`ssr snapshot test > ssr test packages/components/cascader/_example/custom-options.tsx 1`] = `"
    "`; + +exports[`ssr snapshot test > ssr test packages/components/cascader/_example/disabled.tsx 1`] = `"
    请选择
    "`; + +exports[`ssr snapshot test > ssr test packages/components/cascader/_example/ellipsis.tsx 1`] = `"
    "`; + +exports[`ssr snapshot test > ssr test packages/components/cascader/_example/filterable.tsx 1`] = `"
    请选择
    "`; + +exports[`ssr snapshot test > ssr test packages/components/cascader/_example/keys.tsx 1`] = `"
    请选择
    "`; + +exports[`ssr snapshot test > ssr test packages/components/cascader/_example/load.tsx 1`] = `"
    请选择
    "`; + +exports[`ssr snapshot test > ssr test packages/components/cascader/_example/max.tsx 1`] = `"
    请选择
    "`; + +exports[`ssr snapshot test > ssr test packages/components/cascader/_example/multiple.tsx 1`] = `"
    请选择
    "`; + +exports[`ssr snapshot test > ssr test packages/components/cascader/_example/panel.tsx 1`] = `"
    暂无数据
    暂无数据
    "`; + +exports[`ssr snapshot test > ssr test packages/components/cascader/_example/show-all-levels.tsx 1`] = `"
    请选择
    "`; + +exports[`ssr snapshot test > ssr test packages/components/cascader/_example/size.tsx 1`] = `"
    "`; + +exports[`ssr snapshot test > ssr test packages/components/cascader/_example/trigger.tsx 1`] = `"
    "`; + +exports[`ssr snapshot test > ssr test packages/components/cascader/_example/value-display.tsx 1`] = `"
    单选:
    (2.2)
    多选:
    请选择
    "`; + +exports[`ssr snapshot test > ssr test packages/components/cascader/_example/value-mode.tsx 1`] = `"
    请选择
    请选择
    请选择
    "`; + +exports[`ssr snapshot test > ssr test packages/components/cascader/_example/value-type.tsx 1`] = `"
    ["1","1.1"]
    [["1","1.1"],["1","1.2"]]
    请选择
    "`; + +exports[`ssr snapshot test > ssr test packages/components/checkbox/_example/base.tsx 1`] = `"
    "`; + +exports[`ssr snapshot test > ssr test packages/components/checkbox/_example/controlled.tsx 1`] = `"
    "`; + +exports[`ssr snapshot test > ssr test packages/components/checkbox/_example/group.tsx 1`] = `"
    选中值: 北京
    "`; + +exports[`ssr snapshot test > ssr test packages/components/checkbox/_example/link.tsx 1`] = `"
    "`; + +exports[`ssr snapshot test > ssr test packages/components/checkbox/_example/max.tsx 1`] = `"
    最多可选:
    选中值: 北京
    "`; + +exports[`ssr snapshot test > ssr test packages/components/collapse/_example/base.tsx 1`] = `"
    这是一个折叠标题
    这部分是每个折叠面板折叠或展开的内容,可根据不同业务或用户的使用诉求,进行自定义填充。可以是纯文本、图文、子列表等内容形式。
    设置默认展开项
    这部分是每个折叠面板折叠或展开的内容,可根据不同业务或用户的使用诉求,进行自定义填充。可以是纯文本、图文、子列表等内容形式。
    自定义折叠面板内容
    Vue
    React
    当前折叠面板折叠时,销毁面板内容
    嵌套使用折叠面板
    这是一个折叠标题
    这部分是每个折叠面板折叠或展开的内容,可根据不同业务或用户的使用诉求,进行自定义填充。可以是纯文本、图文、子列表等内容形式。
    这是一个折叠标题
    这部分是每个折叠面板折叠或展开的内容,可根据不同业务或用户的使用诉求,进行自定义填充。可以是纯文本、图文、子列表等内容形式。
    "`; + +exports[`ssr snapshot test > ssr test packages/components/collapse/_example/icon.tsx 1`] = `"
    这是一个折叠标题
    这部分是每个折叠面板折叠或展开的内容,可根据不同业务或用户的使用诉求,进行自定义填充。可以是纯文本、图文、子列表等内容形式。
    折叠后自动销毁
    自定义折叠面板内容
    Vue
    React
    自定义图标
    这部分是每个折叠面板折叠或展开的内容,可根据不同业务或用户的使用诉求,进行自定义填充。可以是纯文本、图文、子列表等内容形式。
    "`; + +exports[`ssr snapshot test > ssr test packages/components/collapse/_example/mutex.tsx 1`] = `"
    这是一个折叠标题
    这部分是每个折叠面板折叠或展开的内容,可根据不同业务或用户的使用诉求,进行自定义填充。可以是纯文本、图文、子列表等内容形式。
    折叠后自动销毁
    自定义折叠面板内容
    Vue
    React
    "`; + +exports[`ssr snapshot test > ssr test packages/components/collapse/_example/other.tsx 1`] = `"
    这是一个折叠标题
    这部分是每个折叠面板折叠或展开的内容,可根据不同业务或用户的使用诉求,进行自定义填充。可以是纯文本、图文、子列表等内容形式。
    折叠后自动销毁
    自定义折叠面板内容
    Vue
    React
    当前展开的Collapse Panel:
    "`; + +exports[`ssr snapshot test > ssr test packages/components/collapse/_example/rightSlot.tsx 1`] = `"
    这是一个折叠标题
    这部分是每个折叠面板折叠或展开的内容,可根据不同业务或用户的使用诉求,进行自定义填充。可以是纯文本、图文、子列表等内容形式。
    这是一个折叠标题
    这部分是每个折叠面板折叠或展开的内容,可根据不同业务或用户的使用诉求,进行自定义填充。可以是纯文本、图文、子列表等内容形式。
    这是一个折叠标题
    这部分是每个折叠面板折叠或展开的内容,可根据不同业务或用户的使用诉求,进行自定义填充。可以是纯文本、图文、子列表等内容形式。
    "`; + +exports[`ssr snapshot test > ssr test packages/components/color-picker/_example/color-mode.tsx 1`] = `"
    默认(单色 + 线性渐变)
    rgba(0, 82, 217, 1)
    仅单色模式
    #0052d9
    仅线性渐变模式
    linear-gradient(45deg, #4facfe 0%, #00f2fe 100%)
    "`; + +exports[`ssr snapshot test > ssr test packages/components/color-picker/_example/enable-alpha.tsx 1`] = `"
    请选择

    最近使用颜色

      系统预设颜色

      "`; + +exports[`ssr snapshot test > ssr test packages/components/color-picker/_example/panel.tsx 1`] = `"
      请选择

      最近使用颜色

        系统预设颜色

        "`; + +exports[`ssr snapshot test > ssr test packages/components/color-picker/_example/recent-color.tsx 1`] = `"
        预设最近使用色
        请选择

        最近使用颜色

        系统预设颜色

        完全不显示最近使用色
        请选择

        系统预设颜色

        "`; + +exports[`ssr snapshot test > ssr test packages/components/color-picker/_example/status-disabled.tsx 1`] = `"
        #0052d9
        "`; + +exports[`ssr snapshot test > ssr test packages/components/color-picker/_example/status-readonly.tsx 1`] = `"
        请选择

        最近使用颜色

          系统预设颜色

          "`; + +exports[`ssr snapshot test > ssr test packages/components/color-picker/_example/swatch-color.tsx 1`] = `"
          自定义系统色
          请选择

          最近使用颜色

            系统预设颜色

            完全不显示系统色
            请选择

            最近使用颜色

              "`; + +exports[`ssr snapshot test > ssr test packages/components/color-picker/_example/trigger.tsx 1`] = `"
              #0052d9
              "`; + +exports[`ssr snapshot test > ssr test packages/components/comment/_example/base.tsx 1`] = `"
              评论作者名今天16:38
              评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容。
              "`; + +exports[`ssr snapshot test > ssr test packages/components/comment/_example/list.tsx 1`] = `"
              • 评论作者名A今天16:38
                A评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容。
              • 评论作者名B今天16:38
                B评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容。
              • 评论作者名C今天16:38
                C评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容。
              "`; + +exports[`ssr snapshot test > ssr test packages/components/comment/_example/operation.tsx 1`] = `"
              评论作者名今天16:38
              评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容。
              "`; + +exports[`ssr snapshot test > ssr test packages/components/comment/_example/quote.tsx 1`] = `"
              评论作者名A今天16:38
              A评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容。
              引用内容标题
              引用内容引用内容引用内容引用内容引用内容引用内容引用内容引用内容引用内容引用内容引用内容引用内容引用内容引用内容引用内容引用内容引用内容引用内容。
              "`; + +exports[`ssr snapshot test > ssr test packages/components/comment/_example/reply.tsx 1`] = `"
              评论作者名A今天16:38
              A评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容。
              评论作者名B评论作者名A今天16:38
              B评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容。
              "`; + +exports[`ssr snapshot test > ssr test packages/components/comment/_example/reply-form.tsx 1`] = `"
              "`; + +exports[`ssr snapshot test > ssr test packages/components/config-provider/_example/calendar.tsx 1`] = `"
              please select
              please select
              Hide Weekend
              MondayTuesdayWednesdayThursdayFridaySaturdaySunday
              30
              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
              "`; + +exports[`ssr snapshot test > ssr test packages/components/config-provider/_example/date-picker.tsx 1`] = `"
              ~
              ~
              ~
              "`; + +exports[`ssr snapshot test > ssr test packages/components/config-provider/_example/dialog.tsx 1`] = `"
              Title
              Would you like to be my friends?
              confirm
              Would you like to be my friends?
              confirm
              Would you like to be my friends?
              confirm
              Would you like to be my friends?
              confirm
              Would you like to be my friends?
              "`; + +exports[`ssr snapshot test > ssr test packages/components/config-provider/_example/global.tsx 1`] = `"

              使用ConfigProvider包裹业务功能的最外层组件,点击下方图标查看示例代码

              英文语言包引入路径:import enConfig from 'tdesign-react/es/locale/en_US';

              中文语言包引入路径:import zhConfig from 'tdesign-react/es/locale/zh_CN';

              日文语言包引入路径:import jpConfig from 'tdesign-react/es/locale/ja_JP';

              韩文语言包引入路径:import koConfig from 'tdesign-react/es/locale/ko_KR';

              "`; + +exports[`ssr snapshot test > ssr test packages/components/config-provider/_example/input.tsx 1`] = `"
              "`; + +exports[`ssr snapshot test > ssr test packages/components/config-provider/_example/others.tsx 1`] = `"
              Feature Tag
              Feature Tag
              Feature Tag
              Feature Tag
              Tree Empty Data
              First Step
              You need to click the blue button
              Second Step
              Fill your base information into the form
              Error Step
              Something Wrong! Custom Error Icon!
              4
              Last Step
              You haven't finish this step.
              图片加载中
              "`; + +exports[`ssr snapshot test > ssr test packages/components/config-provider/_example/pagination.tsx 1`] = `"
              Total 36 items
              please select
              • 1
              • 2
              • 3
              • 4
              / 4
              "`; + +exports[`ssr snapshot test > ssr test packages/components/config-provider/_example/popconfirm.tsx 1`] = `"
              "`; + +exports[`ssr snapshot test > ssr test packages/components/config-provider/_example/table.tsx 1`] = `"
              Type
              Platform
              Property
              Empty Data
              Type
              Platform
              Property
              ArrayVue(PC)A
              StringReact(PC)B
              ObjectMiniprogramC
              "`; + +exports[`ssr snapshot test > ssr test packages/components/date-picker/_example/base.tsx 1`] = `"
              "`; + +exports[`ssr snapshot test > ssr test packages/components/date-picker/_example/cancel-range-limit.tsx 1`] = `"
              -
              "`; + +exports[`ssr snapshot test > ssr test packages/components/date-picker/_example/custom-icon.tsx 1`] = `"
              "`; + +exports[`ssr snapshot test > ssr test packages/components/date-picker/_example/date-presets-alt.tsx 1`] = `"
              -
              -
              "`; + +exports[`ssr snapshot test > ssr test packages/components/date-picker/_example/date-range.tsx 1`] = `"
              -
              -
              "`; + +exports[`ssr snapshot test > ssr test packages/components/date-picker/_example/date-time.tsx 1`] = `"
              "`; + +exports[`ssr snapshot test > ssr test packages/components/date-picker/_example/disable-date.tsx 1`] = `"
              -
              "`; + +exports[`ssr snapshot test > ssr test packages/components/date-picker/_example/first-day-of-week.tsx 1`] = `"
              "`; + +exports[`ssr snapshot test > ssr test packages/components/date-picker/_example/month.tsx 1`] = `"
              -
              "`; + +exports[`ssr snapshot test > ssr test packages/components/date-picker/_example/multiple.tsx 1`] = `"
              2024-10-01
              2024-10-24
              2024-50周
              2024-51周
              2022
              2023
              2024
              "`; + +exports[`ssr snapshot test > ssr test packages/components/date-picker/_example/panel.tsx 1`] = `"
              30
              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
              5
              6
              7
              8
              9
              10
              30
              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
              5
              6
              7
              8
              9
              10
              00:00:00
              30
              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
              5
              6
              7
              8
              9
              10
              28
              29
              30
              31
              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
              5
              6
              7
              30
              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
              5
              6
              7
              8
              9
              10
              00:00:00
              "`; + +exports[`ssr snapshot test > ssr test packages/components/date-picker/_example/quarter.tsx 1`] = `"
              -
              "`; + +exports[`ssr snapshot test > ssr test packages/components/date-picker/_example/week.tsx 1`] = `"
              -
              "`; + +exports[`ssr snapshot test > ssr test packages/components/date-picker/_example/year.tsx 1`] = `"
              -
              "`; + +exports[`ssr snapshot test > ssr test packages/components/descriptions/_example/base.tsx 1`] = `"
              Shipping address
              NameTDesignTelephone Number139****0609
              AreaChina Tencent HeadquartersAddressShenzhen Penguin Island D1 4A Mail Center
              "`; + +exports[`ssr snapshot test > ssr test packages/components/descriptions/_example/bordered.tsx 1`] = `"
              Shipping address
              NameTDesignTelephone Number139****0609
              AreaChina Tencent HeadquartersAddressShenzhen Penguin Island D1 4A Mail Center
              "`; + +exports[`ssr snapshot test > ssr test packages/components/descriptions/_example/colon.tsx 1`] = `"
              展示冒号
              Shipping address
              NameTDesignTelephone Number139****0609
              AreaChina Tencent HeadquartersAddressShenzhen Penguin Island D1 4A Mail Center
              "`; + +exports[`ssr snapshot test > ssr test packages/components/descriptions/_example/column.tsx 1`] = `"
              Shipping address
              NameTDesignTelephone Number139****0609
              AreaChina Tencent HeadquartersAddressShenzhen Penguin Island D1 4A Mail Center
              "`; + +exports[`ssr snapshot test > ssr test packages/components/descriptions/_example/custom-style.tsx 1`] = `"
              Shipping address
              NameTDesignTelephone Number139****0609
              AreaChina Tencent HeadquartersAddressShenzhen Penguin Island D1 4A Mail Center
              "`; + +exports[`ssr snapshot test > ssr test packages/components/descriptions/_example/items.tsx 1`] = `"
              Shipping address
              NameTDesign139****0609
              Area

              China Tencent Headquarters

              Address Shenzhen Penguin Island D1 4A Mail Center
              "`; + +exports[`ssr snapshot test > ssr test packages/components/descriptions/_example/layout.tsx 1`] = `"
              layout:
              itemLayout:
              Shipping address
              NameTDesignTelephone Number139****0609
              AreaChina Tencent HeadquartersAddressShenzhen Penguin Island D1 4A Mail Center
              "`; + +exports[`ssr snapshot test > ssr test packages/components/descriptions/_example/nest.tsx 1`] = `"
              Shipping address
              NameTDesignTelephone Number139****0609
              AreaChina Tencent HeadquartersAddress
              CityShenzhenDetailPenguin Island D1 4A Mail Center
              "`; + +exports[`ssr snapshot test > ssr test packages/components/descriptions/_example/size.tsx 1`] = `"
              Shipping address
              NameTDesignTelephone Number139****0609
              AreaChina Tencent HeadquartersAddressShenzhen Penguin Island D1 4A Mail Center
              "`; + +exports[`ssr snapshot test > ssr test packages/components/descriptions/_example/table-layout.tsx 1`] = `"
              Shipping address
              NameTDesignTelephone Number139****0609
              AreaChina Tencent HeadquartersAddressShenzhen Penguin Island D1 4A Mail Center
              "`; + +exports[`ssr snapshot test > ssr test packages/components/dialog/_example/async.tsx 1`] = `""`; + +exports[`ssr snapshot test > ssr test packages/components/dialog/_example/attach.tsx 1`] = `"
              "`; + +exports[`ssr snapshot test > ssr test packages/components/dialog/_example/base.tsx 1`] = `""`; + +exports[`ssr snapshot test > ssr test packages/components/dialog/_example/custom.tsx 1`] = `""`; + +exports[`ssr snapshot test > ssr test packages/components/dialog/_example/icon.tsx 1`] = `""`; + +exports[`ssr snapshot test > ssr test packages/components/dialog/_example/modal.tsx 1`] = `"
              普通对话框

              This is a dialog

              "`; + +exports[`ssr snapshot test > ssr test packages/components/dialog/_example/plugin.tsx 1`] = `"

              函数调用方式一:DialogPlugin(options)

              函数调用方式二:DialogPlugin.confirm(options)

              函数调用方式三:DialogPlugin.alert(options)

              "`; + +exports[`ssr snapshot test > ssr test packages/components/dialog/_example/position.tsx 1`] = `""`; + +exports[`ssr snapshot test > ssr test packages/components/dialog/_example/warning.tsx 1`] = `"
              "`; + +exports[`ssr snapshot test > ssr test packages/components/divider/_example/base.tsx 1`] = `"

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

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

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

              "`; + +exports[`ssr snapshot test > ssr test packages/components/divider/_example/text.tsx 1`] = `"

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

              TDesign

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

              TDesign

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

              TDesign

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

              "`; + +exports[`ssr snapshot test > ssr test packages/components/divider/_example/vertical.tsx 1`] = `"正直
              进取
              合作
              创新"`; + +exports[`ssr snapshot test > ssr test packages/components/drawer/_example/attach-parent.tsx 1`] = `"

              渲染在当前元素中。

              抽屉弹出方向:
              抽屉弹出模式:
              "`; + +exports[`ssr snapshot test > ssr test packages/components/drawer/_example/base.tsx 1`] = `""`; + +exports[`ssr snapshot test > ssr test packages/components/drawer/_example/custom.tsx 1`] = `""`; + +exports[`ssr snapshot test > ssr test packages/components/drawer/_example/destroy.tsx 1`] = `""`; + +exports[`ssr snapshot test > ssr test packages/components/drawer/_example/no-mask.tsx 1`] = `""`; + +exports[`ssr snapshot test > ssr test packages/components/drawer/_example/operation.tsx 1`] = `""`; + +exports[`ssr snapshot test > ssr test packages/components/drawer/_example/placement.tsx 1`] = `"
              "`; + +exports[`ssr snapshot test > ssr test packages/components/drawer/_example/plugin.tsx 1`] = `"

              函数调用方式一:DrawerPlugin(options)

              函数调用方式二:drawer(options)

              "`; + +exports[`ssr snapshot test > ssr test packages/components/drawer/_example/popup.tsx 1`] = `"
              抽屉弹出模式:
              "`; + +exports[`ssr snapshot test > ssr test packages/components/drawer/_example/size.tsx 1`] = `"
              "`; + +exports[`ssr snapshot test > ssr test packages/components/drawer/_example/size-draggable.tsx 1`] = `"
              "`; + +exports[`ssr snapshot test > ssr test packages/components/dropdown/_example/base.tsx 1`] = `""`; + +exports[`ssr snapshot test > ssr test packages/components/dropdown/_example/button.tsx 1`] = `""`; + +exports[`ssr snapshot test > ssr test packages/components/dropdown/_example/child.tsx 1`] = `""`; + +exports[`ssr snapshot test > ssr test packages/components/dropdown/_example/click.tsx 1`] = `""`; + +exports[`ssr snapshot test > ssr test packages/components/dropdown/_example/custom.tsx 1`] = `""`; + +exports[`ssr snapshot test > ssr test packages/components/dropdown/_example/disabled.tsx 1`] = `""`; + +exports[`ssr snapshot test > ssr test packages/components/dropdown/_example/icon.tsx 1`] = `""`; + +exports[`ssr snapshot test > ssr test packages/components/dropdown/_example/left.tsx 1`] = `""`; + +exports[`ssr snapshot test > ssr test packages/components/dropdown/_example/long.tsx 1`] = `""`; + +exports[`ssr snapshot test > ssr test packages/components/dropdown/_example/multiple.tsx 1`] = `""`; + +exports[`ssr snapshot test > ssr test packages/components/dropdown/_example/split.tsx 1`] = `""`; + +exports[`ssr snapshot test > ssr test packages/components/dropdown/_example/theme.tsx 1`] = `""`; + +exports[`ssr snapshot test > ssr test packages/components/empty/_example/base.tsx 1`] = `"
              暂无数据
              "`; + +exports[`ssr snapshot test > ssr test packages/components/empty/_example/descriptions.tsx 1`] = `"
              暂无数据
              description
              "`; + +exports[`ssr snapshot test > ssr test packages/components/empty/_example/operation.tsx 1`] = `"
              暂无数据
              "`; + +exports[`ssr snapshot test > ssr test packages/components/empty/_example/self-defined.tsx 1`] = `"
              暂无数据
              暂无数据
              暂无数据
              暂无数据
              "`; + +exports[`ssr snapshot test > ssr test packages/components/empty/_example/size.tsx 1`] = `"
              暂无数据
              建设中
              网络错误
              成功
              失败
              "`; + +exports[`ssr snapshot test > ssr test packages/components/empty/_example/status.tsx 1`] = `"
              暂无数据
              建设中
              网络错误
              成功
              失败
              "`; + +exports[`ssr snapshot test > ssr test packages/components/form/_example/align.tsx 1`] = `"
              "`; + +exports[`ssr snapshot test > ssr test packages/components/form/_example/base.tsx 1`] = `"
              "`; + +exports[`ssr snapshot test > ssr test packages/components/form/_example/clear-validate.tsx 1`] = `"
              一句话介绍自己
              "`; + +exports[`ssr snapshot test > ssr test packages/components/form/_example/custom-validator.tsx 1`] = `"
              "`; + +exports[`ssr snapshot test > ssr test packages/components/form/_example/customized-form-controls.tsx 1`] = `"
              "`; + +exports[`ssr snapshot test > ssr test packages/components/form/_example/disabled.tsx 1`] = `"
              请选择单张图片文件上传
              提交
              重置
              "`; + +exports[`ssr snapshot test > ssr test packages/components/form/_example/error-message.tsx 1`] = `"
              一句话介绍自己
              "`; + +exports[`ssr snapshot test > ssr test packages/components/form/_example/form-field-linkage.tsx 1`] = `"
              "`; + +exports[`ssr snapshot test > ssr test packages/components/form/_example/form-list.tsx 1`] = `"
              "`; + +exports[`ssr snapshot test > ssr test packages/components/form/_example/layout.tsx 1`] = `"
              "`; + +exports[`ssr snapshot test > ssr test packages/components/form/_example/login.tsx 1`] = `"
              "`; + +exports[`ssr snapshot test > ssr test packages/components/form/_example/nested-data.tsx 1`] = `"
              "`; + +exports[`ssr snapshot test > ssr test packages/components/form/_example/reset.tsx 1`] = `"
              "`; + +exports[`ssr snapshot test > ssr test packages/components/form/_example/validate-complicated-data.tsx 1`] = `"
              学生1
              学生2
              "`; + +exports[`ssr snapshot test > ssr test packages/components/form/_example/validate-message.tsx 1`] = `"
              一句话介绍自己
              "`; + +exports[`ssr snapshot test > ssr test packages/components/form/_example/validator.tsx 1`] = `"
              这里请填写密码
              "`; + +exports[`ssr snapshot test > ssr test packages/components/form/_example/validator-status.tsx 1`] = `"
              校验不通过,请输入正确内容
              自定义新增icon
              自定义帮助icon
              "`; + +exports[`ssr snapshot test > ssr test packages/components/grid/_example/base.tsx 1`] = `"
              1
              1
              1
              1
              1
              1
              1
              1
              1
              1
              1
              1
              2
              2
              2
              2
              2
              2
              3
              3
              3
              3
              4
              4
              4
              6
              6
              12
              "`; + +exports[`ssr snapshot test > ssr test packages/components/grid/_example/flex.tsx 1`] = `"
              2 / 5
              3 / 5
              100px
              Fill Rest
              1 1 200px
              0 1 300px
              none
              auto with no-wrap
              "`; + +exports[`ssr snapshot test > ssr test packages/components/grid/_example/gutter.tsx 1`] = `"
              col-3
              col-3
              col-3
              col-3
              col-3
              col-3
              col-3
              col-3
              col-3
              col-3
              col-3
              col-3
              col-3
              col-3
              col-3
              col-3
              "`; + +exports[`ssr snapshot test > ssr test packages/components/grid/_example/halign.tsx 1`] = `"

              align left

              col-2
              col-2
              col-2
              col-2

              align center

              col-2
              col-2
              col-2
              col-2

              align right

              col-2
              col-2
              col-2
              col-2

              space-between

              col-2
              col-2
              col-2
              col-2

              space-around

              col-2
              col-2
              col-2
              col-2
              "`; + +exports[`ssr snapshot test > ssr test packages/components/grid/_example/offset.tsx 1`] = `"
              col-4
              col-4
              col-3 col-offset-3
              col-3 col-offset-3
              col-6 col-offset-2
              "`; + +exports[`ssr snapshot test > ssr test packages/components/grid/_example/order.tsx 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 packages/components/grid/_example/responsive.tsx 1`] = `"
              宽度响应式
              Col
              Col
              其他属性响应式(支持span,offset,order,pull,push)
              Col
              "`; + +exports[`ssr snapshot test > ssr test packages/components/grid/_example/sort.tsx 1`] = `"
              通过 \`pull\` \`push\` 进行排序
              col-9 col-push-3
              col-3 col-pull-9
              col-8 col-push-4
              col-4 col-pull-8
              "`; + +exports[`ssr snapshot test > ssr test packages/components/grid/_example/valign.tsx 1`] = `"

              align top

              col-3
              col-3
              col-3
              col-3

              Align Middle

              col-3
              col-3
              col-3
              col-3

              Align Bottom

              col-3
              col-3
              col-3
              col-3
              "`; + +exports[`ssr snapshot test > ssr test packages/components/guide/_example/base.tsx 1`] = `"
              "`; + +exports[`ssr snapshot test > ssr test packages/components/guide/_example/custom-popup.tsx 1`] = `"
              "`; + +exports[`ssr snapshot test > ssr test packages/components/guide/_example/dialog.tsx 1`] = `"
              "`; + +exports[`ssr snapshot test > ssr test packages/components/guide/_example/no-mask.tsx 1`] = `"
              "`; + +exports[`ssr snapshot test > ssr test packages/components/guide/_example/popup-dialog.tsx 1`] = `"
              "`; + +exports[`ssr snapshot test > ssr test packages/components/icon/_example/Enhanced.tsx 1`] = `"


              "`; + +exports[`ssr snapshot test > ssr test packages/components/icon/_example/IconExample.tsx 1`] = `"
              "`; + +exports[`ssr snapshot test > ssr test packages/components/icon/_example/IconFontEnhanced.tsx 1`] = `"


              "`; + +exports[`ssr snapshot test > ssr test packages/components/icon/_example/IconFontExample.tsx 1`] = `"

              How do you feel today?

              What is your favourite food?

              How much icons does TDesign Icon includes?

              "`; + +exports[`ssr snapshot test > ssr test packages/components/icon/_example/IconSelect.tsx 1`] = `"
              "`; + +exports[`ssr snapshot test > ssr test packages/components/icon/_example/SvgSpriteExample.tsx 1`] = `"

              How do you feel today?

              What is your favourite food?

              How much icons does TDesign Icon includes?

              "`; + +exports[`ssr snapshot test > ssr test packages/components/image/_example/avif.tsx 1`] = `"
              图片加载中
              "`; + +exports[`ssr snapshot test > ssr test packages/components/image/_example/extra-always.tsx 1`] = `"
              有遮罩
              图片加载中
              高清
              无遮罩
              图片加载中
              高清
              "`; + +exports[`ssr snapshot test > ssr test packages/components/image/_example/extra-hover.tsx 1`] = `"
              图片加载中
              预览
              "`; + +exports[`ssr snapshot test > ssr test packages/components/image/_example/fill-mode.tsx 1`] = `"
              图片加载中
              fill
              图片加载中
              contain
              图片加载中
              cover
              图片加载中
              none
              图片加载中
              scale-down
              "`; + +exports[`ssr snapshot test > ssr test packages/components/image/_example/fill-position.tsx 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 packages/components/image/_example/gallery-cover.tsx 1`] = `""`; + +exports[`ssr snapshot test > ssr test packages/components/image/_example/lazy-list.tsx 1`] = `"
              "`; + +exports[`ssr snapshot test > ssr test packages/components/image/_example/lazy-single.tsx 1`] = `"
              "`; + +exports[`ssr snapshot test > ssr test packages/components/image/_example/placeholder.tsx 1`] = `"

              加载中的图片

              默认占位
              图片加载中
              自定义占位

              加载失败的图片

              默认错误
              图片加载中
              自定义错误
              图片加载中
              "`; + +exports[`ssr snapshot test > ssr test packages/components/image/_example/shape.tsx 1`] = `"
              图片加载中
              square
              图片加载中
              round
              图片加载中
              circle
              "`; + +exports[`ssr snapshot test > ssr test packages/components/image-viewer/_example/album.tsx 1`] = `"
              test
              图片加载中
              预览
              相册封面标题
              "`; + +exports[`ssr snapshot test > ssr test packages/components/image-viewer/_example/albumIcons.tsx 1`] = `"
              test
              图片加载中
              预览
              相册封面标题
              "`; + +exports[`ssr snapshot test > ssr test packages/components/image-viewer/_example/base.tsx 1`] = `"
              test
              图片加载中
              预览
              "`; + +exports[`ssr snapshot test > ssr test packages/components/image-viewer/_example/block.tsx 1`] = `"
              test
              图片加载中
              预览
              test
              图片加载中
              预览
              "`; + +exports[`ssr snapshot test > ssr test packages/components/image-viewer/_example/button.tsx 1`] = `""`; + +exports[`ssr snapshot test > ssr test packages/components/image-viewer/_example/error.tsx 1`] = `"
              test
              图片加载中
              预览
              test
              图片加载中
              预览
              test
              图片加载中
              预览
              test
              图片加载中
              预览
              "`; + +exports[`ssr snapshot test > ssr test packages/components/image-viewer/_example/modeless.tsx 1`] = `"
              test
              图片加载中
              预览
              "`; + +exports[`ssr snapshot test > ssr test packages/components/image-viewer/_example/multiple.tsx 1`] = `"
              test
              图片加载中
              预览
              test
              图片加载中
              预览
              test
              图片加载中
              预览
              "`; + +exports[`ssr snapshot test > ssr test packages/components/image-viewer/_example/svg.tsx 1`] = `"
              test
              图片加载中
              预览
              "`; + +exports[`ssr snapshot test > ssr test packages/components/input/_example/addon.tsx 1`] = `"
              http://
              http://
              .com
              "`; + +exports[`ssr snapshot test > ssr test packages/components/input/_example/align.tsx 1`] = `"
              "`; + +exports[`ssr snapshot test > ssr test packages/components/input/_example/auto-width.tsx 1`] = `"
              宽度自适应
              "`; + +exports[`ssr snapshot test > ssr test packages/components/input/_example/base.tsx 1`] = `"
              "`; + +exports[`ssr snapshot test > ssr test packages/components/input/_example/borderless.tsx 1`] = `"
              "`; + +exports[`ssr snapshot test > ssr test packages/components/input/_example/clearable.tsx 1`] = `"
              "`; + +exports[`ssr snapshot test > ssr test packages/components/input/_example/disabled.tsx 1`] = `"
              "`; + +exports[`ssr snapshot test > ssr test packages/components/input/_example/format.tsx 1`] = `"
              请输入数字
              "`; + +exports[`ssr snapshot test > ssr test packages/components/input/_example/group.tsx 1`] = `"
               - 
              "`; + +exports[`ssr snapshot test > ssr test packages/components/input/_example/max-length-count.tsx 1`] = `"
              0/10
              0/10
              0/5
              0/5
              "`; + +exports[`ssr snapshot test > ssr test packages/components/input/_example/password.tsx 1`] = `"
              "`; + +exports[`ssr snapshot test > ssr test packages/components/input/_example/size.tsx 1`] = `"
              "`; + +exports[`ssr snapshot test > ssr test packages/components/input/_example/status.tsx 1`] = `"
              这是普通文本提示
              校验通过文本提示
              校验不通过文本提示
              校验存在严重问题文本提示
              "`; + +exports[`ssr snapshot test > ssr test packages/components/input/_example/textarea.tsx 1`] = `"
              "`; + +exports[`ssr snapshot test > ssr test packages/components/input-adornment/_example/select.tsx 1`] = `"
              请选择
              请选择
              请选择
              请选择
              "`; + +exports[`ssr snapshot test > ssr test packages/components/input-adornment/_example/text.tsx 1`] = `"
              http://
              请输入
              .com
              http://
              .com
              "`; + +exports[`ssr snapshot test > ssr test packages/components/input-number/_example/align.tsx 1`] = `"
              "`; + +exports[`ssr snapshot test > ssr test packages/components/input-number/_example/auto-width.tsx 1`] = `"
              请输入
              "`; + +exports[`ssr snapshot test > ssr test packages/components/input-number/_example/center.tsx 1`] = `"
              请输入
              "`; + +exports[`ssr snapshot test > ssr test packages/components/input-number/_example/default.tsx 1`] = `"
              "`; + +exports[`ssr snapshot test > ssr test packages/components/input-number/_example/format.tsx 1`] = `"
              "`; + +exports[`ssr snapshot test > ssr test packages/components/input-number/_example/large-number.tsx 1`] = `"
              "`; + +exports[`ssr snapshot test > ssr test packages/components/input-number/_example/left.tsx 1`] = `"
              "`; + +exports[`ssr snapshot test > ssr test packages/components/input-number/_example/normal.tsx 1`] = `"
              机器:
              金额:
              "`; + +exports[`ssr snapshot test > ssr test packages/components/input-number/_example/size.tsx 1`] = `"
              "`; + +exports[`ssr snapshot test > ssr test packages/components/input-number/_example/status.tsx 1`] = `"
              这是普通文本提示
              校验通过文本提示
              校验不通过文本提示
              校验存在严重问题文本提示
              "`; + +exports[`ssr snapshot test > ssr test packages/components/input-number/_example/step.tsx 1`] = `"
              "`; + +exports[`ssr snapshot test > ssr test packages/components/layout/_example/aside.tsx 1`] = `"

              侧边导航布局

              Content
              Copyright @ 2019-2020 Tencent. All Rights Reserved
              "`; + +exports[`ssr snapshot test > ssr test packages/components/layout/_example/base.tsx 1`] = `"

              顶部导航布局

              Header
              Content
              Copyright @ 2019-2021 Tencent. All Rights Reserved

              侧边导航布局

              Content
              Copyright @ 2019-2021 Tencent. All Rights Reserved

              组合导航布局

              Header
              Content
              Copyright @ 2019-2021 Tencent. All Rights Reserved

              Header
              Content
              Copyright @ 2019-2021 Tencent. All Rights Reserved

              Header
              Content
              Copyright @ 2019-2021 Tencent. All Rights Reserved
              "`; + +exports[`ssr snapshot test > ssr test packages/components/layout/_example/combine.tsx 1`] = `"
              • 已选内容
              • 菜单内容一
              • 菜单内容二
              • 菜单内容三
              Content
              Copyright @ 2019-2020 Tencent. All Rights Reserved
              "`; + +exports[`ssr snapshot test > ssr test packages/components/layout/_example/top.tsx 1`] = `"
              • 已选内容
              • 菜单内容一
              • 菜单内容二
              • 菜单内容三
              Content
              Copyright @ 2019-2020 Tencent. All Rights Reserved
              "`; + +exports[`ssr snapshot test > ssr test packages/components/link/_example/base.tsx 1`] = `"跳转链接"`; + +exports[`ssr snapshot test > ssr test packages/components/link/_example/disabled.tsx 1`] = `""`; + +exports[`ssr snapshot test > ssr test packages/components/link/_example/hover.tsx 1`] = `""`; + +exports[`ssr snapshot test > ssr test packages/components/link/_example/icon.tsx 1`] = `""`; + +exports[`ssr snapshot test > ssr test packages/components/link/_example/size.tsx 1`] = `""`; + +exports[`ssr snapshot test > ssr test packages/components/link/_example/theme.tsx 1`] = `""`; + +exports[`ssr snapshot test > ssr test packages/components/link/_example/underline.tsx 1`] = `""`; + +exports[`ssr snapshot test > ssr test packages/components/list/_example/asyncLoading.tsx 1`] = `"
              • 列表内容列表内容列表内容
              • 列表内容列表内容列表内容
              • 列表内容列表内容列表内容
              • 列表内容列表内容列表内容
              "`; + +exports[`ssr snapshot test > ssr test packages/components/list/_example/base.tsx 1`] = `"
              "`; + +exports[`ssr snapshot test > ssr test packages/components/list/_example/header-footer.tsx 1`] = `"
              这里是 Header
              • 列表内容列表内容列表内容
              • 列表内容列表内容列表内容
              • 列表内容列表内容列表内容
              • 列表内容列表内容列表内容

              通过 TNode 插入的 Header

              • 列表内容列表内容列表内容
              • 列表内容列表内容列表内容
              • 列表内容列表内容列表内容
              • 列表内容列表内容列表内容
              "`; + +exports[`ssr snapshot test > ssr test packages/components/list/_example/image-text.tsx 1`] = `"
              • 列表主内容

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

              • 列表主内容

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

              • 列表主内容

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

              • 列表主内容

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

              "`; + +exports[`ssr snapshot test > ssr test packages/components/list/_example/multiline.tsx 1`] = `"
              • 列表主内容

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

              • 列表主内容

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

              • 列表主内容

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

              • 列表主内容

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

              "`; + +exports[`ssr snapshot test > ssr test packages/components/list/_example/operation.tsx 1`] = `"
              • 列表主内容

                列表内容列表内容

              • 列表主内容

                列表内容列表内容

              "`; + +exports[`ssr snapshot test > ssr test packages/components/list/_example/scroll.tsx 1`] = `"
                "`; + +exports[`ssr snapshot test > ssr test packages/components/list/_example/size.tsx 1`] = `"

                尺寸-小

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

                尺寸-中(默认)

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

                尺寸-大

                • 列表内容列表内容列表内容
                • 列表内容列表内容列表内容
                • 列表内容列表内容列表内容
                • 列表内容列表内容列表内容
                "`; + +exports[`ssr snapshot test > ssr test packages/components/list/_example/stripe.tsx 1`] = `"
                • 列表内容列表内容列表内容
                • 列表内容列表内容列表内容
                • 列表内容列表内容列表内容
                • 列表内容列表内容列表内容
                "`; + +exports[`ssr snapshot test > ssr test packages/components/list/_example/virtual-scroll.tsx 1`] = `"
                  "`; + +exports[`ssr snapshot test > ssr test packages/components/loading/_example/base.tsx 1`] = `"
                  "`; + +exports[`ssr snapshot test > ssr test packages/components/loading/_example/delay.tsx 1`] = `"
                  "`; + +exports[`ssr snapshot test > ssr test packages/components/loading/_example/fullscreen.tsx 1`] = `"Loading state:"`; + +exports[`ssr snapshot test > ssr test packages/components/loading/_example/icon-text.tsx 1`] = `"
                  拼命加载中...
                  "`; + +exports[`ssr snapshot test > ssr test packages/components/loading/_example/service.tsx 1`] = `"
                  我是service的容器
                  "`; + +exports[`ssr snapshot test > ssr test packages/components/loading/_example/size.tsx 1`] = `"
                  加载中...(小)
                  加载中...(中)
                  加载中...(大)
                  "`; + +exports[`ssr snapshot test > ssr test packages/components/loading/_example/text.tsx 1`] = `"
                  静态文字加载中...
                  "`; + +exports[`ssr snapshot test > ssr test packages/components/loading/_example/wrap.tsx 1`] = `"
                  this is loading component
                  this is loading component
                  this is loading component
                  this is loading component
                  this is loading component
                  "`; + +exports[`ssr snapshot test > ssr test packages/components/menu/_example/closable-side.tsx 1`] = `"
                  • 仪表盘
                  • 资源列表
                  • 调度平台
                  • 精准监控
                  • 根目录
                  • 消息区
                  "`; + +exports[`ssr snapshot test > ssr test packages/components/menu/_example/custom-header.tsx 1`] = `"
                  • 菜单1
                  • 菜单2
                  • 菜单3
                  • 菜单4
                  • 菜单1
                  • 菜单2
                  • 菜单3
                  • 菜单4
                  "`; + +exports[`ssr snapshot test > ssr test packages/components/menu/_example/custom-side.tsx 1`] = `"
                  • 仪表盘
                  • 资源列表
                  • 视频区
                  • 根目录
                  • 调度平台
                  • 精准监控
                  • 个人中心
                  • 仪表盘
                  • 资源列表
                  • 视频区
                  • 根目录
                  • 调度平台
                  • 精准监控
                  • 个人中心
                  "`; + +exports[`ssr snapshot test > ssr test packages/components/menu/_example/double.tsx 1`] = `"
                  • 菜单1
                  • 菜单2
                  • 菜单3
                  • 菜单4
                    子菜单1
                    子菜单2
                  • 菜单1
                  • 菜单2
                  • 菜单3
                  • 菜单4
                    子菜单1
                    子菜单2
                  "`; + +exports[`ssr snapshot test > ssr test packages/components/menu/_example/group-side.tsx 1`] = `"
                    主导航
                  • 仪表盘
                  • 组件
                  • 列表项
                    • 基础列表项
                    • 卡片列表项
                    • 筛选列表项
                    • 树状筛选列表项
                  • 表单项
                  • 详情页
                  • 结果页
                  • 更多
                  • 个人页
                  • 登录页
                  "`; + +exports[`ssr snapshot test > ssr test packages/components/menu/_example/multi-side.tsx 1`] = `"
                  • 仪表盘
                  • 资源列表
                    • 菜单二
                  • 调度平台
                    • 二级菜单-1
                      • 三级菜单-1
                      • 三级菜单-2
                      • 三级菜单-3
                    • 二级菜单-2
                  • 精准监控
                    • 二级菜单-1
                    • 二级菜单-2
                  • 根目录
                  • 消息区
                    • 二级菜单-1
                    • 二级菜单-2
                  • 仪表盘
                  • 资源列表
                    • 二级菜单-1
                      • 三级菜单-1
                      • 三级菜单-2
                      • 三级菜单-3
                  • 调度平台
                    • 二级菜单-1
                    • 二级菜单-2
                  • 精准监控
                    • 二级菜单-1
                    • 二级菜单-2
                  • 根目录
                  • 消息区
                    • 二级菜单-1
                    • 二级菜单-2
                  "`; + +exports[`ssr snapshot test > ssr test packages/components/menu/_example/multiple.tsx 1`] = `"
                  • 电器
                  • 女装
                  • 水果蔬菜
                  • 其他
                  • 电器
                  • 女装
                  • 水果蔬菜
                  • 其他
                  "`; + +exports[`ssr snapshot test > ssr test packages/components/menu/_example/popup-side.tsx 1`] = `"
                  • 仪表盘
                  • 资源列表
                  • 调度平台
                  • 精准监控
                  • 根目录
                  • 消息区
                  • 仪表盘
                  • 资源列表
                  • 调度平台
                  • 精准监控
                  • 根目录
                  • 消息区
                  "`; + +exports[`ssr snapshot test > ssr test packages/components/menu/_example/single.tsx 1`] = `"
                  • 菜单1
                  • 菜单2
                  • 菜单3
                  • 菜单4
                  • 菜单1
                  • 菜单2
                  • 菜单3
                  • 菜单4
                  "`; + +exports[`ssr snapshot test > ssr test packages/components/menu/_example/single-side.tsx 1`] = `"
                  • 仪表盘
                  • 资源列表
                  • 视频区
                  • 根目录
                  • 调度平台
                  • 精准监控
                  • 个人中心
                  • 仪表盘
                  • 资源列表
                  • 视频区
                  • 根目录
                  • 调度平台
                  • 精准监控
                  • 个人中心
                  "`; + +exports[`ssr snapshot test > ssr test packages/components/message/_example/base.tsx 1`] = `"
                  用户表示普通操作信息提示
                  用于表示操作顺利达成
                  用户表示操作引起一定后果
                  用于表示操作引起严重的后果
                  用于帮助用户操作的信息提示
                  "`; + +exports[`ssr snapshot test > ssr test packages/components/message/_example/close.tsx 1`] = `"
                  默认关闭按钮
                  自定义关闭按钮(文字)关闭
                  自定义关闭按钮(函数)
                  x
                  自定义关闭按钮(ReactNode)
                  x
                  "`; + +exports[`ssr snapshot test > ssr test packages/components/message/_example/close-all.tsx 1`] = `"
                  "`; + +exports[`ssr snapshot test > ssr test packages/components/message/_example/close-function.tsx 1`] = `""`; + +exports[`ssr snapshot test > ssr test packages/components/message/_example/config.tsx 1`] = `"
                  "`; + +exports[`ssr snapshot test > ssr test packages/components/message/_example/duration.tsx 1`] = `"
                  "`; + +exports[`ssr snapshot test > ssr test packages/components/message/_example/loading.tsx 1`] = `"
                  用于表示操作正在生效的过程中
                  用于表示操作顺利达成(10s)
                  用于表示普通操作失败中断(10s)
                  "`; + +exports[`ssr snapshot test > ssr test packages/components/message/_example/methods.tsx 1`] = `"
                  "`; + +exports[`ssr snapshot test > ssr test packages/components/message/_example/offset.tsx 1`] = `"
                  "`; + +exports[`ssr snapshot test > ssr test packages/components/notification/_example/attach.tsx 1`] = `"
                  "`; + +exports[`ssr snapshot test > ssr test packages/components/notification/_example/base.tsx 1`] = `"
                  标题名称
                  这是一条消息通知
                  "`; + +exports[`ssr snapshot test > ssr test packages/components/notification/_example/close-all.tsx 1`] = `"
                  "`; + +exports[`ssr snapshot test > ssr test packages/components/notification/_example/content.tsx 1`] = `"
                  自定义内容(字符串)
                  这是一条消息通知
                  自定义内容
                  这是一条消息通知
                  "`; + +exports[`ssr snapshot test > ssr test packages/components/notification/_example/footer.tsx 1`] = `"
                  自定义底部详情
                  这是一条消息通知
                  重启查看详情
                  "`; + +exports[`ssr snapshot test > ssr test packages/components/notification/_example/icon.tsx 1`] = `"
                  普通通知
                  这是一条消息通知这是一条消息通知这是一条消息通知这是一条消息通知这是一条消息通知这是一条消息通知这是一条消息通知
                  危险通知
                  这是一条消息通知这是一条消息通知这是一条消息通知这是一条消息通知这是一条消息通知这是一条消息通知这是一条消息通知
                  告警通知
                  这是一条消息通知这是一条消息通知这是一条消息通知这是一条消息通知这是一条消息通知这是一条消息通知这是一条消息通知
                  成功通知
                  这是一条消息通知这是一条消息通知这是一条消息通知这是一条消息通知这是一条消息通知这是一条消息通知这是一条消息通知
                  "`; + +exports[`ssr snapshot test > ssr test packages/components/notification/_example/operation.tsx 1`] = `"
                  超出的文本省略号显示
                  文案不限长度,但是展示最大显示三行折行的末尾显示折行末尾显示折行末尾显示折行末尾显示折行末尾显示折行折行末尾显示折行折行末尾显示折行末尾显示折行折行末尾
                  自定义底部
                  使用 props function 自定义底部内容
                  自定义标题 我是副标题
                  1. 使用 props function 自定义标题;2. 使用插槽自定义底部内容
                  自定义标题 我是副标题
                  1. 使用插槽自定义标题 2. 使用插槽自定义底部内容
                  自定义内容
                  使用插槽自定义内容
                  "`; + +exports[`ssr snapshot test > ssr test packages/components/notification/_example/placement.tsx 1`] = `"
                  "`; + +exports[`ssr snapshot test > ssr test packages/components/notification/_example/plugin.tsx 1`] = `"
                  "`; + +exports[`ssr snapshot test > ssr test packages/components/notification/_example/toggle.tsx 1`] = `""`; + +exports[`ssr snapshot test > ssr test packages/components/pagination/_example/base.tsx 1`] = `"
                  共 100 条数据
                  请选择
                  • 1
                  • 2
                  • 3
                  • 4
                  • 5
                  • 20
                  "`; + +exports[`ssr snapshot test > ssr test packages/components/pagination/_example/jump.tsx 1`] = `"
                  共 645 条数据
                  请选择
                  • 1
                  • 2
                  • 3
                  • 4
                  • 5
                  • 33
                  跳至
                  / 33 页
                  "`; + +exports[`ssr snapshot test > ssr test packages/components/pagination/_example/mini.tsx 1`] = `"
                  共 100 条数据
                  请选择
                  • 1
                  • 2
                  • 3
                  • 4
                  • 5
                  • 20
                  "`; + +exports[`ssr snapshot test > ssr test packages/components/pagination/_example/more.tsx 1`] = `"
                  展示首尾页码省略
                  共 100 条数据
                  请选择
                  • 1
                  • 2
                  • 3
                  • 4
                  • 5
                  • 20
                  不展示首尾页码省略
                  共 100 条数据
                  请选择
                  • 1
                  • 2
                  • 3
                  • 4
                  • 5
                  "`; + +exports[`ssr snapshot test > ssr test packages/components/pagination/_example/page-num.tsx 1`] = `"
                  共 645 条数据
                  请选择
                  • 1
                  • 2
                  • 3
                  • 4
                  • 5
                  • 33
                  "`; + +exports[`ssr snapshot test > ssr test packages/components/pagination/_example/pagination-mini.tsx 1`] = `"
                  layout:
                  size:
                  "`; + +exports[`ssr snapshot test > ssr test packages/components/pagination/_example/simple.tsx 1`] = `"
                  共 100 条数据
                  请选择
                  跳至
                  / 20 页
                  "`; + +exports[`ssr snapshot test > ssr test packages/components/pagination/_example/simple-mini.tsx 1`] = `"
                  共 100 条数据
                  请选择
                  跳至
                  / 20 页
                  "`; + +exports[`ssr snapshot test > ssr test packages/components/pagination/_example/total.tsx 1`] = `"
                  共 685 条数据
                  请选择
                  • 1
                  • 2
                  • 3
                  • 4
                  • 5
                  • 69
                  "`; + +exports[`ssr snapshot test > ssr test packages/components/popconfirm/_example/base.tsx 1`] = `"
                  "`; + +exports[`ssr snapshot test > ssr test packages/components/popconfirm/_example/button.tsx 1`] = `"
                  "`; + +exports[`ssr snapshot test > ssr test packages/components/popconfirm/_example/describe.tsx 1`] = `"
                  "`; + +exports[`ssr snapshot test > ssr test packages/components/popconfirm/_example/extends.tsx 1`] = `""`; + +exports[`ssr snapshot test > ssr test packages/components/popconfirm/_example/icon.tsx 1`] = `"
                  "`; + +exports[`ssr snapshot test > ssr test packages/components/popconfirm/_example/inherit.tsx 1`] = `"
                  "`; + +exports[`ssr snapshot test > ssr test packages/components/popconfirm/_example/placement.tsx 1`] = `"
                  "`; + +exports[`ssr snapshot test > ssr test packages/components/popconfirm/_example/theme.tsx 1`] = `"
                  "`; + +exports[`ssr snapshot test > ssr test packages/components/popup/_example/base.tsx 1`] = `""`; + +exports[`ssr snapshot test > ssr test packages/components/popup/_example/container.tsx 1`] = `"
                  "`; + +exports[`ssr snapshot test > ssr test packages/components/popup/_example/destroy.tsx 1`] = `""`; + +exports[`ssr snapshot test > ssr test packages/components/popup/_example/disabled.tsx 1`] = `""`; + +exports[`ssr snapshot test > ssr test packages/components/popup/_example/dynamic.tsx 1`] = `""`; + +exports[`ssr snapshot test > ssr test packages/components/popup/_example/placement.tsx 1`] = `"
                  "`; + +exports[`ssr snapshot test > ssr test packages/components/popup/_example/plugin.tsx 1`] = `"
                  这里是一个日志查询的例子,在很长的日志内容中,日志内容存在换行的情况,可以点击链接进行日志查询操作点击此链接,会打开浮层进行跳转操作
                  "`; + +exports[`ssr snapshot test > ssr test packages/components/popup/_example/popper-options.tsx 1`] = `"
                  请输入横向偏移量:
                  请输入纵向偏移量:
                  "`; + +exports[`ssr snapshot test > ssr test packages/components/popup/_example/style.tsx 1`] = `"
                  "`; + +exports[`ssr snapshot test > ssr test packages/components/popup/_example/trigger.tsx 1`] = `"
                  "`; + +exports[`ssr snapshot test > ssr test packages/components/popup/_example/trigger-element.tsx 1`] = `"
                  "`; + +exports[`ssr snapshot test > ssr test packages/components/popup/_example/visible.tsx 1`] = `""`; + +exports[`ssr snapshot test > ssr test packages/components/progress/_example/circle.tsx 1`] = `"
                  默认样式
                  0%
                  不显示数字
                  自定义内容
                  75 day
                  进度完成
                  进度发生错误
                  进度被中断
                  自定义颜色
                  小尺寸
                  0%
                  默认尺寸
                  0%
                  大尺寸
                  0%
                  自定义尺寸
                  0%
                  "`; + +exports[`ssr snapshot test > ssr test packages/components/progress/_example/line.tsx 1`] = `"

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

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

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

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

                  30%

                  30%
                  "`; + +exports[`ssr snapshot test > ssr test packages/components/qrcode/_example/base.tsx 1`] = `"
                  "`; + +exports[`ssr snapshot test > ssr test packages/components/qrcode/_example/customColor.tsx 1`] = `"
                  "`; + +exports[`ssr snapshot test > ssr test packages/components/qrcode/_example/customSize.tsx 1`] = `"

                  "`; + +exports[`ssr snapshot test > ssr test packages/components/qrcode/_example/customStatusRender.tsx 1`] = `"

                  加载中...

                  二维码过期

                  点击刷新

                  已扫描
                  "`; + +exports[`ssr snapshot test > ssr test packages/components/qrcode/_example/download.tsx 1`] = `"
                  "`; + +exports[`ssr snapshot test > ssr test packages/components/qrcode/_example/icon.tsx 1`] = `"
                  "`; + +exports[`ssr snapshot test > ssr test packages/components/qrcode/_example/level.tsx 1`] = `"
                  "`; + +exports[`ssr snapshot test > ssr test packages/components/qrcode/_example/popover.tsx 1`] = `""`; + +exports[`ssr snapshot test > ssr test packages/components/qrcode/_example/status.tsx 1`] = `"

                  二维码过期

                  点击刷新

                  已扫描

                  "`; + +exports[`ssr snapshot test > ssr test packages/components/qrcode/_example/type.tsx 1`] = `"
                  "`; + +exports[`ssr snapshot test > ssr test packages/components/radio/_example/base.tsx 1`] = `"
                  "`; + +exports[`ssr snapshot test > ssr test packages/components/radio/_example/group.tsx 1`] = `"
                  "`; + +exports[`ssr snapshot test > ssr test packages/components/radio/_example/size.tsx 1`] = `"
                  "`; + +exports[`ssr snapshot test > ssr test packages/components/radio/_example/type.tsx 1`] = `"
                  普通单选按钮
                  边框型单选按钮
                  填充型单选按钮
                  "`; + +exports[`ssr snapshot test > ssr test packages/components/range-input/_example/base.tsx 1`] = `"
                  -
                  "`; + +exports[`ssr snapshot test > ssr test packages/components/range-input/_example/popup.tsx 1`] = `"
                  -
                  "`; + +exports[`ssr snapshot test > ssr test packages/components/range-input/_example/size.tsx 1`] = `"
                  -
                  -
                  -
                  "`; + +exports[`ssr snapshot test > ssr test packages/components/range-input/_example/status.tsx 1`] = `"
                  -
                  -
                  -
                  "`; + +exports[`ssr snapshot test > ssr test packages/components/rate/_example/base.tsx 1`] = `"
                  "`; + +exports[`ssr snapshot test > ssr test packages/components/rate/_example/clearable.tsx 1`] = `"

                  clearable: true

                  clearable: false

                  "`; + +exports[`ssr snapshot test > ssr test packages/components/rate/_example/custom.tsx 1`] = `"
                  "`; + +exports[`ssr snapshot test > ssr test packages/components/rate/_example/icon.tsx 1`] = `"
                  "`; + +exports[`ssr snapshot test > ssr test packages/components/rate/_example/size.tsx 1`] = `"

                  16px

                  24px

                  "`; + +exports[`ssr snapshot test > ssr test packages/components/rate/_example/status.tsx 1`] = `"

                  未评分状态

                  满分状态

                  半星状态

                  "`; + +exports[`ssr snapshot test > ssr test packages/components/rate/_example/texts.tsx 1`] = `"
                  满意
                  "`; + +exports[`ssr snapshot test > ssr test packages/components/select/_example/base.tsx 1`] = `"
                  "`; + +exports[`ssr snapshot test > ssr test packages/components/select/_example/collapsed.tsx 1`] = `"

                  default:

                  请选择

                  use collapsedItems:

                  size control:
                  disabled control:
                  readonly control:
                  请选择
                  "`; + +exports[`ssr snapshot test > ssr test packages/components/select/_example/creatable.tsx 1`] = `"
                  请选择
                  "`; + +exports[`ssr snapshot test > ssr test packages/components/select/_example/custom-options.tsx 1`] = `"
                  "`; + +exports[`ssr snapshot test > ssr test packages/components/select/_example/custom-selected.tsx 1`] = `"
                  请选择
                  "`; + +exports[`ssr snapshot test > ssr test packages/components/select/_example/disabled.tsx 1`] = `"
                  "`; + +exports[`ssr snapshot test > ssr test packages/components/select/_example/filterable.tsx 1`] = `"
                  -请选择-
                  "`; + +exports[`ssr snapshot test > ssr test packages/components/select/_example/group.tsx 1`] = `"
                  请选择
                  "`; + +exports[`ssr snapshot test > ssr test packages/components/select/_example/keys.tsx 1`] = `"
                  请选择
                  "`; + +exports[`ssr snapshot test > ssr test packages/components/select/_example/label-in-value.tsx 1`] = `"
                  请选择
                  "`; + +exports[`ssr snapshot test > ssr test packages/components/select/_example/max.tsx 1`] = `"
                  请选择
                  "`; + +exports[`ssr snapshot test > ssr test packages/components/select/_example/multiple.tsx 1`] = `"
                  请选择
                  请选择云产品
                  "`; + +exports[`ssr snapshot test > ssr test packages/components/select/_example/noborder.tsx 1`] = `"
                  "`; + +exports[`ssr snapshot test > ssr test packages/components/select/_example/options.tsx 1`] = `"
                  "`; + +exports[`ssr snapshot test > ssr test packages/components/select/_example/panel.tsx 1`] = `"
                  "`; + +exports[`ssr snapshot test > ssr test packages/components/select/_example/popup-props.tsx 1`] = `"
                  "`; + +exports[`ssr snapshot test > ssr test packages/components/select/_example/prefix.tsx 1`] = `"
                  "`; + +exports[`ssr snapshot test > ssr test packages/components/select/_example/remote-search.tsx 1`] = `"
                  "`; + +exports[`ssr snapshot test > ssr test packages/components/select/_example/scroll-bottom.tsx 1`] = `"
                  "`; + +exports[`ssr snapshot test > ssr test packages/components/select/_example/scroll-top.tsx 1`] = `"
                  "`; + +exports[`ssr snapshot test > ssr test packages/components/select/_example/size.tsx 1`] = `"
                  "`; + +exports[`ssr snapshot test > ssr test packages/components/select/_example/status.tsx 1`] = `"
                  "`; + +exports[`ssr snapshot test > ssr test packages/components/select/_example/virtual-scroll.tsx 1`] = `"
                  "`; + +exports[`ssr snapshot test > ssr test packages/components/select-input/_example/autocomplete.tsx 1`] = `"
                  "`; + +exports[`ssr snapshot test > ssr test packages/components/select-input/_example/autowidth.tsx 1`] = `"
                  tdesign-vue
                  "`; + +exports[`ssr snapshot test > ssr test packages/components/select-input/_example/autowidth-multiple.tsx 1`] = `"
                  Vue
                  +2
                  "`; + +exports[`ssr snapshot test > ssr test packages/components/select-input/_example/borderless.tsx 1`] = `"
                  "`; + +exports[`ssr snapshot test > ssr test packages/components/select-input/_example/borderless-multiple.tsx 1`] = `"
                  Vue
                  +2
                  "`; + +exports[`ssr snapshot test > ssr test packages/components/select-input/_example/collapsed-items.tsx 1`] = `"
                  tdesign-vue
                  +5


                  tdesign-vue
                  tdesign-react
                  More(+4)
                  "`; + +exports[`ssr snapshot test > ssr test packages/components/select-input/_example/custom-tag.tsx 1`] = `"
                  tdesign-vue


                  tdesign-vue
                  tdesign-react


                  tdesign-vuetdesign-reacttdesign-mobile-vue
                  tdesign-vuetdesign-reacttdesign-mobile-vue
                  tdesign-vuetdesign-reacttdesign-mobile-vue
                  "`; + +exports[`ssr snapshot test > ssr test packages/components/select-input/_example/excess-tags-display-type.tsx 1`] = `"

                  第一种呈现方式:超出时滚动显示


                  tdesign-vue
                  tdesign-react
                  tdesign-miniprogram
                  tdesign-angular
                  tdesign-mobile-vue
                  tdesign-mobile-react



                  第二种呈现方式:超出时换行显示


                  tdesign-vue
                  tdesign-react
                  tdesign-miniprogram
                  tdesign-angular
                  tdesign-mobile-vue
                  tdesign-mobile-react
                  "`; + +exports[`ssr snapshot test > ssr test packages/components/select-input/_example/label-suffix.tsx 1`] = `"
                  前置内容:


                  单位:元
                  "`; + +exports[`ssr snapshot test > ssr test packages/components/select-input/_example/multiple.tsx 1`] = `"



                  Vue
                  React
                  Miniprogram
                  "`; + +exports[`ssr snapshot test > ssr test packages/components/select-input/_example/single.tsx 1`] = `"
                  "`; + +exports[`ssr snapshot test > ssr test packages/components/select-input/_example/status.tsx 1`] = `"
                  禁用状态:
                  这是禁用状态的文本
                  只读状态:
                  这是只读状态的文本提示
                  成功状态:
                  校验通过文本提示
                  警告状态:
                  校验不通过文本提示
                  错误状态:
                  校验存在严重问题文本提示
                  加载状态:
                  处于加载状态的文本提示
                  "`; + +exports[`ssr snapshot test > ssr test packages/components/select-input/_example/width.tsx 1`] = `"
                  下拉框默认宽度:

                  下拉框最大宽度:

                  与内容宽度一致:

                  下拉框固定宽度:

                  "`; + +exports[`ssr snapshot test > ssr test packages/components/skeleton/_example/advance.tsx 1`] = `"
                  组合成网页效果
                  image
                  image
                  image
                  确定

                  标题

                  内容
                  组合成列表效果
                  "`; + +exports[`ssr snapshot test > ssr test packages/components/skeleton/_example/animation.tsx 1`] = `"
                  渐变加载动画
                  闪烁加载动画
                  "`; + +exports[`ssr snapshot test > ssr test packages/components/skeleton/_example/base.tsx 1`] = `"
                  "`; + +exports[`ssr snapshot test > ssr test packages/components/skeleton/_example/delay.tsx 1`] = `"
                  "`; + +exports[`ssr snapshot test > ssr test packages/components/skeleton/_example/theme.tsx 1`] = `"
                  文本
                  头像
                  段落
                  头像描述
                  选项卡
                  文章
                  "`; -exports[`ssr snapshot test > ssr test packages/components/alert/_example/base.tsx 1`] = `"
                  这是一条成功的消息提示
                  这是一条普通的消息提示
                  这是一条警示消息
                  高危操作/出错信息提示
                  "`; +exports[`ssr snapshot test > ssr test packages/components/slider/_example/base.tsx 1`] = `"
                  "`; -exports[`ssr snapshot test > ssr test packages/components/alert/_example/close.tsx 1`] = `"
                  这是一条成功的消息提示
                  这是一条普通的消息提示
                  知道了
                  这是一条警示消息
                  FunctionPropClose
                  高危操作/出错信息提示
                  关闭
                  "`; +exports[`ssr snapshot test > ssr test packages/components/slider/_example/disabled.tsx 1`] = `"
                  "`; -exports[`ssr snapshot test > ssr test packages/components/alert/_example/collapse.tsx 1`] = `"
                  1.这是一条普通的消息提示描述,
                  2.这是一条普通的消息提示描述,
                  展开更多
                  "`; +exports[`ssr snapshot test > ssr test packages/components/slider/_example/input-number.tsx 1`] = `"
                  "`; -exports[`ssr snapshot test > ssr test packages/components/alert/_example/icon.tsx 1`] = `"
                  这是一条成功的消息提示
                  这是一条普通的消息提示
                  这是一条警示消息
                  高危操作/出错信息提示
                  "`; +exports[`ssr snapshot test > ssr test packages/components/slider/_example/input-number-vertical.tsx 1`] = `"
                  "`; -exports[`ssr snapshot test > ssr test packages/components/alert/_example/operation.tsx 1`] = `"
                  这是一条成功的消息提示
                  相关操作
                  这是一条普通的消息提示
                  相关操作
                  这是一条警示消息
                  相关操作
                  高危操作/出错信息提示
                  相关操作
                  "`; +exports[`ssr snapshot test > ssr test packages/components/slider/_example/marks.tsx 1`] = `"
                  0°C
                  12°C
                  37°C
                  0°C
                  8°C
                  37°C
                  50°C
                  70°C
                  "`; -exports[`ssr snapshot test > ssr test packages/components/alert/_example/swiper.tsx 1`] = `"
                  这是一条成功的消息提示
                  这是一条普通的消息提示
                  这是一条警示消息
                  高危操作/出错信息提示
                  "`; +exports[`ssr snapshot test > ssr test packages/components/slider/_example/min-and-max.tsx 1`] = `"
                  min:10
                  max:30
                  min:10
                  max:30
                  "`; -exports[`ssr snapshot test > ssr test packages/components/alert/_example/title.tsx 1`] = `"
                  这是一条普通的消息提示
                  这是一条普通的消息提示描述,这是一条普通的消息提示描述
                  相关操作
                  "`; +exports[`ssr snapshot test > ssr test packages/components/slider/_example/step.tsx 1`] = `"
                  "`; -exports[`ssr snapshot test > ssr test packages/components/anchor/_example/base.tsx 1`] = `""`; +exports[`ssr snapshot test > ssr test packages/components/slider/_example/vertical.tsx 1`] = `"
                  "`; -exports[`ssr snapshot test > ssr test packages/components/anchor/_example/container.tsx 1`] = `"
                  content-1
                  content-2
                  content-3
                  content-4
                  content-5
                  "`; +exports[`ssr snapshot test > ssr test packages/components/slider/_example/vertical-marks.tsx 1`] = `"
                  0°C
                  12°C
                  37°C
                  0°C
                  8°C
                  37°C
                  50°C
                  70°C
                  "`; -exports[`ssr snapshot test > ssr test packages/components/anchor/_example/cursor.tsx 1`] = `""`; +exports[`ssr snapshot test > ssr test packages/components/space/_example/align.tsx 1`] = `"
                  start
                  center
                  end
                  baseline
                  "`; -exports[`ssr snapshot test > ssr test packages/components/anchor/_example/customize-highlight.tsx 1`] = `""`; +exports[`ssr snapshot test > ssr test packages/components/space/_example/base.tsx 1`] = `"
                  "`; -exports[`ssr snapshot test > ssr test packages/components/anchor/_example/large.tsx 1`] = `""`; +exports[`ssr snapshot test > ssr test packages/components/space/_example/break-line.tsx 1`] = `"
                  "`; -exports[`ssr snapshot test > ssr test packages/components/anchor/_example/multiple.tsx 1`] = `""`; +exports[`ssr snapshot test > ssr test packages/components/space/_example/separator.tsx 1`] = `"
                  "`; -exports[`ssr snapshot test > ssr test packages/components/anchor/_example/small.tsx 1`] = `""`; +exports[`ssr snapshot test > ssr test packages/components/space/_example/size.tsx 1`] = `"

                  "`; -exports[`ssr snapshot test > ssr test packages/components/anchor/_example/target.tsx 1`] = `"

                  基础锚点

                  多级锚点

                  尺寸大小

                  指定容器

                  "`; +exports[`ssr snapshot test > ssr test packages/components/space/_example/vertical.tsx 1`] = `"
                  仅有内容区域的卡片形式。卡片内容区域可以是文字、图片、表单、表格等形式信息内容。可使用大中小不同的卡片尺寸,按业务需求进行呈现。
                  仅有内容区域的卡片形式。卡片内容区域可以是文字、图片、表单、表格等形式信息内容。可使用大中小不同的卡片尺寸,按业务需求进行呈现。
                  仅有内容区域的卡片形式。卡片内容区域可以是文字、图片、表单、表格等形式信息内容。可使用大中小不同的卡片尺寸,按业务需求进行呈现。
                  "`; -exports[`ssr snapshot test > ssr test packages/components/auto-complete/_example/base.tsx 1`] = `"
                  "`; +exports[`ssr snapshot test > ssr test packages/components/statistic/_example/animation.tsx 1`] = `"
                  Total Assets
                  0.00%
                  "`; -exports[`ssr snapshot test > ssr test packages/components/auto-complete/_example/filter.tsx 1`] = `"
                  "`; +exports[`ssr snapshot test > ssr test packages/components/statistic/_example/base.tsx 1`] = `"
                  Total Assets
                  82.76%
                  Total Assets
                  82.76USD
                  "`; -exports[`ssr snapshot test > ssr test packages/components/auto-complete/_example/option.tsx 1`] = `"
                  "`; +exports[`ssr snapshot test > ssr test packages/components/statistic/_example/color.tsx 1`] = `"
                  Total Assets
                  82.76%
                  Total Assets
                  82.76%
                  Total Assets
                  82.76%
                  Total Assets
                  82.76%
                  Total Assets
                  82.76%
                  "`; -exports[`ssr snapshot test > ssr test packages/components/auto-complete/_example/size.tsx 1`] = `"
                  小尺寸:
                  中尺寸:
                  大尺寸:
                  "`; +exports[`ssr snapshot test > ssr test packages/components/statistic/_example/combination.tsx 1`] = `"
                  Total Assets
                  82.76%
                  Total Assets
                  52.18%
                  Yesterday traffic
                  Voice duration
                  789minute
                  the day before 9%
                  Total number of voice DAUs
                  188
                  the day before
                  9%
                  last week
                  9%
                  Total Assets
                  52.18%
                  "`; -exports[`ssr snapshot test > ssr test packages/components/auto-complete/_example/status.tsx 1`] = `"
                  这是禁用状态
                  这是只读状态
                  这是普通状态
                  这是告警状态
                  这是错误状态
                  这是成功状态
                  "`; +exports[`ssr snapshot test > ssr test packages/components/statistic/_example/loading.tsx 1`] = `"
                  Downloads
                  "`; -exports[`ssr snapshot test > ssr test packages/components/auto-complete/_example/trigger-element.tsx 1`] = `"
                  "`; +exports[`ssr snapshot test > ssr test packages/components/statistic/_example/slot.tsx 1`] = `"
                  Total Assets
                  56.32%
                  Total Assets
                  $176,059%
                  Total Assets
                  62.58%
                  "`; -exports[`ssr snapshot test > ssr test packages/components/avatar/_example/adjust.tsx 1`] = `"
                  王亿
                  王亿亿
                  "`; +exports[`ssr snapshot test > ssr test packages/components/statistic/_example/trend.tsx 1`] = `"
                  Total Assets
                  82.76%
                  Total Assets
                  82.76%
                  Total Assets
                  82.76%
                  "`; -exports[`ssr snapshot test > ssr test packages/components/avatar/_example/base.tsx 1`] = `"
                  图片加载中
                  W
                  "`; +exports[`ssr snapshot test > ssr test packages/components/steps/_example/extra.tsx 1`] = `"
                  步骤1
                  这里是提示文字
                  2
                  步骤2
                  这里是提示文字
                  3
                  步骤3
                  这里是提示文字
                  4
                  步骤4
                  这里是提示文字
                  "`; -exports[`ssr snapshot test > ssr test packages/components/avatar/_example/group.tsx 1`] = `"
                  图片加载中
                  W
                  图片加载中
                  W
                  "`; +exports[`ssr snapshot test > ssr test packages/components/steps/_example/icon.tsx 1`] = `"
                  登录
                  已完成状态
                  购物
                  进行中状态
                  支付
                  未开始
                  完成
                  未开始
                  "`; -exports[`ssr snapshot test > ssr test packages/components/avatar/_example/group-cascading.tsx 1`] = `"
                  图片加载中
                  W
                  图片加载中
                  W
                  "`; +exports[`ssr snapshot test > ssr test packages/components/steps/_example/no-sequence.tsx 1`] = `"
                  已完成的步骤
                  这里是提示文字
                  进行中的步骤
                  这里是提示文字
                  未进行的步骤
                  这里是提示文字
                  未进行的步骤
                  这里是提示文字
                  "`; -exports[`ssr snapshot test > ssr test packages/components/avatar/_example/group-max.tsx 1`] = `"
                  图片加载中
                  Avatar
                  +1
                  图片加载中
                  Avatar
                  图片加载中
                  Avatar
                  more
                  "`; +exports[`ssr snapshot test > ssr test packages/components/steps/_example/sequence.tsx 1`] = `"
                  已完成的步骤
                  这里是提示文字
                  2
                  进行中的步骤
                  这里是提示文字
                  3
                  未进行的步骤
                  这里是提示文字
                  4
                  未进行的步骤
                  这里是提示文字
                  已完成的步骤
                  这里是提示文字
                  已完成的步骤
                  这里是提示文字
                  3
                  进行中的步骤
                  这里是提示文字
                  4
                  未进行的步骤
                  这里是提示文字
                  "`; -exports[`ssr snapshot test > ssr test packages/components/avatar/_example/shape.tsx 1`] = `"
                  W
                  W
                  "`; +exports[`ssr snapshot test > ssr test packages/components/steps/_example/status.tsx 1`] = `"
                  已完成的步骤
                  这里是提示文字
                  2
                  进行中的步骤
                  这里是提示文字
                  3
                  未进行的步骤
                  这里是提示文字
                  4
                  未进行的步骤
                  这里是提示文字
                  已完成的步骤
                  这里是提示文字
                  2
                  进行中的步骤
                  这里是提示文字
                  错误的步骤
                  优先展示\`t-step\`中设置的 status
                  4
                  未进行的步骤
                  这里是提示文字
                  "`; -exports[`ssr snapshot test > ssr test packages/components/avatar/_example/size.tsx 1`] = `"
                  W
                  W
                  W
                  W
                  W
                  W
                  W
                  W
                  test
                  图片加载中
                  图片加载中
                  图片加载中
                  图片加载中
                  "`; +exports[`ssr snapshot test > ssr test packages/components/steps/_example/vertical-no-sequence.tsx 1`] = `"
                  已完成的步骤
                  这里是提示文字
                  进行中的步骤
                  这里是提示文字
                  未进行的步骤
                  这里是提示文字
                  未进行的步骤
                  这里是提示文字
                  未进行的步骤
                  这里是提示文字
                  进行中的步骤
                  这里是提示文字
                  已完成的步骤
                  这里是提示文字
                  已完成的步骤
                  这里是提示文字
                  "`; -exports[`ssr snapshot test > ssr test packages/components/back-top/_example/baseList.tsx 1`] = `"
                  • 列表内容
                  • 列表内容
                  • 列表内容
                  • 列表内容
                  • 列表内容
                  • 列表内容
                  • 列表内容
                  • 列表内容
                  • 列表内容
                  • 列表内容
                  • 列表内容
                  • 列表内容
                  • 列表内容
                  • 列表内容
                  • 列表内容
                  • 列表内容
                  • 列表内容
                  • 列表内容
                  • 列表内容
                  • 列表内容
                  • 列表内容
                  • 列表内容
                  • 列表内容
                  • 列表内容
                  • 列表内容
                  • 列表内容
                  • 列表内容
                  • 列表内容
                  • 列表内容
                  • 列表内容
                  • 列表内容
                  • 列表内容
                  • 列表内容
                  • 列表内容
                  • 列表内容
                  • 列表内容
                  • 列表内容
                  • 列表内容
                  • 列表内容
                  • 列表内容
                  • 列表内容
                  • 列表内容
                  • 列表内容
                  • 列表内容
                  • 列表内容
                  • 列表内容
                  • 列表内容
                  • 列表内容
                  • 列表内容
                  • 列表内容
                  "`; +exports[`ssr snapshot test > ssr test packages/components/steps/_example/vertical-sequence.tsx 1`] = `"
                  已完成的步骤
                  这里是提示文字
                  2
                  进行中的步骤
                  这里是提示文字
                  3
                  未进行的步骤
                  这里是提示文字
                  4
                  未进行的步骤
                  这里是提示文字
                  4
                  未进行的步骤
                  这里是提示文字
                  3
                  进行中的步骤
                  这里是提示文字
                  已完成的步骤
                  这里是提示文字
                  已完成的步骤
                  这里是提示文字
                  "`; -exports[`ssr snapshot test > ssr test packages/components/back-top/_example/baseListSmall.tsx 1`] = `"
                  • 列表内容
                  • 列表内容
                  • 列表内容
                  • 列表内容
                  • 列表内容
                  • 列表内容
                  • 列表内容
                  • 列表内容
                  • 列表内容
                  • 列表内容
                  • 列表内容
                  • 列表内容
                  • 列表内容
                  • 列表内容
                  • 列表内容
                  • 列表内容
                  • 列表内容
                  • 列表内容
                  • 列表内容
                  • 列表内容
                  • 列表内容
                  • 列表内容
                  • 列表内容
                  • 列表内容
                  • 列表内容
                  • 列表内容
                  • 列表内容
                  • 列表内容
                  • 列表内容
                  • 列表内容
                  • 列表内容
                  • 列表内容
                  • 列表内容
                  • 列表内容
                  • 列表内容
                  • 列表内容
                  • 列表内容
                  • 列表内容
                  • 列表内容
                  • 列表内容
                  • 列表内容
                  • 列表内容
                  • 列表内容
                  • 列表内容
                  • 列表内容
                  • 列表内容
                  • 列表内容
                  • 列表内容
                  • 列表内容
                  • 列表内容
                  "`; +exports[`ssr snapshot test > ssr test packages/components/sticky-tool/_example/base.tsx 1`] = `"
                  chat
                  add
                  qrcode
                  "`; -exports[`ssr snapshot test > ssr test packages/components/back-top/_example/custom.tsx 1`] = `"
                  "`; +exports[`ssr snapshot test > ssr test packages/components/sticky-tool/_example/compact.tsx 1`] = `"
                  "`; -exports[`ssr snapshot test > ssr test packages/components/back-top/_example/shape.tsx 1`] = `"
                  "`; +exports[`ssr snapshot test > ssr test packages/components/sticky-tool/_example/shape.tsx 1`] = `"
                  chat
                  add
                  qrcode
                  chat
                  add
                  qrcode
                  "`; -exports[`ssr snapshot test > ssr test packages/components/back-top/_example/size.tsx 1`] = `"
                  "`; +exports[`ssr snapshot test > ssr test packages/components/swiper/_example/base.tsx 1`] = `"
                  6
                  1
                  2
                  3
                  4
                  5
                  6
                  1
                  "`; -exports[`ssr snapshot test > ssr test packages/components/back-top/_example/theme.tsx 1`] = `"
                  "`; +exports[`ssr snapshot test > ssr test packages/components/swiper/_example/card.tsx 1`] = `"
                  1
                  2
                  3
                  4
                  5
                  6
                  "`; -exports[`ssr snapshot test > ssr test packages/components/badge/_example/base.tsx 1`] = `"解锁新徽章"`; +exports[`ssr snapshot test > ssr test packages/components/swiper/_example/current.tsx 1`] = `"
                  6
                  1
                  2
                  3
                  4
                  5
                  6
                  1
                  "`; -exports[`ssr snapshot test > ssr test packages/components/badge/_example/color.tsx 1`] = `"
                  "`; +exports[`ssr snapshot test > ssr test packages/components/swiper/_example/fade.tsx 1`] = `"
                  6
                  1
                  2
                  3
                  4
                  5
                  6
                  1
                  "`; -exports[`ssr snapshot test > ssr test packages/components/badge/_example/custom.tsx 1`] = `"
                  hot
                  new
                  100
                  hot
                  new
                  new
                  "`; +exports[`ssr snapshot test > ssr test packages/components/swiper/_example/fraction.tsx 1`] = `"
                  6
                  1
                  2
                  3
                  4
                  5
                  6
                  1
                  1/6
                  "`; -exports[`ssr snapshot test > ssr test packages/components/badge/_example/number.tsx 1`] = `"29999+"`; +exports[`ssr snapshot test > ssr test packages/components/swiper/_example/placement.tsx 1`] = `"
                  6
                  1
                  2
                  3
                  4
                  5
                  6
                  1
                  "`; -exports[`ssr snapshot test > ssr test packages/components/badge/_example/offset.tsx 1`] = `"22222"`; +exports[`ssr snapshot test > ssr test packages/components/swiper/_example/size.tsx 1`] = `"

                  large

                  6
                  1
                  2
                  3
                  4
                  5
                  6
                  1

                  small

                  6
                  1
                  2
                  3
                  4
                  5
                  6
                  1
                  "`; -exports[`ssr snapshot test > ssr test packages/components/badge/_example/shape.tsx 1`] = `"299"`; +exports[`ssr snapshot test > ssr test packages/components/swiper/_example/vertical.tsx 1`] = `"
                  6
                  1
                  2
                  3
                  4
                  5
                  6
                  1
                  "`; -exports[`ssr snapshot test > ssr test packages/components/badge/_example/size.tsx 1`] = `"

                  1.默认大小

                  29999+

                  2.小

                  29999+"`; +exports[`ssr snapshot test > ssr test packages/components/switch/_example/base.tsx 1`] = `"
                  "`; -exports[`ssr snapshot test > ssr test packages/components/breadcrumb/_example/base.tsx 1`] = `"
                  页面1
                  页面2页面2页面2页面2页面2页面2页面2页面2
                  页面3页面3页面3页面3页面3页面3页面3页面3页面3页面3页面3页面3页面3页面3页面3
                  "`; +exports[`ssr snapshot test > ssr test packages/components/switch/_example/beforeChange.tsx 1`] = `"
                  "`; -exports[`ssr snapshot test > ssr test packages/components/breadcrumb/_example/custom.tsx 1`] = `"
                  页面1>>
                  页面2>>
                  页面3>>
                  页面1/////
                  页面2/////
                  页面3/////
                  "`; +exports[`ssr snapshot test > ssr test packages/components/switch/_example/describe.tsx 1`] = `"
                  "`; -exports[`ssr snapshot test > ssr test packages/components/breadcrumb/_example/custom-ellipsis.tsx 1`] = `"
                  页面1
                  页面2
                  页面5
                  页面1
                  页面2
                  页面5
                  "`; +exports[`ssr snapshot test > ssr test packages/components/switch/_example/size.tsx 1`] = `"
                  "`; -exports[`ssr snapshot test > ssr test packages/components/breadcrumb/_example/ellipsis.tsx 1`] = `"
                  页面1
                  页面2
                  页面5
                  页面1
                  页面2
                  页面5
                  "`; +exports[`ssr snapshot test > ssr test packages/components/switch/_example/status.tsx 1`] = `"
                  "`; -exports[`ssr snapshot test > ssr test packages/components/breadcrumb/_example/href.tsx 1`] = `"
                  页面2
                  页面3
                  点击计数器:0
                  "`; +exports[`ssr snapshot test > ssr test packages/components/table/_example/affix.tsx 1`] = `"
                  共 38 条数据
                  请选择
                  • 1
                  • 2
                  • 3
                  • 4
                  • 5
                  • 6
                  • 7
                  • 8
                  "`; -exports[`ssr snapshot test > ssr test packages/components/breadcrumb/_example/icon.tsx 1`] = `"
                  页面1
                  页面2
                  页面3
                  "`; +exports[`ssr snapshot test > ssr test packages/components/table/_example/async-loading.tsx 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 packages/components/breadcrumb/_example/options.tsx 1`] = `"
                  页面1
                  页面2
                  "`; +exports[`ssr snapshot test > ssr test packages/components/table/_example/base.tsx 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
                  共 28 条数据
                  请选择
                  • 1
                  • 2
                  • 3
                  • 4
                  • 5
                  • 6
                  跳至
                  / 6 页
                  "`; -exports[`ssr snapshot test > ssr test packages/components/breadcrumb/_example/to.tsx 1`] = `""`; +exports[`ssr snapshot test > ssr test packages/components/table/_example/custom-cell.tsx 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 packages/components/breadcrumb/_example/width.tsx 1`] = `"
                  父级设置100px父级设置100px
                  设置最大宽度160px设置最大宽度160px设置最大宽度160px
                  设置最大宽度240px设置最大宽度240px设置最大宽度240px设置最大宽度240px设置最大宽度240px
                  父级设置100px父级设置100px
                  "`; +exports[`ssr snapshot test > ssr test packages/components/table/_example/custom-col.tsx 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
                  共 100 条数据
                  请选择
                  • 1
                  • 2
                  • 3
                  • 4
                  • 5
                  • 20
                  "`; -exports[`ssr snapshot test > ssr test packages/components/button/_example/base.tsx 1`] = `"
                  "`; +exports[`ssr snapshot test > ssr test packages/components/table/_example/custom-col-button.tsx 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
                  共 100 条数据
                  请选择
                  • 1
                  • 2
                  • 3
                  • 4
                  • 5
                  • 20
                  "`; -exports[`ssr snapshot test > ssr test packages/components/button/_example/block.tsx 1`] = `"
                  "`; +exports[`ssr snapshot test > ssr test packages/components/table/_example/custom-footer.tsx 1`] = `"
                  申请人
                  审批状态
                  签署方式
                  邮箱地址
                  申请时间
                  贾明
                  审批通过
                  电子签署
                  w.cezkdudy@lhll.au
                  2022-01-01
                  张三
                  审批失败
                  纸质签署
                  r.nmgw@peurezgn.sl
                  2022-02-01
                  王芳
                  审批过期
                  纸质签署
                  p.cumx@rampblpa.ru
                  2022-03-01
                  表尾信息
                  表尾信息
                  表尾信息
                  表尾信息
                  表尾信息
                  "`; -exports[`ssr snapshot test > ssr test packages/components/button/_example/custom-element.tsx 1`] = `""`; +exports[`ssr snapshot test > ssr test packages/components/table/_example/custom-header.tsx 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
                  "`; -exports[`ssr snapshot test > ssr test packages/components/button/_example/ghost.tsx 1`] = `"
                  "`; +exports[`ssr snapshot test > ssr test packages/components/table/_example/data-sort.tsx 1`] = `"
                  申请人
                  申请状态
                  申请耗时(天)
                  签署方式
                  邮箱地址
                  申请时间
                  贾明
                  审批通过
                  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 packages/components/button/_example/icon.tsx 1`] = `"
                  "`; +exports[`ssr snapshot test > ssr test packages/components/table/_example/drag-col-sort.tsx 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 packages/components/button/_example/shape.tsx 1`] = `"
                  "`; +exports[`ssr snapshot test > ssr test packages/components/table/_example/drag-sort.tsx 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 packages/components/button/_example/size.tsx 1`] = `"
                  "`; +exports[`ssr snapshot test > ssr test packages/components/table/_example/drag-sort-handler.tsx 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 packages/components/button/_example/status.tsx 1`] = `"
                  填充按钮
                  "`; +exports[`ssr snapshot test > ssr test packages/components/table/_example/editable-cell.tsx 1`] = `"
                  申请人
                  申请状态
                  申请事项
                  创建日期
                  请选择
                  请选择
                  请选择
                  请选择
                  "`; -exports[`ssr snapshot test > ssr test packages/components/button/_example/theme.tsx 1`] = `"
                  "`; +exports[`ssr snapshot test > ssr test packages/components/table/_example/editable-row.tsx 1`] = `"


                  申请人
                  申请状态
                  申请事项
                  创建日期
                  操作栏
                  请输入
                  请选择
                  请选择
                  "`; -exports[`ssr snapshot test > ssr test packages/components/calendar/_example/base.tsx 1`] = `"
                  请选择
                  请选择
                  隐藏周末
                  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
                  "`; +exports[`ssr snapshot test > ssr test packages/components/table/_example/ellipsis.tsx 1`] = `"
                  申请人
                  审批状态
                  签署方式(超长标题示例)
                  邮箱地址
                  申请事项
                  审核时间
                  操作
                  贾明(kyrieJia)
                  审批通过
                  电子签署
                  w.cezkdudy@lhll.au
                  宣传物料制作费用
                  2021-11-01
                  张三(threeZhang)
                  审批失败
                  纸质签署
                  r.nmgw@peurezgn.sl
                  algolia 服务报销
                  2021-12-01
                  王芳(fangWang)
                  审批过期
                  纸质签署
                  p.cumx@rampblpa.ru
                  相关周边制作费
                  2022-01-01
                  贾明(kyrieJia)
                  审批通过
                  电子签署
                  w.cezkdudy@lhll.au
                  激励奖品快递费
                  2022-02-01
                  张三(threeZhang)
                  审批失败
                  纸质签署
                  r.nmgw@peurezgn.sl
                  宣传物料制作费用
                  2021-11-01
                  "`; -exports[`ssr snapshot test > ssr test packages/components/calendar/_example/card.tsx 1`] = `"
                  请选择
                  请选择
                  30
                  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
                  "`; +exports[`ssr snapshot test > ssr test packages/components/table/_example/empty.tsx 1`] = `"
                  项目名称
                  管理员
                  所属公司
                  暂无数据
                  项目名称
                  管理员
                  所属公司
                  😄 it is empty. 😁
                  "`; -exports[`ssr snapshot test > ssr test packages/components/calendar/_example/cell.tsx 1`] = `"
                  请选择
                  请选择
                  隐藏周末
                  30
                  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
                  "`; +exports[`ssr snapshot test > ssr test packages/components/table/_example/expandable.tsx 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 packages/components/calendar/_example/cell-append.tsx 1`] = `"
                  请选择
                  请选择
                  隐藏周末
                  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
                  "`; +exports[`ssr snapshot test > ssr test packages/components/table/_example/filter-controlled.tsx 1`] = `"
                  已选筛选条件:{"lastName":[]}
                  申请人
                  申请状态
                  签署方式
                  Email
                  Date
                  搜索“”,找到 5 条结果
                  贾明
                  审批通过
                  电子签署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
                  共 0 条数据
                  请选择
                  • 1
                  跳至
                  / 1 页
                  "`; -exports[`ssr snapshot test > ssr test packages/components/calendar/_example/controller-config.tsx 1`] = `"
                  控件全局



                  控件局部






                  请选择
                  请选择
                  隐藏周末
                  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
                  "`; +exports[`ssr snapshot test > ssr test packages/components/table/_example/fixed-column.tsx 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 packages/components/calendar/_example/events.tsx 1`] = `"
                  请选择
                  请选择
                  隐藏周末
                  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
                  "`; +exports[`ssr snapshot test > ssr test packages/components/table/_example/fixed-header.tsx 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 packages/components/calendar/_example/filter.tsx 1`] = `"
                  请选择
                  请选择
                  隐藏周末
                  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
                  "`; +exports[`ssr snapshot test > ssr test packages/components/table/_example/fixed-header-col.tsx 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 packages/components/calendar/_example/first-day-of-week.tsx 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 packages/components/table/_example/lazy.tsx 1`] = `"
                  申请人
                  申请状态
                  申请事项
                  邮箱地址
                  申请时间
                  "`; -exports[`ssr snapshot test > ssr test packages/components/calendar/_example/head.tsx 1`] = `"
                  🗓 TDesign开发计划
                  请选择
                  请选择
                  隐藏周末
                  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
                  "`; +exports[`ssr snapshot test > ssr test packages/components/table/_example/loading.tsx 1`] = `"
                  集群名称
                  状态
                  管理员
                  描述
                  集群名称
                  状态
                  管理员
                  描述
                  集群名称
                  状态
                  管理员
                  描述
                  "`; -exports[`ssr snapshot test > ssr test packages/components/calendar/_example/mode.tsx 1`] = `"
                  请选择
                  请选择
                  隐藏周末
                  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
                  "`; +exports[`ssr snapshot test > ssr test packages/components/table/_example/merge-cells.tsx 1`] = `"
                  申请人
                  申请状态
                  审批事项
                  邮箱地址
                  其他信息
                  "`; -exports[`ssr snapshot test > ssr test packages/components/calendar/_example/range.tsx 1`] = `"
                  请选择
                  请选择
                  隐藏周末
                  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
                  "`; +exports[`ssr snapshot test > ssr test packages/components/table/_example/multi-header.tsx 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 packages/components/calendar/_example/slot-props-api.tsx 1`] = `"
                  2020-12 工作安排
                  请选择
                  请选择
                  隐藏周末
                  30
                  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
                  "`; +exports[`ssr snapshot test > ssr test packages/components/table/_example/multiple-sort.tsx 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 packages/components/calendar/_example/value.tsx 1`] = `"
                  请选择
                  请选择
                  隐藏周末
                  26
                  27
                  28
                  29
                  30
                  31
                  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
                  01
                  02
                  03
                  04
                  05
                  06
                  "`; +exports[`ssr snapshot test > ssr test packages/components/table/_example/pagination.tsx 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
                  共 59 条数据
                  请选择
                  • 1
                  • 2
                  • 3
                  • 4
                  • 5
                  • 12
                  跳至
                  / 12 页
                  "`; -exports[`ssr snapshot test > ssr test packages/components/calendar/_example/week.tsx 1`] = `"
                  请选择
                  请选择
                  隐藏周末
                  星期1
                  星期2
                  星期3
                  星期4
                  星期5
                  星期6
                  星期7
                  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
                  "`; +exports[`ssr snapshot test > ssr test packages/components/table/_example/select-multiple.tsx 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 packages/components/card/_example/base.tsx 1`] = `"
                  标题
                  操作
                  仅有内容区域的卡片形式。卡片内容区域可以是文字、图片、表单、表格等形式信息内容。可使用大中小不同的卡片尺寸,按业务需求进行呈现。
                  "`; +exports[`ssr snapshot test > ssr test packages/components/table/_example/select-single.tsx 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 packages/components/card/_example/bordered.tsx 1`] = `"
                  仅有内容区域的卡片形式。卡片内容区域可以是文字、图片、表单、表格等形式信息内容。可使用大中小不同的卡片尺寸,按业务需求进行呈现。
                  "`; +exports[`ssr snapshot test > ssr test packages/components/table/_example/single-sort.tsx 1`] = `"
                  排序方式:{"sortBy":"status","descending":true}
                  申请人
                  申请状态
                  申请耗时(天)
                  签署方式
                  申请时间
                  贾明
                  审批通过
                  2电子签署2022-01-01
                  张三
                  审批失败
                  3纸质签署2022-02-01
                  王芳
                  审批过期
                  1纸质签署2022-03-01
                  贾明
                  审批通过
                  4电子签署2022-04-01
                  "`; -exports[`ssr snapshot test > ssr test packages/components/card/_example/bordered-none.tsx 1`] = `"
                  标题
                  仅有内容区域的卡片形式。卡片内容区域可以是文字、图片、表单、表格等形式信息内容。可使用大中小不同的卡片尺寸,按业务需求进行呈现。
                  "`; +exports[`ssr snapshot test > ssr test packages/components/table/_example/style.tsx 1`] = `"
                  申请人
                  审批状态
                  申请耗时(天)
                  签署方式
                  邮箱地址
                  申请时间
                  贾明
                  审批通过
                  2电子签署
                  w.cezkdudy@lhll.au
                  2022-01-01
                  张三
                  审批失败
                  10纸质签署
                  r.nmgw@peurezgn.sl
                  2022-02-01
                  王芳
                  审批过期
                  1纸质签署
                  p.cumx@rampblpa.ru
                  2022-03-01
                  贾明
                  审批通过
                  2电子签署
                  w.cezkdudy@lhll.au
                  2022-04-01
                  张三
                  审批失败
                  10纸质签署
                  r.nmgw@peurezgn.sl
                  2022-01-01
                  汇总:近期数据波动较大
                  "`; -exports[`ssr snapshot test > ssr test packages/components/card/_example/custom-loading-props.tsx 1`] = `"
                  自定义loadingProps Card
                  仅有内容区域的卡片形式。卡片内容区域可以是文字、图片、表单、表格等形式信息内容。可使用大中小不同的卡片尺寸,按业务需求进行呈现。
                  TDesign努力加载中...
                  "`; +exports[`ssr snapshot test > ssr test packages/components/table/_example/tree.tsx 1`] = `"
                  排序
                  编号
                  名称
                  签署方式
                  操作
                  0
                  申请人 0_1 号
                  电子签署
                  1
                  申请人 1_1 号
                  纸质签署
                  2
                  申请人 2_1 号
                  电子签署
                  3
                  申请人 3_1 号
                  纸质签署
                  4
                  申请人 4_1 号
                  电子签署
                  66666
                  申请人懒加载节点 66666,点我体验
                  电子签署
                  88888
                  申请人懒加载节点 88888,点我体验
                  电子签署
                  共 100 条数据
                  请选择
                  • 1
                  • 2
                  • 3
                  • 4
                  • 5
                  • 6
                  • 7
                  • 8
                  • 9
                  • 10
                  "`; -exports[`ssr snapshot test > ssr test packages/components/card/_example/footer.tsx 1`] = `"
                  默认标签
                  "`; +exports[`ssr snapshot test > ssr test packages/components/table/_example/tree-select.tsx 1`] = `"
                  序号
                  申请人
                  状态
                  申请事项
                  "`; -exports[`ssr snapshot test > ssr test packages/components/card/_example/footer-actions.tsx 1`] = `"
                  "`; +exports[`ssr snapshot test > ssr test packages/components/table/_example/virtual-scroll.tsx 1`] = `"
                  序号
                  申请人
                  申请状态
                  申请事项
                  邮箱地址
                  申请时间
                  "`; -exports[`ssr snapshot test > ssr test packages/components/card/_example/footer-content.tsx 1`] = `"
                  "`; +exports[`ssr snapshot test > ssr test packages/components/tabs/_example/ban.tsx 1`] = `"
                  选项卡1
                  选项卡2
                  选项卡3
                  选项卡1内容区
                  "`; -exports[`ssr snapshot test > ssr test packages/components/card/_example/footer-content-actions.tsx 1`] = `"
                  "`; +exports[`ssr snapshot test > ssr test packages/components/tabs/_example/base.tsx 1`] = `"
                  选项卡1
                  选项卡2
                  选项卡3

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

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

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

                  "`; -exports[`ssr snapshot test > ssr test packages/components/card/_example/header.tsx 1`] = `"
                  标题
                  卡片内容,以描述性为主,可以是文字、图片或图文组合的形式。按业务需求进行自定义组合。
                  "`; +exports[`ssr snapshot test > ssr test packages/components/tabs/_example/combination.tsx 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 packages/components/card/_example/header-all-props.tsx 1`] = `"
                  标题
                  副标题

                  描述

                  操作
                  卡片内容,以描述性为主,可以是文字、图片或图文组合的形式。按业务需求进行自定义组合。
                  "`; +exports[`ssr snapshot test > ssr test packages/components/tabs/_example/custom.tsx 1`] = `"
                  选项卡 1
                  选项卡 2
                  选项卡 3
                  选项卡 4
                  选项卡 5
                  选项卡 6
                  选项卡 7
                  选项卡 8
                  选项卡 9
                  选项卡 10
                  选项卡 1内容区
                  "`; -exports[`ssr snapshot test > ssr test packages/components/card/_example/header-bordered.tsx 1`] = `"
                  标题
                  卡片内容,以描述性为主,可以是文字、图片或图文组合的形式。按业务需求进行自定义组合。
                  "`; +exports[`ssr snapshot test > ssr test packages/components/tabs/_example/drag-sort.tsx 1`] = `"
                  选项卡一
                  选项卡二
                  选项卡三

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

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

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

                  "`; -exports[`ssr snapshot test > ssr test packages/components/card/_example/header-description.tsx 1`] = `"
                  标题

                  描述

                  操作
                  卡片内容,以描述性为主,可以是文字、图片或图文组合的形式。按业务需求进行自定义组合。
                  "`; +exports[`ssr snapshot test > ssr test packages/components/tabs/_example/icon.tsx 1`] = `"
                  选项卡1
                  选项卡2
                  选项卡3
                  选项卡1内容区
                  "`; -exports[`ssr snapshot test > ssr test packages/components/card/_example/header-footer-actions.tsx 1`] = `"
                  图片加载中
                  标题

                  卡片内容

                  "`; +exports[`ssr snapshot test > ssr test packages/components/tabs/_example/lazy-load.tsx 1`] = `"
                  选项卡1
                  选项卡2
                  选项卡3

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

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

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

                  "`; -exports[`ssr snapshot test > ssr test packages/components/card/_example/header-subtitle.tsx 1`] = `"
                  标题
                  副标题
                  操作
                  卡片内容,以描述性为主,可以是文字、图片或图文组合的形式。按业务需求进行自定义组合。
                  "`; +exports[`ssr snapshot test > ssr test packages/components/tabs/_example/operation.tsx 1`] = `"
                  选项卡1
                  选项卡1
                  "`; -exports[`ssr snapshot test > ssr test packages/components/card/_example/header-subtitle-footer-actions.tsx 1`] = `"
                  标题
                  副标题
                  "`; +exports[`ssr snapshot test > ssr test packages/components/tabs/_example/position.tsx 1`] = `"
                  选项卡1
                  选项卡2
                  选项卡3
                  选项卡1内容区
                  "`; -exports[`ssr snapshot test > ssr test packages/components/cascader/_example/base.tsx 1`] = `"
                  "`; +exports[`ssr snapshot test > ssr test packages/components/tabs/_example/size.tsx 1`] = `"
                  选项卡1
                  选项卡2
                  选项卡1内容区
                  选项卡1
                  选项卡2
                  选项卡1内容区
                  "`; -exports[`ssr snapshot test > ssr test packages/components/cascader/_example/check-strictly.tsx 1`] = `"
                  请选择
                  "`; +exports[`ssr snapshot test > ssr test packages/components/tabs/_example/theme.tsx 1`] = `"
                  选项卡1
                  选项卡2
                  选项卡1
                  选项卡2
                  "`; -exports[`ssr snapshot test > ssr test packages/components/cascader/_example/collapsed.tsx 1`] = `"
                  请选择
                  请选择
                  "`; +exports[`ssr snapshot test > ssr test packages/components/tag/_example/base.tsx 1`] = `"
                  标签一
                  标签一
                  标签二
                  标签三
                  标签四
                  灰标签
                  标签一
                  标签二
                  标签三
                  标签四
                  灰标签
                  标签一
                  标签二
                  标签三
                  标签四
                  灰标签
                  标签一
                  标签二
                  标签三
                  标签四
                  "`; -exports[`ssr snapshot test > ssr test packages/components/cascader/_example/custom-options.tsx 1`] = `"
                  "`; +exports[`ssr snapshot test > ssr test packages/components/tag/_example/check-tag-group.tsx 1`] = `"
                  标签1
                  标签2
                  标签3
                  标签4
                  标签5
                  标签6
                  标签1
                  标签2
                  标签3
                  标签4
                  标签5
                  标签6
                  标签1
                  标签2
                  标签3
                  标签4
                  标签5
                  标签6
                  TAG_A(1)
                  TAG_B(2)
                  TAG_C(3)
                  TAG_D(4)
                  TAG_E(5)
                  TAG_F(6)
                  "`; -exports[`ssr snapshot test > ssr test packages/components/cascader/_example/disabled.tsx 1`] = `"
                  请选择
                  "`; +exports[`ssr snapshot test > ssr test packages/components/tag/_example/custom-color.tsx 1`] = `"
                  #0052D9
                  default
                  light
                  outline
                  light-outline
                  "`; -exports[`ssr snapshot test > ssr test packages/components/cascader/_example/ellipsis.tsx 1`] = `"
                  "`; +exports[`ssr snapshot test > ssr test packages/components/tag/_example/delete.tsx 1`] = `"
                  可删除标签0
                  可删除标签1
                  可删除标签2
                  可添加标签
                  "`; -exports[`ssr snapshot test > ssr test packages/components/cascader/_example/filterable.tsx 1`] = `"
                  请选择
                  "`; +exports[`ssr snapshot test > ssr test packages/components/tag/_example/icon.tsx 1`] = `"
                  默认标签
                  "`; -exports[`ssr snapshot test > ssr test packages/components/cascader/_example/keys.tsx 1`] = `"
                  请选择
                  "`; +exports[`ssr snapshot test > ssr test packages/components/tag/_example/long-text.tsx 1`] = `"
                  默认超八个字超长文本标签超长省略文本标签
                  "`; -exports[`ssr snapshot test > ssr test packages/components/cascader/_example/load.tsx 1`] = `"
                  请选择
                  "`; +exports[`ssr snapshot test > ssr test packages/components/tag/_example/selectable.tsx 1`] = `"
                  选中/未选态
                  选中态
                  未选态
                  选中禁用
                  未选禁用
                  选中/未选态
                  选中态
                  未选态
                  选中禁用
                  未选禁用
                  Outline Tag
                  Checked
                  Unchecked
                  Disabled
                  Disabled
                  "`; -exports[`ssr snapshot test > ssr test packages/components/cascader/_example/max.tsx 1`] = `"
                  请选择
                  "`; +exports[`ssr snapshot test > ssr test packages/components/tag/_example/shape.tsx 1`] = `"
                  标签一
                  标签一
                  标签一
                  标签一
                  标签一
                  标签一
                  "`; -exports[`ssr snapshot test > ssr test packages/components/cascader/_example/multiple.tsx 1`] = `"
                  请选择
                  "`; +exports[`ssr snapshot test > ssr test packages/components/tag/_example/size.tsx 1`] = `"
                  小型标签
                  默认标签
                  大型标签
                  小型标签
                  默认标签
                  大型标签
                  "`; -exports[`ssr snapshot test > ssr test packages/components/cascader/_example/panel.tsx 1`] = `"
                  暂无数据
                  暂无数据
                  "`; +exports[`ssr snapshot test > ssr test packages/components/tag-input/_example/auto-width.tsx 1`] = `"
                  Vue
                  React
                  "`; -exports[`ssr snapshot test > ssr test packages/components/cascader/_example/show-all-levels.tsx 1`] = `"
                  请选择
                  "`; +exports[`ssr snapshot test > ssr test packages/components/tag-input/_example/base.tsx 1`] = `"
                  Vue
                  React
                  Angular
                  Controlled:
                  Vue
                  React
                  UnControlled:
                  Vue
                  React
                  "`; -exports[`ssr snapshot test > ssr test packages/components/cascader/_example/size.tsx 1`] = `"
                  "`; +exports[`ssr snapshot test > ssr test packages/components/tag-input/_example/collapsed.tsx 1`] = `"
                  Vue
                  +4
                  Vue
                  React
                  Miniprogram
                  More(2)
                  "`; -exports[`ssr snapshot test > ssr test packages/components/cascader/_example/trigger.tsx 1`] = `"
                  "`; +exports[`ssr snapshot test > ssr test packages/components/tag-input/_example/custom-tag.tsx 1`] = `"
                  StudentA
                  StudentB
                  +1


                  StudentA
                  StudentB
                  StudentC
                  "`; -exports[`ssr snapshot test > ssr test packages/components/cascader/_example/value-display.tsx 1`] = `"
                  单选:
                  (2.2)
                  多选:
                  请选择
                  "`; +exports[`ssr snapshot test > ssr test packages/components/tag-input/_example/draggable.tsx 1`] = `"
                  Vue
                  React
                  Angular
                  Controlled:
                  Vue
                  React
                  Angular
                  Miniprogram
                  "`; -exports[`ssr snapshot test > ssr test packages/components/cascader/_example/value-mode.tsx 1`] = `"
                  请选择
                  请选择
                  请选择
                  "`; +exports[`ssr snapshot test > ssr test packages/components/tag-input/_example/excess.tsx 1`] = `"
                  Scroll:
                  Vue
                  React
                  BreakLine:
                  Vue
                  React
                  "`; -exports[`ssr snapshot test > ssr test packages/components/cascader/_example/value-type.tsx 1`] = `"
                  ["1","1.1"]
                  [["1","1.1"],["1","1.2"]]
                  请选择
                  "`; +exports[`ssr snapshot test > ssr test packages/components/tag-input/_example/max.tsx 1`] = `"
                  最多只能输入 3 个标签
                  "`; -exports[`ssr snapshot test > ssr test packages/components/checkbox/_example/base.tsx 1`] = `"
                  "`; +exports[`ssr snapshot test > ssr test packages/components/tag-input/_example/max-row.tsx 1`] = `"

                  最大高度为2

                  小尺寸:
                  Vue
                  React
                  Angular
                  Svelte
                  Solid
                  MiniProgram
                  Flutter
                  UniApp
                  Html5
                  Css3
                  JavaScript
                  TypeScript
                  Node.js
                  Python
                  Java
                  Go
                  Rust
                  C++

                  最大高度为3

                  中等尺寸:
                  Vue
                  React
                  Angular
                  Svelte
                  Solid
                  MiniProgram
                  Flutter
                  UniApp
                  Html5
                  Css3
                  JavaScript
                  TypeScript
                  Node.js
                  Python
                  Java
                  Go
                  Rust
                  C++

                  最大高度为4

                  大尺寸:
                  Vue
                  React
                  Angular
                  Svelte
                  Solid
                  MiniProgram
                  Flutter
                  UniApp
                  Html5
                  Css3
                  JavaScript
                  TypeScript
                  Node.js
                  Python
                  Java
                  Go
                  Rust
                  C++
                  "`; -exports[`ssr snapshot test > ssr test packages/components/checkbox/_example/controlled.tsx 1`] = `"
                  "`; +exports[`ssr snapshot test > ssr test packages/components/tag-input/_example/size.tsx 1`] = `"
                  Vue
                  React
                  Vue
                  React
                  Vue
                  React
                  "`; -exports[`ssr snapshot test > ssr test packages/components/checkbox/_example/group.tsx 1`] = `"
                  选中值: 北京
                  "`; +exports[`ssr snapshot test > ssr test packages/components/tag-input/_example/status.tsx 1`] = `"
                  Vue
                  React
                  Miniprogram
                  Vue
                  React
                  Miniprogram
                  这是普通文本提示
                  Vue
                  React
                  Miniprogram
                  校验通过文本提示
                  Vue
                  React
                  Miniprogram
                  校验不通过文本提示
                  Vue
                  React
                  Miniprogram
                  校验存在严重问题文本提示
                  "`; -exports[`ssr snapshot test > ssr test packages/components/checkbox/_example/link.tsx 1`] = `"
                  "`; +exports[`ssr snapshot test > ssr test packages/components/tag-input/_example/theme.tsx 1`] = `"
                  Vue
                  React
                  Miniprogram
                  Vue
                  React
                  Miniprogram
                  Vue
                  React
                  Miniprogram
                  Vue
                  React
                  Miniprogram
                  "`; -exports[`ssr snapshot test > ssr test packages/components/checkbox/_example/max.tsx 1`] = `"
                  最多可选:
                  选中值: 北京
                  "`; +exports[`ssr snapshot test > ssr test packages/components/textarea/_example/base.tsx 1`] = `"
                  "`; -exports[`ssr snapshot test > ssr test packages/components/collapse/_example/base.tsx 1`] = `"
                  这是一个折叠标题
                  这部分是每个折叠面板折叠或展开的内容,可根据不同业务或用户的使用诉求,进行自定义填充。可以是纯文本、图文、子列表等内容形式。
                  设置默认展开项
                  这部分是每个折叠面板折叠或展开的内容,可根据不同业务或用户的使用诉求,进行自定义填充。可以是纯文本、图文、子列表等内容形式。
                  自定义折叠面板内容
                  Vue
                  React
                  当前折叠面板折叠时,销毁面板内容
                  嵌套使用折叠面板
                  这是一个折叠标题
                  这部分是每个折叠面板折叠或展开的内容,可根据不同业务或用户的使用诉求,进行自定义填充。可以是纯文本、图文、子列表等内容形式。
                  这是一个折叠标题
                  这部分是每个折叠面板折叠或展开的内容,可根据不同业务或用户的使用诉求,进行自定义填充。可以是纯文本、图文、子列表等内容形式。
                  "`; +exports[`ssr snapshot test > ssr test packages/components/textarea/_example/events.tsx 1`] = `"
                  "`; -exports[`ssr snapshot test > ssr test packages/components/collapse/_example/icon.tsx 1`] = `"
                  这是一个折叠标题
                  这部分是每个折叠面板折叠或展开的内容,可根据不同业务或用户的使用诉求,进行自定义填充。可以是纯文本、图文、子列表等内容形式。
                  折叠后自动销毁
                  自定义折叠面板内容
                  Vue
                  React
                  自定义图标
                  这部分是每个折叠面板折叠或展开的内容,可根据不同业务或用户的使用诉求,进行自定义填充。可以是纯文本、图文、子列表等内容形式。
                  "`; +exports[`ssr snapshot test > ssr test packages/components/textarea/_example/maxlength.tsx 1`] = `"
                  这里可以放一些提示文字
                  0/20
                  0/20
                  0/20
                  0/20
                  "`; -exports[`ssr snapshot test > ssr test packages/components/collapse/_example/mutex.tsx 1`] = `"
                  这是一个折叠标题
                  这部分是每个折叠面板折叠或展开的内容,可根据不同业务或用户的使用诉求,进行自定义填充。可以是纯文本、图文、子列表等内容形式。
                  折叠后自动销毁
                  自定义折叠面板内容
                  Vue
                  React
                  "`; +exports[`ssr snapshot test > ssr test packages/components/textarea/_example/type.tsx 1`] = `"
                  正常提示
                  成功提示
                  警告提示
                  错误提示
                  "`; -exports[`ssr snapshot test > ssr test packages/components/collapse/_example/other.tsx 1`] = `"
                  这是一个折叠标题
                  这部分是每个折叠面板折叠或展开的内容,可根据不同业务或用户的使用诉求,进行自定义填充。可以是纯文本、图文、子列表等内容形式。
                  折叠后自动销毁
                  自定义折叠面板内容
                  Vue
                  React
                  当前展开的Collapse Panel:
                  "`; +exports[`ssr snapshot test > ssr test packages/components/time-picker/_example/disabled.tsx 1`] = `"

                  禁用整个选择器

                  禁用指定时间

                  "`; -exports[`ssr snapshot test > ssr test packages/components/collapse/_example/rightSlot.tsx 1`] = `"
                  这是一个折叠标题
                  这部分是每个折叠面板折叠或展开的内容,可根据不同业务或用户的使用诉求,进行自定义填充。可以是纯文本、图文、子列表等内容形式。
                  这是一个折叠标题
                  这部分是每个折叠面板折叠或展开的内容,可根据不同业务或用户的使用诉求,进行自定义填充。可以是纯文本、图文、子列表等内容形式。
                  这是一个折叠标题
                  这部分是每个折叠面板折叠或展开的内容,可根据不同业务或用户的使用诉求,进行自定义填充。可以是纯文本、图文、子列表等内容形式。
                  "`; +exports[`ssr snapshot test > ssr test packages/components/time-picker/_example/hide-clear-button.tsx 1`] = `"

                  禁止清空

                  允许清空

                  "`; -exports[`ssr snapshot test > ssr test packages/components/color-picker/_example/color-mode.tsx 1`] = `"
                  默认(单色 + 线性渐变)
                  rgba(0, 82, 217, 1)
                  仅单色模式
                  #0052d9
                  仅线性渐变模式
                  linear-gradient(45deg, #4facfe 0%, #00f2fe 100%)
                  "`; +exports[`ssr snapshot test > ssr test packages/components/time-picker/_example/hm.tsx 1`] = `"

                  时分选择

                  毫秒选择

                  "`; -exports[`ssr snapshot test > ssr test packages/components/color-picker/_example/enable-alpha.tsx 1`] = `"
                  请选择

                  最近使用颜色

                    系统预设颜色

                    "`; +exports[`ssr snapshot test > ssr test packages/components/time-picker/_example/hms.tsx 1`] = `"
                    "`; -exports[`ssr snapshot test > ssr test packages/components/color-picker/_example/panel.tsx 1`] = `"
                    请选择

                    最近使用颜色

                      系统预设颜色

                      "`; +exports[`ssr snapshot test > ssr test packages/components/time-picker/_example/keyboard.tsx 1`] = `"
                      "`; -exports[`ssr snapshot test > ssr test packages/components/color-picker/_example/recent-color.tsx 1`] = `"
                      预设最近使用色
                      请选择

                      最近使用颜色

                      系统预设颜色

                      完全不显示最近使用色
                      请选择

                      系统预设颜色

                      "`; +exports[`ssr snapshot test > ssr test packages/components/time-picker/_example/panel.tsx 1`] = `"
                      "`; -exports[`ssr snapshot test > ssr test packages/components/color-picker/_example/status-disabled.tsx 1`] = `"
                      #0052d9
                      "`; +exports[`ssr snapshot test > ssr test packages/components/time-picker/_example/presets.tsx 1`] = `"
                      -
                      "`; -exports[`ssr snapshot test > ssr test packages/components/color-picker/_example/status-readonly.tsx 1`] = `"
                      请选择

                      最近使用颜色

                        系统预设颜色

                        "`; +exports[`ssr snapshot test > ssr test packages/components/time-picker/_example/range.tsx 1`] = `"
                        -
                        "`; -exports[`ssr snapshot test > ssr test packages/components/color-picker/_example/swatch-color.tsx 1`] = `"
                        自定义系统色
                        请选择

                        最近使用颜色

                          系统预设颜色

                          完全不显示系统色
                          请选择

                          最近使用颜色

                            "`; +exports[`ssr snapshot test > ssr test packages/components/time-picker/_example/show-steps.tsx 1`] = `"
                            "`; + +exports[`ssr snapshot test > ssr test packages/components/time-picker/_example/twelve-hour-meridian.tsx 1`] = `"
                            "`; + +exports[`ssr snapshot test > ssr test packages/components/timeline/_example/base.tsx 1`] = `"

                            时间轴方向

                            • 事件一
                              2022-01-01
                            • 事件二
                              2022-02-01
                            • 事件三
                              2022-03-01
                            • 事件四
                              2022-04-01
                            "`; + +exports[`ssr snapshot test > ssr test packages/components/timeline/_example/customContent.tsx 1`] = `"
                            • 事件一
                              事件一自定义内容
                              2022-01-01
                            • 事件二
                              事件二自定义内容
                              2022-02-01
                            • 事件三
                              事件三自定义内容
                              2022-03-01
                            • 事件四
                              事件四自定义内容
                              2022-04-01
                            "`; + +exports[`ssr snapshot test > ssr test packages/components/timeline/_example/customDot.tsx 1`] = `"

                            时间轴样式

                            • 事件一
                              2022-01-01
                            • 事件二
                              2022-02-01
                            • 事件三
                              2022-03-01
                            • 事件四
                              2022-04-01
                            "`; + +exports[`ssr snapshot test > ssr test packages/components/timeline/_example/layout.tsx 1`] = `"

                            时间轴方向

                            对齐方式

                            label对齐方式

                            • 事件一
                              2022-01-01
                            • 事件二
                              2022-02-01
                            • 事件三
                              2022-03-01
                            • 事件四
                              2022-04-01
                            "`; + +exports[`ssr snapshot test > ssr test packages/components/timeline/_example/loading.tsx 1`] = `"

                            加载中

                            • 事件一
                              2022-01-01
                            • 事件二
                              2022-02-01
                            • 事件三
                              2022-03-01
                            • 事件四
                              2022-04-01
                            "`; + +exports[`ssr snapshot test > ssr test packages/components/timeline/_example/reverse.tsx 1`] = `"

                            是否倒序

                            • 事件一
                              2022-01-01
                            • 事件二
                              2022-02-01
                            • 事件三
                              2022-03-01
                            • 事件四
                              2022-04-01
                            "`; + +exports[`ssr snapshot test > ssr test packages/components/timeline/_example/theme.tsx 1`] = `"
                            • 已完成的时间
                              2022-01-01
                            • 成功的时间
                              2022-02-01
                            • 危险时间
                              2022-03-01
                            • 告警事件
                              2022-04-01
                            • 默认的时间
                              2022-05-01
                            • 自定义主题色
                              2022-06-01
                            "`; + +exports[`ssr snapshot test > ssr test packages/components/tooltip/_example/arrow.tsx 1`] = `""`; + +exports[`ssr snapshot test > ssr test packages/components/tooltip/_example/base.tsx 1`] = `"
                            "`; + +exports[`ssr snapshot test > ssr test packages/components/tooltip/_example/duration.tsx 1`] = `""`; + +exports[`ssr snapshot test > ssr test packages/components/tooltip/_example/lite.tsx 1`] = `"
                            不可用状态下提示
                            "`; + +exports[`ssr snapshot test > ssr test packages/components/tooltip/_example/mouse.tsx 1`] = `""`; + +exports[`ssr snapshot test > ssr test packages/components/tooltip/_example/no-arrow.tsx 1`] = `""`; + +exports[`ssr snapshot test > ssr test packages/components/tooltip/_example/theme.tsx 1`] = `"
                            "`; + +exports[`ssr snapshot test > ssr test packages/components/tooltip/_example/trigger.tsx 1`] = `"
                            "`; + +exports[`ssr snapshot test > ssr test packages/components/transfer/_example/base.tsx 1`] = `"
                            0 / 20 项
                            0 / 0 项
                            暂无数据
                            "`; + +exports[`ssr snapshot test > ssr test packages/components/transfer/_example/checked.tsx 1`] = `"
                            3 / 20 项
                            0 / 0 项
                            暂无数据
                            "`; + +exports[`ssr snapshot test > ssr test packages/components/transfer/_example/custom.tsx 1`] = `""`; + +exports[`ssr snapshot test > ssr test packages/components/transfer/_example/custom-render.tsx 1`] = `"
                            0 / 20 项
                            0 / 0 项
                            暂无数据
                            "`; + +exports[`ssr snapshot test > ssr test packages/components/transfer/_example/empty.tsx 1`] = `"

                            默认暂无数据

                            0 / 0 项
                            暂无数据
                            0 / 0 项
                            暂无数据

                            自定义暂无数据

                            0 / 0 项
                            No Source
                            0 / 0 项
                            No Target
                            "`; + +exports[`ssr snapshot test > ssr test packages/components/transfer/_example/pagination.tsx 1`] = `"
                            0 / 20 项
                            跳至
                            / 2 页
                            0 / 0 项
                            暂无数据
                            跳至
                            / 1 页
                            "`; + +exports[`ssr snapshot test > ssr test packages/components/transfer/_example/search.tsx 1`] = `""`; + +exports[`ssr snapshot test > ssr test packages/components/transfer/_example/tree.tsx 1`] = `"
                            0 / 5 项
                            暂无数据
                            0 / 0 项
                            暂无数据
                            "`; + +exports[`ssr snapshot test > ssr test packages/components/tree/_example/activable.tsx 1`] = `"
                            暂无数据
                            "`; + +exports[`ssr snapshot test > ssr test packages/components/tree/_example/base.tsx 1`] = `"
                            暂无数据
                            "`; + +exports[`ssr snapshot test > ssr test packages/components/tree/_example/checkable.tsx 1`] = `"
                            暂无数据
                            "`; + +exports[`ssr snapshot test > ssr test packages/components/tree/_example/controlled.tsx 1`] = `"
                            checked:
                            expanded:
                            actived:
                            暂无数据
                            "`; + +exports[`ssr snapshot test > ssr test packages/components/tree/_example/disabled.tsx 1`] = `"
                            暂无数据
                            "`; + +exports[`ssr snapshot test > ssr test packages/components/tree/_example/draggable.tsx 1`] = `"
                            暂无数据
                            "`; + +exports[`ssr snapshot test > ssr test packages/components/tree/_example/empty.tsx 1`] = `"
                            暂无数据
                            😊 空数据(string)
                            😊 空数据( empty props )
                            "`; + +exports[`ssr snapshot test > ssr test packages/components/tree/_example/expand-all.tsx 1`] = `"
                            暂无数据
                            "`; + +exports[`ssr snapshot test > ssr test packages/components/tree/_example/expand-level.tsx 1`] = `"
                            暂无数据
                            "`; + +exports[`ssr snapshot test > ssr test packages/components/tree/_example/expand-mutex.tsx 1`] = `"
                            暂无数据
                            "`; + +exports[`ssr snapshot test > ssr test packages/components/tree/_example/filter.tsx 1`] = `"
                            filter:
                            暂无数据
                            filter:
                            暂无数据
                            "`; + +exports[`ssr snapshot test > ssr test packages/components/tree/_example/icon.tsx 1`] = `"

                            render 1:

                            暂无数据

                            render 2:

                            暂无数据
                            "`; + +exports[`ssr snapshot test > ssr test packages/components/tree/_example/label.tsx 1`] = `"
                            暂无数据
                            "`; + +exports[`ssr snapshot test > ssr test packages/components/tree/_example/lazy.tsx 1`] = `"
                            暂无数据
                            "`; + +exports[`ssr snapshot test > ssr test packages/components/tree/_example/line.tsx 1`] = `"
                            暂无数据

                            render

                            暂无数据
                            "`; + +exports[`ssr snapshot test > ssr test packages/components/tree/_example/load.tsx 1`] = `"
                            暂无数据
                            "`; + +exports[`ssr snapshot test > ssr test packages/components/tree/_example/operations.tsx 1`] = `"

                            render:

                            暂无数据

                            api:

                            filter:
                            暂无数据

                            api:

                            "`; + +exports[`ssr snapshot test > ssr test packages/components/tree/_example/state.tsx 1`] = `"

                            state:

                            暂无数据

                            api:

                            "`; + +exports[`ssr snapshot test > ssr test packages/components/tree/_example/sync.tsx 1`] = `"
                            checked:
                            expanded:
                            actived:
                            暂无数据
                            "`; + +exports[`ssr snapshot test > ssr test packages/components/tree/_example/vscroll.tsx 1`] = `"
                            暂无数据
                            "`; + +exports[`ssr snapshot test > ssr test packages/components/tree-select/_example/base.tsx 1`] = `"
                            "`; + +exports[`ssr snapshot test > ssr test packages/components/tree-select/_example/collapsed.tsx 1`] = `"
                            广州市
                            +1
                            广州市
                            更多...
                            "`; + +exports[`ssr snapshot test > ssr test packages/components/tree-select/_example/filterable.tsx 1`] = `"
                            请选择
                            "`; + +exports[`ssr snapshot test > ssr test packages/components/tree-select/_example/lazy.tsx 1`] = `"
                            "`; + +exports[`ssr snapshot test > ssr test packages/components/tree-select/_example/multiple.tsx 1`] = `"
                            广州市
                            深圳市
                            "`; + +exports[`ssr snapshot test > ssr test packages/components/tree-select/_example/panelContent.tsx 1`] = `"
                            "`; + +exports[`ssr snapshot test > ssr test packages/components/tree-select/_example/prefix.tsx 1`] = `"
                            "`; + +exports[`ssr snapshot test > ssr test packages/components/tree-select/_example/prefixsuffix.tsx 1`] = `"
                            "`; + +exports[`ssr snapshot test > ssr test packages/components/tree-select/_example/props.tsx 1`] = `"
                            "`; + +exports[`ssr snapshot test > ssr test packages/components/tree-select/_example/valuedisplay.tsx 1`] = `"
                            广州市(guangzhou)
                            广州市(guangzhou)
                            深圳市(shenzhen)
                            "`; + +exports[`ssr snapshot test > ssr test packages/components/tree-select/_example/valuetype.tsx 1`] = `"
                            广州市
                            深圳市
                            "`; + +exports[`ssr snapshot test > ssr test packages/components/typography/_example/base.tsx 1`] = `"

                            What is TDesign

                            TDesign is an enterprise-level design system accumulated by Tencent's various business teams.
                            TDesign features a unified design values, consistent design language, and visual style, helping users form continuous and coherent perceptions of the experience. Based on this, TDesign offers out-of-the-box UI component libraries, design guidelines, and design assets, elegantly and efficiently freeing design and development from repetitive tasks. Simultaneously, it facilitates easy extension on top of TDesign, enabling a better alignment with business requirements.

                            Comprehensive

                            TDesign Support Vue 2, Vue 3, React, components for Desktop Application and Vue 3, Wechat MiniProgram components for Mobile Application.
                            • Features
                            • Comprehensive
                              • Consistency
                              • Usability
                            • Join TDesign
                            1. Features
                            2. Comprehensive
                              1. Consistency
                              2. Usability
                            3. Join TDesign
                            "`; + +exports[`ssr snapshot test > ssr test packages/components/typography/_example/copyable.tsx 1`] = `"This is a copyable text.
                            This is a copyable long text. TDesign was founded with the principles of open-source collaboration from the beginning. The collaboration scheme discussion, component design, and API design, including source code, are fully open within the company, garnering widespread attention from internal developers and designers. TDesign follows an equal, open, and strict policy, regardless of the participants' roles....

                            This is a copyable long text with custom suffix."`; + +exports[`ssr snapshot test > ssr test packages/components/typography/_example/ellipsis.tsx 1`] = `"
                            TDesign was founded with the principles of open-source collaboration from the beginning. The collaboration scheme discussion, component design, and API design, including source code, are fully open within the company, garnering widespread attention from internal developers and designers. TDesign follows an equal, open, and strict policy, regardless of the participants' roles....
                            TDesign was founded with the principles of open-source collaboration from the beginning. The collaboration scheme discussion, component design, and API design, including source code, are fully open within the company, garnering widespread attention from internal developers and designers. TDesign follows an equal, open, and strict policy, regardless of the participants' roles....
                            TDesign was founded with the principles of open-source collaboration from the beginning. The collaboration scheme discussion, component design, and API design, including source code, are fully open within the company, garnering widespread attention from internal developers and designers. TDesign follows an equal, open, and strict policy, regardless of the participants' roles....
                            TDesign was founded with the principles of open-source collaboration from the beginning. The collaboration scheme discussion, component design, and API design, including source code, are fully open within the company, garnering widespread attention from internal developers and designers. TDesign follows an equal, open, and strict policy, regardless of the participants' roles....
                            "`; + +exports[`ssr snapshot test > ssr test packages/components/typography/_example/text.tsx 1`] = `"
                            TDesign (primary)
                            TDesign (secondary)
                            TDesign (disabled)
                            TDesign (success)
                            TDesign (warning)
                            TDesign (error)
                            TDesign (mark)
                            TDesign (code)
                            TDesign (keyboard)
                            TDesign (underline)
                            TDesign (delete)
                            TDesign (strong)
                            TDesign (italic)
                            "`; + +exports[`ssr snapshot test > ssr test packages/components/typography/_example/title.tsx 1`] = `"

                            H1. TDesign

                            H2. TDesign

                            H3. TDesign

                            H4. TDesign

                            H5. TDesign
                            H6. TDesign
                            "`; + +exports[`ssr snapshot test > ssr test packages/components/upload/_example/base.tsx 1`] = `"

                            要求文件大小在 1M 以内
                            文件上传失败示例
                            "`; + +exports[`ssr snapshot test > ssr test packages/components/upload/_example/custom-drag.tsx 1`] = `"


                            "`; + +exports[`ssr snapshot test > ssr test packages/components/upload/_example/draggable.tsx 1`] = `"
                            是否自动上传:

                            点击上传  /  拖拽到此区域
                            默认文件
                            文件大小1.0 KB上传日期2022-09-25
                            "`; + +exports[`ssr snapshot test > ssr test packages/components/upload/_example/file-flow-list.tsx 1`] = `"

                            支持批量上传文件,文件格式不限,最多只能上传 10 份文件
                            点击上方“选择文件”或将文件拖拽到此区域
                            取消上传
                            点击上传
                            "`; + +exports[`ssr snapshot test > ssr test packages/components/upload/_example/image.tsx 1`] = `"

                            • 请选择图片

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

                            单张图片文件上传(上传失败状态演示)
                            • 点击上传图片

                            允许选择多张图片文件上传,最多只能上传 3 张图片
                            "`; + +exports[`ssr snapshot test > ssr test packages/components/upload/_example/img-flow-list.tsx 1`] = `"
                            AutoUpload

                            支持批量上传图片文件
                            • demo…-1.png

                            • avatar.jpg

                            取消上传

                            Different Status Images
                            • loading.svg

                            • loading.svg

                            • 上传中 10%

                              loading.svg

                            • 上传失败

                              loading.svg

                            "`; + +exports[`ssr snapshot test > ssr test packages/components/upload/_example/request-method.tsx 1`] = `"
                            自定义上传方法需要返回成功或失败信息
                            "`; + +exports[`ssr snapshot test > ssr test packages/components/upload/_example/single-custom.tsx 1`] = `"
                            上传文件大小在 1M 以内
                            "`; + +exports[`ssr snapshot test > ssr test packages/components/upload/_example/single-input.tsx 1`] = `"

                            请选择文件
                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\affix\\_example\\base.tsx 1`] = `"
                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\affix\\_example\\container.tsx 1`] = `"
                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\alert\\_example\\base.tsx 1`] = `"
                            这是一条成功的消息提示
                            这是一条普通的消息提示
                            这是一条警示消息
                            高危操作/出错信息提示
                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\alert\\_example\\close.tsx 1`] = `"
                            这是一条成功的消息提示
                            这是一条普通的消息提示
                            知道了
                            这是一条警示消息
                            FunctionPropClose
                            高危操作/出错信息提示
                            关闭
                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\alert\\_example\\collapse.tsx 1`] = `"
                            1.这是一条普通的消息提示描述,
                            2.这是一条普通的消息提示描述,
                            展开更多
                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\alert\\_example\\icon.tsx 1`] = `"
                            这是一条成功的消息提示
                            这是一条普通的消息提示
                            这是一条警示消息
                            高危操作/出错信息提示
                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\alert\\_example\\operation.tsx 1`] = `"
                            这是一条成功的消息提示
                            相关操作
                            这是一条普通的消息提示
                            相关操作
                            这是一条警示消息
                            相关操作
                            高危操作/出错信息提示
                            相关操作
                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\alert\\_example\\swiper.tsx 1`] = `"
                            这是一条成功的消息提示
                            这是一条普通的消息提示
                            这是一条警示消息
                            高危操作/出错信息提示
                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\alert\\_example\\title.tsx 1`] = `"
                            这是一条普通的消息提示
                            这是一条普通的消息提示描述,这是一条普通的消息提示描述
                            相关操作
                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\anchor\\_example\\base.tsx 1`] = `""`; + +exports[`ssr snapshot test > ssr test packages\\components\\anchor\\_example\\container.tsx 1`] = `"
                            content-1
                            content-2
                            content-3
                            content-4
                            content-5
                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\anchor\\_example\\cursor.tsx 1`] = `""`; + +exports[`ssr snapshot test > ssr test packages\\components\\anchor\\_example\\customize-highlight.tsx 1`] = `""`; + +exports[`ssr snapshot test > ssr test packages\\components\\anchor\\_example\\large.tsx 1`] = `""`; + +exports[`ssr snapshot test > ssr test packages\\components\\anchor\\_example\\multiple.tsx 1`] = `""`; + +exports[`ssr snapshot test > ssr test packages\\components\\anchor\\_example\\small.tsx 1`] = `""`; + +exports[`ssr snapshot test > ssr test packages\\components\\anchor\\_example\\target.tsx 1`] = `"

                            基础锚点

                            多级锚点

                            尺寸大小

                            指定容器

                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\auto-complete\\_example\\base.tsx 1`] = `"
                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\auto-complete\\_example\\filter.tsx 1`] = `"
                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\auto-complete\\_example\\option.tsx 1`] = `"
                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\auto-complete\\_example\\size.tsx 1`] = `"
                            小尺寸:
                            中尺寸:
                            大尺寸:
                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\auto-complete\\_example\\status.tsx 1`] = `"
                            这是禁用状态
                            这是只读状态
                            这是普通状态
                            这是告警状态
                            这是错误状态
                            这是成功状态
                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\auto-complete\\_example\\trigger-element.tsx 1`] = `"
                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\avatar\\_example\\adjust.tsx 1`] = `"
                            王亿
                            王亿亿
                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\avatar\\_example\\base.tsx 1`] = `"
                            图片加载中
                            W
                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\avatar\\_example\\group.tsx 1`] = `"
                            图片加载中
                            W
                            图片加载中
                            W
                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\avatar\\_example\\group-cascading.tsx 1`] = `"
                            图片加载中
                            W
                            图片加载中
                            W
                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\avatar\\_example\\group-max.tsx 1`] = `"
                            图片加载中
                            Avatar
                            +1
                            图片加载中
                            Avatar
                            图片加载中
                            Avatar
                            more
                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\avatar\\_example\\shape.tsx 1`] = `"
                            W
                            W
                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\avatar\\_example\\size.tsx 1`] = `"
                            W
                            W
                            W
                            W
                            W
                            W
                            W
                            W
                            test
                            图片加载中
                            图片加载中
                            图片加载中
                            图片加载中
                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\back-top\\_example\\baseList.tsx 1`] = `"
                            • 列表内容
                            • 列表内容
                            • 列表内容
                            • 列表内容
                            • 列表内容
                            • 列表内容
                            • 列表内容
                            • 列表内容
                            • 列表内容
                            • 列表内容
                            • 列表内容
                            • 列表内容
                            • 列表内容
                            • 列表内容
                            • 列表内容
                            • 列表内容
                            • 列表内容
                            • 列表内容
                            • 列表内容
                            • 列表内容
                            • 列表内容
                            • 列表内容
                            • 列表内容
                            • 列表内容
                            • 列表内容
                            • 列表内容
                            • 列表内容
                            • 列表内容
                            • 列表内容
                            • 列表内容
                            • 列表内容
                            • 列表内容
                            • 列表内容
                            • 列表内容
                            • 列表内容
                            • 列表内容
                            • 列表内容
                            • 列表内容
                            • 列表内容
                            • 列表内容
                            • 列表内容
                            • 列表内容
                            • 列表内容
                            • 列表内容
                            • 列表内容
                            • 列表内容
                            • 列表内容
                            • 列表内容
                            • 列表内容
                            • 列表内容
                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\back-top\\_example\\baseListSmall.tsx 1`] = `"
                            • 列表内容
                            • 列表内容
                            • 列表内容
                            • 列表内容
                            • 列表内容
                            • 列表内容
                            • 列表内容
                            • 列表内容
                            • 列表内容
                            • 列表内容
                            • 列表内容
                            • 列表内容
                            • 列表内容
                            • 列表内容
                            • 列表内容
                            • 列表内容
                            • 列表内容
                            • 列表内容
                            • 列表内容
                            • 列表内容
                            • 列表内容
                            • 列表内容
                            • 列表内容
                            • 列表内容
                            • 列表内容
                            • 列表内容
                            • 列表内容
                            • 列表内容
                            • 列表内容
                            • 列表内容
                            • 列表内容
                            • 列表内容
                            • 列表内容
                            • 列表内容
                            • 列表内容
                            • 列表内容
                            • 列表内容
                            • 列表内容
                            • 列表内容
                            • 列表内容
                            • 列表内容
                            • 列表内容
                            • 列表内容
                            • 列表内容
                            • 列表内容
                            • 列表内容
                            • 列表内容
                            • 列表内容
                            • 列表内容
                            • 列表内容
                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\back-top\\_example\\custom.tsx 1`] = `"
                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\back-top\\_example\\shape.tsx 1`] = `"
                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\back-top\\_example\\size.tsx 1`] = `"
                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\back-top\\_example\\theme.tsx 1`] = `"
                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\badge\\_example\\base.tsx 1`] = `"解锁新徽章"`; + +exports[`ssr snapshot test > ssr test packages\\components\\badge\\_example\\color.tsx 1`] = `"
                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\badge\\_example\\custom.tsx 1`] = `"
                            hot
                            new
                            100
                            hot
                            new
                            new
                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\badge\\_example\\number.tsx 1`] = `"29999+"`; + +exports[`ssr snapshot test > ssr test packages\\components\\badge\\_example\\offset.tsx 1`] = `"22222"`; + +exports[`ssr snapshot test > ssr test packages\\components\\badge\\_example\\shape.tsx 1`] = `"299"`; + +exports[`ssr snapshot test > ssr test packages\\components\\badge\\_example\\size.tsx 1`] = `"

                            1.默认大小

                            29999+

                            2.小

                            29999+"`; + +exports[`ssr snapshot test > ssr test packages\\components\\breadcrumb\\_example\\base.tsx 1`] = `"
                            页面1
                            页面2页面2页面2页面2页面2页面2页面2页面2
                            页面3页面3页面3页面3页面3页面3页面3页面3页面3页面3页面3页面3页面3页面3页面3
                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\breadcrumb\\_example\\custom.tsx 1`] = `"
                            页面1>>
                            页面2>>
                            页面3>>
                            页面1/////
                            页面2/////
                            页面3/////
                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\breadcrumb\\_example\\custom-ellipsis.tsx 1`] = `"
                            页面1
                            页面2
                            页面5
                            页面1
                            页面2
                            页面5
                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\breadcrumb\\_example\\ellipsis.tsx 1`] = `"
                            页面1
                            页面2
                            页面5
                            页面1
                            页面2
                            页面5
                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\breadcrumb\\_example\\href.tsx 1`] = `"
                            页面2
                            页面3
                            点击计数器:0
                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\breadcrumb\\_example\\icon.tsx 1`] = `"
                            页面1
                            页面2
                            页面3
                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\breadcrumb\\_example\\options.tsx 1`] = `"
                            页面1
                            页面2
                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\breadcrumb\\_example\\to.tsx 1`] = `""`; + +exports[`ssr snapshot test > ssr test packages\\components\\breadcrumb\\_example\\width.tsx 1`] = `"
                            父级设置100px父级设置100px
                            设置最大宽度160px设置最大宽度160px设置最大宽度160px
                            设置最大宽度240px设置最大宽度240px设置最大宽度240px设置最大宽度240px设置最大宽度240px
                            父级设置100px父级设置100px
                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\button\\_example\\base.tsx 1`] = `"
                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\button\\_example\\block.tsx 1`] = `"
                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\button\\_example\\custom-element.tsx 1`] = `""`; + +exports[`ssr snapshot test > ssr test packages\\components\\button\\_example\\ghost.tsx 1`] = `"
                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\button\\_example\\icon.tsx 1`] = `"
                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\button\\_example\\shape.tsx 1`] = `"
                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\button\\_example\\size.tsx 1`] = `"
                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\button\\_example\\status.tsx 1`] = `"
                            填充按钮
                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\button\\_example\\theme.tsx 1`] = `"
                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\calendar\\_example\\base.tsx 1`] = `"
                            请选择
                            请选择
                            隐藏周末
                            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
                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\calendar\\_example\\card.tsx 1`] = `"
                            请选择
                            请选择
                            30
                            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
                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\calendar\\_example\\cell.tsx 1`] = `"
                            请选择
                            请选择
                            隐藏周末
                            30
                            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
                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\calendar\\_example\\cell-append.tsx 1`] = `"
                            请选择
                            请选择
                            隐藏周末
                            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
                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\calendar\\_example\\controller-config.tsx 1`] = `"
                            控件全局



                            控件局部






                            请选择
                            请选择
                            隐藏周末
                            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
                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\calendar\\_example\\events.tsx 1`] = `"
                            请选择
                            请选择
                            隐藏周末
                            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
                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\calendar\\_example\\filter.tsx 1`] = `"
                            请选择
                            请选择
                            隐藏周末
                            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
                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\calendar\\_example\\first-day-of-week.tsx 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 packages\\components\\calendar\\_example\\head.tsx 1`] = `"
                            🗓 TDesign开发计划
                            请选择
                            请选择
                            隐藏周末
                            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
                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\calendar\\_example\\mode.tsx 1`] = `"
                            请选择
                            请选择
                            隐藏周末
                            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
                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\calendar\\_example\\range.tsx 1`] = `"
                            请选择
                            请选择
                            隐藏周末
                            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
                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\calendar\\_example\\slot-props-api.tsx 1`] = `"
                            2020-12 工作安排
                            请选择
                            请选择
                            隐藏周末
                            30
                            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
                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\calendar\\_example\\value.tsx 1`] = `"
                            请选择
                            请选择
                            隐藏周末
                            26
                            27
                            28
                            29
                            30
                            31
                            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
                            01
                            02
                            03
                            04
                            05
                            06
                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\calendar\\_example\\week.tsx 1`] = `"
                            请选择
                            请选择
                            隐藏周末
                            星期1
                            星期2
                            星期3
                            星期4
                            星期5
                            星期6
                            星期7
                            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
                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\card\\_example\\base.tsx 1`] = `"
                            标题
                            操作
                            仅有内容区域的卡片形式。卡片内容区域可以是文字、图片、表单、表格等形式信息内容。可使用大中小不同的卡片尺寸,按业务需求进行呈现。
                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\card\\_example\\bordered.tsx 1`] = `"
                            仅有内容区域的卡片形式。卡片内容区域可以是文字、图片、表单、表格等形式信息内容。可使用大中小不同的卡片尺寸,按业务需求进行呈现。
                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\card\\_example\\bordered-none.tsx 1`] = `"
                            标题
                            仅有内容区域的卡片形式。卡片内容区域可以是文字、图片、表单、表格等形式信息内容。可使用大中小不同的卡片尺寸,按业务需求进行呈现。
                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\card\\_example\\custom-loading-props.tsx 1`] = `"
                            自定义loadingProps Card
                            仅有内容区域的卡片形式。卡片内容区域可以是文字、图片、表单、表格等形式信息内容。可使用大中小不同的卡片尺寸,按业务需求进行呈现。
                            TDesign努力加载中...
                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\card\\_example\\footer.tsx 1`] = `"
                            默认标签
                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\card\\_example\\footer-actions.tsx 1`] = `"
                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\card\\_example\\footer-content.tsx 1`] = `"
                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\card\\_example\\footer-content-actions.tsx 1`] = `"
                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\card\\_example\\header.tsx 1`] = `"
                            标题
                            卡片内容,以描述性为主,可以是文字、图片或图文组合的形式。按业务需求进行自定义组合。
                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\card\\_example\\header-all-props.tsx 1`] = `"
                            标题
                            副标题

                            描述

                            操作
                            卡片内容,以描述性为主,可以是文字、图片或图文组合的形式。按业务需求进行自定义组合。
                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\card\\_example\\header-bordered.tsx 1`] = `"
                            标题
                            卡片内容,以描述性为主,可以是文字、图片或图文组合的形式。按业务需求进行自定义组合。
                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\card\\_example\\header-description.tsx 1`] = `"
                            标题

                            描述

                            操作
                            卡片内容,以描述性为主,可以是文字、图片或图文组合的形式。按业务需求进行自定义组合。
                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\card\\_example\\header-footer-actions.tsx 1`] = `"
                            图片加载中
                            标题

                            卡片内容

                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\card\\_example\\header-subtitle.tsx 1`] = `"
                            标题
                            副标题
                            操作
                            卡片内容,以描述性为主,可以是文字、图片或图文组合的形式。按业务需求进行自定义组合。
                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\card\\_example\\header-subtitle-footer-actions.tsx 1`] = `"
                            标题
                            副标题
                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\cascader\\_example\\base.tsx 1`] = `"
                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\cascader\\_example\\check-strictly.tsx 1`] = `"
                            请选择
                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\cascader\\_example\\collapsed.tsx 1`] = `"
                            请选择
                            请选择
                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\cascader\\_example\\custom-options.tsx 1`] = `"
                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\cascader\\_example\\disabled.tsx 1`] = `"
                            请选择
                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\cascader\\_example\\ellipsis.tsx 1`] = `"
                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\cascader\\_example\\filterable.tsx 1`] = `"
                            请选择
                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\cascader\\_example\\keys.tsx 1`] = `"
                            请选择
                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\cascader\\_example\\load.tsx 1`] = `"
                            请选择
                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\cascader\\_example\\max.tsx 1`] = `"
                            请选择
                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\cascader\\_example\\multiple.tsx 1`] = `"
                            请选择
                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\cascader\\_example\\panel.tsx 1`] = `"
                            暂无数据
                            暂无数据
                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\cascader\\_example\\show-all-levels.tsx 1`] = `"
                            请选择
                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\cascader\\_example\\size.tsx 1`] = `"
                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\cascader\\_example\\trigger.tsx 1`] = `"
                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\cascader\\_example\\value-display.tsx 1`] = `"
                            单选:
                            (2.2)
                            多选:
                            请选择
                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\cascader\\_example\\value-mode.tsx 1`] = `"
                            请选择
                            请选择
                            请选择
                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\cascader\\_example\\value-type.tsx 1`] = `"
                            ["1","1.1"]
                            [["1","1.1"],["1","1.2"]]
                            请选择
                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\checkbox\\_example\\base.tsx 1`] = `"
                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\checkbox\\_example\\controlled.tsx 1`] = `"
                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\checkbox\\_example\\group.tsx 1`] = `"
                            选中值: 北京
                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\checkbox\\_example\\link.tsx 1`] = `"
                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\checkbox\\_example\\max.tsx 1`] = `"
                            最多可选:
                            选中值: 北京
                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\collapse\\_example\\base.tsx 1`] = `"
                            这是一个折叠标题
                            这部分是每个折叠面板折叠或展开的内容,可根据不同业务或用户的使用诉求,进行自定义填充。可以是纯文本、图文、子列表等内容形式。
                            设置默认展开项
                            这部分是每个折叠面板折叠或展开的内容,可根据不同业务或用户的使用诉求,进行自定义填充。可以是纯文本、图文、子列表等内容形式。
                            自定义折叠面板内容
                            Vue
                            React
                            当前折叠面板折叠时,销毁面板内容
                            嵌套使用折叠面板
                            这是一个折叠标题
                            这部分是每个折叠面板折叠或展开的内容,可根据不同业务或用户的使用诉求,进行自定义填充。可以是纯文本、图文、子列表等内容形式。
                            这是一个折叠标题
                            这部分是每个折叠面板折叠或展开的内容,可根据不同业务或用户的使用诉求,进行自定义填充。可以是纯文本、图文、子列表等内容形式。
                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\collapse\\_example\\icon.tsx 1`] = `"
                            这是一个折叠标题
                            这部分是每个折叠面板折叠或展开的内容,可根据不同业务或用户的使用诉求,进行自定义填充。可以是纯文本、图文、子列表等内容形式。
                            折叠后自动销毁
                            自定义折叠面板内容
                            Vue
                            React
                            自定义图标
                            这部分是每个折叠面板折叠或展开的内容,可根据不同业务或用户的使用诉求,进行自定义填充。可以是纯文本、图文、子列表等内容形式。
                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\collapse\\_example\\mutex.tsx 1`] = `"
                            这是一个折叠标题
                            这部分是每个折叠面板折叠或展开的内容,可根据不同业务或用户的使用诉求,进行自定义填充。可以是纯文本、图文、子列表等内容形式。
                            折叠后自动销毁
                            自定义折叠面板内容
                            Vue
                            React
                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\collapse\\_example\\other.tsx 1`] = `"
                            这是一个折叠标题
                            这部分是每个折叠面板折叠或展开的内容,可根据不同业务或用户的使用诉求,进行自定义填充。可以是纯文本、图文、子列表等内容形式。
                            折叠后自动销毁
                            自定义折叠面板内容
                            Vue
                            React
                            当前展开的Collapse Panel:
                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\collapse\\_example\\rightSlot.tsx 1`] = `"
                            这是一个折叠标题
                            这部分是每个折叠面板折叠或展开的内容,可根据不同业务或用户的使用诉求,进行自定义填充。可以是纯文本、图文、子列表等内容形式。
                            这是一个折叠标题
                            这部分是每个折叠面板折叠或展开的内容,可根据不同业务或用户的使用诉求,进行自定义填充。可以是纯文本、图文、子列表等内容形式。
                            这是一个折叠标题
                            这部分是每个折叠面板折叠或展开的内容,可根据不同业务或用户的使用诉求,进行自定义填充。可以是纯文本、图文、子列表等内容形式。
                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\color-picker\\_example\\color-mode.tsx 1`] = `"
                            默认(单色 + 线性渐变)
                            rgba(0, 82, 217, 1)
                            仅单色模式
                            #0052d9
                            仅线性渐变模式
                            linear-gradient(45deg, #4facfe 0%, #00f2fe 100%)
                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\color-picker\\_example\\enable-alpha.tsx 1`] = `"
                            请选择

                            最近使用颜色

                              系统预设颜色

                              "`; + +exports[`ssr snapshot test > ssr test packages\\components\\color-picker\\_example\\panel.tsx 1`] = `"
                              请选择

                              最近使用颜色

                                系统预设颜色

                                "`; + +exports[`ssr snapshot test > ssr test packages\\components\\color-picker\\_example\\recent-color.tsx 1`] = `"
                                预设最近使用色
                                请选择

                                最近使用颜色

                                系统预设颜色

                                完全不显示最近使用色
                                请选择

                                系统预设颜色

                                "`; + +exports[`ssr snapshot test > ssr test packages\\components\\color-picker\\_example\\status-disabled.tsx 1`] = `"
                                #0052d9
                                "`; + +exports[`ssr snapshot test > ssr test packages\\components\\color-picker\\_example\\status-readonly.tsx 1`] = `"
                                请选择

                                最近使用颜色

                                  系统预设颜色

                                  "`; + +exports[`ssr snapshot test > ssr test packages\\components\\color-picker\\_example\\swatch-color.tsx 1`] = `"
                                  自定义系统色
                                  请选择

                                  最近使用颜色

                                    系统预设颜色

                                    完全不显示系统色
                                    请选择

                                    最近使用颜色

                                      "`; -exports[`ssr snapshot test > ssr test packages/components/color-picker/_example/trigger.tsx 1`] = `"
                                      #0052d9
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\color-picker\\_example\\trigger.tsx 1`] = `"
                                      #0052d9
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/comment/_example/base.tsx 1`] = `"
                                      评论作者名今天16:38
                                      评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容。
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\comment\\_example\\base.tsx 1`] = `"
                                      评论作者名今天16:38
                                      评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容。
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/comment/_example/list.tsx 1`] = `"
                                      • 评论作者名A今天16:38
                                        A评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容。
                                      • 评论作者名B今天16:38
                                        B评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容。
                                      • 评论作者名C今天16:38
                                        C评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容。
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\comment\\_example\\list.tsx 1`] = `"
                                      • 评论作者名A今天16:38
                                        A评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容。
                                      • 评论作者名B今天16:38
                                        B评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容。
                                      • 评论作者名C今天16:38
                                        C评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容。
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/comment/_example/operation.tsx 1`] = `"
                                      评论作者名今天16:38
                                      评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容。
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\comment\\_example\\operation.tsx 1`] = `"
                                      评论作者名今天16:38
                                      评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容。
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/comment/_example/quote.tsx 1`] = `"
                                      评论作者名A今天16:38
                                      A评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容。
                                      引用内容标题
                                      引用内容引用内容引用内容引用内容引用内容引用内容引用内容引用内容引用内容引用内容引用内容引用内容引用内容引用内容引用内容引用内容引用内容引用内容。
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\comment\\_example\\quote.tsx 1`] = `"
                                      评论作者名A今天16:38
                                      A评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容。
                                      引用内容标题
                                      引用内容引用内容引用内容引用内容引用内容引用内容引用内容引用内容引用内容引用内容引用内容引用内容引用内容引用内容引用内容引用内容引用内容引用内容。
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/comment/_example/reply.tsx 1`] = `"
                                      评论作者名A今天16:38
                                      A评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容。
                                      评论作者名B评论作者名A今天16:38
                                      B评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容。
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\comment\\_example\\reply.tsx 1`] = `"
                                      评论作者名A今天16:38
                                      A评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容。
                                      评论作者名B评论作者名A今天16:38
                                      B评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容。
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/comment/_example/reply-form.tsx 1`] = `"
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\comment\\_example\\reply-form.tsx 1`] = `"
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/config-provider/_example/calendar.tsx 1`] = `"
                                      please select
                                      please select
                                      Hide Weekend
                                      MondayTuesdayWednesdayThursdayFridaySaturdaySunday
                                      30
                                      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
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\config-provider\\_example\\calendar.tsx 1`] = `"
                                      please select
                                      please select
                                      Hide Weekend
                                      MondayTuesdayWednesdayThursdayFridaySaturdaySunday
                                      30
                                      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
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/config-provider/_example/date-picker.tsx 1`] = `"
                                      ~
                                      ~
                                      ~
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\config-provider\\_example\\date-picker.tsx 1`] = `"
                                      ~
                                      ~
                                      ~
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/config-provider/_example/dialog.tsx 1`] = `"
                                      Title
                                      Would you like to be my friends?
                                      confirm
                                      Would you like to be my friends?
                                      confirm
                                      Would you like to be my friends?
                                      confirm
                                      Would you like to be my friends?
                                      confirm
                                      Would you like to be my friends?
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\config-provider\\_example\\dialog.tsx 1`] = `"
                                      Title
                                      Would you like to be my friends?
                                      confirm
                                      Would you like to be my friends?
                                      confirm
                                      Would you like to be my friends?
                                      confirm
                                      Would you like to be my friends?
                                      confirm
                                      Would you like to be my friends?
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/config-provider/_example/global.tsx 1`] = `"

                                      使用ConfigProvider包裹业务功能的最外层组件,点击下方图标查看示例代码

                                      英文语言包引入路径:import enConfig from 'tdesign-react/es/locale/en_US';

                                      中文语言包引入路径:import zhConfig from 'tdesign-react/es/locale/zh_CN';

                                      日文语言包引入路径:import jpConfig from 'tdesign-react/es/locale/ja_JP';

                                      韩文语言包引入路径:import koConfig from 'tdesign-react/es/locale/ko_KR';

                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\config-provider\\_example\\global.tsx 1`] = `"

                                      使用ConfigProvider包裹业务功能的最外层组件,点击下方图标查看示例代码

                                      英文语言包引入路径:import enConfig from 'tdesign-react/es/locale/en_US';

                                      中文语言包引入路径:import zhConfig from 'tdesign-react/es/locale/zh_CN';

                                      日文语言包引入路径:import jpConfig from 'tdesign-react/es/locale/ja_JP';

                                      韩文语言包引入路径:import koConfig from 'tdesign-react/es/locale/ko_KR';

                                      "`; -exports[`ssr snapshot test > ssr test packages/components/config-provider/_example/input.tsx 1`] = `"
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\config-provider\\_example\\input.tsx 1`] = `"
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/config-provider/_example/others.tsx 1`] = `"
                                      Feature Tag
                                      Feature Tag
                                      Feature Tag
                                      Feature Tag
                                      Tree Empty Data
                                      First Step
                                      You need to click the blue button
                                      Second Step
                                      Fill your base information into the form
                                      Error Step
                                      Something Wrong! Custom Error Icon!
                                      4
                                      Last Step
                                      You haven't finish this step.
                                      图片加载中
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\config-provider\\_example\\others.tsx 1`] = `"
                                      Feature Tag
                                      Feature Tag
                                      Feature Tag
                                      Feature Tag
                                      Tree Empty Data
                                      First Step
                                      You need to click the blue button
                                      Second Step
                                      Fill your base information into the form
                                      Error Step
                                      Something Wrong! Custom Error Icon!
                                      4
                                      Last Step
                                      You haven't finish this step.
                                      图片加载中
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/config-provider/_example/pagination.tsx 1`] = `"
                                      Total 36 items
                                      please select
                                      • 1
                                      • 2
                                      • 3
                                      • 4
                                      / 4
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\config-provider\\_example\\pagination.tsx 1`] = `"
                                      Total 36 items
                                      please select
                                      • 1
                                      • 2
                                      • 3
                                      • 4
                                      / 4
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/config-provider/_example/popconfirm.tsx 1`] = `"
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\config-provider\\_example\\popconfirm.tsx 1`] = `"
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/config-provider/_example/table.tsx 1`] = `"
                                      Type
                                      Platform
                                      Property
                                      Empty Data
                                      Type
                                      Platform
                                      Property
                                      ArrayVue(PC)A
                                      StringReact(PC)B
                                      ObjectMiniprogramC
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\config-provider\\_example\\table.tsx 1`] = `"
                                      Type
                                      Platform
                                      Property
                                      Empty Data
                                      Type
                                      Platform
                                      Property
                                      ArrayVue(PC)A
                                      StringReact(PC)B
                                      ObjectMiniprogramC
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/date-picker/_example/base.tsx 1`] = `"
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\date-picker\\_example\\base.tsx 1`] = `"
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/date-picker/_example/cancel-range-limit.tsx 1`] = `"
                                      -
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\date-picker\\_example\\cancel-range-limit.tsx 1`] = `"
                                      -
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/date-picker/_example/custom-icon.tsx 1`] = `"
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\date-picker\\_example\\custom-icon.tsx 1`] = `"
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/date-picker/_example/date-presets-alt.tsx 1`] = `"
                                      -
                                      -
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\date-picker\\_example\\date-presets-alt.tsx 1`] = `"
                                      -
                                      -
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/date-picker/_example/date-range.tsx 1`] = `"
                                      -
                                      -
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\date-picker\\_example\\date-range.tsx 1`] = `"
                                      -
                                      -
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/date-picker/_example/date-time.tsx 1`] = `"
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\date-picker\\_example\\date-time.tsx 1`] = `"
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/date-picker/_example/disable-date.tsx 1`] = `"
                                      -
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\date-picker\\_example\\disable-date.tsx 1`] = `"
                                      -
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/date-picker/_example/first-day-of-week.tsx 1`] = `"
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\date-picker\\_example\\first-day-of-week.tsx 1`] = `"
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/date-picker/_example/month.tsx 1`] = `"
                                      -
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\date-picker\\_example\\month.tsx 1`] = `"
                                      -
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/date-picker/_example/multiple.tsx 1`] = `"
                                      2024-10-01
                                      2024-10-24
                                      2024-50周
                                      2024-51周
                                      2022
                                      2023
                                      2024
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\date-picker\\_example\\multiple.tsx 1`] = `"
                                      2024-10-01
                                      2024-10-24
                                      2024-50周
                                      2024-51周
                                      2022
                                      2023
                                      2024
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/date-picker/_example/panel.tsx 1`] = `"
                                      30
                                      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
                                      5
                                      6
                                      7
                                      8
                                      9
                                      10
                                      30
                                      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
                                      5
                                      6
                                      7
                                      8
                                      9
                                      10
                                      00:00:00
                                      30
                                      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
                                      5
                                      6
                                      7
                                      8
                                      9
                                      10
                                      28
                                      29
                                      30
                                      31
                                      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
                                      5
                                      6
                                      7
                                      30
                                      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
                                      5
                                      6
                                      7
                                      8
                                      9
                                      10
                                      00:00:00
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\date-picker\\_example\\panel.tsx 1`] = `"
                                      30
                                      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
                                      5
                                      6
                                      7
                                      8
                                      9
                                      10
                                      30
                                      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
                                      5
                                      6
                                      7
                                      8
                                      9
                                      10
                                      00:00:00
                                      30
                                      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
                                      5
                                      6
                                      7
                                      8
                                      9
                                      10
                                      28
                                      29
                                      30
                                      31
                                      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
                                      5
                                      6
                                      7
                                      30
                                      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
                                      5
                                      6
                                      7
                                      8
                                      9
                                      10
                                      00:00:00
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/date-picker/_example/quarter.tsx 1`] = `"
                                      -
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\date-picker\\_example\\quarter.tsx 1`] = `"
                                      -
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/date-picker/_example/week.tsx 1`] = `"
                                      -
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\date-picker\\_example\\week.tsx 1`] = `"
                                      -
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/date-picker/_example/year.tsx 1`] = `"
                                      -
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\date-picker\\_example\\year.tsx 1`] = `"
                                      -
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/descriptions/_example/base.tsx 1`] = `"
                                      Shipping address
                                      NameTDesignTelephone Number139****0609
                                      AreaChina Tencent HeadquartersAddressShenzhen Penguin Island D1 4A Mail Center
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\descriptions\\_example\\base.tsx 1`] = `"
                                      Shipping address
                                      NameTDesignTelephone Number139****0609
                                      AreaChina Tencent HeadquartersAddressShenzhen Penguin Island D1 4A Mail Center
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/descriptions/_example/bordered.tsx 1`] = `"
                                      Shipping address
                                      NameTDesignTelephone Number139****0609
                                      AreaChina Tencent HeadquartersAddressShenzhen Penguin Island D1 4A Mail Center
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\descriptions\\_example\\bordered.tsx 1`] = `"
                                      Shipping address
                                      NameTDesignTelephone Number139****0609
                                      AreaChina Tencent HeadquartersAddressShenzhen Penguin Island D1 4A Mail Center
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/descriptions/_example/colon.tsx 1`] = `"
                                      展示冒号
                                      Shipping address
                                      NameTDesignTelephone Number139****0609
                                      AreaChina Tencent HeadquartersAddressShenzhen Penguin Island D1 4A Mail Center
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\descriptions\\_example\\colon.tsx 1`] = `"
                                      展示冒号
                                      Shipping address
                                      NameTDesignTelephone Number139****0609
                                      AreaChina Tencent HeadquartersAddressShenzhen Penguin Island D1 4A Mail Center
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/descriptions/_example/column.tsx 1`] = `"
                                      Shipping address
                                      NameTDesignTelephone Number139****0609
                                      AreaChina Tencent HeadquartersAddressShenzhen Penguin Island D1 4A Mail Center
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\descriptions\\_example\\column.tsx 1`] = `"
                                      Shipping address
                                      NameTDesignTelephone Number139****0609
                                      AreaChina Tencent HeadquartersAddressShenzhen Penguin Island D1 4A Mail Center
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/descriptions/_example/custom-style.tsx 1`] = `"
                                      Shipping address
                                      NameTDesignTelephone Number139****0609
                                      AreaChina Tencent HeadquartersAddressShenzhen Penguin Island D1 4A Mail Center
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\descriptions\\_example\\custom-style.tsx 1`] = `"
                                      Shipping address
                                      NameTDesignTelephone Number139****0609
                                      AreaChina Tencent HeadquartersAddressShenzhen Penguin Island D1 4A Mail Center
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/descriptions/_example/items.tsx 1`] = `"
                                      Shipping address
                                      NameTDesign139****0609
                                      Area

                                      China Tencent Headquarters

                                      Address Shenzhen Penguin Island D1 4A Mail Center
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\descriptions\\_example\\items.tsx 1`] = `"
                                      Shipping address
                                      NameTDesign139****0609
                                      Area

                                      China Tencent Headquarters

                                      Address Shenzhen Penguin Island D1 4A Mail Center
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/descriptions/_example/layout.tsx 1`] = `"
                                      layout:
                                      itemLayout:
                                      Shipping address
                                      NameTDesignTelephone Number139****0609
                                      AreaChina Tencent HeadquartersAddressShenzhen Penguin Island D1 4A Mail Center
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\descriptions\\_example\\layout.tsx 1`] = `"
                                      layout:
                                      itemLayout:
                                      Shipping address
                                      NameTDesignTelephone Number139****0609
                                      AreaChina Tencent HeadquartersAddressShenzhen Penguin Island D1 4A Mail Center
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/descriptions/_example/nest.tsx 1`] = `"
                                      Shipping address
                                      NameTDesignTelephone Number139****0609
                                      AreaChina Tencent HeadquartersAddress
                                      CityShenzhenDetailPenguin Island D1 4A Mail Center
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\descriptions\\_example\\nest.tsx 1`] = `"
                                      Shipping address
                                      NameTDesignTelephone Number139****0609
                                      AreaChina Tencent HeadquartersAddress
                                      CityShenzhenDetailPenguin Island D1 4A Mail Center
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/descriptions/_example/size.tsx 1`] = `"
                                      Shipping address
                                      NameTDesignTelephone Number139****0609
                                      AreaChina Tencent HeadquartersAddressShenzhen Penguin Island D1 4A Mail Center
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\descriptions\\_example\\size.tsx 1`] = `"
                                      Shipping address
                                      NameTDesignTelephone Number139****0609
                                      AreaChina Tencent HeadquartersAddressShenzhen Penguin Island D1 4A Mail Center
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/descriptions/_example/table-layout.tsx 1`] = `"
                                      Shipping address
                                      NameTDesignTelephone Number139****0609
                                      AreaChina Tencent HeadquartersAddressShenzhen Penguin Island D1 4A Mail Center
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\descriptions\\_example\\table-layout.tsx 1`] = `"
                                      Shipping address
                                      NameTDesignTelephone Number139****0609
                                      AreaChina Tencent HeadquartersAddressShenzhen Penguin Island D1 4A Mail Center
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/dialog/_example/async.tsx 1`] = `""`; +exports[`ssr snapshot test > ssr test packages\\components\\dialog\\_example\\async.tsx 1`] = `""`; -exports[`ssr snapshot test > ssr test packages/components/dialog/_example/attach.tsx 1`] = `"
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\dialog\\_example\\attach.tsx 1`] = `"
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/dialog/_example/base.tsx 1`] = `""`; +exports[`ssr snapshot test > ssr test packages\\components\\dialog\\_example\\base.tsx 1`] = `""`; -exports[`ssr snapshot test > ssr test packages/components/dialog/_example/custom.tsx 1`] = `""`; +exports[`ssr snapshot test > ssr test packages\\components\\dialog\\_example\\custom.tsx 1`] = `""`; -exports[`ssr snapshot test > ssr test packages/components/dialog/_example/icon.tsx 1`] = `""`; +exports[`ssr snapshot test > ssr test packages\\components\\dialog\\_example\\icon.tsx 1`] = `""`; -exports[`ssr snapshot test > ssr test packages/components/dialog/_example/modal.tsx 1`] = `"
                                      普通对话框

                                      This is a dialog

                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\dialog\\_example\\modal.tsx 1`] = `"
                                      普通对话框

                                      This is a dialog

                                      "`; -exports[`ssr snapshot test > ssr test packages/components/dialog/_example/plugin.tsx 1`] = `"

                                      函数调用方式一:DialogPlugin(options)

                                      函数调用方式二:DialogPlugin.confirm(options)

                                      函数调用方式三:DialogPlugin.alert(options)

                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\dialog\\_example\\plugin.tsx 1`] = `"

                                      函数调用方式一:DialogPlugin(options)

                                      函数调用方式二:DialogPlugin.confirm(options)

                                      函数调用方式三:DialogPlugin.alert(options)

                                      "`; -exports[`ssr snapshot test > ssr test packages/components/dialog/_example/position.tsx 1`] = `""`; +exports[`ssr snapshot test > ssr test packages\\components\\dialog\\_example\\position.tsx 1`] = `""`; -exports[`ssr snapshot test > ssr test packages/components/dialog/_example/warning.tsx 1`] = `"
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\dialog\\_example\\warning.tsx 1`] = `"
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/divider/_example/base.tsx 1`] = `"

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

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

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

                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\divider\\_example\\base.tsx 1`] = `"

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

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

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

                                      "`; -exports[`ssr snapshot test > ssr test packages/components/divider/_example/text.tsx 1`] = `"

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

                                      TDesign

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

                                      TDesign

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

                                      TDesign

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

                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\divider\\_example\\text.tsx 1`] = `"

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

                                      TDesign

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

                                      TDesign

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

                                      TDesign

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

                                      "`; -exports[`ssr snapshot test > ssr test packages/components/divider/_example/vertical.tsx 1`] = `"正直
                                      进取
                                      合作
                                      创新"`; +exports[`ssr snapshot test > ssr test packages\\components\\divider\\_example\\vertical.tsx 1`] = `"正直
                                      进取
                                      合作
                                      创新"`; -exports[`ssr snapshot test > ssr test packages/components/drawer/_example/attach-parent.tsx 1`] = `"

                                      渲染在当前元素中。

                                      抽屉弹出方向:
                                      抽屉弹出模式:
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\drawer\\_example\\attach-parent.tsx 1`] = `"

                                      渲染在当前元素中。

                                      抽屉弹出方向:
                                      抽屉弹出模式:
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/drawer/_example/base.tsx 1`] = `""`; +exports[`ssr snapshot test > ssr test packages\\components\\drawer\\_example\\base.tsx 1`] = `""`; -exports[`ssr snapshot test > ssr test packages/components/drawer/_example/custom.tsx 1`] = `""`; +exports[`ssr snapshot test > ssr test packages\\components\\drawer\\_example\\custom.tsx 1`] = `""`; -exports[`ssr snapshot test > ssr test packages/components/drawer/_example/destroy.tsx 1`] = `""`; +exports[`ssr snapshot test > ssr test packages\\components\\drawer\\_example\\destroy.tsx 1`] = `""`; -exports[`ssr snapshot test > ssr test packages/components/drawer/_example/no-mask.tsx 1`] = `""`; +exports[`ssr snapshot test > ssr test packages\\components\\drawer\\_example\\no-mask.tsx 1`] = `""`; -exports[`ssr snapshot test > ssr test packages/components/drawer/_example/operation.tsx 1`] = `""`; +exports[`ssr snapshot test > ssr test packages\\components\\drawer\\_example\\operation.tsx 1`] = `""`; -exports[`ssr snapshot test > ssr test packages/components/drawer/_example/placement.tsx 1`] = `"
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\drawer\\_example\\placement.tsx 1`] = `"
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/drawer/_example/plugin.tsx 1`] = `"

                                      函数调用方式一:DrawerPlugin(options)

                                      函数调用方式二:drawer(options)

                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\drawer\\_example\\plugin.tsx 1`] = `"

                                      函数调用方式一:DrawerPlugin(options)

                                      函数调用方式二:drawer(options)

                                      "`; -exports[`ssr snapshot test > ssr test packages/components/drawer/_example/popup.tsx 1`] = `"
                                      抽屉弹出模式:
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\drawer\\_example\\popup.tsx 1`] = `"
                                      抽屉弹出模式:
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/drawer/_example/size.tsx 1`] = `"
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\drawer\\_example\\size.tsx 1`] = `"
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/drawer/_example/size-draggable.tsx 1`] = `"
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\drawer\\_example\\size-draggable.tsx 1`] = `"
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/dropdown/_example/base.tsx 1`] = `""`; +exports[`ssr snapshot test > ssr test packages\\components\\dropdown\\_example\\base.tsx 1`] = `""`; -exports[`ssr snapshot test > ssr test packages/components/dropdown/_example/button.tsx 1`] = `""`; +exports[`ssr snapshot test > ssr test packages\\components\\dropdown\\_example\\button.tsx 1`] = `""`; -exports[`ssr snapshot test > ssr test packages/components/dropdown/_example/child.tsx 1`] = `""`; +exports[`ssr snapshot test > ssr test packages\\components\\dropdown\\_example\\child.tsx 1`] = `""`; -exports[`ssr snapshot test > ssr test packages/components/dropdown/_example/click.tsx 1`] = `""`; +exports[`ssr snapshot test > ssr test packages\\components\\dropdown\\_example\\click.tsx 1`] = `""`; -exports[`ssr snapshot test > ssr test packages/components/dropdown/_example/custom.tsx 1`] = `""`; +exports[`ssr snapshot test > ssr test packages\\components\\dropdown\\_example\\custom.tsx 1`] = `""`; -exports[`ssr snapshot test > ssr test packages/components/dropdown/_example/disabled.tsx 1`] = `""`; +exports[`ssr snapshot test > ssr test packages\\components\\dropdown\\_example\\disabled.tsx 1`] = `""`; -exports[`ssr snapshot test > ssr test packages/components/dropdown/_example/icon.tsx 1`] = `""`; +exports[`ssr snapshot test > ssr test packages\\components\\dropdown\\_example\\icon.tsx 1`] = `""`; -exports[`ssr snapshot test > ssr test packages/components/dropdown/_example/left.tsx 1`] = `""`; +exports[`ssr snapshot test > ssr test packages\\components\\dropdown\\_example\\left.tsx 1`] = `""`; -exports[`ssr snapshot test > ssr test packages/components/dropdown/_example/long.tsx 1`] = `""`; +exports[`ssr snapshot test > ssr test packages\\components\\dropdown\\_example\\long.tsx 1`] = `""`; -exports[`ssr snapshot test > ssr test packages/components/dropdown/_example/multiple.tsx 1`] = `""`; +exports[`ssr snapshot test > ssr test packages\\components\\dropdown\\_example\\multiple.tsx 1`] = `""`; -exports[`ssr snapshot test > ssr test packages/components/dropdown/_example/split.tsx 1`] = `""`; +exports[`ssr snapshot test > ssr test packages\\components\\dropdown\\_example\\split.tsx 1`] = `""`; -exports[`ssr snapshot test > ssr test packages/components/dropdown/_example/theme.tsx 1`] = `""`; +exports[`ssr snapshot test > ssr test packages\\components\\dropdown\\_example\\theme.tsx 1`] = `""`; -exports[`ssr snapshot test > ssr test packages/components/empty/_example/base.tsx 1`] = `"
                                      暂无数据
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\empty\\_example\\base.tsx 1`] = `"
                                      暂无数据
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/empty/_example/descriptions.tsx 1`] = `"
                                      暂无数据
                                      description
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\empty\\_example\\descriptions.tsx 1`] = `"
                                      暂无数据
                                      description
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/empty/_example/operation.tsx 1`] = `"
                                      暂无数据
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\empty\\_example\\operation.tsx 1`] = `"
                                      暂无数据
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/empty/_example/self-defined.tsx 1`] = `"
                                      暂无数据
                                      暂无数据
                                      暂无数据
                                      暂无数据
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\empty\\_example\\self-defined.tsx 1`] = `"
                                      暂无数据
                                      暂无数据
                                      暂无数据
                                      暂无数据
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/empty/_example/size.tsx 1`] = `"
                                      暂无数据
                                      建设中
                                      网络错误
                                      成功
                                      失败
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\empty\\_example\\size.tsx 1`] = `"
                                      暂无数据
                                      建设中
                                      网络错误
                                      成功
                                      失败
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/empty/_example/status.tsx 1`] = `"
                                      暂无数据
                                      建设中
                                      网络错误
                                      成功
                                      失败
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\empty\\_example\\status.tsx 1`] = `"
                                      暂无数据
                                      建设中
                                      网络错误
                                      成功
                                      失败
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/form/_example/align.tsx 1`] = `"
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\form\\_example\\align.tsx 1`] = `"
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/form/_example/base.tsx 1`] = `"
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\form\\_example\\base.tsx 1`] = `"
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/form/_example/clear-validate.tsx 1`] = `"
                                      一句话介绍自己
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\form\\_example\\clear-validate.tsx 1`] = `"
                                      一句话介绍自己
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/form/_example/custom-validator.tsx 1`] = `"
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\form\\_example\\custom-validator.tsx 1`] = `"
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/form/_example/customized-form-controls.tsx 1`] = `"
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\form\\_example\\customized-form-controls.tsx 1`] = `"
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/form/_example/disabled.tsx 1`] = `"
                                      请选择单张图片文件上传
                                      提交
                                      重置
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\form\\_example\\disabled.tsx 1`] = `"
                                      请选择单张图片文件上传
                                      提交
                                      重置
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/form/_example/error-message.tsx 1`] = `"
                                      一句话介绍自己
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\form\\_example\\error-message.tsx 1`] = `"
                                      一句话介绍自己
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/form/_example/form-field-linkage.tsx 1`] = `"
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\form\\_example\\form-field-linkage.tsx 1`] = `"
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/form/_example/form-list.tsx 1`] = `"
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\form\\_example\\form-list.tsx 1`] = `"
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/form/_example/layout.tsx 1`] = `"
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\form\\_example\\layout.tsx 1`] = `"
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/form/_example/login.tsx 1`] = `"
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\form\\_example\\login.tsx 1`] = `"
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/form/_example/nested-data.tsx 1`] = `"
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\form\\_example\\nested-data.tsx 1`] = `"
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/form/_example/reset.tsx 1`] = `"
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\form\\_example\\reset.tsx 1`] = `"
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/form/_example/validate-complicated-data.tsx 1`] = `"
                                      学生1
                                      学生2
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\form\\_example\\validate-complicated-data.tsx 1`] = `"
                                      学生1
                                      学生2
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/form/_example/validate-message.tsx 1`] = `"
                                      一句话介绍自己
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\form\\_example\\validate-message.tsx 1`] = `"
                                      一句话介绍自己
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/form/_example/validator.tsx 1`] = `"
                                      这里请填写密码
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\form\\_example\\validator.tsx 1`] = `"
                                      这里请填写密码
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/form/_example/validator-status.tsx 1`] = `"
                                      校验不通过,请输入正确内容
                                      自定义新增icon
                                      自定义帮助icon
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\form\\_example\\validator-status.tsx 1`] = `"
                                      校验不通过,请输入正确内容
                                      自定义新增icon
                                      自定义帮助icon
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/grid/_example/base.tsx 1`] = `"
                                      1
                                      1
                                      1
                                      1
                                      1
                                      1
                                      1
                                      1
                                      1
                                      1
                                      1
                                      1
                                      2
                                      2
                                      2
                                      2
                                      2
                                      2
                                      3
                                      3
                                      3
                                      3
                                      4
                                      4
                                      4
                                      6
                                      6
                                      12
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\grid\\_example\\base.tsx 1`] = `"
                                      1
                                      1
                                      1
                                      1
                                      1
                                      1
                                      1
                                      1
                                      1
                                      1
                                      1
                                      1
                                      2
                                      2
                                      2
                                      2
                                      2
                                      2
                                      3
                                      3
                                      3
                                      3
                                      4
                                      4
                                      4
                                      6
                                      6
                                      12
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/grid/_example/flex.tsx 1`] = `"
                                      2 / 5
                                      3 / 5
                                      100px
                                      Fill Rest
                                      1 1 200px
                                      0 1 300px
                                      none
                                      auto with no-wrap
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\grid\\_example\\flex.tsx 1`] = `"
                                      2 / 5
                                      3 / 5
                                      100px
                                      Fill Rest
                                      1 1 200px
                                      0 1 300px
                                      none
                                      auto with no-wrap
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/grid/_example/gutter.tsx 1`] = `"
                                      col-3
                                      col-3
                                      col-3
                                      col-3
                                      col-3
                                      col-3
                                      col-3
                                      col-3
                                      col-3
                                      col-3
                                      col-3
                                      col-3
                                      col-3
                                      col-3
                                      col-3
                                      col-3
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\grid\\_example\\gutter.tsx 1`] = `"
                                      col-3
                                      col-3
                                      col-3
                                      col-3
                                      col-3
                                      col-3
                                      col-3
                                      col-3
                                      col-3
                                      col-3
                                      col-3
                                      col-3
                                      col-3
                                      col-3
                                      col-3
                                      col-3
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/grid/_example/halign.tsx 1`] = `"

                                      align left

                                      col-2
                                      col-2
                                      col-2
                                      col-2

                                      align center

                                      col-2
                                      col-2
                                      col-2
                                      col-2

                                      align right

                                      col-2
                                      col-2
                                      col-2
                                      col-2

                                      space-between

                                      col-2
                                      col-2
                                      col-2
                                      col-2

                                      space-around

                                      col-2
                                      col-2
                                      col-2
                                      col-2
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\grid\\_example\\halign.tsx 1`] = `"

                                      align left

                                      col-2
                                      col-2
                                      col-2
                                      col-2

                                      align center

                                      col-2
                                      col-2
                                      col-2
                                      col-2

                                      align right

                                      col-2
                                      col-2
                                      col-2
                                      col-2

                                      space-between

                                      col-2
                                      col-2
                                      col-2
                                      col-2

                                      space-around

                                      col-2
                                      col-2
                                      col-2
                                      col-2
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/grid/_example/offset.tsx 1`] = `"
                                      col-4
                                      col-4
                                      col-3 col-offset-3
                                      col-3 col-offset-3
                                      col-6 col-offset-2
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\grid\\_example\\offset.tsx 1`] = `"
                                      col-4
                                      col-4
                                      col-3 col-offset-3
                                      col-3 col-offset-3
                                      col-6 col-offset-2
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/grid/_example/order.tsx 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 packages\\components\\grid\\_example\\order.tsx 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 packages/components/grid/_example/responsive.tsx 1`] = `"
                                      宽度响应式
                                      Col
                                      Col
                                      其他属性响应式(支持span,offset,order,pull,push)
                                      Col
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\grid\\_example\\responsive.tsx 1`] = `"
                                      宽度响应式
                                      Col
                                      Col
                                      其他属性响应式(支持span,offset,order,pull,push)
                                      Col
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/grid/_example/sort.tsx 1`] = `"
                                      通过 \`pull\` \`push\` 进行排序
                                      col-9 col-push-3
                                      col-3 col-pull-9
                                      col-8 col-push-4
                                      col-4 col-pull-8
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\grid\\_example\\sort.tsx 1`] = `"
                                      通过 \`pull\` \`push\` 进行排序
                                      col-9 col-push-3
                                      col-3 col-pull-9
                                      col-8 col-push-4
                                      col-4 col-pull-8
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/grid/_example/valign.tsx 1`] = `"

                                      align top

                                      col-3
                                      col-3
                                      col-3
                                      col-3

                                      Align Middle

                                      col-3
                                      col-3
                                      col-3
                                      col-3

                                      Align Bottom

                                      col-3
                                      col-3
                                      col-3
                                      col-3
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\grid\\_example\\valign.tsx 1`] = `"

                                      align top

                                      col-3
                                      col-3
                                      col-3
                                      col-3

                                      Align Middle

                                      col-3
                                      col-3
                                      col-3
                                      col-3

                                      Align Bottom

                                      col-3
                                      col-3
                                      col-3
                                      col-3
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/guide/_example/base.tsx 1`] = `"
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\guide\\_example\\base.tsx 1`] = `"
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/guide/_example/custom-popup.tsx 1`] = `"
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\guide\\_example\\custom-popup.tsx 1`] = `"
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/guide/_example/dialog.tsx 1`] = `"
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\guide\\_example\\dialog.tsx 1`] = `"
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/guide/_example/no-mask.tsx 1`] = `"
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\guide\\_example\\no-mask.tsx 1`] = `"
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/guide/_example/popup-dialog.tsx 1`] = `"
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\guide\\_example\\popup-dialog.tsx 1`] = `"
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/icon/_example/Enhanced.tsx 1`] = `"


                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\icon\\_example\\Enhanced.tsx 1`] = `"


                                      "`; -exports[`ssr snapshot test > ssr test packages/components/icon/_example/IconExample.tsx 1`] = `"
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\icon\\_example\\IconExample.tsx 1`] = `"
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/icon/_example/IconFontEnhanced.tsx 1`] = `"


                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\icon\\_example\\IconFontEnhanced.tsx 1`] = `"


                                      "`; -exports[`ssr snapshot test > ssr test packages/components/icon/_example/IconFontExample.tsx 1`] = `"

                                      How do you feel today?

                                      What is your favourite food?

                                      How much icons does TDesign Icon includes?

                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\icon\\_example\\IconFontExample.tsx 1`] = `"

                                      How do you feel today?

                                      What is your favourite food?

                                      How much icons does TDesign Icon includes?

                                      "`; -exports[`ssr snapshot test > ssr test packages/components/icon/_example/IconSelect.tsx 1`] = `"
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\icon\\_example\\IconSelect.tsx 1`] = `"
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/icon/_example/SvgSpriteExample.tsx 1`] = `"

                                      How do you feel today?

                                      What is your favourite food?

                                      How much icons does TDesign Icon includes?

                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\icon\\_example\\SvgSpriteExample.tsx 1`] = `"

                                      How do you feel today?

                                      What is your favourite food?

                                      How much icons does TDesign Icon includes?

                                      "`; -exports[`ssr snapshot test > ssr test packages/components/image/_example/avif.tsx 1`] = `"
                                      图片加载中
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\image\\_example\\avif.tsx 1`] = `"
                                      图片加载中
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/image/_example/extra-always.tsx 1`] = `"
                                      有遮罩
                                      图片加载中
                                      高清
                                      无遮罩
                                      图片加载中
                                      高清
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\image\\_example\\extra-always.tsx 1`] = `"
                                      有遮罩
                                      图片加载中
                                      高清
                                      无遮罩
                                      图片加载中
                                      高清
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/image/_example/extra-hover.tsx 1`] = `"
                                      图片加载中
                                      预览
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\image\\_example\\extra-hover.tsx 1`] = `"
                                      图片加载中
                                      预览
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/image/_example/fill-mode.tsx 1`] = `"
                                      图片加载中
                                      fill
                                      图片加载中
                                      contain
                                      图片加载中
                                      cover
                                      图片加载中
                                      none
                                      图片加载中
                                      scale-down
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\image\\_example\\fill-mode.tsx 1`] = `"
                                      图片加载中
                                      fill
                                      图片加载中
                                      contain
                                      图片加载中
                                      cover
                                      图片加载中
                                      none
                                      图片加载中
                                      scale-down
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/image/_example/fill-position.tsx 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 packages\\components\\image\\_example\\fill-position.tsx 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 packages/components/image/_example/gallery-cover.tsx 1`] = `""`; +exports[`ssr snapshot test > ssr test packages\\components\\image\\_example\\gallery-cover.tsx 1`] = `""`; -exports[`ssr snapshot test > ssr test packages/components/image/_example/lazy-list.tsx 1`] = `"
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\image\\_example\\lazy-list.tsx 1`] = `"
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/image/_example/lazy-single.tsx 1`] = `"
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\image\\_example\\lazy-single.tsx 1`] = `"
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/image/_example/placeholder.tsx 1`] = `"

                                      加载中的图片

                                      默认占位
                                      图片加载中
                                      自定义占位

                                      加载失败的图片

                                      默认错误
                                      图片加载中
                                      自定义错误
                                      图片加载中
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\image\\_example\\placeholder.tsx 1`] = `"

                                      加载中的图片

                                      默认占位
                                      图片加载中
                                      自定义占位

                                      加载失败的图片

                                      默认错误
                                      图片加载中
                                      自定义错误
                                      图片加载中
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/image/_example/shape.tsx 1`] = `"
                                      图片加载中
                                      square
                                      图片加载中
                                      round
                                      图片加载中
                                      circle
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\image\\_example\\shape.tsx 1`] = `"
                                      图片加载中
                                      square
                                      图片加载中
                                      round
                                      图片加载中
                                      circle
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/image-viewer/_example/album.tsx 1`] = `"
                                      test
                                      图片加载中
                                      预览
                                      相册封面标题
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\image-viewer\\_example\\album.tsx 1`] = `"
                                      test
                                      图片加载中
                                      预览
                                      相册封面标题
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/image-viewer/_example/albumIcons.tsx 1`] = `"
                                      test
                                      图片加载中
                                      预览
                                      相册封面标题
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\image-viewer\\_example\\albumIcons.tsx 1`] = `"
                                      test
                                      图片加载中
                                      预览
                                      相册封面标题
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/image-viewer/_example/base.tsx 1`] = `"
                                      test
                                      图片加载中
                                      预览
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\image-viewer\\_example\\base.tsx 1`] = `"
                                      test
                                      图片加载中
                                      预览
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/image-viewer/_example/block.tsx 1`] = `"
                                      test
                                      图片加载中
                                      预览
                                      test
                                      图片加载中
                                      预览
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\image-viewer\\_example\\block.tsx 1`] = `"
                                      test
                                      图片加载中
                                      预览
                                      test
                                      图片加载中
                                      预览
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/image-viewer/_example/button.tsx 1`] = `""`; +exports[`ssr snapshot test > ssr test packages\\components\\image-viewer\\_example\\button.tsx 1`] = `""`; -exports[`ssr snapshot test > ssr test packages/components/image-viewer/_example/error.tsx 1`] = `"
                                      test
                                      图片加载中
                                      预览
                                      test
                                      图片加载中
                                      预览
                                      test
                                      图片加载中
                                      预览
                                      test
                                      图片加载中
                                      预览
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\image-viewer\\_example\\error.tsx 1`] = `"
                                      test
                                      图片加载中
                                      预览
                                      test
                                      图片加载中
                                      预览
                                      test
                                      图片加载中
                                      预览
                                      test
                                      图片加载中
                                      预览
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/image-viewer/_example/modeless.tsx 1`] = `"
                                      test
                                      图片加载中
                                      预览
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\image-viewer\\_example\\modeless.tsx 1`] = `"
                                      test
                                      图片加载中
                                      预览
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/image-viewer/_example/multiple.tsx 1`] = `"
                                      test
                                      图片加载中
                                      预览
                                      test
                                      图片加载中
                                      预览
                                      test
                                      图片加载中
                                      预览
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\image-viewer\\_example\\multiple.tsx 1`] = `"
                                      test
                                      图片加载中
                                      预览
                                      test
                                      图片加载中
                                      预览
                                      test
                                      图片加载中
                                      预览
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/image-viewer/_example/svg.tsx 1`] = `"
                                      test
                                      图片加载中
                                      预览
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\image-viewer\\_example\\svg.tsx 1`] = `"
                                      test
                                      图片加载中
                                      预览
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/input/_example/addon.tsx 1`] = `"
                                      http://
                                      http://
                                      .com
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\input\\_example\\addon.tsx 1`] = `"
                                      http://
                                      http://
                                      .com
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/input/_example/align.tsx 1`] = `"
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\input\\_example\\align.tsx 1`] = `"
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/input/_example/auto-width.tsx 1`] = `"
                                      宽度自适应
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\input\\_example\\auto-width.tsx 1`] = `"
                                      宽度自适应
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/input/_example/base.tsx 1`] = `"
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\input\\_example\\base.tsx 1`] = `"
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/input/_example/borderless.tsx 1`] = `"
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\input\\_example\\borderless.tsx 1`] = `"
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/input/_example/clearable.tsx 1`] = `"
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\input\\_example\\clearable.tsx 1`] = `"
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/input/_example/disabled.tsx 1`] = `"
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\input\\_example\\disabled.tsx 1`] = `"
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/input/_example/format.tsx 1`] = `"
                                      请输入数字
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\input\\_example\\format.tsx 1`] = `"
                                      请输入数字
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/input/_example/group.tsx 1`] = `"
                                       - 
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\input\\_example\\group.tsx 1`] = `"
                                       - 
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/input/_example/max-length-count.tsx 1`] = `"
                                      0/10
                                      0/10
                                      0/5
                                      0/5
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\input\\_example\\max-length-count.tsx 1`] = `"
                                      0/10
                                      0/10
                                      0/5
                                      0/5
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/input/_example/password.tsx 1`] = `"
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\input\\_example\\password.tsx 1`] = `"
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/input/_example/size.tsx 1`] = `"
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\input\\_example\\size.tsx 1`] = `"
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/input/_example/status.tsx 1`] = `"
                                      这是普通文本提示
                                      校验通过文本提示
                                      校验不通过文本提示
                                      校验存在严重问题文本提示
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\input\\_example\\status.tsx 1`] = `"
                                      这是普通文本提示
                                      校验通过文本提示
                                      校验不通过文本提示
                                      校验存在严重问题文本提示
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/input/_example/textarea.tsx 1`] = `"
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\input\\_example\\textarea.tsx 1`] = `"
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/input-adornment/_example/select.tsx 1`] = `"
                                      请选择
                                      请选择
                                      请选择
                                      请选择
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\input-adornment\\_example\\select.tsx 1`] = `"
                                      请选择
                                      请选择
                                      请选择
                                      请选择
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/input-adornment/_example/text.tsx 1`] = `"
                                      http://
                                      请输入
                                      .com
                                      http://
                                      .com
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\input-adornment\\_example\\text.tsx 1`] = `"
                                      http://
                                      请输入
                                      .com
                                      http://
                                      .com
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/input-number/_example/align.tsx 1`] = `"
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\input-number\\_example\\align.tsx 1`] = `"
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/input-number/_example/auto-width.tsx 1`] = `"
                                      请输入
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\input-number\\_example\\auto-width.tsx 1`] = `"
                                      请输入
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/input-number/_example/center.tsx 1`] = `"
                                      请输入
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\input-number\\_example\\center.tsx 1`] = `"
                                      请输入
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/input-number/_example/default.tsx 1`] = `"
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\input-number\\_example\\default.tsx 1`] = `"
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/input-number/_example/format.tsx 1`] = `"
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\input-number\\_example\\format.tsx 1`] = `"
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/input-number/_example/large-number.tsx 1`] = `"
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\input-number\\_example\\large-number.tsx 1`] = `"
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/input-number/_example/left.tsx 1`] = `"
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\input-number\\_example\\left.tsx 1`] = `"
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/input-number/_example/normal.tsx 1`] = `"
                                      机器:
                                      金额:
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\input-number\\_example\\normal.tsx 1`] = `"
                                      机器:
                                      金额:
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/input-number/_example/size.tsx 1`] = `"
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\input-number\\_example\\size.tsx 1`] = `"
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/input-number/_example/status.tsx 1`] = `"
                                      这是普通文本提示
                                      校验通过文本提示
                                      校验不通过文本提示
                                      校验存在严重问题文本提示
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\input-number\\_example\\status.tsx 1`] = `"
                                      这是普通文本提示
                                      校验通过文本提示
                                      校验不通过文本提示
                                      校验存在严重问题文本提示
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/input-number/_example/step.tsx 1`] = `"
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\input-number\\_example\\step.tsx 1`] = `"
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/layout/_example/aside.tsx 1`] = `"

                                      侧边导航布局

                                      Content
                                      Copyright @ 2019-2020 Tencent. All Rights Reserved
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\layout\\_example\\aside.tsx 1`] = `"

                                      侧边导航布局

                                      Content
                                      Copyright @ 2019-2020 Tencent. All Rights Reserved
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/layout/_example/base.tsx 1`] = `"

                                      顶部导航布局

                                      Header
                                      Content
                                      Copyright @ 2019-2021 Tencent. All Rights Reserved

                                      侧边导航布局

                                      Content
                                      Copyright @ 2019-2021 Tencent. All Rights Reserved

                                      组合导航布局

                                      Header
                                      Content
                                      Copyright @ 2019-2021 Tencent. All Rights Reserved

                                      Header
                                      Content
                                      Copyright @ 2019-2021 Tencent. All Rights Reserved

                                      Header
                                      Content
                                      Copyright @ 2019-2021 Tencent. All Rights Reserved
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\layout\\_example\\base.tsx 1`] = `"

                                      顶部导航布局

                                      Header
                                      Content
                                      Copyright @ 2019-2021 Tencent. All Rights Reserved

                                      侧边导航布局

                                      Content
                                      Copyright @ 2019-2021 Tencent. All Rights Reserved

                                      组合导航布局

                                      Header
                                      Content
                                      Copyright @ 2019-2021 Tencent. All Rights Reserved

                                      Header
                                      Content
                                      Copyright @ 2019-2021 Tencent. All Rights Reserved

                                      Header
                                      Content
                                      Copyright @ 2019-2021 Tencent. All Rights Reserved
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/layout/_example/combine.tsx 1`] = `"
                                      • 已选内容
                                      • 菜单内容一
                                      • 菜单内容二
                                      • 菜单内容三
                                      Content
                                      Copyright @ 2019-2020 Tencent. All Rights Reserved
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\layout\\_example\\combine.tsx 1`] = `"
                                      • 已选内容
                                      • 菜单内容一
                                      • 菜单内容二
                                      • 菜单内容三
                                      Content
                                      Copyright @ 2019-2020 Tencent. All Rights Reserved
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/layout/_example/top.tsx 1`] = `"
                                      • 已选内容
                                      • 菜单内容一
                                      • 菜单内容二
                                      • 菜单内容三
                                      Content
                                      Copyright @ 2019-2020 Tencent. All Rights Reserved
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\layout\\_example\\top.tsx 1`] = `"
                                      • 已选内容
                                      • 菜单内容一
                                      • 菜单内容二
                                      • 菜单内容三
                                      Content
                                      Copyright @ 2019-2020 Tencent. All Rights Reserved
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/link/_example/base.tsx 1`] = `"跳转链接"`; +exports[`ssr snapshot test > ssr test packages\\components\\link\\_example\\base.tsx 1`] = `"跳转链接"`; -exports[`ssr snapshot test > ssr test packages/components/link/_example/disabled.tsx 1`] = `""`; +exports[`ssr snapshot test > ssr test packages\\components\\link\\_example\\disabled.tsx 1`] = `""`; -exports[`ssr snapshot test > ssr test packages/components/link/_example/hover.tsx 1`] = `""`; +exports[`ssr snapshot test > ssr test packages\\components\\link\\_example\\hover.tsx 1`] = `""`; -exports[`ssr snapshot test > ssr test packages/components/link/_example/icon.tsx 1`] = `""`; +exports[`ssr snapshot test > ssr test packages\\components\\link\\_example\\icon.tsx 1`] = `""`; -exports[`ssr snapshot test > ssr test packages/components/link/_example/size.tsx 1`] = `""`; +exports[`ssr snapshot test > ssr test packages\\components\\link\\_example\\size.tsx 1`] = `""`; -exports[`ssr snapshot test > ssr test packages/components/link/_example/theme.tsx 1`] = `""`; +exports[`ssr snapshot test > ssr test packages\\components\\link\\_example\\theme.tsx 1`] = `""`; -exports[`ssr snapshot test > ssr test packages/components/link/_example/underline.tsx 1`] = `""`; +exports[`ssr snapshot test > ssr test packages\\components\\link\\_example\\underline.tsx 1`] = `""`; -exports[`ssr snapshot test > ssr test packages/components/list/_example/asyncLoading.tsx 1`] = `"
                                      • 列表内容列表内容列表内容
                                      • 列表内容列表内容列表内容
                                      • 列表内容列表内容列表内容
                                      • 列表内容列表内容列表内容
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\list\\_example\\asyncLoading.tsx 1`] = `"
                                      • 列表内容列表内容列表内容
                                      • 列表内容列表内容列表内容
                                      • 列表内容列表内容列表内容
                                      • 列表内容列表内容列表内容
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/list/_example/base.tsx 1`] = `"
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\list\\_example\\base.tsx 1`] = `"
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/list/_example/header-footer.tsx 1`] = `"
                                      这里是 Header
                                      • 列表内容列表内容列表内容
                                      • 列表内容列表内容列表内容
                                      • 列表内容列表内容列表内容
                                      • 列表内容列表内容列表内容

                                      通过 TNode 插入的 Header

                                      • 列表内容列表内容列表内容
                                      • 列表内容列表内容列表内容
                                      • 列表内容列表内容列表内容
                                      • 列表内容列表内容列表内容
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\list\\_example\\header-footer.tsx 1`] = `"
                                      这里是 Header
                                      • 列表内容列表内容列表内容
                                      • 列表内容列表内容列表内容
                                      • 列表内容列表内容列表内容
                                      • 列表内容列表内容列表内容

                                      通过 TNode 插入的 Header

                                      • 列表内容列表内容列表内容
                                      • 列表内容列表内容列表内容
                                      • 列表内容列表内容列表内容
                                      • 列表内容列表内容列表内容
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/list/_example/image-text.tsx 1`] = `"
                                      • 列表主内容

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

                                      • 列表主内容

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

                                      • 列表主内容

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

                                      • 列表主内容

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

                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\list\\_example\\image-text.tsx 1`] = `"
                                      • 列表主内容

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

                                      • 列表主内容

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

                                      • 列表主内容

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

                                      • 列表主内容

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

                                      "`; -exports[`ssr snapshot test > ssr test packages/components/list/_example/multiline.tsx 1`] = `"
                                      • 列表主内容

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

                                      • 列表主内容

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

                                      • 列表主内容

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

                                      • 列表主内容

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

                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\list\\_example\\multiline.tsx 1`] = `"
                                      • 列表主内容

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

                                      • 列表主内容

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

                                      • 列表主内容

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

                                      • 列表主内容

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

                                      "`; -exports[`ssr snapshot test > ssr test packages/components/list/_example/operation.tsx 1`] = `"
                                      • 列表主内容

                                        列表内容列表内容

                                      • 列表主内容

                                        列表内容列表内容

                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\list\\_example\\operation.tsx 1`] = `"
                                      • 列表主内容

                                        列表内容列表内容

                                      • 列表主内容

                                        列表内容列表内容

                                      "`; -exports[`ssr snapshot test > ssr test packages/components/list/_example/scroll.tsx 1`] = `"
                                        "`; +exports[`ssr snapshot test > ssr test packages\\components\\list\\_example\\scroll.tsx 1`] = `"
                                          "`; -exports[`ssr snapshot test > ssr test packages/components/list/_example/size.tsx 1`] = `"

                                          尺寸-小

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

                                          尺寸-中(默认)

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

                                          尺寸-大

                                          • 列表内容列表内容列表内容
                                          • 列表内容列表内容列表内容
                                          • 列表内容列表内容列表内容
                                          • 列表内容列表内容列表内容
                                          "`; +exports[`ssr snapshot test > ssr test packages\\components\\list\\_example\\size.tsx 1`] = `"

                                          尺寸-小

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

                                          尺寸-中(默认)

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

                                          尺寸-大

                                          • 列表内容列表内容列表内容
                                          • 列表内容列表内容列表内容
                                          • 列表内容列表内容列表内容
                                          • 列表内容列表内容列表内容
                                          "`; -exports[`ssr snapshot test > ssr test packages/components/list/_example/stripe.tsx 1`] = `"
                                          • 列表内容列表内容列表内容
                                          • 列表内容列表内容列表内容
                                          • 列表内容列表内容列表内容
                                          • 列表内容列表内容列表内容
                                          "`; +exports[`ssr snapshot test > ssr test packages\\components\\list\\_example\\stripe.tsx 1`] = `"
                                          • 列表内容列表内容列表内容
                                          • 列表内容列表内容列表内容
                                          • 列表内容列表内容列表内容
                                          • 列表内容列表内容列表内容
                                          "`; -exports[`ssr snapshot test > ssr test packages/components/list/_example/virtual-scroll.tsx 1`] = `"
                                            "`; +exports[`ssr snapshot test > ssr test packages\\components\\list\\_example\\virtual-scroll.tsx 1`] = `"
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/loading/_example/base.tsx 1`] = `"
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\loading\\_example\\base.tsx 1`] = `"
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/loading/_example/delay.tsx 1`] = `"
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\loading\\_example\\delay.tsx 1`] = `"
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/loading/_example/fullscreen.tsx 1`] = `"Loading state:"`; +exports[`ssr snapshot test > ssr test packages\\components\\loading\\_example\\fullscreen.tsx 1`] = `"Loading state:"`; -exports[`ssr snapshot test > ssr test packages/components/loading/_example/icon-text.tsx 1`] = `"
                                              拼命加载中...
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\loading\\_example\\icon-text.tsx 1`] = `"
                                              拼命加载中...
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/loading/_example/service.tsx 1`] = `"
                                              我是service的容器
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\loading\\_example\\service.tsx 1`] = `"
                                              我是service的容器
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/loading/_example/size.tsx 1`] = `"
                                              加载中...(小)
                                              加载中...(中)
                                              加载中...(大)
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\loading\\_example\\size.tsx 1`] = `"
                                              加载中...(小)
                                              加载中...(中)
                                              加载中...(大)
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/loading/_example/text.tsx 1`] = `"
                                              静态文字加载中...
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\loading\\_example\\text.tsx 1`] = `"
                                              静态文字加载中...
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/loading/_example/wrap.tsx 1`] = `"
                                              this is loading component
                                              this is loading component
                                              this is loading component
                                              this is loading component
                                              this is loading component
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\loading\\_example\\wrap.tsx 1`] = `"
                                              this is loading component
                                              this is loading component
                                              this is loading component
                                              this is loading component
                                              this is loading component
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/menu/_example/closable-side.tsx 1`] = `"
                                              • 仪表盘
                                              • 资源列表
                                              • 调度平台
                                              • 精准监控
                                              • 根目录
                                              • 消息区
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\menu\\_example\\closable-side.tsx 1`] = `"
                                              • 仪表盘
                                              • 资源列表
                                              • 调度平台
                                              • 精准监控
                                              • 根目录
                                              • 消息区
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/menu/_example/custom-header.tsx 1`] = `"
                                              • 菜单1
                                              • 菜单2
                                              • 菜单3
                                              • 菜单4
                                              • 菜单1
                                              • 菜单2
                                              • 菜单3
                                              • 菜单4
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\menu\\_example\\custom-header.tsx 1`] = `"
                                              • 菜单1
                                              • 菜单2
                                              • 菜单3
                                              • 菜单4
                                              • 菜单1
                                              • 菜单2
                                              • 菜单3
                                              • 菜单4
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/menu/_example/custom-side.tsx 1`] = `"
                                              • 仪表盘
                                              • 资源列表
                                              • 视频区
                                              • 根目录
                                              • 调度平台
                                              • 精准监控
                                              • 个人中心
                                              • 仪表盘
                                              • 资源列表
                                              • 视频区
                                              • 根目录
                                              • 调度平台
                                              • 精准监控
                                              • 个人中心
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\menu\\_example\\custom-side.tsx 1`] = `"
                                              • 仪表盘
                                              • 资源列表
                                              • 视频区
                                              • 根目录
                                              • 调度平台
                                              • 精准监控
                                              • 个人中心
                                              • 仪表盘
                                              • 资源列表
                                              • 视频区
                                              • 根目录
                                              • 调度平台
                                              • 精准监控
                                              • 个人中心
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/menu/_example/double.tsx 1`] = `"
                                              • 菜单1
                                              • 菜单2
                                              • 菜单3
                                              • 菜单4
                                                子菜单1
                                                子菜单2
                                              • 菜单1
                                              • 菜单2
                                              • 菜单3
                                              • 菜单4
                                                子菜单1
                                                子菜单2
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\menu\\_example\\double.tsx 1`] = `"
                                              • 菜单1
                                              • 菜单2
                                              • 菜单3
                                              • 菜单4
                                                子菜单1
                                                子菜单2
                                              • 菜单1
                                              • 菜单2
                                              • 菜单3
                                              • 菜单4
                                                子菜单1
                                                子菜单2
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/menu/_example/group-side.tsx 1`] = `"
                                                主导航
                                              • 仪表盘
                                              • 组件
                                              • 列表项
                                                • 基础列表项
                                                • 卡片列表项
                                                • 筛选列表项
                                                • 树状筛选列表项
                                              • 表单项
                                              • 详情页
                                              • 结果页
                                              • 更多
                                              • 个人页
                                              • 登录页
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\menu\\_example\\group-side.tsx 1`] = `"
                                                主导航
                                              • 仪表盘
                                              • 组件
                                              • 列表项
                                                • 基础列表项
                                                • 卡片列表项
                                                • 筛选列表项
                                                • 树状筛选列表项
                                              • 表单项
                                              • 详情页
                                              • 结果页
                                              • 更多
                                              • 个人页
                                              • 登录页
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/menu/_example/multi-side.tsx 1`] = `"
                                              • 仪表盘
                                              • 资源列表
                                                • 菜单二
                                              • 调度平台
                                                • 二级菜单-1
                                                  • 三级菜单-1
                                                  • 三级菜单-2
                                                  • 三级菜单-3
                                                • 二级菜单-2
                                              • 精准监控
                                                • 二级菜单-1
                                                • 二级菜单-2
                                              • 根目录
                                              • 消息区
                                                • 二级菜单-1
                                                • 二级菜单-2
                                              • 仪表盘
                                              • 资源列表
                                                • 二级菜单-1
                                                  • 三级菜单-1
                                                  • 三级菜单-2
                                                  • 三级菜单-3
                                              • 调度平台
                                                • 二级菜单-1
                                                • 二级菜单-2
                                              • 精准监控
                                                • 二级菜单-1
                                                • 二级菜单-2
                                              • 根目录
                                              • 消息区
                                                • 二级菜单-1
                                                • 二级菜单-2
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\menu\\_example\\multi-side.tsx 1`] = `"
                                              • 仪表盘
                                              • 资源列表
                                                • 菜单二
                                              • 调度平台
                                                • 二级菜单-1
                                                  • 三级菜单-1
                                                  • 三级菜单-2
                                                  • 三级菜单-3
                                                • 二级菜单-2
                                              • 精准监控
                                                • 二级菜单-1
                                                • 二级菜单-2
                                              • 根目录
                                              • 消息区
                                                • 二级菜单-1
                                                • 二级菜单-2
                                              • 仪表盘
                                              • 资源列表
                                                • 二级菜单-1
                                                  • 三级菜单-1
                                                  • 三级菜单-2
                                                  • 三级菜单-3
                                              • 调度平台
                                                • 二级菜单-1
                                                • 二级菜单-2
                                              • 精准监控
                                                • 二级菜单-1
                                                • 二级菜单-2
                                              • 根目录
                                              • 消息区
                                                • 二级菜单-1
                                                • 二级菜单-2
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/menu/_example/multiple.tsx 1`] = `"
                                              • 电器
                                              • 女装
                                              • 水果蔬菜
                                              • 其他
                                              • 电器
                                              • 女装
                                              • 水果蔬菜
                                              • 其他
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\menu\\_example\\multiple.tsx 1`] = `"
                                              • 电器
                                              • 女装
                                              • 水果蔬菜
                                              • 其他
                                              • 电器
                                              • 女装
                                              • 水果蔬菜
                                              • 其他
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/menu/_example/popup-side.tsx 1`] = `"
                                              • 仪表盘
                                              • 资源列表
                                              • 调度平台
                                              • 精准监控
                                              • 根目录
                                              • 消息区
                                              • 仪表盘
                                              • 资源列表
                                              • 调度平台
                                              • 精准监控
                                              • 根目录
                                              • 消息区
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\menu\\_example\\popup-side.tsx 1`] = `"
                                              • 仪表盘
                                              • 资源列表
                                              • 调度平台
                                              • 精准监控
                                              • 根目录
                                              • 消息区
                                              • 仪表盘
                                              • 资源列表
                                              • 调度平台
                                              • 精准监控
                                              • 根目录
                                              • 消息区
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/menu/_example/single.tsx 1`] = `"
                                              • 菜单1
                                              • 菜单2
                                              • 菜单3
                                              • 菜单4
                                              • 菜单1
                                              • 菜单2
                                              • 菜单3
                                              • 菜单4
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\menu\\_example\\single.tsx 1`] = `"
                                              • 菜单1
                                              • 菜单2
                                              • 菜单3
                                              • 菜单4
                                              • 菜单1
                                              • 菜单2
                                              • 菜单3
                                              • 菜单4
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/menu/_example/single-side.tsx 1`] = `"
                                              • 仪表盘
                                              • 资源列表
                                              • 视频区
                                              • 根目录
                                              • 调度平台
                                              • 精准监控
                                              • 个人中心
                                              • 仪表盘
                                              • 资源列表
                                              • 视频区
                                              • 根目录
                                              • 调度平台
                                              • 精准监控
                                              • 个人中心
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\menu\\_example\\single-side.tsx 1`] = `"
                                              • 仪表盘
                                              • 资源列表
                                              • 视频区
                                              • 根目录
                                              • 调度平台
                                              • 精准监控
                                              • 个人中心
                                              • 仪表盘
                                              • 资源列表
                                              • 视频区
                                              • 根目录
                                              • 调度平台
                                              • 精准监控
                                              • 个人中心
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/message/_example/base.tsx 1`] = `"
                                              用户表示普通操作信息提示
                                              用于表示操作顺利达成
                                              用户表示操作引起一定后果
                                              用于表示操作引起严重的后果
                                              用于帮助用户操作的信息提示
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\message\\_example\\base.tsx 1`] = `"
                                              用户表示普通操作信息提示
                                              用于表示操作顺利达成
                                              用户表示操作引起一定后果
                                              用于表示操作引起严重的后果
                                              用于帮助用户操作的信息提示
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/message/_example/close.tsx 1`] = `"
                                              默认关闭按钮
                                              自定义关闭按钮(文字)关闭
                                              自定义关闭按钮(函数)
                                              x
                                              自定义关闭按钮(ReactNode)
                                              x
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\message\\_example\\close.tsx 1`] = `"
                                              默认关闭按钮
                                              自定义关闭按钮(文字)关闭
                                              自定义关闭按钮(函数)
                                              x
                                              自定义关闭按钮(ReactNode)
                                              x
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/message/_example/close-all.tsx 1`] = `"
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\message\\_example\\close-all.tsx 1`] = `"
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/message/_example/close-function.tsx 1`] = `""`; +exports[`ssr snapshot test > ssr test packages\\components\\message\\_example\\close-function.tsx 1`] = `""`; -exports[`ssr snapshot test > ssr test packages/components/message/_example/config.tsx 1`] = `"
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\message\\_example\\config.tsx 1`] = `"
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/message/_example/duration.tsx 1`] = `"
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\message\\_example\\duration.tsx 1`] = `"
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/message/_example/loading.tsx 1`] = `"
                                              用于表示操作正在生效的过程中
                                              用于表示操作顺利达成(10s)
                                              用于表示普通操作失败中断(10s)
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\message\\_example\\loading.tsx 1`] = `"
                                              用于表示操作正在生效的过程中
                                              用于表示操作顺利达成(10s)
                                              用于表示普通操作失败中断(10s)
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/message/_example/methods.tsx 1`] = `"
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\message\\_example\\methods.tsx 1`] = `"
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/message/_example/offset.tsx 1`] = `"
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\message\\_example\\offset.tsx 1`] = `"
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/notification/_example/attach.tsx 1`] = `"
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\notification\\_example\\attach.tsx 1`] = `"
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/notification/_example/base.tsx 1`] = `"
                                              标题名称
                                              这是一条消息通知
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\notification\\_example\\base.tsx 1`] = `"
                                              标题名称
                                              这是一条消息通知
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/notification/_example/close-all.tsx 1`] = `"
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\notification\\_example\\close-all.tsx 1`] = `"
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/notification/_example/content.tsx 1`] = `"
                                              自定义内容(字符串)
                                              这是一条消息通知
                                              自定义内容
                                              这是一条消息通知
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\notification\\_example\\content.tsx 1`] = `"
                                              自定义内容(字符串)
                                              这是一条消息通知
                                              自定义内容
                                              这是一条消息通知
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/notification/_example/footer.tsx 1`] = `"
                                              自定义底部详情
                                              这是一条消息通知
                                              重启查看详情
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\notification\\_example\\footer.tsx 1`] = `"
                                              自定义底部详情
                                              这是一条消息通知
                                              重启查看详情
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/notification/_example/icon.tsx 1`] = `"
                                              普通通知
                                              这是一条消息通知这是一条消息通知这是一条消息通知这是一条消息通知这是一条消息通知这是一条消息通知这是一条消息通知
                                              危险通知
                                              这是一条消息通知这是一条消息通知这是一条消息通知这是一条消息通知这是一条消息通知这是一条消息通知这是一条消息通知
                                              告警通知
                                              这是一条消息通知这是一条消息通知这是一条消息通知这是一条消息通知这是一条消息通知这是一条消息通知这是一条消息通知
                                              成功通知
                                              这是一条消息通知这是一条消息通知这是一条消息通知这是一条消息通知这是一条消息通知这是一条消息通知这是一条消息通知
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\notification\\_example\\icon.tsx 1`] = `"
                                              普通通知
                                              这是一条消息通知这是一条消息通知这是一条消息通知这是一条消息通知这是一条消息通知这是一条消息通知这是一条消息通知
                                              危险通知
                                              这是一条消息通知这是一条消息通知这是一条消息通知这是一条消息通知这是一条消息通知这是一条消息通知这是一条消息通知
                                              告警通知
                                              这是一条消息通知这是一条消息通知这是一条消息通知这是一条消息通知这是一条消息通知这是一条消息通知这是一条消息通知
                                              成功通知
                                              这是一条消息通知这是一条消息通知这是一条消息通知这是一条消息通知这是一条消息通知这是一条消息通知这是一条消息通知
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/notification/_example/operation.tsx 1`] = `"
                                              超出的文本省略号显示
                                              文案不限长度,但是展示最大显示三行折行的末尾显示折行末尾显示折行末尾显示折行末尾显示折行末尾显示折行折行末尾显示折行折行末尾显示折行末尾显示折行折行末尾
                                              自定义底部
                                              使用 props function 自定义底部内容
                                              自定义标题 我是副标题
                                              1. 使用 props function 自定义标题;2. 使用插槽自定义底部内容
                                              自定义标题 我是副标题
                                              1. 使用插槽自定义标题 2. 使用插槽自定义底部内容
                                              自定义内容
                                              使用插槽自定义内容
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\notification\\_example\\operation.tsx 1`] = `"
                                              超出的文本省略号显示
                                              文案不限长度,但是展示最大显示三行折行的末尾显示折行末尾显示折行末尾显示折行末尾显示折行末尾显示折行折行末尾显示折行折行末尾显示折行末尾显示折行折行末尾
                                              自定义底部
                                              使用 props function 自定义底部内容
                                              自定义标题 我是副标题
                                              1. 使用 props function 自定义标题;2. 使用插槽自定义底部内容
                                              自定义标题 我是副标题
                                              1. 使用插槽自定义标题 2. 使用插槽自定义底部内容
                                              自定义内容
                                              使用插槽自定义内容
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/notification/_example/placement.tsx 1`] = `"
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\notification\\_example\\placement.tsx 1`] = `"
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/notification/_example/plugin.tsx 1`] = `"
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\notification\\_example\\plugin.tsx 1`] = `"
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/notification/_example/toggle.tsx 1`] = `""`; +exports[`ssr snapshot test > ssr test packages\\components\\notification\\_example\\toggle.tsx 1`] = `""`; -exports[`ssr snapshot test > ssr test packages/components/pagination/_example/base.tsx 1`] = `"
                                              共 100 条数据
                                              请选择
                                              • 1
                                              • 2
                                              • 3
                                              • 4
                                              • 5
                                              • 20
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\pagination\\_example\\base.tsx 1`] = `"
                                              共 100 条数据
                                              请选择
                                              • 1
                                              • 2
                                              • 3
                                              • 4
                                              • 5
                                              • 20
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/pagination/_example/jump.tsx 1`] = `"
                                              共 645 条数据
                                              请选择
                                              • 1
                                              • 2
                                              • 3
                                              • 4
                                              • 5
                                              • 33
                                              跳至
                                              / 33 页
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\pagination\\_example\\jump.tsx 1`] = `"
                                              共 645 条数据
                                              请选择
                                              • 1
                                              • 2
                                              • 3
                                              • 4
                                              • 5
                                              • 33
                                              跳至
                                              / 33 页
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/pagination/_example/mini.tsx 1`] = `"
                                              共 100 条数据
                                              请选择
                                              • 1
                                              • 2
                                              • 3
                                              • 4
                                              • 5
                                              • 20
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\pagination\\_example\\mini.tsx 1`] = `"
                                              共 100 条数据
                                              请选择
                                              • 1
                                              • 2
                                              • 3
                                              • 4
                                              • 5
                                              • 20
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/pagination/_example/more.tsx 1`] = `"
                                              展示首尾页码省略
                                              共 100 条数据
                                              请选择
                                              • 1
                                              • 2
                                              • 3
                                              • 4
                                              • 5
                                              • 20
                                              不展示首尾页码省略
                                              共 100 条数据
                                              请选择
                                              • 1
                                              • 2
                                              • 3
                                              • 4
                                              • 5
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\pagination\\_example\\more.tsx 1`] = `"
                                              展示首尾页码省略
                                              共 100 条数据
                                              请选择
                                              • 1
                                              • 2
                                              • 3
                                              • 4
                                              • 5
                                              • 20
                                              不展示首尾页码省略
                                              共 100 条数据
                                              请选择
                                              • 1
                                              • 2
                                              • 3
                                              • 4
                                              • 5
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/pagination/_example/page-num.tsx 1`] = `"
                                              共 645 条数据
                                              请选择
                                              • 1
                                              • 2
                                              • 3
                                              • 4
                                              • 5
                                              • 33
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\pagination\\_example\\page-num.tsx 1`] = `"
                                              共 645 条数据
                                              请选择
                                              • 1
                                              • 2
                                              • 3
                                              • 4
                                              • 5
                                              • 33
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/pagination/_example/pagination-mini.tsx 1`] = `"
                                              layout:
                                              size:
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\pagination\\_example\\pagination-mini.tsx 1`] = `"
                                              layout:
                                              size:
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/pagination/_example/simple.tsx 1`] = `"
                                              共 100 条数据
                                              请选择
                                              跳至
                                              / 20 页
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\pagination\\_example\\simple.tsx 1`] = `"
                                              共 100 条数据
                                              请选择
                                              跳至
                                              / 20 页
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/pagination/_example/simple-mini.tsx 1`] = `"
                                              共 100 条数据
                                              请选择
                                              跳至
                                              / 20 页
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\pagination\\_example\\simple-mini.tsx 1`] = `"
                                              共 100 条数据
                                              请选择
                                              跳至
                                              / 20 页
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/pagination/_example/total.tsx 1`] = `"
                                              共 685 条数据
                                              请选择
                                              • 1
                                              • 2
                                              • 3
                                              • 4
                                              • 5
                                              • 69
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\pagination\\_example\\total.tsx 1`] = `"
                                              共 685 条数据
                                              请选择
                                              • 1
                                              • 2
                                              • 3
                                              • 4
                                              • 5
                                              • 69
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/popconfirm/_example/base.tsx 1`] = `"
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\popconfirm\\_example\\base.tsx 1`] = `"
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/popconfirm/_example/button.tsx 1`] = `"
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\popconfirm\\_example\\button.tsx 1`] = `"
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/popconfirm/_example/describe.tsx 1`] = `"
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\popconfirm\\_example\\describe.tsx 1`] = `"
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/popconfirm/_example/extends.tsx 1`] = `""`; +exports[`ssr snapshot test > ssr test packages\\components\\popconfirm\\_example\\extends.tsx 1`] = `""`; -exports[`ssr snapshot test > ssr test packages/components/popconfirm/_example/icon.tsx 1`] = `"
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\popconfirm\\_example\\icon.tsx 1`] = `"
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/popconfirm/_example/inherit.tsx 1`] = `"
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\popconfirm\\_example\\inherit.tsx 1`] = `"
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/popconfirm/_example/placement.tsx 1`] = `"
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\popconfirm\\_example\\placement.tsx 1`] = `"
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/popconfirm/_example/theme.tsx 1`] = `"
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\popconfirm\\_example\\theme.tsx 1`] = `"
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/popup/_example/base.tsx 1`] = `""`; +exports[`ssr snapshot test > ssr test packages\\components\\popup\\_example\\base.tsx 1`] = `""`; -exports[`ssr snapshot test > ssr test packages/components/popup/_example/container.tsx 1`] = `"
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\popup\\_example\\container.tsx 1`] = `"
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/popup/_example/destroy.tsx 1`] = `""`; +exports[`ssr snapshot test > ssr test packages\\components\\popup\\_example\\destroy.tsx 1`] = `""`; -exports[`ssr snapshot test > ssr test packages/components/popup/_example/disabled.tsx 1`] = `""`; +exports[`ssr snapshot test > ssr test packages\\components\\popup\\_example\\disabled.tsx 1`] = `""`; -exports[`ssr snapshot test > ssr test packages/components/popup/_example/dynamic.tsx 1`] = `""`; +exports[`ssr snapshot test > ssr test packages\\components\\popup\\_example\\dynamic.tsx 1`] = `""`; -exports[`ssr snapshot test > ssr test packages/components/popup/_example/placement.tsx 1`] = `"
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\popup\\_example\\placement.tsx 1`] = `"
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/popup/_example/plugin.tsx 1`] = `"
                                              这里是一个日志查询的例子,在很长的日志内容中,日志内容存在换行的情况,可以点击链接进行日志查询操作点击此链接,会打开浮层进行跳转操作
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\popup\\_example\\plugin.tsx 1`] = `"
                                              这里是一个日志查询的例子,在很长的日志内容中,日志内容存在换行的情况,可以点击链接进行日志查询操作点击此链接,会打开浮层进行跳转操作
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/popup/_example/popper-options.tsx 1`] = `"
                                              请输入横向偏移量:
                                              请输入纵向偏移量:
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\popup\\_example\\popper-options.tsx 1`] = `"
                                              请输入横向偏移量:
                                              请输入纵向偏移量:
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/popup/_example/style.tsx 1`] = `"
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\popup\\_example\\style.tsx 1`] = `"
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/popup/_example/trigger.tsx 1`] = `"
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\popup\\_example\\trigger.tsx 1`] = `"
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/popup/_example/trigger-element.tsx 1`] = `"
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\popup\\_example\\trigger-element.tsx 1`] = `"
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/popup/_example/visible.tsx 1`] = `""`; +exports[`ssr snapshot test > ssr test packages\\components\\popup\\_example\\visible.tsx 1`] = `""`; -exports[`ssr snapshot test > ssr test packages/components/progress/_example/circle.tsx 1`] = `"
                                              默认样式
                                              0%
                                              不显示数字
                                              自定义内容
                                              75 day
                                              进度完成
                                              进度发生错误
                                              进度被中断
                                              自定义颜色
                                              小尺寸
                                              0%
                                              默认尺寸
                                              0%
                                              大尺寸
                                              0%
                                              自定义尺寸
                                              0%
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\progress\\_example\\circle.tsx 1`] = `"
                                              默认样式
                                              0%
                                              不显示数字
                                              自定义内容
                                              75 day
                                              进度完成
                                              进度发生错误
                                              进度被中断
                                              自定义颜色
                                              小尺寸
                                              0%
                                              默认尺寸
                                              0%
                                              大尺寸
                                              0%
                                              自定义尺寸
                                              0%
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/progress/_example/line.tsx 1`] = `"

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

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

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

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

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

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

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

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

                                              30%

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

                                              30%

                                              30%
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/qrcode/_example/base.tsx 1`] = `"
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\qrcode\\_example\\base.tsx 1`] = `"
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/qrcode/_example/customColor.tsx 1`] = `"
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\qrcode\\_example\\customColor.tsx 1`] = `"
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/qrcode/_example/customSize.tsx 1`] = `"

                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\qrcode\\_example\\customSize.tsx 1`] = `"

                                              "`; -exports[`ssr snapshot test > ssr test packages/components/qrcode/_example/customStatusRender.tsx 1`] = `"

                                              加载中...

                                              二维码过期

                                              点击刷新

                                              已扫描
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\qrcode\\_example\\customStatusRender.tsx 1`] = `"

                                              加载中...

                                              二维码过期

                                              点击刷新

                                              已扫描
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/qrcode/_example/download.tsx 1`] = `"
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\qrcode\\_example\\download.tsx 1`] = `"
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/qrcode/_example/icon.tsx 1`] = `"
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\qrcode\\_example\\icon.tsx 1`] = `"
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/qrcode/_example/level.tsx 1`] = `"
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\qrcode\\_example\\level.tsx 1`] = `"
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/qrcode/_example/popover.tsx 1`] = `""`; +exports[`ssr snapshot test > ssr test packages\\components\\qrcode\\_example\\popover.tsx 1`] = `""`; -exports[`ssr snapshot test > ssr test packages/components/qrcode/_example/status.tsx 1`] = `"

                                              二维码过期

                                              点击刷新

                                              已扫描

                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\qrcode\\_example\\status.tsx 1`] = `"

                                              二维码过期

                                              点击刷新

                                              已扫描

                                              "`; -exports[`ssr snapshot test > ssr test packages/components/qrcode/_example/type.tsx 1`] = `"
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\qrcode\\_example\\type.tsx 1`] = `"
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/radio/_example/base.tsx 1`] = `"
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\radio\\_example\\base.tsx 1`] = `"
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/radio/_example/group.tsx 1`] = `"
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\radio\\_example\\group.tsx 1`] = `"
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/radio/_example/size.tsx 1`] = `"
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\radio\\_example\\size.tsx 1`] = `"
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/radio/_example/type.tsx 1`] = `"
                                              普通单选按钮
                                              边框型单选按钮
                                              填充型单选按钮
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\radio\\_example\\type.tsx 1`] = `"
                                              普通单选按钮
                                              边框型单选按钮
                                              填充型单选按钮
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/range-input/_example/base.tsx 1`] = `"
                                              -
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\range-input\\_example\\base.tsx 1`] = `"
                                              -
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/range-input/_example/popup.tsx 1`] = `"
                                              -
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\range-input\\_example\\popup.tsx 1`] = `"
                                              -
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/range-input/_example/size.tsx 1`] = `"
                                              -
                                              -
                                              -
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\range-input\\_example\\size.tsx 1`] = `"
                                              -
                                              -
                                              -
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/range-input/_example/status.tsx 1`] = `"
                                              -
                                              -
                                              -
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\range-input\\_example\\status.tsx 1`] = `"
                                              -
                                              -
                                              -
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/rate/_example/base.tsx 1`] = `"
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\rate\\_example\\base.tsx 1`] = `"
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/rate/_example/clearable.tsx 1`] = `"

                                              clearable: true

                                              clearable: false

                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\rate\\_example\\clearable.tsx 1`] = `"

                                              clearable: true

                                              clearable: false

                                              "`; -exports[`ssr snapshot test > ssr test packages/components/rate/_example/custom.tsx 1`] = `"
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\rate\\_example\\custom.tsx 1`] = `"
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/rate/_example/icon.tsx 1`] = `"
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\rate\\_example\\icon.tsx 1`] = `"
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/rate/_example/size.tsx 1`] = `"

                                              16px

                                              24px

                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\rate\\_example\\size.tsx 1`] = `"

                                              16px

                                              24px

                                              "`; -exports[`ssr snapshot test > ssr test packages/components/rate/_example/status.tsx 1`] = `"

                                              未评分状态

                                              满分状态

                                              半星状态

                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\rate\\_example\\status.tsx 1`] = `"

                                              未评分状态

                                              满分状态

                                              半星状态

                                              "`; -exports[`ssr snapshot test > ssr test packages/components/rate/_example/texts.tsx 1`] = `"
                                              满意
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\rate\\_example\\texts.tsx 1`] = `"
                                              满意
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/select/_example/base.tsx 1`] = `"
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\select\\_example\\base.tsx 1`] = `"
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/select/_example/collapsed.tsx 1`] = `"

                                              default:

                                              请选择

                                              use collapsedItems:

                                              size control:
                                              disabled control:
                                              readonly control:
                                              请选择
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\select\\_example\\collapsed.tsx 1`] = `"

                                              default:

                                              请选择

                                              use collapsedItems:

                                              size control:
                                              disabled control:
                                              readonly control:
                                              请选择
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/select/_example/creatable.tsx 1`] = `"
                                              请选择
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\select\\_example\\creatable.tsx 1`] = `"
                                              请选择
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/select/_example/custom-options.tsx 1`] = `"
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\select\\_example\\custom-options.tsx 1`] = `"
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/select/_example/custom-selected.tsx 1`] = `"
                                              请选择
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\select\\_example\\custom-selected.tsx 1`] = `"
                                              请选择
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/select/_example/disabled.tsx 1`] = `"
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\select\\_example\\disabled.tsx 1`] = `"
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/select/_example/filterable.tsx 1`] = `"
                                              -请选择-
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\select\\_example\\filterable.tsx 1`] = `"
                                              -请选择-
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/select/_example/group.tsx 1`] = `"
                                              请选择
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\select\\_example\\group.tsx 1`] = `"
                                              请选择
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/select/_example/keys.tsx 1`] = `"
                                              请选择
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\select\\_example\\keys.tsx 1`] = `"
                                              请选择
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/select/_example/label-in-value.tsx 1`] = `"
                                              请选择
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\select\\_example\\label-in-value.tsx 1`] = `"
                                              请选择
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/select/_example/max.tsx 1`] = `"
                                              请选择
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\select\\_example\\max.tsx 1`] = `"
                                              请选择
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/select/_example/multiple.tsx 1`] = `"
                                              请选择
                                              请选择云产品
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\select\\_example\\multiple.tsx 1`] = `"
                                              请选择
                                              请选择云产品
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/select/_example/noborder.tsx 1`] = `"
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\select\\_example\\noborder.tsx 1`] = `"
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/select/_example/options.tsx 1`] = `"
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\select\\_example\\options.tsx 1`] = `"
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/select/_example/panel.tsx 1`] = `"
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\select\\_example\\panel.tsx 1`] = `"
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/select/_example/popup-props.tsx 1`] = `"
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\select\\_example\\popup-props.tsx 1`] = `"
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/select/_example/prefix.tsx 1`] = `"
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\select\\_example\\prefix.tsx 1`] = `"
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/select/_example/remote-search.tsx 1`] = `"
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\select\\_example\\remote-search.tsx 1`] = `"
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/select/_example/scroll-bottom.tsx 1`] = `"
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\select\\_example\\scroll-bottom.tsx 1`] = `"
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/select/_example/scroll-top.tsx 1`] = `"
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\select\\_example\\scroll-top.tsx 1`] = `"
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/select/_example/size.tsx 1`] = `"
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\select\\_example\\size.tsx 1`] = `"
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/select/_example/status.tsx 1`] = `"
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\select\\_example\\status.tsx 1`] = `"
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/select/_example/virtual-scroll.tsx 1`] = `"
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\select\\_example\\virtual-scroll.tsx 1`] = `"
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/select-input/_example/autocomplete.tsx 1`] = `"
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\select-input\\_example\\autocomplete.tsx 1`] = `"
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/select-input/_example/autowidth.tsx 1`] = `"
                                              tdesign-vue
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\select-input\\_example\\autowidth.tsx 1`] = `"
                                              tdesign-vue
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/select-input/_example/autowidth-multiple.tsx 1`] = `"
                                              Vue
                                              +2
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\select-input\\_example\\autowidth-multiple.tsx 1`] = `"
                                              Vue
                                              +2
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/select-input/_example/borderless.tsx 1`] = `"
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\select-input\\_example\\borderless.tsx 1`] = `"
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/select-input/_example/borderless-multiple.tsx 1`] = `"
                                              Vue
                                              +2
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\select-input\\_example\\borderless-multiple.tsx 1`] = `"
                                              Vue
                                              +2
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/select-input/_example/collapsed-items.tsx 1`] = `"
                                              tdesign-vue
                                              +5


                                              tdesign-vue
                                              tdesign-react
                                              More(+4)
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\select-input\\_example\\collapsed-items.tsx 1`] = `"
                                              tdesign-vue
                                              +5


                                              tdesign-vue
                                              tdesign-react
                                              More(+4)
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/select-input/_example/custom-tag.tsx 1`] = `"
                                              tdesign-vue


                                              tdesign-vue
                                              tdesign-react


                                              tdesign-vuetdesign-reacttdesign-mobile-vue
                                              tdesign-vuetdesign-reacttdesign-mobile-vue
                                              tdesign-vuetdesign-reacttdesign-mobile-vue
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\select-input\\_example\\custom-tag.tsx 1`] = `"
                                              tdesign-vue


                                              tdesign-vue
                                              tdesign-react


                                              tdesign-vuetdesign-reacttdesign-mobile-vue
                                              tdesign-vuetdesign-reacttdesign-mobile-vue
                                              tdesign-vuetdesign-reacttdesign-mobile-vue
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/select-input/_example/excess-tags-display-type.tsx 1`] = `"

                                              第一种呈现方式:超出时滚动显示


                                              tdesign-vue
                                              tdesign-react
                                              tdesign-miniprogram
                                              tdesign-angular
                                              tdesign-mobile-vue
                                              tdesign-mobile-react



                                              第二种呈现方式:超出时换行显示


                                              tdesign-vue
                                              tdesign-react
                                              tdesign-miniprogram
                                              tdesign-angular
                                              tdesign-mobile-vue
                                              tdesign-mobile-react
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\select-input\\_example\\excess-tags-display-type.tsx 1`] = `"

                                              第一种呈现方式:超出时滚动显示


                                              tdesign-vue
                                              tdesign-react
                                              tdesign-miniprogram
                                              tdesign-angular
                                              tdesign-mobile-vue
                                              tdesign-mobile-react



                                              第二种呈现方式:超出时换行显示


                                              tdesign-vue
                                              tdesign-react
                                              tdesign-miniprogram
                                              tdesign-angular
                                              tdesign-mobile-vue
                                              tdesign-mobile-react
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/select-input/_example/label-suffix.tsx 1`] = `"
                                              前置内容:


                                              单位:元
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\select-input\\_example\\label-suffix.tsx 1`] = `"
                                              前置内容:


                                              单位:元
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/select-input/_example/multiple.tsx 1`] = `"



                                              Vue
                                              React
                                              Miniprogram
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\select-input\\_example\\multiple.tsx 1`] = `"



                                              Vue
                                              React
                                              Miniprogram
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/select-input/_example/single.tsx 1`] = `"
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\select-input\\_example\\single.tsx 1`] = `"
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/select-input/_example/status.tsx 1`] = `"
                                              禁用状态:
                                              这是禁用状态的文本
                                              只读状态:
                                              这是只读状态的文本提示
                                              成功状态:
                                              校验通过文本提示
                                              警告状态:
                                              校验不通过文本提示
                                              错误状态:
                                              校验存在严重问题文本提示
                                              加载状态:
                                              处于加载状态的文本提示
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\select-input\\_example\\status.tsx 1`] = `"
                                              禁用状态:
                                              这是禁用状态的文本
                                              只读状态:
                                              这是只读状态的文本提示
                                              成功状态:
                                              校验通过文本提示
                                              警告状态:
                                              校验不通过文本提示
                                              错误状态:
                                              校验存在严重问题文本提示
                                              加载状态:
                                              处于加载状态的文本提示
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/select-input/_example/width.tsx 1`] = `"
                                              下拉框默认宽度:

                                              下拉框最大宽度:

                                              与内容宽度一致:

                                              下拉框固定宽度:

                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\select-input\\_example\\width.tsx 1`] = `"
                                              下拉框默认宽度:

                                              下拉框最大宽度:

                                              与内容宽度一致:

                                              下拉框固定宽度:

                                              "`; -exports[`ssr snapshot test > ssr test packages/components/skeleton/_example/advance.tsx 1`] = `"
                                              组合成网页效果
                                              image
                                              image
                                              image
                                              确定

                                              标题

                                              内容
                                              组合成列表效果
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\skeleton\\_example\\advance.tsx 1`] = `"
                                              组合成网页效果
                                              image
                                              image
                                              image
                                              确定

                                              标题

                                              内容
                                              组合成列表效果
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/skeleton/_example/animation.tsx 1`] = `"
                                              渐变加载动画
                                              闪烁加载动画
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\skeleton\\_example\\animation.tsx 1`] = `"
                                              渐变加载动画
                                              闪烁加载动画
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/skeleton/_example/base.tsx 1`] = `"
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\skeleton\\_example\\base.tsx 1`] = `"
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/skeleton/_example/delay.tsx 1`] = `"
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\skeleton\\_example\\delay.tsx 1`] = `"
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/skeleton/_example/theme.tsx 1`] = `"
                                              文本
                                              头像
                                              段落
                                              头像描述
                                              选项卡
                                              文章
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\skeleton\\_example\\theme.tsx 1`] = `"
                                              文本
                                              头像
                                              段落
                                              头像描述
                                              选项卡
                                              文章
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/slider/_example/base.tsx 1`] = `"
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\slider\\_example\\base.tsx 1`] = `"
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/slider/_example/disabled.tsx 1`] = `"
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\slider\\_example\\disabled.tsx 1`] = `"
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/slider/_example/input-number.tsx 1`] = `"
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\slider\\_example\\input-number.tsx 1`] = `"
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/slider/_example/input-number-vertical.tsx 1`] = `"
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\slider\\_example\\input-number-vertical.tsx 1`] = `"
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/slider/_example/marks.tsx 1`] = `"
                                              0°C
                                              12°C
                                              37°C
                                              0°C
                                              8°C
                                              37°C
                                              50°C
                                              70°C
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\slider\\_example\\marks.tsx 1`] = `"
                                              0°C
                                              12°C
                                              37°C
                                              0°C
                                              8°C
                                              37°C
                                              50°C
                                              70°C
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/slider/_example/min-and-max.tsx 1`] = `"
                                              min:10
                                              max:30
                                              min:10
                                              max:30
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\slider\\_example\\min-and-max.tsx 1`] = `"
                                              min:10
                                              max:30
                                              min:10
                                              max:30
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/slider/_example/step.tsx 1`] = `"
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\slider\\_example\\step.tsx 1`] = `"
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/slider/_example/vertical.tsx 1`] = `"
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\slider\\_example\\vertical.tsx 1`] = `"
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/slider/_example/vertical-marks.tsx 1`] = `"
                                              0°C
                                              12°C
                                              37°C
                                              0°C
                                              8°C
                                              37°C
                                              50°C
                                              70°C
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\slider\\_example\\vertical-marks.tsx 1`] = `"
                                              0°C
                                              12°C
                                              37°C
                                              0°C
                                              8°C
                                              37°C
                                              50°C
                                              70°C
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/space/_example/align.tsx 1`] = `"
                                              start
                                              center
                                              end
                                              baseline
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\space\\_example\\align.tsx 1`] = `"
                                              start
                                              center
                                              end
                                              baseline
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/space/_example/base.tsx 1`] = `"
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\space\\_example\\base.tsx 1`] = `"
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/space/_example/break-line.tsx 1`] = `"
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\space\\_example\\break-line.tsx 1`] = `"
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/space/_example/separator.tsx 1`] = `"
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\space\\_example\\separator.tsx 1`] = `"
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/space/_example/size.tsx 1`] = `"

                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\space\\_example\\size.tsx 1`] = `"

                                              "`; -exports[`ssr snapshot test > ssr test packages/components/space/_example/vertical.tsx 1`] = `"
                                              仅有内容区域的卡片形式。卡片内容区域可以是文字、图片、表单、表格等形式信息内容。可使用大中小不同的卡片尺寸,按业务需求进行呈现。
                                              仅有内容区域的卡片形式。卡片内容区域可以是文字、图片、表单、表格等形式信息内容。可使用大中小不同的卡片尺寸,按业务需求进行呈现。
                                              仅有内容区域的卡片形式。卡片内容区域可以是文字、图片、表单、表格等形式信息内容。可使用大中小不同的卡片尺寸,按业务需求进行呈现。
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\space\\_example\\vertical.tsx 1`] = `"
                                              仅有内容区域的卡片形式。卡片内容区域可以是文字、图片、表单、表格等形式信息内容。可使用大中小不同的卡片尺寸,按业务需求进行呈现。
                                              仅有内容区域的卡片形式。卡片内容区域可以是文字、图片、表单、表格等形式信息内容。可使用大中小不同的卡片尺寸,按业务需求进行呈现。
                                              仅有内容区域的卡片形式。卡片内容区域可以是文字、图片、表单、表格等形式信息内容。可使用大中小不同的卡片尺寸,按业务需求进行呈现。
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/statistic/_example/animation.tsx 1`] = `"
                                              Total Assets
                                              0.00%
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\statistic\\_example\\animation.tsx 1`] = `"
                                              Total Assets
                                              0.00%
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/statistic/_example/base.tsx 1`] = `"
                                              Total Assets
                                              82.76%
                                              Total Assets
                                              82.76USD
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\statistic\\_example\\base.tsx 1`] = `"
                                              Total Assets
                                              82.76%
                                              Total Assets
                                              82.76USD
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/statistic/_example/color.tsx 1`] = `"
                                              Total Assets
                                              82.76%
                                              Total Assets
                                              82.76%
                                              Total Assets
                                              82.76%
                                              Total Assets
                                              82.76%
                                              Total Assets
                                              82.76%
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\statistic\\_example\\color.tsx 1`] = `"
                                              Total Assets
                                              82.76%
                                              Total Assets
                                              82.76%
                                              Total Assets
                                              82.76%
                                              Total Assets
                                              82.76%
                                              Total Assets
                                              82.76%
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/statistic/_example/combination.tsx 1`] = `"
                                              Total Assets
                                              82.76%
                                              Total Assets
                                              52.18%
                                              Yesterday traffic
                                              Voice duration
                                              789minute
                                              the day before 9%
                                              Total number of voice DAUs
                                              188
                                              the day before
                                              9%
                                              last week
                                              9%
                                              Total Assets
                                              52.18%
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\statistic\\_example\\combination.tsx 1`] = `"
                                              Total Assets
                                              82.76%
                                              Total Assets
                                              52.18%
                                              Yesterday traffic
                                              Voice duration
                                              789minute
                                              the day before 9%
                                              Total number of voice DAUs
                                              188
                                              the day before
                                              9%
                                              last week
                                              9%
                                              Total Assets
                                              52.18%
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/statistic/_example/loading.tsx 1`] = `"
                                              Downloads
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\statistic\\_example\\loading.tsx 1`] = `"
                                              Downloads
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/statistic/_example/slot.tsx 1`] = `"
                                              Total Assets
                                              56.32%
                                              Total Assets
                                              $176,059%
                                              Total Assets
                                              62.58%
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\statistic\\_example\\slot.tsx 1`] = `"
                                              Total Assets
                                              56.32%
                                              Total Assets
                                              $176,059%
                                              Total Assets
                                              62.58%
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/statistic/_example/trend.tsx 1`] = `"
                                              Total Assets
                                              82.76%
                                              Total Assets
                                              82.76%
                                              Total Assets
                                              82.76%
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\statistic\\_example\\trend.tsx 1`] = `"
                                              Total Assets
                                              82.76%
                                              Total Assets
                                              82.76%
                                              Total Assets
                                              82.76%
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/steps/_example/extra.tsx 1`] = `"
                                              步骤1
                                              这里是提示文字
                                              2
                                              步骤2
                                              这里是提示文字
                                              3
                                              步骤3
                                              这里是提示文字
                                              4
                                              步骤4
                                              这里是提示文字
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\steps\\_example\\extra.tsx 1`] = `"
                                              步骤1
                                              这里是提示文字
                                              2
                                              步骤2
                                              这里是提示文字
                                              3
                                              步骤3
                                              这里是提示文字
                                              4
                                              步骤4
                                              这里是提示文字
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/steps/_example/icon.tsx 1`] = `"
                                              登录
                                              已完成状态
                                              购物
                                              进行中状态
                                              支付
                                              未开始
                                              完成
                                              未开始
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\steps\\_example\\icon.tsx 1`] = `"
                                              登录
                                              已完成状态
                                              购物
                                              进行中状态
                                              支付
                                              未开始
                                              完成
                                              未开始
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/steps/_example/no-sequence.tsx 1`] = `"
                                              已完成的步骤
                                              这里是提示文字
                                              进行中的步骤
                                              这里是提示文字
                                              未进行的步骤
                                              这里是提示文字
                                              未进行的步骤
                                              这里是提示文字
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\steps\\_example\\no-sequence.tsx 1`] = `"
                                              已完成的步骤
                                              这里是提示文字
                                              进行中的步骤
                                              这里是提示文字
                                              未进行的步骤
                                              这里是提示文字
                                              未进行的步骤
                                              这里是提示文字
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/steps/_example/sequence.tsx 1`] = `"
                                              已完成的步骤
                                              这里是提示文字
                                              2
                                              进行中的步骤
                                              这里是提示文字
                                              3
                                              未进行的步骤
                                              这里是提示文字
                                              4
                                              未进行的步骤
                                              这里是提示文字
                                              已完成的步骤
                                              这里是提示文字
                                              已完成的步骤
                                              这里是提示文字
                                              3
                                              进行中的步骤
                                              这里是提示文字
                                              4
                                              未进行的步骤
                                              这里是提示文字
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\steps\\_example\\sequence.tsx 1`] = `"
                                              已完成的步骤
                                              这里是提示文字
                                              2
                                              进行中的步骤
                                              这里是提示文字
                                              3
                                              未进行的步骤
                                              这里是提示文字
                                              4
                                              未进行的步骤
                                              这里是提示文字
                                              已完成的步骤
                                              这里是提示文字
                                              已完成的步骤
                                              这里是提示文字
                                              3
                                              进行中的步骤
                                              这里是提示文字
                                              4
                                              未进行的步骤
                                              这里是提示文字
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/steps/_example/status.tsx 1`] = `"
                                              已完成的步骤
                                              这里是提示文字
                                              2
                                              进行中的步骤
                                              这里是提示文字
                                              3
                                              未进行的步骤
                                              这里是提示文字
                                              4
                                              未进行的步骤
                                              这里是提示文字
                                              已完成的步骤
                                              这里是提示文字
                                              2
                                              进行中的步骤
                                              这里是提示文字
                                              错误的步骤
                                              优先展示\`t-step\`中设置的 status
                                              4
                                              未进行的步骤
                                              这里是提示文字
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\steps\\_example\\status.tsx 1`] = `"
                                              已完成的步骤
                                              这里是提示文字
                                              2
                                              进行中的步骤
                                              这里是提示文字
                                              3
                                              未进行的步骤
                                              这里是提示文字
                                              4
                                              未进行的步骤
                                              这里是提示文字
                                              已完成的步骤
                                              这里是提示文字
                                              2
                                              进行中的步骤
                                              这里是提示文字
                                              错误的步骤
                                              优先展示\`t-step\`中设置的 status
                                              4
                                              未进行的步骤
                                              这里是提示文字
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/steps/_example/vertical-no-sequence.tsx 1`] = `"
                                              已完成的步骤
                                              这里是提示文字
                                              进行中的步骤
                                              这里是提示文字
                                              未进行的步骤
                                              这里是提示文字
                                              未进行的步骤
                                              这里是提示文字
                                              未进行的步骤
                                              这里是提示文字
                                              进行中的步骤
                                              这里是提示文字
                                              已完成的步骤
                                              这里是提示文字
                                              已完成的步骤
                                              这里是提示文字
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\steps\\_example\\vertical-no-sequence.tsx 1`] = `"
                                              已完成的步骤
                                              这里是提示文字
                                              进行中的步骤
                                              这里是提示文字
                                              未进行的步骤
                                              这里是提示文字
                                              未进行的步骤
                                              这里是提示文字
                                              未进行的步骤
                                              这里是提示文字
                                              进行中的步骤
                                              这里是提示文字
                                              已完成的步骤
                                              这里是提示文字
                                              已完成的步骤
                                              这里是提示文字
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/steps/_example/vertical-sequence.tsx 1`] = `"
                                              已完成的步骤
                                              这里是提示文字
                                              2
                                              进行中的步骤
                                              这里是提示文字
                                              3
                                              未进行的步骤
                                              这里是提示文字
                                              4
                                              未进行的步骤
                                              这里是提示文字
                                              4
                                              未进行的步骤
                                              这里是提示文字
                                              3
                                              进行中的步骤
                                              这里是提示文字
                                              已完成的步骤
                                              这里是提示文字
                                              已完成的步骤
                                              这里是提示文字
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\steps\\_example\\vertical-sequence.tsx 1`] = `"
                                              已完成的步骤
                                              这里是提示文字
                                              2
                                              进行中的步骤
                                              这里是提示文字
                                              3
                                              未进行的步骤
                                              这里是提示文字
                                              4
                                              未进行的步骤
                                              这里是提示文字
                                              4
                                              未进行的步骤
                                              这里是提示文字
                                              3
                                              进行中的步骤
                                              这里是提示文字
                                              已完成的步骤
                                              这里是提示文字
                                              已完成的步骤
                                              这里是提示文字
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/sticky-tool/_example/base.tsx 1`] = `"
                                              chat
                                              add
                                              qrcode
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\sticky-tool\\_example\\base.tsx 1`] = `"
                                              chat
                                              add
                                              qrcode
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/sticky-tool/_example/compact.tsx 1`] = `"
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\sticky-tool\\_example\\compact.tsx 1`] = `"
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/sticky-tool/_example/shape.tsx 1`] = `"
                                              chat
                                              add
                                              qrcode
                                              chat
                                              add
                                              qrcode
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\sticky-tool\\_example\\shape.tsx 1`] = `"
                                              chat
                                              add
                                              qrcode
                                              chat
                                              add
                                              qrcode
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/swiper/_example/base.tsx 1`] = `"
                                              6
                                              1
                                              2
                                              3
                                              4
                                              5
                                              6
                                              1
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\swiper\\_example\\base.tsx 1`] = `"
                                              6
                                              1
                                              2
                                              3
                                              4
                                              5
                                              6
                                              1
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/swiper/_example/card.tsx 1`] = `"
                                              1
                                              2
                                              3
                                              4
                                              5
                                              6
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\swiper\\_example\\card.tsx 1`] = `"
                                              1
                                              2
                                              3
                                              4
                                              5
                                              6
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/swiper/_example/current.tsx 1`] = `"
                                              6
                                              1
                                              2
                                              3
                                              4
                                              5
                                              6
                                              1
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\swiper\\_example\\current.tsx 1`] = `"
                                              6
                                              1
                                              2
                                              3
                                              4
                                              5
                                              6
                                              1
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/swiper/_example/fade.tsx 1`] = `"
                                              6
                                              1
                                              2
                                              3
                                              4
                                              5
                                              6
                                              1
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\swiper\\_example\\fade.tsx 1`] = `"
                                              6
                                              1
                                              2
                                              3
                                              4
                                              5
                                              6
                                              1
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/swiper/_example/fraction.tsx 1`] = `"
                                              6
                                              1
                                              2
                                              3
                                              4
                                              5
                                              6
                                              1
                                              1/6
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\swiper\\_example\\fraction.tsx 1`] = `"
                                              6
                                              1
                                              2
                                              3
                                              4
                                              5
                                              6
                                              1
                                              1/6
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/swiper/_example/placement.tsx 1`] = `"
                                              6
                                              1
                                              2
                                              3
                                              4
                                              5
                                              6
                                              1
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\swiper\\_example\\placement.tsx 1`] = `"
                                              6
                                              1
                                              2
                                              3
                                              4
                                              5
                                              6
                                              1
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/swiper/_example/size.tsx 1`] = `"

                                              large

                                              6
                                              1
                                              2
                                              3
                                              4
                                              5
                                              6
                                              1

                                              small

                                              6
                                              1
                                              2
                                              3
                                              4
                                              5
                                              6
                                              1
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\swiper\\_example\\size.tsx 1`] = `"

                                              large

                                              6
                                              1
                                              2
                                              3
                                              4
                                              5
                                              6
                                              1

                                              small

                                              6
                                              1
                                              2
                                              3
                                              4
                                              5
                                              6
                                              1
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/swiper/_example/vertical.tsx 1`] = `"
                                              6
                                              1
                                              2
                                              3
                                              4
                                              5
                                              6
                                              1
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\swiper\\_example\\vertical.tsx 1`] = `"
                                              6
                                              1
                                              2
                                              3
                                              4
                                              5
                                              6
                                              1
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/switch/_example/base.tsx 1`] = `"
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\switch\\_example\\base.tsx 1`] = `"
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/switch/_example/beforeChange.tsx 1`] = `"
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\switch\\_example\\beforeChange.tsx 1`] = `"
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/switch/_example/describe.tsx 1`] = `"
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\switch\\_example\\describe.tsx 1`] = `"
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/switch/_example/size.tsx 1`] = `"
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\switch\\_example\\size.tsx 1`] = `"
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/switch/_example/status.tsx 1`] = `"
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\switch\\_example\\status.tsx 1`] = `"
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/table/_example/affix.tsx 1`] = `"
                                              共 38 条数据
                                              请选择
                                              • 1
                                              • 2
                                              • 3
                                              • 4
                                              • 5
                                              • 6
                                              • 7
                                              • 8
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\table\\_example\\affix.tsx 1`] = `"
                                              共 38 条数据
                                              请选择
                                              • 1
                                              • 2
                                              • 3
                                              • 4
                                              • 5
                                              • 6
                                              • 7
                                              • 8
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/table/_example/async-loading.tsx 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 packages\\components\\table\\_example\\async-loading.tsx 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 packages/components/table/_example/base.tsx 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
                                              共 28 条数据
                                              请选择
                                              • 1
                                              • 2
                                              • 3
                                              • 4
                                              • 5
                                              • 6
                                              跳至
                                              / 6 页
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\table\\_example\\base.tsx 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
                                              共 28 条数据
                                              请选择
                                              • 1
                                              • 2
                                              • 3
                                              • 4
                                              • 5
                                              • 6
                                              跳至
                                              / 6 页
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/table/_example/custom-cell.tsx 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 packages\\components\\table\\_example\\custom-cell.tsx 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 packages/components/table/_example/custom-col.tsx 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
                                              共 100 条数据
                                              请选择
                                              • 1
                                              • 2
                                              • 3
                                              • 4
                                              • 5
                                              • 20
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\table\\_example\\custom-col.tsx 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
                                              共 100 条数据
                                              请选择
                                              • 1
                                              • 2
                                              • 3
                                              • 4
                                              • 5
                                              • 20
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/table/_example/custom-col-button.tsx 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
                                              共 100 条数据
                                              请选择
                                              • 1
                                              • 2
                                              • 3
                                              • 4
                                              • 5
                                              • 20
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\table\\_example\\custom-col-button.tsx 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
                                              共 100 条数据
                                              请选择
                                              • 1
                                              • 2
                                              • 3
                                              • 4
                                              • 5
                                              • 20
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/table/_example/custom-footer.tsx 1`] = `"
                                              申请人
                                              审批状态
                                              签署方式
                                              邮箱地址
                                              申请时间
                                              贾明
                                              审批通过
                                              电子签署
                                              w.cezkdudy@lhll.au
                                              2022-01-01
                                              张三
                                              审批失败
                                              纸质签署
                                              r.nmgw@peurezgn.sl
                                              2022-02-01
                                              王芳
                                              审批过期
                                              纸质签署
                                              p.cumx@rampblpa.ru
                                              2022-03-01
                                              表尾信息
                                              表尾信息
                                              表尾信息
                                              表尾信息
                                              表尾信息
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\table\\_example\\custom-footer.tsx 1`] = `"
                                              申请人
                                              审批状态
                                              签署方式
                                              邮箱地址
                                              申请时间
                                              贾明
                                              审批通过
                                              电子签署
                                              w.cezkdudy@lhll.au
                                              2022-01-01
                                              张三
                                              审批失败
                                              纸质签署
                                              r.nmgw@peurezgn.sl
                                              2022-02-01
                                              王芳
                                              审批过期
                                              纸质签署
                                              p.cumx@rampblpa.ru
                                              2022-03-01
                                              表尾信息
                                              表尾信息
                                              表尾信息
                                              表尾信息
                                              表尾信息
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/table/_example/custom-header.tsx 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
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\table\\_example\\custom-header.tsx 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
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/table/_example/data-sort.tsx 1`] = `"
                                              申请人
                                              申请状态
                                              申请耗时(天)
                                              签署方式
                                              邮箱地址
                                              申请时间
                                              贾明
                                              审批通过
                                              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 packages\\components\\table\\_example\\data-sort.tsx 1`] = `"
                                              申请人
                                              申请状态
                                              申请耗时(天)
                                              签署方式
                                              邮箱地址
                                              申请时间
                                              贾明
                                              审批通过
                                              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 packages/components/table/_example/drag-col-sort.tsx 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 packages\\components\\table\\_example\\drag-col-sort.tsx 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 packages/components/table/_example/drag-sort.tsx 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 packages\\components\\table\\_example\\drag-sort.tsx 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 packages/components/table/_example/drag-sort-handler.tsx 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 packages\\components\\table\\_example\\drag-sort-handler.tsx 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 packages/components/table/_example/editable-cell.tsx 1`] = `"
                                              申请人
                                              申请状态
                                              申请事项
                                              创建日期
                                              请选择
                                              请选择
                                              请选择
                                              请选择
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\table\\_example\\editable-cell.tsx 1`] = `"
                                              申请人
                                              申请状态
                                              申请事项
                                              创建日期
                                              请选择
                                              请选择
                                              请选择
                                              请选择
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/table/_example/editable-row.tsx 1`] = `"


                                              申请人
                                              申请状态
                                              申请事项
                                              创建日期
                                              操作栏
                                              请输入
                                              请选择
                                              请选择
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\table\\_example\\editable-row.tsx 1`] = `"


                                              申请人
                                              申请状态
                                              申请事项
                                              创建日期
                                              操作栏
                                              请输入
                                              请选择
                                              请选择
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/table/_example/ellipsis.tsx 1`] = `"
                                              申请人
                                              审批状态
                                              签署方式(超长标题示例)
                                              邮箱地址
                                              申请事项
                                              审核时间
                                              操作
                                              贾明(kyrieJia)
                                              审批通过
                                              电子签署
                                              w.cezkdudy@lhll.au
                                              宣传物料制作费用
                                              2021-11-01
                                              张三(threeZhang)
                                              审批失败
                                              纸质签署
                                              r.nmgw@peurezgn.sl
                                              algolia 服务报销
                                              2021-12-01
                                              王芳(fangWang)
                                              审批过期
                                              纸质签署
                                              p.cumx@rampblpa.ru
                                              相关周边制作费
                                              2022-01-01
                                              贾明(kyrieJia)
                                              审批通过
                                              电子签署
                                              w.cezkdudy@lhll.au
                                              激励奖品快递费
                                              2022-02-01
                                              张三(threeZhang)
                                              审批失败
                                              纸质签署
                                              r.nmgw@peurezgn.sl
                                              宣传物料制作费用
                                              2021-11-01
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\table\\_example\\ellipsis.tsx 1`] = `"
                                              申请人
                                              审批状态
                                              签署方式(超长标题示例)
                                              邮箱地址
                                              申请事项
                                              审核时间
                                              操作
                                              贾明(kyrieJia)
                                              审批通过
                                              电子签署
                                              w.cezkdudy@lhll.au
                                              宣传物料制作费用
                                              2021-11-01
                                              张三(threeZhang)
                                              审批失败
                                              纸质签署
                                              r.nmgw@peurezgn.sl
                                              algolia 服务报销
                                              2021-12-01
                                              王芳(fangWang)
                                              审批过期
                                              纸质签署
                                              p.cumx@rampblpa.ru
                                              相关周边制作费
                                              2022-01-01
                                              贾明(kyrieJia)
                                              审批通过
                                              电子签署
                                              w.cezkdudy@lhll.au
                                              激励奖品快递费
                                              2022-02-01
                                              张三(threeZhang)
                                              审批失败
                                              纸质签署
                                              r.nmgw@peurezgn.sl
                                              宣传物料制作费用
                                              2021-11-01
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/table/_example/empty.tsx 1`] = `"
                                              项目名称
                                              管理员
                                              所属公司
                                              暂无数据
                                              项目名称
                                              管理员
                                              所属公司
                                              😄 it is empty. 😁
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\table\\_example\\empty.tsx 1`] = `"
                                              项目名称
                                              管理员
                                              所属公司
                                              暂无数据
                                              项目名称
                                              管理员
                                              所属公司
                                              😄 it is empty. 😁
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/table/_example/expandable.tsx 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 packages\\components\\table\\_example\\expandable.tsx 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 packages/components/table/_example/filter-controlled.tsx 1`] = `"
                                              已选筛选条件:{"lastName":[]}
                                              申请人
                                              申请状态
                                              签署方式
                                              Email
                                              Date
                                              搜索“”,找到 5 条结果
                                              贾明
                                              审批通过
                                              电子签署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
                                              共 0 条数据
                                              请选择
                                              • 1
                                              跳至
                                              / 1 页
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\table\\_example\\filter-controlled.tsx 1`] = `"
                                              已选筛选条件:{"lastName":[]}
                                              申请人
                                              申请状态
                                              签署方式
                                              Email
                                              Date
                                              搜索“”,找到 5 条结果
                                              贾明
                                              审批通过
                                              电子签署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
                                              共 0 条数据
                                              请选择
                                              • 1
                                              跳至
                                              / 1 页
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/table/_example/fixed-column.tsx 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 packages\\components\\table\\_example\\fixed-column.tsx 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 packages/components/table/_example/fixed-header.tsx 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 packages\\components\\table\\_example\\fixed-header.tsx 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 packages/components/table/_example/fixed-header-col.tsx 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 packages\\components\\table\\_example\\fixed-header-col.tsx 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 packages/components/table/_example/lazy.tsx 1`] = `"
                                              申请人
                                              申请状态
                                              申请事项
                                              邮箱地址
                                              申请时间
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\table\\_example\\lazy.tsx 1`] = `"
                                              申请人
                                              申请状态
                                              申请事项
                                              邮箱地址
                                              申请时间
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/table/_example/loading.tsx 1`] = `"
                                              集群名称
                                              状态
                                              管理员
                                              描述
                                              集群名称
                                              状态
                                              管理员
                                              描述
                                              集群名称
                                              状态
                                              管理员
                                              描述
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\table\\_example\\loading.tsx 1`] = `"
                                              集群名称
                                              状态
                                              管理员
                                              描述
                                              集群名称
                                              状态
                                              管理员
                                              描述
                                              集群名称
                                              状态
                                              管理员
                                              描述
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/table/_example/merge-cells.tsx 1`] = `"
                                              申请人
                                              申请状态
                                              审批事项
                                              邮箱地址
                                              其他信息
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\table\\_example\\merge-cells.tsx 1`] = `"
                                              申请人
                                              申请状态
                                              审批事项
                                              邮箱地址
                                              其他信息
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/table/_example/multi-header.tsx 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 packages\\components\\table\\_example\\multi-header.tsx 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 packages/components/table/_example/multiple-sort.tsx 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 packages\\components\\table\\_example\\multiple-sort.tsx 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 packages/components/table/_example/pagination.tsx 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
                                              共 59 条数据
                                              请选择
                                              • 1
                                              • 2
                                              • 3
                                              • 4
                                              • 5
                                              • 12
                                              跳至
                                              / 12 页
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\table\\_example\\pagination.tsx 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
                                              共 59 条数据
                                              请选择
                                              • 1
                                              • 2
                                              • 3
                                              • 4
                                              • 5
                                              • 12
                                              跳至
                                              / 12 页
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/table/_example/select-multiple.tsx 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 packages\\components\\table\\_example\\select-multiple.tsx 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 packages/components/table/_example/select-single.tsx 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 packages\\components\\table\\_example\\select-single.tsx 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 packages/components/table/_example/single-sort.tsx 1`] = `"
                                              排序方式:{"sortBy":"status","descending":true}
                                              申请人
                                              申请状态
                                              申请耗时(天)
                                              签署方式
                                              申请时间
                                              贾明
                                              审批通过
                                              2电子签署2022-01-01
                                              张三
                                              审批失败
                                              3纸质签署2022-02-01
                                              王芳
                                              审批过期
                                              1纸质签署2022-03-01
                                              贾明
                                              审批通过
                                              4电子签署2022-04-01
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\table\\_example\\single-sort.tsx 1`] = `"
                                              排序方式:{"sortBy":"status","descending":true}
                                              申请人
                                              申请状态
                                              申请耗时(天)
                                              签署方式
                                              申请时间
                                              贾明
                                              审批通过
                                              2电子签署2022-01-01
                                              张三
                                              审批失败
                                              3纸质签署2022-02-01
                                              王芳
                                              审批过期
                                              1纸质签署2022-03-01
                                              贾明
                                              审批通过
                                              4电子签署2022-04-01
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/table/_example/style.tsx 1`] = `"
                                              申请人
                                              审批状态
                                              申请耗时(天)
                                              签署方式
                                              邮箱地址
                                              申请时间
                                              贾明
                                              审批通过
                                              2电子签署
                                              w.cezkdudy@lhll.au
                                              2022-01-01
                                              张三
                                              审批失败
                                              10纸质签署
                                              r.nmgw@peurezgn.sl
                                              2022-02-01
                                              王芳
                                              审批过期
                                              1纸质签署
                                              p.cumx@rampblpa.ru
                                              2022-03-01
                                              贾明
                                              审批通过
                                              2电子签署
                                              w.cezkdudy@lhll.au
                                              2022-04-01
                                              张三
                                              审批失败
                                              10纸质签署
                                              r.nmgw@peurezgn.sl
                                              2022-01-01
                                              汇总:近期数据波动较大
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\table\\_example\\style.tsx 1`] = `"
                                              申请人
                                              审批状态
                                              申请耗时(天)
                                              签署方式
                                              邮箱地址
                                              申请时间
                                              贾明
                                              审批通过
                                              2电子签署
                                              w.cezkdudy@lhll.au
                                              2022-01-01
                                              张三
                                              审批失败
                                              10纸质签署
                                              r.nmgw@peurezgn.sl
                                              2022-02-01
                                              王芳
                                              审批过期
                                              1纸质签署
                                              p.cumx@rampblpa.ru
                                              2022-03-01
                                              贾明
                                              审批通过
                                              2电子签署
                                              w.cezkdudy@lhll.au
                                              2022-04-01
                                              张三
                                              审批失败
                                              10纸质签署
                                              r.nmgw@peurezgn.sl
                                              2022-01-01
                                              汇总:近期数据波动较大
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/table/_example/tree.tsx 1`] = `"
                                              排序
                                              编号
                                              名称
                                              签署方式
                                              操作
                                              0
                                              申请人 0_1 号
                                              电子签署
                                              1
                                              申请人 1_1 号
                                              纸质签署
                                              2
                                              申请人 2_1 号
                                              电子签署
                                              3
                                              申请人 3_1 号
                                              纸质签署
                                              4
                                              申请人 4_1 号
                                              电子签署
                                              66666
                                              申请人懒加载节点 66666,点我体验
                                              电子签署
                                              88888
                                              申请人懒加载节点 88888,点我体验
                                              电子签署
                                              共 100 条数据
                                              请选择
                                              • 1
                                              • 2
                                              • 3
                                              • 4
                                              • 5
                                              • 6
                                              • 7
                                              • 8
                                              • 9
                                              • 10
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\table\\_example\\tree.tsx 1`] = `"
                                              排序
                                              编号
                                              名称
                                              签署方式
                                              操作
                                              0
                                              申请人 0_1 号
                                              电子签署
                                              1
                                              申请人 1_1 号
                                              纸质签署
                                              2
                                              申请人 2_1 号
                                              电子签署
                                              3
                                              申请人 3_1 号
                                              纸质签署
                                              4
                                              申请人 4_1 号
                                              电子签署
                                              66666
                                              申请人懒加载节点 66666,点我体验
                                              电子签署
                                              88888
                                              申请人懒加载节点 88888,点我体验
                                              电子签署
                                              共 100 条数据
                                              请选择
                                              • 1
                                              • 2
                                              • 3
                                              • 4
                                              • 5
                                              • 6
                                              • 7
                                              • 8
                                              • 9
                                              • 10
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/table/_example/tree-select.tsx 1`] = `"
                                              序号
                                              申请人
                                              状态
                                              申请事项
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\table\\_example\\tree-select.tsx 1`] = `"
                                              序号
                                              申请人
                                              状态
                                              申请事项
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/table/_example/virtual-scroll.tsx 1`] = `"
                                              序号
                                              申请人
                                              申请状态
                                              申请事项
                                              邮箱地址
                                              申请时间
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\table\\_example\\virtual-scroll.tsx 1`] = `"
                                              序号
                                              申请人
                                              申请状态
                                              申请事项
                                              邮箱地址
                                              申请时间
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/tabs/_example/ban.tsx 1`] = `"
                                              选项卡1
                                              选项卡2
                                              选项卡3
                                              选项卡1内容区
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\tabs\\_example\\ban.tsx 1`] = `"
                                              选项卡1
                                              选项卡2
                                              选项卡3
                                              选项卡1内容区
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/tabs/_example/base.tsx 1`] = `"
                                              选项卡1
                                              选项卡2
                                              选项卡3

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

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

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

                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\tabs\\_example\\base.tsx 1`] = `"
                                              选项卡1
                                              选项卡2
                                              选项卡3

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

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

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

                                              "`; -exports[`ssr snapshot test > ssr test packages/components/tabs/_example/combination.tsx 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 packages\\components\\tabs\\_example\\combination.tsx 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 packages/components/tabs/_example/custom.tsx 1`] = `"
                                              选项卡 1
                                              选项卡 2
                                              选项卡 3
                                              选项卡 4
                                              选项卡 5
                                              选项卡 6
                                              选项卡 7
                                              选项卡 8
                                              选项卡 9
                                              选项卡 10
                                              选项卡 1内容区
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\tabs\\_example\\custom.tsx 1`] = `"
                                              选项卡 1
                                              选项卡 2
                                              选项卡 3
                                              选项卡 4
                                              选项卡 5
                                              选项卡 6
                                              选项卡 7
                                              选项卡 8
                                              选项卡 9
                                              选项卡 10
                                              选项卡 1内容区
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/tabs/_example/drag-sort.tsx 1`] = `"
                                              选项卡一
                                              选项卡二
                                              选项卡三

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

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

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

                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\tabs\\_example\\drag-sort.tsx 1`] = `"
                                              选项卡一
                                              选项卡二
                                              选项卡三

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

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

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

                                              "`; -exports[`ssr snapshot test > ssr test packages/components/tabs/_example/icon.tsx 1`] = `"
                                              选项卡1
                                              选项卡2
                                              选项卡3
                                              选项卡1内容区
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\tabs\\_example\\icon.tsx 1`] = `"
                                              选项卡1
                                              选项卡2
                                              选项卡3
                                              选项卡1内容区
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/tabs/_example/lazy-load.tsx 1`] = `"
                                              选项卡1
                                              选项卡2
                                              选项卡3

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

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

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

                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\tabs\\_example\\lazy-load.tsx 1`] = `"
                                              选项卡1
                                              选项卡2
                                              选项卡3

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

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

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

                                              "`; -exports[`ssr snapshot test > ssr test packages/components/tabs/_example/operation.tsx 1`] = `"
                                              选项卡1
                                              选项卡1
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\tabs\\_example\\operation.tsx 1`] = `"
                                              选项卡1
                                              选项卡1
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/tabs/_example/position.tsx 1`] = `"
                                              选项卡1
                                              选项卡2
                                              选项卡3
                                              选项卡1内容区
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\tabs\\_example\\position.tsx 1`] = `"
                                              选项卡1
                                              选项卡2
                                              选项卡3
                                              选项卡1内容区
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/tabs/_example/size.tsx 1`] = `"
                                              选项卡1
                                              选项卡2
                                              选项卡1内容区
                                              选项卡1
                                              选项卡2
                                              选项卡1内容区
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\tabs\\_example\\size.tsx 1`] = `"
                                              选项卡1
                                              选项卡2
                                              选项卡1内容区
                                              选项卡1
                                              选项卡2
                                              选项卡1内容区
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/tabs/_example/theme.tsx 1`] = `"
                                              选项卡1
                                              选项卡2
                                              选项卡1
                                              选项卡2
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\tabs\\_example\\theme.tsx 1`] = `"
                                              选项卡1
                                              选项卡2
                                              选项卡1
                                              选项卡2
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/tag/_example/base.tsx 1`] = `"
                                              标签一
                                              标签一
                                              标签二
                                              标签三
                                              标签四
                                              灰标签
                                              标签一
                                              标签二
                                              标签三
                                              标签四
                                              灰标签
                                              标签一
                                              标签二
                                              标签三
                                              标签四
                                              灰标签
                                              标签一
                                              标签二
                                              标签三
                                              标签四
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\tag\\_example\\base.tsx 1`] = `"
                                              标签一
                                              标签一
                                              标签二
                                              标签三
                                              标签四
                                              灰标签
                                              标签一
                                              标签二
                                              标签三
                                              标签四
                                              灰标签
                                              标签一
                                              标签二
                                              标签三
                                              标签四
                                              灰标签
                                              标签一
                                              标签二
                                              标签三
                                              标签四
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/tag/_example/check-tag-group.tsx 1`] = `"
                                              标签1
                                              标签2
                                              标签3
                                              标签4
                                              标签5
                                              标签6
                                              标签1
                                              标签2
                                              标签3
                                              标签4
                                              标签5
                                              标签6
                                              标签1
                                              标签2
                                              标签3
                                              标签4
                                              标签5
                                              标签6
                                              TAG_A(1)
                                              TAG_B(2)
                                              TAG_C(3)
                                              TAG_D(4)
                                              TAG_E(5)
                                              TAG_F(6)
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\tag\\_example\\check-tag-group.tsx 1`] = `"
                                              标签1
                                              标签2
                                              标签3
                                              标签4
                                              标签5
                                              标签6
                                              标签1
                                              标签2
                                              标签3
                                              标签4
                                              标签5
                                              标签6
                                              标签1
                                              标签2
                                              标签3
                                              标签4
                                              标签5
                                              标签6
                                              TAG_A(1)
                                              TAG_B(2)
                                              TAG_C(3)
                                              TAG_D(4)
                                              TAG_E(5)
                                              TAG_F(6)
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/tag/_example/custom-color.tsx 1`] = `"
                                              #0052D9
                                              default
                                              light
                                              outline
                                              light-outline
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\tag\\_example\\custom-color.tsx 1`] = `"
                                              #0052D9
                                              default
                                              light
                                              outline
                                              light-outline
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/tag/_example/delete.tsx 1`] = `"
                                              可删除标签0
                                              可删除标签1
                                              可删除标签2
                                              可添加标签
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\tag\\_example\\delete.tsx 1`] = `"
                                              可删除标签0
                                              可删除标签1
                                              可删除标签2
                                              可添加标签
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/tag/_example/icon.tsx 1`] = `"
                                              默认标签
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\tag\\_example\\icon.tsx 1`] = `"
                                              默认标签
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/tag/_example/long-text.tsx 1`] = `"
                                              默认超八个字超长文本标签超长省略文本标签
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\tag\\_example\\long-text.tsx 1`] = `"
                                              默认超八个字超长文本标签超长省略文本标签
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/tag/_example/selectable.tsx 1`] = `"
                                              选中/未选态
                                              选中态
                                              未选态
                                              选中禁用
                                              未选禁用
                                              选中/未选态
                                              选中态
                                              未选态
                                              选中禁用
                                              未选禁用
                                              Outline Tag
                                              Checked
                                              Unchecked
                                              Disabled
                                              Disabled
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\tag\\_example\\selectable.tsx 1`] = `"
                                              选中/未选态
                                              选中态
                                              未选态
                                              选中禁用
                                              未选禁用
                                              选中/未选态
                                              选中态
                                              未选态
                                              选中禁用
                                              未选禁用
                                              Outline Tag
                                              Checked
                                              Unchecked
                                              Disabled
                                              Disabled
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/tag/_example/shape.tsx 1`] = `"
                                              标签一
                                              标签一
                                              标签一
                                              标签一
                                              标签一
                                              标签一
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\tag\\_example\\shape.tsx 1`] = `"
                                              标签一
                                              标签一
                                              标签一
                                              标签一
                                              标签一
                                              标签一
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/tag/_example/size.tsx 1`] = `"
                                              小型标签
                                              默认标签
                                              大型标签
                                              小型标签
                                              默认标签
                                              大型标签
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\tag\\_example\\size.tsx 1`] = `"
                                              小型标签
                                              默认标签
                                              大型标签
                                              小型标签
                                              默认标签
                                              大型标签
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/tag-input/_example/auto-width.tsx 1`] = `"
                                              Vue
                                              React
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\tag-input\\_example\\auto-width.tsx 1`] = `"
                                              Vue
                                              React
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/tag-input/_example/base.tsx 1`] = `"
                                              Vue
                                              React
                                              Angular
                                              Controlled:
                                              Vue
                                              React
                                              UnControlled:
                                              Vue
                                              React
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\tag-input\\_example\\base.tsx 1`] = `"
                                              Vue
                                              React
                                              Angular
                                              Controlled:
                                              Vue
                                              React
                                              UnControlled:
                                              Vue
                                              React
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/tag-input/_example/collapsed.tsx 1`] = `"
                                              Vue
                                              +4
                                              Vue
                                              React
                                              Miniprogram
                                              More(2)
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\tag-input\\_example\\collapsed.tsx 1`] = `"
                                              Vue
                                              +4
                                              Vue
                                              React
                                              Miniprogram
                                              More(2)
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/tag-input/_example/custom-tag.tsx 1`] = `"
                                              StudentA
                                              StudentB
                                              +1


                                              StudentA
                                              StudentB
                                              StudentC
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\tag-input\\_example\\custom-tag.tsx 1`] = `"
                                              StudentA
                                              StudentB
                                              +1


                                              StudentA
                                              StudentB
                                              StudentC
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/tag-input/_example/draggable.tsx 1`] = `"
                                              Vue
                                              React
                                              Angular
                                              Controlled:
                                              Vue
                                              React
                                              Angular
                                              Miniprogram
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\tag-input\\_example\\draggable.tsx 1`] = `"
                                              Vue
                                              React
                                              Angular
                                              Controlled:
                                              Vue
                                              React
                                              Angular
                                              Miniprogram
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/tag-input/_example/excess.tsx 1`] = `"
                                              Scroll:
                                              Vue
                                              React
                                              BreakLine:
                                              Vue
                                              React
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\tag-input\\_example\\excess.tsx 1`] = `"
                                              Scroll:
                                              Vue
                                              React
                                              BreakLine:
                                              Vue
                                              React
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/tag-input/_example/max.tsx 1`] = `"
                                              最多只能输入 3 个标签
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\tag-input\\_example\\max.tsx 1`] = `"
                                              最多只能输入 3 个标签
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/tag-input/_example/max-row.tsx 1`] = `"

                                              最大高度为2

                                              小尺寸:
                                              Vue
                                              React
                                              Angular
                                              Svelte
                                              Solid
                                              MiniProgram
                                              Flutter
                                              UniApp
                                              Html5
                                              Css3
                                              JavaScript
                                              TypeScript
                                              Node.js
                                              Python
                                              Java
                                              Go
                                              Rust
                                              C++

                                              最大高度为3

                                              中等尺寸:
                                              Vue
                                              React
                                              Angular
                                              Svelte
                                              Solid
                                              MiniProgram
                                              Flutter
                                              UniApp
                                              Html5
                                              Css3
                                              JavaScript
                                              TypeScript
                                              Node.js
                                              Python
                                              Java
                                              Go
                                              Rust
                                              C++

                                              最大高度为4

                                              大尺寸:
                                              Vue
                                              React
                                              Angular
                                              Svelte
                                              Solid
                                              MiniProgram
                                              Flutter
                                              UniApp
                                              Html5
                                              Css3
                                              JavaScript
                                              TypeScript
                                              Node.js
                                              Python
                                              Java
                                              Go
                                              Rust
                                              C++
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\tag-input\\_example\\max-row.tsx 1`] = `"

                                              最大高度为2

                                              小尺寸:
                                              Vue
                                              React
                                              Angular
                                              Svelte
                                              Solid
                                              MiniProgram
                                              Flutter
                                              UniApp
                                              Html5
                                              Css3
                                              JavaScript
                                              TypeScript
                                              Node.js
                                              Python
                                              Java
                                              Go
                                              Rust
                                              C++

                                              最大高度为3

                                              中等尺寸:
                                              Vue
                                              React
                                              Angular
                                              Svelte
                                              Solid
                                              MiniProgram
                                              Flutter
                                              UniApp
                                              Html5
                                              Css3
                                              JavaScript
                                              TypeScript
                                              Node.js
                                              Python
                                              Java
                                              Go
                                              Rust
                                              C++

                                              最大高度为4

                                              大尺寸:
                                              Vue
                                              React
                                              Angular
                                              Svelte
                                              Solid
                                              MiniProgram
                                              Flutter
                                              UniApp
                                              Html5
                                              Css3
                                              JavaScript
                                              TypeScript
                                              Node.js
                                              Python
                                              Java
                                              Go
                                              Rust
                                              C++
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/tag-input/_example/size.tsx 1`] = `"
                                              Vue
                                              React
                                              Vue
                                              React
                                              Vue
                                              React
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\tag-input\\_example\\size.tsx 1`] = `"
                                              Vue
                                              React
                                              Vue
                                              React
                                              Vue
                                              React
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/tag-input/_example/status.tsx 1`] = `"
                                              Vue
                                              React
                                              Miniprogram
                                              Vue
                                              React
                                              Miniprogram
                                              这是普通文本提示
                                              Vue
                                              React
                                              Miniprogram
                                              校验通过文本提示
                                              Vue
                                              React
                                              Miniprogram
                                              校验不通过文本提示
                                              Vue
                                              React
                                              Miniprogram
                                              校验存在严重问题文本提示
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\tag-input\\_example\\status.tsx 1`] = `"
                                              Vue
                                              React
                                              Miniprogram
                                              Vue
                                              React
                                              Miniprogram
                                              这是普通文本提示
                                              Vue
                                              React
                                              Miniprogram
                                              校验通过文本提示
                                              Vue
                                              React
                                              Miniprogram
                                              校验不通过文本提示
                                              Vue
                                              React
                                              Miniprogram
                                              校验存在严重问题文本提示
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/tag-input/_example/theme.tsx 1`] = `"
                                              Vue
                                              React
                                              Miniprogram
                                              Vue
                                              React
                                              Miniprogram
                                              Vue
                                              React
                                              Miniprogram
                                              Vue
                                              React
                                              Miniprogram
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\tag-input\\_example\\theme.tsx 1`] = `"
                                              Vue
                                              React
                                              Miniprogram
                                              Vue
                                              React
                                              Miniprogram
                                              Vue
                                              React
                                              Miniprogram
                                              Vue
                                              React
                                              Miniprogram
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/textarea/_example/base.tsx 1`] = `"
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\textarea\\_example\\base.tsx 1`] = `"
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/textarea/_example/events.tsx 1`] = `"
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\textarea\\_example\\events.tsx 1`] = `"
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/textarea/_example/maxlength.tsx 1`] = `"
                                              这里可以放一些提示文字
                                              0/20
                                              0/20
                                              0/20
                                              0/20
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\textarea\\_example\\maxlength.tsx 1`] = `"
                                              这里可以放一些提示文字
                                              0/20
                                              0/20
                                              0/20
                                              0/20
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/textarea/_example/type.tsx 1`] = `"
                                              正常提示
                                              成功提示
                                              警告提示
                                              错误提示
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\textarea\\_example\\type.tsx 1`] = `"
                                              正常提示
                                              成功提示
                                              警告提示
                                              错误提示
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/time-picker/_example/disabled.tsx 1`] = `"

                                              禁用整个选择器

                                              禁用指定时间

                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\time-picker\\_example\\disabled.tsx 1`] = `"

                                              禁用整个选择器

                                              禁用指定时间

                                              "`; -exports[`ssr snapshot test > ssr test packages/components/time-picker/_example/hide-clear-button.tsx 1`] = `"

                                              禁止清空

                                              允许清空

                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\time-picker\\_example\\hide-clear-button.tsx 1`] = `"

                                              禁止清空

                                              允许清空

                                              "`; -exports[`ssr snapshot test > ssr test packages/components/time-picker/_example/hm.tsx 1`] = `"

                                              时分选择

                                              毫秒选择

                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\time-picker\\_example\\hm.tsx 1`] = `"

                                              时分选择

                                              毫秒选择

                                              "`; -exports[`ssr snapshot test > ssr test packages/components/time-picker/_example/hms.tsx 1`] = `"
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\time-picker\\_example\\hms.tsx 1`] = `"
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/time-picker/_example/keyboard.tsx 1`] = `"
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\time-picker\\_example\\keyboard.tsx 1`] = `"
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/time-picker/_example/panel.tsx 1`] = `"
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\time-picker\\_example\\panel.tsx 1`] = `"
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/time-picker/_example/presets.tsx 1`] = `"
                                              -
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\time-picker\\_example\\presets.tsx 1`] = `"
                                              -
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/time-picker/_example/range.tsx 1`] = `"
                                              -
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\time-picker\\_example\\range.tsx 1`] = `"
                                              -
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/time-picker/_example/show-steps.tsx 1`] = `"
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\time-picker\\_example\\show-steps.tsx 1`] = `"
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/time-picker/_example/twelve-hour-meridian.tsx 1`] = `"
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\time-picker\\_example\\twelve-hour-meridian.tsx 1`] = `"
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/timeline/_example/base.tsx 1`] = `"

                                              时间轴方向

                                              • 事件一
                                                2022-01-01
                                              • 事件二
                                                2022-02-01
                                              • 事件三
                                                2022-03-01
                                              • 事件四
                                                2022-04-01
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\timeline\\_example\\base.tsx 1`] = `"

                                              时间轴方向

                                              • 事件一
                                                2022-01-01
                                              • 事件二
                                                2022-02-01
                                              • 事件三
                                                2022-03-01
                                              • 事件四
                                                2022-04-01
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/timeline/_example/customContent.tsx 1`] = `"
                                              • 事件一
                                                事件一自定义内容
                                                2022-01-01
                                              • 事件二
                                                事件二自定义内容
                                                2022-02-01
                                              • 事件三
                                                事件三自定义内容
                                                2022-03-01
                                              • 事件四
                                                事件四自定义内容
                                                2022-04-01
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\timeline\\_example\\customContent.tsx 1`] = `"
                                              • 事件一
                                                事件一自定义内容
                                                2022-01-01
                                              • 事件二
                                                事件二自定义内容
                                                2022-02-01
                                              • 事件三
                                                事件三自定义内容
                                                2022-03-01
                                              • 事件四
                                                事件四自定义内容
                                                2022-04-01
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/timeline/_example/customDot.tsx 1`] = `"

                                              时间轴样式

                                              • 事件一
                                                2022-01-01
                                              • 事件二
                                                2022-02-01
                                              • 事件三
                                                2022-03-01
                                              • 事件四
                                                2022-04-01
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\timeline\\_example\\customDot.tsx 1`] = `"

                                              时间轴样式

                                              • 事件一
                                                2022-01-01
                                              • 事件二
                                                2022-02-01
                                              • 事件三
                                                2022-03-01
                                              • 事件四
                                                2022-04-01
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/timeline/_example/layout.tsx 1`] = `"

                                              时间轴方向

                                              对齐方式

                                              label对齐方式

                                              • 事件一
                                                2022-01-01
                                              • 事件二
                                                2022-02-01
                                              • 事件三
                                                2022-03-01
                                              • 事件四
                                                2022-04-01
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\timeline\\_example\\layout.tsx 1`] = `"

                                              时间轴方向

                                              对齐方式

                                              label对齐方式

                                              • 事件一
                                                2022-01-01
                                              • 事件二
                                                2022-02-01
                                              • 事件三
                                                2022-03-01
                                              • 事件四
                                                2022-04-01
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/timeline/_example/loading.tsx 1`] = `"

                                              加载中

                                              • 事件一
                                                2022-01-01
                                              • 事件二
                                                2022-02-01
                                              • 事件三
                                                2022-03-01
                                              • 事件四
                                                2022-04-01
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\timeline\\_example\\loading.tsx 1`] = `"

                                              加载中

                                              • 事件一
                                                2022-01-01
                                              • 事件二
                                                2022-02-01
                                              • 事件三
                                                2022-03-01
                                              • 事件四
                                                2022-04-01
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/timeline/_example/reverse.tsx 1`] = `"

                                              是否倒序

                                              • 事件一
                                                2022-01-01
                                              • 事件二
                                                2022-02-01
                                              • 事件三
                                                2022-03-01
                                              • 事件四
                                                2022-04-01
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\timeline\\_example\\reverse.tsx 1`] = `"

                                              是否倒序

                                              • 事件一
                                                2022-01-01
                                              • 事件二
                                                2022-02-01
                                              • 事件三
                                                2022-03-01
                                              • 事件四
                                                2022-04-01
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/timeline/_example/theme.tsx 1`] = `"
                                              • 已完成的时间
                                                2022-01-01
                                              • 成功的时间
                                                2022-02-01
                                              • 危险时间
                                                2022-03-01
                                              • 告警事件
                                                2022-04-01
                                              • 默认的时间
                                                2022-05-01
                                              • 自定义主题色
                                                2022-06-01
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\timeline\\_example\\theme.tsx 1`] = `"
                                              • 已完成的时间
                                                2022-01-01
                                              • 成功的时间
                                                2022-02-01
                                              • 危险时间
                                                2022-03-01
                                              • 告警事件
                                                2022-04-01
                                              • 默认的时间
                                                2022-05-01
                                              • 自定义主题色
                                                2022-06-01
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/tooltip/_example/arrow.tsx 1`] = `""`; +exports[`ssr snapshot test > ssr test packages\\components\\tooltip\\_example\\arrow.tsx 1`] = `""`; -exports[`ssr snapshot test > ssr test packages/components/tooltip/_example/base.tsx 1`] = `"
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\tooltip\\_example\\base.tsx 1`] = `"
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/tooltip/_example/duration.tsx 1`] = `""`; +exports[`ssr snapshot test > ssr test packages\\components\\tooltip\\_example\\duration.tsx 1`] = `""`; -exports[`ssr snapshot test > ssr test packages/components/tooltip/_example/lite.tsx 1`] = `"
                                              不可用状态下提示
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\tooltip\\_example\\lite.tsx 1`] = `"
                                              不可用状态下提示
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/tooltip/_example/mouse.tsx 1`] = `""`; +exports[`ssr snapshot test > ssr test packages\\components\\tooltip\\_example\\mouse.tsx 1`] = `""`; -exports[`ssr snapshot test > ssr test packages/components/tooltip/_example/no-arrow.tsx 1`] = `""`; +exports[`ssr snapshot test > ssr test packages\\components\\tooltip\\_example\\no-arrow.tsx 1`] = `""`; -exports[`ssr snapshot test > ssr test packages/components/tooltip/_example/theme.tsx 1`] = `"
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\tooltip\\_example\\theme.tsx 1`] = `"
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/tooltip/_example/trigger.tsx 1`] = `"
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\tooltip\\_example\\trigger.tsx 1`] = `"
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/transfer/_example/base.tsx 1`] = `"
                                              0 / 20 项
                                              0 / 0 项
                                              暂无数据
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\transfer\\_example\\base.tsx 1`] = `"
                                              0 / 20 项
                                              0 / 0 项
                                              暂无数据
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/transfer/_example/checked.tsx 1`] = `"
                                              3 / 20 项
                                              0 / 0 项
                                              暂无数据
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\transfer\\_example\\checked.tsx 1`] = `"
                                              3 / 20 项
                                              0 / 0 项
                                              暂无数据
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/transfer/_example/custom.tsx 1`] = `""`; +exports[`ssr snapshot test > ssr test packages\\components\\transfer\\_example\\custom.tsx 1`] = `""`; -exports[`ssr snapshot test > ssr test packages/components/transfer/_example/custom-render.tsx 1`] = `"
                                              0 / 20 项
                                              0 / 0 项
                                              暂无数据
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\transfer\\_example\\custom-render.tsx 1`] = `"
                                              0 / 20 项
                                              0 / 0 项
                                              暂无数据
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/transfer/_example/empty.tsx 1`] = `"

                                              默认暂无数据

                                              0 / 0 项
                                              暂无数据
                                              0 / 0 项
                                              暂无数据

                                              自定义暂无数据

                                              0 / 0 项
                                              No Source
                                              0 / 0 项
                                              No Target
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\transfer\\_example\\empty.tsx 1`] = `"

                                              默认暂无数据

                                              0 / 0 项
                                              暂无数据
                                              0 / 0 项
                                              暂无数据

                                              自定义暂无数据

                                              0 / 0 项
                                              No Source
                                              0 / 0 项
                                              No Target
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/transfer/_example/pagination.tsx 1`] = `"
                                              0 / 20 项
                                              跳至
                                              / 2 页
                                              0 / 0 项
                                              暂无数据
                                              跳至
                                              / 1 页
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\transfer\\_example\\pagination.tsx 1`] = `"
                                              0 / 20 项
                                              跳至
                                              / 2 页
                                              0 / 0 项
                                              暂无数据
                                              跳至
                                              / 1 页
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/transfer/_example/search.tsx 1`] = `""`; +exports[`ssr snapshot test > ssr test packages\\components\\transfer\\_example\\search.tsx 1`] = `""`; -exports[`ssr snapshot test > ssr test packages/components/transfer/_example/tree.tsx 1`] = `"
                                              0 / 5 项
                                              暂无数据
                                              0 / 0 项
                                              暂无数据
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\transfer\\_example\\tree.tsx 1`] = `"
                                              0 / 5 项
                                              暂无数据
                                              0 / 0 项
                                              暂无数据
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/tree/_example/activable.tsx 1`] = `"
                                              暂无数据
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\tree\\_example\\activable.tsx 1`] = `"
                                              暂无数据
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/tree/_example/base.tsx 1`] = `"
                                              暂无数据
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\tree\\_example\\base.tsx 1`] = `"
                                              暂无数据
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/tree/_example/checkable.tsx 1`] = `"
                                              暂无数据
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\tree\\_example\\checkable.tsx 1`] = `"
                                              暂无数据
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/tree/_example/controlled.tsx 1`] = `"
                                              checked:
                                              expanded:
                                              actived:
                                              暂无数据
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\tree\\_example\\controlled.tsx 1`] = `"
                                              checked:
                                              expanded:
                                              actived:
                                              暂无数据
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/tree/_example/disabled.tsx 1`] = `"
                                              暂无数据
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\tree\\_example\\disabled.tsx 1`] = `"
                                              暂无数据
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/tree/_example/draggable.tsx 1`] = `"
                                              暂无数据
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\tree\\_example\\draggable.tsx 1`] = `"
                                              暂无数据
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/tree/_example/empty.tsx 1`] = `"
                                              暂无数据
                                              😊 空数据(string)
                                              😊 空数据( empty props )
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\tree\\_example\\empty.tsx 1`] = `"
                                              暂无数据
                                              😊 空数据(string)
                                              😊 空数据( empty props )
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/tree/_example/expand-all.tsx 1`] = `"
                                              暂无数据
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\tree\\_example\\expand-all.tsx 1`] = `"
                                              暂无数据
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/tree/_example/expand-level.tsx 1`] = `"
                                              暂无数据
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\tree\\_example\\expand-level.tsx 1`] = `"
                                              暂无数据
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/tree/_example/expand-mutex.tsx 1`] = `"
                                              暂无数据
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\tree\\_example\\expand-mutex.tsx 1`] = `"
                                              暂无数据
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/tree/_example/filter.tsx 1`] = `"
                                              filter:
                                              暂无数据
                                              filter:
                                              暂无数据
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\tree\\_example\\filter.tsx 1`] = `"
                                              filter:
                                              暂无数据
                                              filter:
                                              暂无数据
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/tree/_example/icon.tsx 1`] = `"

                                              render 1:

                                              暂无数据

                                              render 2:

                                              暂无数据
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\tree\\_example\\icon.tsx 1`] = `"

                                              render 1:

                                              暂无数据

                                              render 2:

                                              暂无数据
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/tree/_example/label.tsx 1`] = `"
                                              暂无数据
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\tree\\_example\\label.tsx 1`] = `"
                                              暂无数据
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/tree/_example/lazy.tsx 1`] = `"
                                              暂无数据
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\tree\\_example\\lazy.tsx 1`] = `"
                                              暂无数据
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/tree/_example/line.tsx 1`] = `"
                                              暂无数据

                                              render

                                              暂无数据
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\tree\\_example\\line.tsx 1`] = `"
                                              暂无数据

                                              render

                                              暂无数据
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/tree/_example/load.tsx 1`] = `"
                                              暂无数据
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\tree\\_example\\load.tsx 1`] = `"
                                              暂无数据
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/tree/_example/operations.tsx 1`] = `"

                                              render:

                                              暂无数据

                                              api:

                                              filter:
                                              暂无数据

                                              api:

                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\tree\\_example\\operations.tsx 1`] = `"

                                              render:

                                              暂无数据

                                              api:

                                              filter:
                                              暂无数据

                                              api:

                                              "`; -exports[`ssr snapshot test > ssr test packages/components/tree/_example/state.tsx 1`] = `"

                                              state:

                                              暂无数据

                                              api:

                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\tree\\_example\\state.tsx 1`] = `"

                                              state:

                                              暂无数据

                                              api:

                                              "`; -exports[`ssr snapshot test > ssr test packages/components/tree/_example/sync.tsx 1`] = `"
                                              checked:
                                              expanded:
                                              actived:
                                              暂无数据
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\tree\\_example\\sync.tsx 1`] = `"
                                              checked:
                                              expanded:
                                              actived:
                                              暂无数据
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/tree/_example/vscroll.tsx 1`] = `"
                                              暂无数据
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\tree\\_example\\vscroll.tsx 1`] = `"
                                              暂无数据
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/tree-select/_example/base.tsx 1`] = `"
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\tree-select\\_example\\base.tsx 1`] = `"
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/tree-select/_example/collapsed.tsx 1`] = `"
                                              广州市
                                              +1
                                              广州市
                                              更多...
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\tree-select\\_example\\collapsed.tsx 1`] = `"
                                              广州市
                                              +1
                                              广州市
                                              更多...
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/tree-select/_example/filterable.tsx 1`] = `"
                                              请选择
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\tree-select\\_example\\filterable.tsx 1`] = `"
                                              请选择
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/tree-select/_example/lazy.tsx 1`] = `"
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\tree-select\\_example\\lazy.tsx 1`] = `"
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/tree-select/_example/multiple.tsx 1`] = `"
                                              广州市
                                              深圳市
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\tree-select\\_example\\multiple.tsx 1`] = `"
                                              广州市
                                              深圳市
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/tree-select/_example/panelContent.tsx 1`] = `"
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\tree-select\\_example\\panelContent.tsx 1`] = `"
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/tree-select/_example/prefix.tsx 1`] = `"
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\tree-select\\_example\\prefix.tsx 1`] = `"
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/tree-select/_example/prefixsuffix.tsx 1`] = `"
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\tree-select\\_example\\prefixsuffix.tsx 1`] = `"
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/tree-select/_example/props.tsx 1`] = `"
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\tree-select\\_example\\props.tsx 1`] = `"
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/tree-select/_example/valuedisplay.tsx 1`] = `"
                                              广州市(guangzhou)
                                              广州市(guangzhou)
                                              深圳市(shenzhen)
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\tree-select\\_example\\valuedisplay.tsx 1`] = `"
                                              广州市(guangzhou)
                                              广州市(guangzhou)
                                              深圳市(shenzhen)
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/tree-select/_example/valuetype.tsx 1`] = `"
                                              广州市
                                              深圳市
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\tree-select\\_example\\valuetype.tsx 1`] = `"
                                              广州市
                                              深圳市
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/typography/_example/base.tsx 1`] = `"

                                              What is TDesign

                                              TDesign is an enterprise-level design system accumulated by Tencent's various business teams.
                                              TDesign features a unified design values, consistent design language, and visual style, helping users form continuous and coherent perceptions of the experience. Based on this, TDesign offers out-of-the-box UI component libraries, design guidelines, and design assets, elegantly and efficiently freeing design and development from repetitive tasks. Simultaneously, it facilitates easy extension on top of TDesign, enabling a better alignment with business requirements.

                                              Comprehensive

                                              TDesign Support Vue 2, Vue 3, React, components for Desktop Application and Vue 3, Wechat MiniProgram components for Mobile Application.
                                              • Features
                                              • Comprehensive
                                                • Consistency
                                                • Usability
                                              • Join TDesign
                                              1. Features
                                              2. Comprehensive
                                                1. Consistency
                                                2. Usability
                                              3. Join TDesign
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\typography\\_example\\base.tsx 1`] = `"

                                              What is TDesign

                                              TDesign is an enterprise-level design system accumulated by Tencent's various business teams.
                                              TDesign features a unified design values, consistent design language, and visual style, helping users form continuous and coherent perceptions of the experience. Based on this, TDesign offers out-of-the-box UI component libraries, design guidelines, and design assets, elegantly and efficiently freeing design and development from repetitive tasks. Simultaneously, it facilitates easy extension on top of TDesign, enabling a better alignment with business requirements.

                                              Comprehensive

                                              TDesign Support Vue 2, Vue 3, React, components for Desktop Application and Vue 3, Wechat MiniProgram components for Mobile Application.
                                              • Features
                                              • Comprehensive
                                                • Consistency
                                                • Usability
                                              • Join TDesign
                                              1. Features
                                              2. Comprehensive
                                                1. Consistency
                                                2. Usability
                                              3. Join TDesign
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/typography/_example/copyable.tsx 1`] = `"This is a copyable text.
                                              This is a copyable long text. TDesign was founded with the principles of open-source collaboration from the beginning. The collaboration scheme discussion, component design, and API design, including source code, are fully open within the company, garnering widespread attention from internal developers and designers. TDesign follows an equal, open, and strict policy, regardless of the participants' roles....

                                              This is a copyable long text with custom suffix."`; +exports[`ssr snapshot test > ssr test packages\\components\\typography\\_example\\copyable.tsx 1`] = `"This is a copyable text.
                                              This is a copyable long text. TDesign was founded with the principles of open-source collaboration from the beginning. The collaboration scheme discussion, component design, and API design, including source code, are fully open within the company, garnering widespread attention from internal developers and designers. TDesign follows an equal, open, and strict policy, regardless of the participants' roles....

                                              This is a copyable long text with custom suffix."`; -exports[`ssr snapshot test > ssr test packages/components/typography/_example/ellipsis.tsx 1`] = `"
                                              TDesign was founded with the principles of open-source collaboration from the beginning. The collaboration scheme discussion, component design, and API design, including source code, are fully open within the company, garnering widespread attention from internal developers and designers. TDesign follows an equal, open, and strict policy, regardless of the participants' roles....
                                              TDesign was founded with the principles of open-source collaboration from the beginning. The collaboration scheme discussion, component design, and API design, including source code, are fully open within the company, garnering widespread attention from internal developers and designers. TDesign follows an equal, open, and strict policy, regardless of the participants' roles....
                                              TDesign was founded with the principles of open-source collaboration from the beginning. The collaboration scheme discussion, component design, and API design, including source code, are fully open within the company, garnering widespread attention from internal developers and designers. TDesign follows an equal, open, and strict policy, regardless of the participants' roles....
                                              TDesign was founded with the principles of open-source collaboration from the beginning. The collaboration scheme discussion, component design, and API design, including source code, are fully open within the company, garnering widespread attention from internal developers and designers. TDesign follows an equal, open, and strict policy, regardless of the participants' roles....
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\typography\\_example\\ellipsis.tsx 1`] = `"
                                              TDesign was founded with the principles of open-source collaboration from the beginning. The collaboration scheme discussion, component design, and API design, including source code, are fully open within the company, garnering widespread attention from internal developers and designers. TDesign follows an equal, open, and strict policy, regardless of the participants' roles....
                                              TDesign was founded with the principles of open-source collaboration from the beginning. The collaboration scheme discussion, component design, and API design, including source code, are fully open within the company, garnering widespread attention from internal developers and designers. TDesign follows an equal, open, and strict policy, regardless of the participants' roles....
                                              TDesign was founded with the principles of open-source collaboration from the beginning. The collaboration scheme discussion, component design, and API design, including source code, are fully open within the company, garnering widespread attention from internal developers and designers. TDesign follows an equal, open, and strict policy, regardless of the participants' roles....
                                              TDesign was founded with the principles of open-source collaboration from the beginning. The collaboration scheme discussion, component design, and API design, including source code, are fully open within the company, garnering widespread attention from internal developers and designers. TDesign follows an equal, open, and strict policy, regardless of the participants' roles....
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/typography/_example/text.tsx 1`] = `"
                                              TDesign (primary)
                                              TDesign (secondary)
                                              TDesign (disabled)
                                              TDesign (success)
                                              TDesign (warning)
                                              TDesign (error)
                                              TDesign (mark)
                                              TDesign (code)
                                              TDesign (keyboard)
                                              TDesign (underline)
                                              TDesign (delete)
                                              TDesign (strong)
                                              TDesign (italic)
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\typography\\_example\\text.tsx 1`] = `"
                                              TDesign (primary)
                                              TDesign (secondary)
                                              TDesign (disabled)
                                              TDesign (success)
                                              TDesign (warning)
                                              TDesign (error)
                                              TDesign (mark)
                                              TDesign (code)
                                              TDesign (keyboard)
                                              TDesign (underline)
                                              TDesign (delete)
                                              TDesign (strong)
                                              TDesign (italic)
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/typography/_example/title.tsx 1`] = `"

                                              H1. TDesign

                                              H2. TDesign

                                              H3. TDesign

                                              H4. TDesign

                                              H5. TDesign
                                              H6. TDesign
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\typography\\_example\\title.tsx 1`] = `"

                                              H1. TDesign

                                              H2. TDesign

                                              H3. TDesign

                                              H4. TDesign

                                              H5. TDesign
                                              H6. TDesign
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/upload/_example/base.tsx 1`] = `"

                                              要求文件大小在 1M 以内
                                              文件上传失败示例
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\upload\\_example\\base.tsx 1`] = `"

                                              要求文件大小在 1M 以内
                                              文件上传失败示例
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/upload/_example/custom-drag.tsx 1`] = `"


                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\upload\\_example\\custom-drag.tsx 1`] = `"


                                              "`; -exports[`ssr snapshot test > ssr test packages/components/upload/_example/draggable.tsx 1`] = `"
                                              是否自动上传:

                                              点击上传  /  拖拽到此区域
                                              默认文件
                                              文件大小1.0 KB上传日期2022-09-25
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\upload\\_example\\draggable.tsx 1`] = `"
                                              是否自动上传:

                                              点击上传  /  拖拽到此区域
                                              默认文件
                                              文件大小1.0 KB上传日期2022-09-25
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/upload/_example/file-flow-list.tsx 1`] = `"

                                              支持批量上传文件,文件格式不限,最多只能上传 10 份文件
                                              点击上方“选择文件”或将文件拖拽到此区域
                                              取消上传
                                              点击上传
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\upload\\_example\\file-flow-list.tsx 1`] = `"

                                              支持批量上传文件,文件格式不限,最多只能上传 10 份文件
                                              点击上方“选择文件”或将文件拖拽到此区域
                                              取消上传
                                              点击上传
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/upload/_example/image.tsx 1`] = `"

                                              • 请选择图片

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

                                              单张图片文件上传(上传失败状态演示)
                                              • 点击上传图片

                                              允许选择多张图片文件上传,最多只能上传 3 张图片
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\upload\\_example\\image.tsx 1`] = `"

                                              • 请选择图片

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

                                              单张图片文件上传(上传失败状态演示)
                                              • 点击上传图片

                                              允许选择多张图片文件上传,最多只能上传 3 张图片
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/upload/_example/img-flow-list.tsx 1`] = `"
                                              AutoUpload

                                              支持批量上传图片文件
                                              • demo…-1.png

                                              • avatar.jpg

                                              取消上传

                                              Different Status Images
                                              • loading.svg

                                              • loading.svg

                                              • 上传中 10%

                                                loading.svg

                                              • 上传失败

                                                loading.svg

                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\upload\\_example\\img-flow-list.tsx 1`] = `"
                                              AutoUpload

                                              支持批量上传图片文件
                                              • demo…-1.png

                                              • avatar.jpg

                                              取消上传

                                              Different Status Images
                                              • loading.svg

                                              • loading.svg

                                              • 上传中 10%

                                                loading.svg

                                              • 上传失败

                                                loading.svg

                                              "`; -exports[`ssr snapshot test > ssr test packages/components/upload/_example/request-method.tsx 1`] = `"
                                              自定义上传方法需要返回成功或失败信息
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\upload\\_example\\request-method.tsx 1`] = `"
                                              自定义上传方法需要返回成功或失败信息
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/upload/_example/single-custom.tsx 1`] = `"
                                              上传文件大小在 1M 以内
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\upload\\_example\\single-custom.tsx 1`] = `"
                                              上传文件大小在 1M 以内
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/upload/_example/single-input.tsx 1`] = `"

                                              请选择文件
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\upload\\_example\\single-input.tsx 1`] = `"

                                              请选择文件
                                              "`; diff --git a/test/snap/__snapshots__/ssr.test.jsx.snap b/test/snap/__snapshots__/ssr.test.jsx.snap index 4487fda12b..a16531fb18 100644 --- a/test/snap/__snapshots__/ssr.test.jsx.snap +++ b/test/snap/__snapshots__/ssr.test.jsx.snap @@ -1273,3 +1273,1277 @@ exports[`ssr snapshot test > ssr test packages/components/upload/_example/reques exports[`ssr snapshot test > ssr test packages/components/upload/_example/single-custom.tsx 1`] = `"
                                              上传文件大小在 1M 以内
                                              "`; exports[`ssr snapshot test > ssr test packages/components/upload/_example/single-input.tsx 1`] = `"

                                              请选择文件
                                              "`; + +exports[`ssr snapshot test > ssr test packages\\components\\affix\\_example\\base.tsx 1`] = `"
                                              "`; + +exports[`ssr snapshot test > ssr test packages\\components\\affix\\_example\\container.tsx 1`] = `"
                                              "`; + +exports[`ssr snapshot test > ssr test packages\\components\\alert\\_example\\base.tsx 1`] = `"
                                              这是一条成功的消息提示
                                              这是一条普通的消息提示
                                              这是一条警示消息
                                              高危操作/出错信息提示
                                              "`; + +exports[`ssr snapshot test > ssr test packages\\components\\alert\\_example\\close.tsx 1`] = `"
                                              这是一条成功的消息提示
                                              这是一条普通的消息提示
                                              知道了
                                              这是一条警示消息
                                              FunctionPropClose
                                              高危操作/出错信息提示
                                              关闭
                                              "`; + +exports[`ssr snapshot test > ssr test packages\\components\\alert\\_example\\collapse.tsx 1`] = `"
                                              1.这是一条普通的消息提示描述,
                                              2.这是一条普通的消息提示描述,
                                              展开更多
                                              "`; + +exports[`ssr snapshot test > ssr test packages\\components\\alert\\_example\\icon.tsx 1`] = `"
                                              这是一条成功的消息提示
                                              这是一条普通的消息提示
                                              这是一条警示消息
                                              高危操作/出错信息提示
                                              "`; + +exports[`ssr snapshot test > ssr test packages\\components\\alert\\_example\\operation.tsx 1`] = `"
                                              这是一条成功的消息提示
                                              相关操作
                                              这是一条普通的消息提示
                                              相关操作
                                              这是一条警示消息
                                              相关操作
                                              高危操作/出错信息提示
                                              相关操作
                                              "`; + +exports[`ssr snapshot test > ssr test packages\\components\\alert\\_example\\swiper.tsx 1`] = `"
                                              这是一条成功的消息提示
                                              这是一条普通的消息提示
                                              这是一条警示消息
                                              高危操作/出错信息提示
                                              "`; + +exports[`ssr snapshot test > ssr test packages\\components\\alert\\_example\\title.tsx 1`] = `"
                                              这是一条普通的消息提示
                                              这是一条普通的消息提示描述,这是一条普通的消息提示描述
                                              相关操作
                                              "`; + +exports[`ssr snapshot test > ssr test packages\\components\\anchor\\_example\\base.tsx 1`] = `""`; + +exports[`ssr snapshot test > ssr test packages\\components\\anchor\\_example\\container.tsx 1`] = `"
                                              content-1
                                              content-2
                                              content-3
                                              content-4
                                              content-5
                                              "`; + +exports[`ssr snapshot test > ssr test packages\\components\\anchor\\_example\\cursor.tsx 1`] = `""`; + +exports[`ssr snapshot test > ssr test packages\\components\\anchor\\_example\\customize-highlight.tsx 1`] = `""`; + +exports[`ssr snapshot test > ssr test packages\\components\\anchor\\_example\\large.tsx 1`] = `""`; + +exports[`ssr snapshot test > ssr test packages\\components\\anchor\\_example\\multiple.tsx 1`] = `""`; + +exports[`ssr snapshot test > ssr test packages\\components\\anchor\\_example\\small.tsx 1`] = `""`; + +exports[`ssr snapshot test > ssr test packages\\components\\anchor\\_example\\target.tsx 1`] = `"

                                              基础锚点

                                              多级锚点

                                              尺寸大小

                                              指定容器

                                              "`; + +exports[`ssr snapshot test > ssr test packages\\components\\auto-complete\\_example\\base.tsx 1`] = `"
                                              "`; + +exports[`ssr snapshot test > ssr test packages\\components\\auto-complete\\_example\\filter.tsx 1`] = `"
                                              "`; + +exports[`ssr snapshot test > ssr test packages\\components\\auto-complete\\_example\\option.tsx 1`] = `"
                                              "`; + +exports[`ssr snapshot test > ssr test packages\\components\\auto-complete\\_example\\size.tsx 1`] = `"
                                              小尺寸:
                                              中尺寸:
                                              大尺寸:
                                              "`; + +exports[`ssr snapshot test > ssr test packages\\components\\auto-complete\\_example\\status.tsx 1`] = `"
                                              这是禁用状态
                                              这是只读状态
                                              这是普通状态
                                              这是告警状态
                                              这是错误状态
                                              这是成功状态
                                              "`; + +exports[`ssr snapshot test > ssr test packages\\components\\auto-complete\\_example\\trigger-element.tsx 1`] = `"
                                              "`; + +exports[`ssr snapshot test > ssr test packages\\components\\avatar\\_example\\adjust.tsx 1`] = `"
                                              王亿
                                              王亿亿
                                              "`; + +exports[`ssr snapshot test > ssr test packages\\components\\avatar\\_example\\base.tsx 1`] = `"
                                              图片加载中
                                              W
                                              "`; + +exports[`ssr snapshot test > ssr test packages\\components\\avatar\\_example\\group.tsx 1`] = `"
                                              图片加载中
                                              W
                                              图片加载中
                                              W
                                              "`; + +exports[`ssr snapshot test > ssr test packages\\components\\avatar\\_example\\group-cascading.tsx 1`] = `"
                                              图片加载中
                                              W
                                              图片加载中
                                              W
                                              "`; + +exports[`ssr snapshot test > ssr test packages\\components\\avatar\\_example\\group-max.tsx 1`] = `"
                                              图片加载中
                                              Avatar
                                              +1
                                              图片加载中
                                              Avatar
                                              图片加载中
                                              Avatar
                                              more
                                              "`; + +exports[`ssr snapshot test > ssr test packages\\components\\avatar\\_example\\shape.tsx 1`] = `"
                                              W
                                              W
                                              "`; + +exports[`ssr snapshot test > ssr test packages\\components\\avatar\\_example\\size.tsx 1`] = `"
                                              W
                                              W
                                              W
                                              W
                                              W
                                              W
                                              W
                                              W
                                              test
                                              图片加载中
                                              图片加载中
                                              图片加载中
                                              图片加载中
                                              "`; + +exports[`ssr snapshot test > ssr test packages\\components\\back-top\\_example\\baseList.tsx 1`] = `"
                                              • 列表内容
                                              • 列表内容
                                              • 列表内容
                                              • 列表内容
                                              • 列表内容
                                              • 列表内容
                                              • 列表内容
                                              • 列表内容
                                              • 列表内容
                                              • 列表内容
                                              • 列表内容
                                              • 列表内容
                                              • 列表内容
                                              • 列表内容
                                              • 列表内容
                                              • 列表内容
                                              • 列表内容
                                              • 列表内容
                                              • 列表内容
                                              • 列表内容
                                              • 列表内容
                                              • 列表内容
                                              • 列表内容
                                              • 列表内容
                                              • 列表内容
                                              • 列表内容
                                              • 列表内容
                                              • 列表内容
                                              • 列表内容
                                              • 列表内容
                                              • 列表内容
                                              • 列表内容
                                              • 列表内容
                                              • 列表内容
                                              • 列表内容
                                              • 列表内容
                                              • 列表内容
                                              • 列表内容
                                              • 列表内容
                                              • 列表内容
                                              • 列表内容
                                              • 列表内容
                                              • 列表内容
                                              • 列表内容
                                              • 列表内容
                                              • 列表内容
                                              • 列表内容
                                              • 列表内容
                                              • 列表内容
                                              • 列表内容
                                              "`; + +exports[`ssr snapshot test > ssr test packages\\components\\back-top\\_example\\baseListSmall.tsx 1`] = `"
                                              • 列表内容
                                              • 列表内容
                                              • 列表内容
                                              • 列表内容
                                              • 列表内容
                                              • 列表内容
                                              • 列表内容
                                              • 列表内容
                                              • 列表内容
                                              • 列表内容
                                              • 列表内容
                                              • 列表内容
                                              • 列表内容
                                              • 列表内容
                                              • 列表内容
                                              • 列表内容
                                              • 列表内容
                                              • 列表内容
                                              • 列表内容
                                              • 列表内容
                                              • 列表内容
                                              • 列表内容
                                              • 列表内容
                                              • 列表内容
                                              • 列表内容
                                              • 列表内容
                                              • 列表内容
                                              • 列表内容
                                              • 列表内容
                                              • 列表内容
                                              • 列表内容
                                              • 列表内容
                                              • 列表内容
                                              • 列表内容
                                              • 列表内容
                                              • 列表内容
                                              • 列表内容
                                              • 列表内容
                                              • 列表内容
                                              • 列表内容
                                              • 列表内容
                                              • 列表内容
                                              • 列表内容
                                              • 列表内容
                                              • 列表内容
                                              • 列表内容
                                              • 列表内容
                                              • 列表内容
                                              • 列表内容
                                              • 列表内容
                                              "`; + +exports[`ssr snapshot test > ssr test packages\\components\\back-top\\_example\\custom.tsx 1`] = `"
                                              "`; + +exports[`ssr snapshot test > ssr test packages\\components\\back-top\\_example\\shape.tsx 1`] = `"
                                              "`; + +exports[`ssr snapshot test > ssr test packages\\components\\back-top\\_example\\size.tsx 1`] = `"
                                              "`; + +exports[`ssr snapshot test > ssr test packages\\components\\back-top\\_example\\theme.tsx 1`] = `"
                                              "`; + +exports[`ssr snapshot test > ssr test packages\\components\\badge\\_example\\base.tsx 1`] = `"解锁新徽章"`; + +exports[`ssr snapshot test > ssr test packages\\components\\badge\\_example\\color.tsx 1`] = `"
                                              "`; + +exports[`ssr snapshot test > ssr test packages\\components\\badge\\_example\\custom.tsx 1`] = `"
                                              hot
                                              new
                                              100
                                              hot
                                              new
                                              new
                                              "`; + +exports[`ssr snapshot test > ssr test packages\\components\\badge\\_example\\number.tsx 1`] = `"29999+"`; + +exports[`ssr snapshot test > ssr test packages\\components\\badge\\_example\\offset.tsx 1`] = `"22222"`; + +exports[`ssr snapshot test > ssr test packages\\components\\badge\\_example\\shape.tsx 1`] = `"299"`; + +exports[`ssr snapshot test > ssr test packages\\components\\badge\\_example\\size.tsx 1`] = `"

                                              1.默认大小

                                              29999+

                                              2.小

                                              29999+"`; + +exports[`ssr snapshot test > ssr test packages\\components\\breadcrumb\\_example\\base.tsx 1`] = `"
                                              页面1
                                              页面2页面2页面2页面2页面2页面2页面2页面2
                                              页面3页面3页面3页面3页面3页面3页面3页面3页面3页面3页面3页面3页面3页面3页面3
                                              "`; + +exports[`ssr snapshot test > ssr test packages\\components\\breadcrumb\\_example\\custom.tsx 1`] = `"
                                              页面1>>
                                              页面2>>
                                              页面3>>
                                              页面1/////
                                              页面2/////
                                              页面3/////
                                              "`; + +exports[`ssr snapshot test > ssr test packages\\components\\breadcrumb\\_example\\custom-ellipsis.tsx 1`] = `"
                                              页面1
                                              页面2
                                              页面5
                                              页面1
                                              页面2
                                              页面5
                                              "`; + +exports[`ssr snapshot test > ssr test packages\\components\\breadcrumb\\_example\\ellipsis.tsx 1`] = `"
                                              页面1
                                              页面2
                                              页面5
                                              页面1
                                              页面2
                                              页面5
                                              "`; + +exports[`ssr snapshot test > ssr test packages\\components\\breadcrumb\\_example\\href.tsx 1`] = `"
                                              页面2
                                              页面3
                                              点击计数器:0
                                              "`; + +exports[`ssr snapshot test > ssr test packages\\components\\breadcrumb\\_example\\icon.tsx 1`] = `"
                                              页面1
                                              页面2
                                              页面3
                                              "`; + +exports[`ssr snapshot test > ssr test packages\\components\\breadcrumb\\_example\\options.tsx 1`] = `"
                                              页面1
                                              页面2
                                              "`; + +exports[`ssr snapshot test > ssr test packages\\components\\breadcrumb\\_example\\to.tsx 1`] = `""`; + +exports[`ssr snapshot test > ssr test packages\\components\\breadcrumb\\_example\\width.tsx 1`] = `"
                                              父级设置100px父级设置100px
                                              设置最大宽度160px设置最大宽度160px设置最大宽度160px
                                              设置最大宽度240px设置最大宽度240px设置最大宽度240px设置最大宽度240px设置最大宽度240px
                                              父级设置100px父级设置100px
                                              "`; + +exports[`ssr snapshot test > ssr test packages\\components\\button\\_example\\base.tsx 1`] = `"
                                              "`; + +exports[`ssr snapshot test > ssr test packages\\components\\button\\_example\\block.tsx 1`] = `"
                                              "`; + +exports[`ssr snapshot test > ssr test packages\\components\\button\\_example\\custom-element.tsx 1`] = `""`; + +exports[`ssr snapshot test > ssr test packages\\components\\button\\_example\\ghost.tsx 1`] = `"
                                              "`; + +exports[`ssr snapshot test > ssr test packages\\components\\button\\_example\\icon.tsx 1`] = `"
                                              "`; + +exports[`ssr snapshot test > ssr test packages\\components\\button\\_example\\shape.tsx 1`] = `"
                                              "`; + +exports[`ssr snapshot test > ssr test packages\\components\\button\\_example\\size.tsx 1`] = `"
                                              "`; + +exports[`ssr snapshot test > ssr test packages\\components\\button\\_example\\status.tsx 1`] = `"
                                              填充按钮
                                              "`; + +exports[`ssr snapshot test > ssr test packages\\components\\button\\_example\\theme.tsx 1`] = `"
                                              "`; + +exports[`ssr snapshot test > ssr test packages\\components\\calendar\\_example\\base.tsx 1`] = `"
                                              请选择
                                              请选择
                                              隐藏周末
                                              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
                                              "`; + +exports[`ssr snapshot test > ssr test packages\\components\\calendar\\_example\\card.tsx 1`] = `"
                                              请选择
                                              请选择
                                              30
                                              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
                                              "`; + +exports[`ssr snapshot test > ssr test packages\\components\\calendar\\_example\\cell.tsx 1`] = `"
                                              请选择
                                              请选择
                                              隐藏周末
                                              30
                                              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
                                              "`; + +exports[`ssr snapshot test > ssr test packages\\components\\calendar\\_example\\cell-append.tsx 1`] = `"
                                              请选择
                                              请选择
                                              隐藏周末
                                              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
                                              "`; + +exports[`ssr snapshot test > ssr test packages\\components\\calendar\\_example\\controller-config.tsx 1`] = `"
                                              控件全局



                                              控件局部






                                              请选择
                                              请选择
                                              隐藏周末
                                              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
                                              "`; + +exports[`ssr snapshot test > ssr test packages\\components\\calendar\\_example\\events.tsx 1`] = `"
                                              请选择
                                              请选择
                                              隐藏周末
                                              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
                                              "`; + +exports[`ssr snapshot test > ssr test packages\\components\\calendar\\_example\\filter.tsx 1`] = `"
                                              请选择
                                              请选择
                                              隐藏周末
                                              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
                                              "`; + +exports[`ssr snapshot test > ssr test packages\\components\\calendar\\_example\\first-day-of-week.tsx 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 packages\\components\\calendar\\_example\\head.tsx 1`] = `"
                                              🗓 TDesign开发计划
                                              请选择
                                              请选择
                                              隐藏周末
                                              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
                                              "`; + +exports[`ssr snapshot test > ssr test packages\\components\\calendar\\_example\\mode.tsx 1`] = `"
                                              请选择
                                              请选择
                                              隐藏周末
                                              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
                                              "`; + +exports[`ssr snapshot test > ssr test packages\\components\\calendar\\_example\\range.tsx 1`] = `"
                                              请选择
                                              请选择
                                              隐藏周末
                                              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
                                              "`; + +exports[`ssr snapshot test > ssr test packages\\components\\calendar\\_example\\slot-props-api.tsx 1`] = `"
                                              2020-12 工作安排
                                              请选择
                                              请选择
                                              隐藏周末
                                              30
                                              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
                                              "`; + +exports[`ssr snapshot test > ssr test packages\\components\\calendar\\_example\\value.tsx 1`] = `"
                                              请选择
                                              请选择
                                              隐藏周末
                                              26
                                              27
                                              28
                                              29
                                              30
                                              31
                                              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
                                              01
                                              02
                                              03
                                              04
                                              05
                                              06
                                              "`; + +exports[`ssr snapshot test > ssr test packages\\components\\calendar\\_example\\week.tsx 1`] = `"
                                              请选择
                                              请选择
                                              隐藏周末
                                              星期1
                                              星期2
                                              星期3
                                              星期4
                                              星期5
                                              星期6
                                              星期7
                                              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
                                              "`; + +exports[`ssr snapshot test > ssr test packages\\components\\card\\_example\\base.tsx 1`] = `"
                                              标题
                                              操作
                                              仅有内容区域的卡片形式。卡片内容区域可以是文字、图片、表单、表格等形式信息内容。可使用大中小不同的卡片尺寸,按业务需求进行呈现。
                                              "`; + +exports[`ssr snapshot test > ssr test packages\\components\\card\\_example\\bordered.tsx 1`] = `"
                                              仅有内容区域的卡片形式。卡片内容区域可以是文字、图片、表单、表格等形式信息内容。可使用大中小不同的卡片尺寸,按业务需求进行呈现。
                                              "`; + +exports[`ssr snapshot test > ssr test packages\\components\\card\\_example\\bordered-none.tsx 1`] = `"
                                              标题
                                              仅有内容区域的卡片形式。卡片内容区域可以是文字、图片、表单、表格等形式信息内容。可使用大中小不同的卡片尺寸,按业务需求进行呈现。
                                              "`; + +exports[`ssr snapshot test > ssr test packages\\components\\card\\_example\\custom-loading-props.tsx 1`] = `"
                                              自定义loadingProps Card
                                              仅有内容区域的卡片形式。卡片内容区域可以是文字、图片、表单、表格等形式信息内容。可使用大中小不同的卡片尺寸,按业务需求进行呈现。
                                              TDesign努力加载中...
                                              "`; + +exports[`ssr snapshot test > ssr test packages\\components\\card\\_example\\footer.tsx 1`] = `"
                                              默认标签
                                              "`; + +exports[`ssr snapshot test > ssr test packages\\components\\card\\_example\\footer-actions.tsx 1`] = `"
                                              "`; + +exports[`ssr snapshot test > ssr test packages\\components\\card\\_example\\footer-content.tsx 1`] = `"
                                              "`; + +exports[`ssr snapshot test > ssr test packages\\components\\card\\_example\\footer-content-actions.tsx 1`] = `"
                                              "`; + +exports[`ssr snapshot test > ssr test packages\\components\\card\\_example\\header.tsx 1`] = `"
                                              标题
                                              卡片内容,以描述性为主,可以是文字、图片或图文组合的形式。按业务需求进行自定义组合。
                                              "`; + +exports[`ssr snapshot test > ssr test packages\\components\\card\\_example\\header-all-props.tsx 1`] = `"
                                              标题
                                              副标题

                                              描述

                                              操作
                                              卡片内容,以描述性为主,可以是文字、图片或图文组合的形式。按业务需求进行自定义组合。
                                              "`; + +exports[`ssr snapshot test > ssr test packages\\components\\card\\_example\\header-bordered.tsx 1`] = `"
                                              标题
                                              卡片内容,以描述性为主,可以是文字、图片或图文组合的形式。按业务需求进行自定义组合。
                                              "`; + +exports[`ssr snapshot test > ssr test packages\\components\\card\\_example\\header-description.tsx 1`] = `"
                                              标题

                                              描述

                                              操作
                                              卡片内容,以描述性为主,可以是文字、图片或图文组合的形式。按业务需求进行自定义组合。
                                              "`; + +exports[`ssr snapshot test > ssr test packages\\components\\card\\_example\\header-footer-actions.tsx 1`] = `"
                                              图片加载中
                                              标题

                                              卡片内容

                                              "`; + +exports[`ssr snapshot test > ssr test packages\\components\\card\\_example\\header-subtitle.tsx 1`] = `"
                                              标题
                                              副标题
                                              操作
                                              卡片内容,以描述性为主,可以是文字、图片或图文组合的形式。按业务需求进行自定义组合。
                                              "`; + +exports[`ssr snapshot test > ssr test packages\\components\\card\\_example\\header-subtitle-footer-actions.tsx 1`] = `"
                                              标题
                                              副标题
                                              "`; + +exports[`ssr snapshot test > ssr test packages\\components\\cascader\\_example\\base.tsx 1`] = `"
                                              "`; + +exports[`ssr snapshot test > ssr test packages\\components\\cascader\\_example\\check-strictly.tsx 1`] = `"
                                              请选择
                                              "`; + +exports[`ssr snapshot test > ssr test packages\\components\\cascader\\_example\\collapsed.tsx 1`] = `"
                                              请选择
                                              请选择
                                              "`; + +exports[`ssr snapshot test > ssr test packages\\components\\cascader\\_example\\custom-options.tsx 1`] = `"
                                              "`; + +exports[`ssr snapshot test > ssr test packages\\components\\cascader\\_example\\disabled.tsx 1`] = `"
                                              请选择
                                              "`; + +exports[`ssr snapshot test > ssr test packages\\components\\cascader\\_example\\ellipsis.tsx 1`] = `"
                                              "`; + +exports[`ssr snapshot test > ssr test packages\\components\\cascader\\_example\\filterable.tsx 1`] = `"
                                              请选择
                                              "`; + +exports[`ssr snapshot test > ssr test packages\\components\\cascader\\_example\\keys.tsx 1`] = `"
                                              请选择
                                              "`; + +exports[`ssr snapshot test > ssr test packages\\components\\cascader\\_example\\load.tsx 1`] = `"
                                              请选择
                                              "`; + +exports[`ssr snapshot test > ssr test packages\\components\\cascader\\_example\\max.tsx 1`] = `"
                                              请选择
                                              "`; + +exports[`ssr snapshot test > ssr test packages\\components\\cascader\\_example\\multiple.tsx 1`] = `"
                                              请选择
                                              "`; + +exports[`ssr snapshot test > ssr test packages\\components\\cascader\\_example\\panel.tsx 1`] = `"
                                              暂无数据
                                              暂无数据
                                              "`; + +exports[`ssr snapshot test > ssr test packages\\components\\cascader\\_example\\show-all-levels.tsx 1`] = `"
                                              请选择
                                              "`; + +exports[`ssr snapshot test > ssr test packages\\components\\cascader\\_example\\size.tsx 1`] = `"
                                              "`; + +exports[`ssr snapshot test > ssr test packages\\components\\cascader\\_example\\trigger.tsx 1`] = `"
                                              "`; + +exports[`ssr snapshot test > ssr test packages\\components\\cascader\\_example\\value-display.tsx 1`] = `"
                                              单选:
                                              (2.2)
                                              多选:
                                              请选择
                                              "`; + +exports[`ssr snapshot test > ssr test packages\\components\\cascader\\_example\\value-mode.tsx 1`] = `"
                                              请选择
                                              请选择
                                              请选择
                                              "`; + +exports[`ssr snapshot test > ssr test packages\\components\\cascader\\_example\\value-type.tsx 1`] = `"
                                              ["1","1.1"]
                                              [["1","1.1"],["1","1.2"]]
                                              请选择
                                              "`; + +exports[`ssr snapshot test > ssr test packages\\components\\checkbox\\_example\\base.tsx 1`] = `"
                                              "`; + +exports[`ssr snapshot test > ssr test packages\\components\\checkbox\\_example\\controlled.tsx 1`] = `"
                                              "`; + +exports[`ssr snapshot test > ssr test packages\\components\\checkbox\\_example\\group.tsx 1`] = `"
                                              选中值: 北京
                                              "`; + +exports[`ssr snapshot test > ssr test packages\\components\\checkbox\\_example\\link.tsx 1`] = `"
                                              "`; + +exports[`ssr snapshot test > ssr test packages\\components\\checkbox\\_example\\max.tsx 1`] = `"
                                              最多可选:
                                              选中值: 北京
                                              "`; + +exports[`ssr snapshot test > ssr test packages\\components\\collapse\\_example\\base.tsx 1`] = `"
                                              这是一个折叠标题
                                              这部分是每个折叠面板折叠或展开的内容,可根据不同业务或用户的使用诉求,进行自定义填充。可以是纯文本、图文、子列表等内容形式。
                                              设置默认展开项
                                              这部分是每个折叠面板折叠或展开的内容,可根据不同业务或用户的使用诉求,进行自定义填充。可以是纯文本、图文、子列表等内容形式。
                                              自定义折叠面板内容
                                              Vue
                                              React
                                              当前折叠面板折叠时,销毁面板内容
                                              嵌套使用折叠面板
                                              这是一个折叠标题
                                              这部分是每个折叠面板折叠或展开的内容,可根据不同业务或用户的使用诉求,进行自定义填充。可以是纯文本、图文、子列表等内容形式。
                                              这是一个折叠标题
                                              这部分是每个折叠面板折叠或展开的内容,可根据不同业务或用户的使用诉求,进行自定义填充。可以是纯文本、图文、子列表等内容形式。
                                              "`; + +exports[`ssr snapshot test > ssr test packages\\components\\collapse\\_example\\icon.tsx 1`] = `"
                                              这是一个折叠标题
                                              这部分是每个折叠面板折叠或展开的内容,可根据不同业务或用户的使用诉求,进行自定义填充。可以是纯文本、图文、子列表等内容形式。
                                              折叠后自动销毁
                                              自定义折叠面板内容
                                              Vue
                                              React
                                              自定义图标
                                              这部分是每个折叠面板折叠或展开的内容,可根据不同业务或用户的使用诉求,进行自定义填充。可以是纯文本、图文、子列表等内容形式。
                                              "`; + +exports[`ssr snapshot test > ssr test packages\\components\\collapse\\_example\\mutex.tsx 1`] = `"
                                              这是一个折叠标题
                                              这部分是每个折叠面板折叠或展开的内容,可根据不同业务或用户的使用诉求,进行自定义填充。可以是纯文本、图文、子列表等内容形式。
                                              折叠后自动销毁
                                              自定义折叠面板内容
                                              Vue
                                              React
                                              "`; + +exports[`ssr snapshot test > ssr test packages\\components\\collapse\\_example\\other.tsx 1`] = `"
                                              这是一个折叠标题
                                              这部分是每个折叠面板折叠或展开的内容,可根据不同业务或用户的使用诉求,进行自定义填充。可以是纯文本、图文、子列表等内容形式。
                                              折叠后自动销毁
                                              自定义折叠面板内容
                                              Vue
                                              React
                                              当前展开的Collapse Panel:
                                              "`; + +exports[`ssr snapshot test > ssr test packages\\components\\collapse\\_example\\rightSlot.tsx 1`] = `"
                                              这是一个折叠标题
                                              这部分是每个折叠面板折叠或展开的内容,可根据不同业务或用户的使用诉求,进行自定义填充。可以是纯文本、图文、子列表等内容形式。
                                              这是一个折叠标题
                                              这部分是每个折叠面板折叠或展开的内容,可根据不同业务或用户的使用诉求,进行自定义填充。可以是纯文本、图文、子列表等内容形式。
                                              这是一个折叠标题
                                              这部分是每个折叠面板折叠或展开的内容,可根据不同业务或用户的使用诉求,进行自定义填充。可以是纯文本、图文、子列表等内容形式。
                                              "`; + +exports[`ssr snapshot test > ssr test packages\\components\\color-picker\\_example\\color-mode.tsx 1`] = `"
                                              默认(单色 + 线性渐变)
                                              rgba(0, 82, 217, 1)
                                              仅单色模式
                                              #0052d9
                                              仅线性渐变模式
                                              linear-gradient(45deg, #4facfe 0%, #00f2fe 100%)
                                              "`; + +exports[`ssr snapshot test > ssr test packages\\components\\color-picker\\_example\\enable-alpha.tsx 1`] = `"
                                              请选择

                                              最近使用颜色

                                                系统预设颜色

                                                "`; + +exports[`ssr snapshot test > ssr test packages\\components\\color-picker\\_example\\panel.tsx 1`] = `"
                                                请选择

                                                最近使用颜色

                                                  系统预设颜色

                                                  "`; + +exports[`ssr snapshot test > ssr test packages\\components\\color-picker\\_example\\recent-color.tsx 1`] = `"
                                                  预设最近使用色
                                                  请选择

                                                  最近使用颜色

                                                  系统预设颜色

                                                  完全不显示最近使用色
                                                  请选择

                                                  系统预设颜色

                                                  "`; + +exports[`ssr snapshot test > ssr test packages\\components\\color-picker\\_example\\status-disabled.tsx 1`] = `"
                                                  #0052d9
                                                  "`; + +exports[`ssr snapshot test > ssr test packages\\components\\color-picker\\_example\\status-readonly.tsx 1`] = `"
                                                  请选择

                                                  最近使用颜色

                                                    系统预设颜色

                                                    "`; + +exports[`ssr snapshot test > ssr test packages\\components\\color-picker\\_example\\swatch-color.tsx 1`] = `"
                                                    自定义系统色
                                                    请选择

                                                    最近使用颜色

                                                      系统预设颜色

                                                      完全不显示系统色
                                                      请选择

                                                      最近使用颜色

                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\color-picker\\_example\\trigger.tsx 1`] = `"
                                                        #0052d9
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\comment\\_example\\base.tsx 1`] = `"
                                                        评论作者名今天16:38
                                                        评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容。
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\comment\\_example\\list.tsx 1`] = `"
                                                        • 评论作者名A今天16:38
                                                          A评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容。
                                                        • 评论作者名B今天16:38
                                                          B评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容。
                                                        • 评论作者名C今天16:38
                                                          C评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容。
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\comment\\_example\\operation.tsx 1`] = `"
                                                        评论作者名今天16:38
                                                        评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容。
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\comment\\_example\\quote.tsx 1`] = `"
                                                        评论作者名A今天16:38
                                                        A评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容。
                                                        引用内容标题
                                                        引用内容引用内容引用内容引用内容引用内容引用内容引用内容引用内容引用内容引用内容引用内容引用内容引用内容引用内容引用内容引用内容引用内容引用内容。
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\comment\\_example\\reply.tsx 1`] = `"
                                                        评论作者名A今天16:38
                                                        A评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容。
                                                        评论作者名B评论作者名A今天16:38
                                                        B评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容。
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\comment\\_example\\reply-form.tsx 1`] = `"
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\config-provider\\_example\\calendar.tsx 1`] = `"
                                                        please select
                                                        please select
                                                        Hide Weekend
                                                        MondayTuesdayWednesdayThursdayFridaySaturdaySunday
                                                        30
                                                        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
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\config-provider\\_example\\date-picker.tsx 1`] = `"
                                                        ~
                                                        ~
                                                        ~
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\config-provider\\_example\\dialog.tsx 1`] = `"
                                                        Title
                                                        Would you like to be my friends?
                                                        confirm
                                                        Would you like to be my friends?
                                                        confirm
                                                        Would you like to be my friends?
                                                        confirm
                                                        Would you like to be my friends?
                                                        confirm
                                                        Would you like to be my friends?
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\config-provider\\_example\\global.tsx 1`] = `"

                                                        使用ConfigProvider包裹业务功能的最外层组件,点击下方图标查看示例代码

                                                        英文语言包引入路径:import enConfig from 'tdesign-react/es/locale/en_US';

                                                        中文语言包引入路径:import zhConfig from 'tdesign-react/es/locale/zh_CN';

                                                        日文语言包引入路径:import jpConfig from 'tdesign-react/es/locale/ja_JP';

                                                        韩文语言包引入路径:import koConfig from 'tdesign-react/es/locale/ko_KR';

                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\config-provider\\_example\\input.tsx 1`] = `"
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\config-provider\\_example\\others.tsx 1`] = `"
                                                        Feature Tag
                                                        Feature Tag
                                                        Feature Tag
                                                        Feature Tag
                                                        Tree Empty Data
                                                        First Step
                                                        You need to click the blue button
                                                        Second Step
                                                        Fill your base information into the form
                                                        Error Step
                                                        Something Wrong! Custom Error Icon!
                                                        4
                                                        Last Step
                                                        You haven't finish this step.
                                                        图片加载中
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\config-provider\\_example\\pagination.tsx 1`] = `"
                                                        Total 36 items
                                                        please select
                                                        • 1
                                                        • 2
                                                        • 3
                                                        • 4
                                                        / 4
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\config-provider\\_example\\popconfirm.tsx 1`] = `"
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\config-provider\\_example\\table.tsx 1`] = `"
                                                        Type
                                                        Platform
                                                        Property
                                                        Empty Data
                                                        Type
                                                        Platform
                                                        Property
                                                        ArrayVue(PC)A
                                                        StringReact(PC)B
                                                        ObjectMiniprogramC
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\date-picker\\_example\\base.tsx 1`] = `"
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\date-picker\\_example\\cancel-range-limit.tsx 1`] = `"
                                                        -
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\date-picker\\_example\\custom-icon.tsx 1`] = `"
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\date-picker\\_example\\date-presets-alt.tsx 1`] = `"
                                                        -
                                                        -
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\date-picker\\_example\\date-range.tsx 1`] = `"
                                                        -
                                                        -
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\date-picker\\_example\\date-time.tsx 1`] = `"
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\date-picker\\_example\\disable-date.tsx 1`] = `"
                                                        -
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\date-picker\\_example\\first-day-of-week.tsx 1`] = `"
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\date-picker\\_example\\month.tsx 1`] = `"
                                                        -
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\date-picker\\_example\\multiple.tsx 1`] = `"
                                                        2024-10-01
                                                        2024-10-24
                                                        2024-50周
                                                        2024-51周
                                                        2022
                                                        2023
                                                        2024
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\date-picker\\_example\\panel.tsx 1`] = `"
                                                        30
                                                        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
                                                        5
                                                        6
                                                        7
                                                        8
                                                        9
                                                        10
                                                        30
                                                        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
                                                        5
                                                        6
                                                        7
                                                        8
                                                        9
                                                        10
                                                        00:00:00
                                                        30
                                                        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
                                                        5
                                                        6
                                                        7
                                                        8
                                                        9
                                                        10
                                                        28
                                                        29
                                                        30
                                                        31
                                                        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
                                                        5
                                                        6
                                                        7
                                                        30
                                                        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
                                                        5
                                                        6
                                                        7
                                                        8
                                                        9
                                                        10
                                                        00:00:00
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\date-picker\\_example\\quarter.tsx 1`] = `"
                                                        -
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\date-picker\\_example\\week.tsx 1`] = `"
                                                        -
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\date-picker\\_example\\year.tsx 1`] = `"
                                                        -
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\descriptions\\_example\\base.tsx 1`] = `"
                                                        Shipping address
                                                        NameTDesignTelephone Number139****0609
                                                        AreaChina Tencent HeadquartersAddressShenzhen Penguin Island D1 4A Mail Center
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\descriptions\\_example\\bordered.tsx 1`] = `"
                                                        Shipping address
                                                        NameTDesignTelephone Number139****0609
                                                        AreaChina Tencent HeadquartersAddressShenzhen Penguin Island D1 4A Mail Center
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\descriptions\\_example\\colon.tsx 1`] = `"
                                                        展示冒号
                                                        Shipping address
                                                        NameTDesignTelephone Number139****0609
                                                        AreaChina Tencent HeadquartersAddressShenzhen Penguin Island D1 4A Mail Center
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\descriptions\\_example\\column.tsx 1`] = `"
                                                        Shipping address
                                                        NameTDesignTelephone Number139****0609
                                                        AreaChina Tencent HeadquartersAddressShenzhen Penguin Island D1 4A Mail Center
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\descriptions\\_example\\custom-style.tsx 1`] = `"
                                                        Shipping address
                                                        NameTDesignTelephone Number139****0609
                                                        AreaChina Tencent HeadquartersAddressShenzhen Penguin Island D1 4A Mail Center
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\descriptions\\_example\\items.tsx 1`] = `"
                                                        Shipping address
                                                        NameTDesign139****0609
                                                        Area

                                                        China Tencent Headquarters

                                                        Address Shenzhen Penguin Island D1 4A Mail Center
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\descriptions\\_example\\layout.tsx 1`] = `"
                                                        layout:
                                                        itemLayout:
                                                        Shipping address
                                                        NameTDesignTelephone Number139****0609
                                                        AreaChina Tencent HeadquartersAddressShenzhen Penguin Island D1 4A Mail Center
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\descriptions\\_example\\nest.tsx 1`] = `"
                                                        Shipping address
                                                        NameTDesignTelephone Number139****0609
                                                        AreaChina Tencent HeadquartersAddress
                                                        CityShenzhenDetailPenguin Island D1 4A Mail Center
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\descriptions\\_example\\size.tsx 1`] = `"
                                                        Shipping address
                                                        NameTDesignTelephone Number139****0609
                                                        AreaChina Tencent HeadquartersAddressShenzhen Penguin Island D1 4A Mail Center
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\descriptions\\_example\\table-layout.tsx 1`] = `"
                                                        Shipping address
                                                        NameTDesignTelephone Number139****0609
                                                        AreaChina Tencent HeadquartersAddressShenzhen Penguin Island D1 4A Mail Center
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\dialog\\_example\\async.tsx 1`] = `""`; + +exports[`ssr snapshot test > ssr test packages\\components\\dialog\\_example\\attach.tsx 1`] = `"
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\dialog\\_example\\base.tsx 1`] = `""`; + +exports[`ssr snapshot test > ssr test packages\\components\\dialog\\_example\\custom.tsx 1`] = `""`; + +exports[`ssr snapshot test > ssr test packages\\components\\dialog\\_example\\icon.tsx 1`] = `""`; + +exports[`ssr snapshot test > ssr test packages\\components\\dialog\\_example\\modal.tsx 1`] = `"
                                                        普通对话框

                                                        This is a dialog

                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\dialog\\_example\\plugin.tsx 1`] = `"

                                                        函数调用方式一:DialogPlugin(options)

                                                        函数调用方式二:DialogPlugin.confirm(options)

                                                        函数调用方式三:DialogPlugin.alert(options)

                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\dialog\\_example\\position.tsx 1`] = `""`; + +exports[`ssr snapshot test > ssr test packages\\components\\dialog\\_example\\warning.tsx 1`] = `"
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\divider\\_example\\base.tsx 1`] = `"

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

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

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

                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\divider\\_example\\text.tsx 1`] = `"

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

                                                        TDesign

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

                                                        TDesign

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

                                                        TDesign

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

                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\divider\\_example\\vertical.tsx 1`] = `"正直
                                                        进取
                                                        合作
                                                        创新"`; + +exports[`ssr snapshot test > ssr test packages\\components\\drawer\\_example\\attach-parent.tsx 1`] = `"

                                                        渲染在当前元素中。

                                                        抽屉弹出方向:
                                                        抽屉弹出模式:
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\drawer\\_example\\base.tsx 1`] = `""`; + +exports[`ssr snapshot test > ssr test packages\\components\\drawer\\_example\\custom.tsx 1`] = `""`; + +exports[`ssr snapshot test > ssr test packages\\components\\drawer\\_example\\destroy.tsx 1`] = `""`; + +exports[`ssr snapshot test > ssr test packages\\components\\drawer\\_example\\no-mask.tsx 1`] = `""`; + +exports[`ssr snapshot test > ssr test packages\\components\\drawer\\_example\\operation.tsx 1`] = `""`; + +exports[`ssr snapshot test > ssr test packages\\components\\drawer\\_example\\placement.tsx 1`] = `"
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\drawer\\_example\\plugin.tsx 1`] = `"

                                                        函数调用方式一:DrawerPlugin(options)

                                                        函数调用方式二:drawer(options)

                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\drawer\\_example\\popup.tsx 1`] = `"
                                                        抽屉弹出模式:
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\drawer\\_example\\size.tsx 1`] = `"
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\drawer\\_example\\size-draggable.tsx 1`] = `"
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\dropdown\\_example\\base.tsx 1`] = `""`; + +exports[`ssr snapshot test > ssr test packages\\components\\dropdown\\_example\\button.tsx 1`] = `""`; + +exports[`ssr snapshot test > ssr test packages\\components\\dropdown\\_example\\child.tsx 1`] = `""`; + +exports[`ssr snapshot test > ssr test packages\\components\\dropdown\\_example\\click.tsx 1`] = `""`; + +exports[`ssr snapshot test > ssr test packages\\components\\dropdown\\_example\\custom.tsx 1`] = `""`; + +exports[`ssr snapshot test > ssr test packages\\components\\dropdown\\_example\\disabled.tsx 1`] = `""`; + +exports[`ssr snapshot test > ssr test packages\\components\\dropdown\\_example\\icon.tsx 1`] = `""`; + +exports[`ssr snapshot test > ssr test packages\\components\\dropdown\\_example\\left.tsx 1`] = `""`; + +exports[`ssr snapshot test > ssr test packages\\components\\dropdown\\_example\\long.tsx 1`] = `""`; + +exports[`ssr snapshot test > ssr test packages\\components\\dropdown\\_example\\multiple.tsx 1`] = `""`; + +exports[`ssr snapshot test > ssr test packages\\components\\dropdown\\_example\\split.tsx 1`] = `""`; + +exports[`ssr snapshot test > ssr test packages\\components\\dropdown\\_example\\theme.tsx 1`] = `""`; + +exports[`ssr snapshot test > ssr test packages\\components\\empty\\_example\\base.tsx 1`] = `"
                                                        暂无数据
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\empty\\_example\\descriptions.tsx 1`] = `"
                                                        暂无数据
                                                        description
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\empty\\_example\\operation.tsx 1`] = `"
                                                        暂无数据
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\empty\\_example\\self-defined.tsx 1`] = `"
                                                        暂无数据
                                                        暂无数据
                                                        暂无数据
                                                        暂无数据
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\empty\\_example\\size.tsx 1`] = `"
                                                        暂无数据
                                                        建设中
                                                        网络错误
                                                        成功
                                                        失败
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\empty\\_example\\status.tsx 1`] = `"
                                                        暂无数据
                                                        建设中
                                                        网络错误
                                                        成功
                                                        失败
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\form\\_example\\align.tsx 1`] = `"
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\form\\_example\\base.tsx 1`] = `"
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\form\\_example\\clear-validate.tsx 1`] = `"
                                                        一句话介绍自己
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\form\\_example\\custom-validator.tsx 1`] = `"
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\form\\_example\\customized-form-controls.tsx 1`] = `"
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\form\\_example\\disabled.tsx 1`] = `"
                                                        请选择单张图片文件上传
                                                        提交
                                                        重置
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\form\\_example\\error-message.tsx 1`] = `"
                                                        一句话介绍自己
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\form\\_example\\form-field-linkage.tsx 1`] = `"
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\form\\_example\\form-list.tsx 1`] = `"
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\form\\_example\\layout.tsx 1`] = `"
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\form\\_example\\login.tsx 1`] = `"
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\form\\_example\\nested-data.tsx 1`] = `"
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\form\\_example\\reset.tsx 1`] = `"
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\form\\_example\\validate-complicated-data.tsx 1`] = `"
                                                        学生1
                                                        学生2
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\form\\_example\\validate-message.tsx 1`] = `"
                                                        一句话介绍自己
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\form\\_example\\validator.tsx 1`] = `"
                                                        这里请填写密码
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\form\\_example\\validator-status.tsx 1`] = `"
                                                        校验不通过,请输入正确内容
                                                        自定义新增icon
                                                        自定义帮助icon
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\grid\\_example\\base.tsx 1`] = `"
                                                        1
                                                        1
                                                        1
                                                        1
                                                        1
                                                        1
                                                        1
                                                        1
                                                        1
                                                        1
                                                        1
                                                        1
                                                        2
                                                        2
                                                        2
                                                        2
                                                        2
                                                        2
                                                        3
                                                        3
                                                        3
                                                        3
                                                        4
                                                        4
                                                        4
                                                        6
                                                        6
                                                        12
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\grid\\_example\\flex.tsx 1`] = `"
                                                        2 / 5
                                                        3 / 5
                                                        100px
                                                        Fill Rest
                                                        1 1 200px
                                                        0 1 300px
                                                        none
                                                        auto with no-wrap
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\grid\\_example\\gutter.tsx 1`] = `"
                                                        col-3
                                                        col-3
                                                        col-3
                                                        col-3
                                                        col-3
                                                        col-3
                                                        col-3
                                                        col-3
                                                        col-3
                                                        col-3
                                                        col-3
                                                        col-3
                                                        col-3
                                                        col-3
                                                        col-3
                                                        col-3
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\grid\\_example\\halign.tsx 1`] = `"

                                                        align left

                                                        col-2
                                                        col-2
                                                        col-2
                                                        col-2

                                                        align center

                                                        col-2
                                                        col-2
                                                        col-2
                                                        col-2

                                                        align right

                                                        col-2
                                                        col-2
                                                        col-2
                                                        col-2

                                                        space-between

                                                        col-2
                                                        col-2
                                                        col-2
                                                        col-2

                                                        space-around

                                                        col-2
                                                        col-2
                                                        col-2
                                                        col-2
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\grid\\_example\\offset.tsx 1`] = `"
                                                        col-4
                                                        col-4
                                                        col-3 col-offset-3
                                                        col-3 col-offset-3
                                                        col-6 col-offset-2
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\grid\\_example\\order.tsx 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 packages\\components\\grid\\_example\\responsive.tsx 1`] = `"
                                                        宽度响应式
                                                        Col
                                                        Col
                                                        其他属性响应式(支持span,offset,order,pull,push)
                                                        Col
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\grid\\_example\\sort.tsx 1`] = `"
                                                        通过 \`pull\` \`push\` 进行排序
                                                        col-9 col-push-3
                                                        col-3 col-pull-9
                                                        col-8 col-push-4
                                                        col-4 col-pull-8
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\grid\\_example\\valign.tsx 1`] = `"

                                                        align top

                                                        col-3
                                                        col-3
                                                        col-3
                                                        col-3

                                                        Align Middle

                                                        col-3
                                                        col-3
                                                        col-3
                                                        col-3

                                                        Align Bottom

                                                        col-3
                                                        col-3
                                                        col-3
                                                        col-3
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\guide\\_example\\base.tsx 1`] = `"
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\guide\\_example\\custom-popup.tsx 1`] = `"
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\guide\\_example\\dialog.tsx 1`] = `"
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\guide\\_example\\no-mask.tsx 1`] = `"
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\guide\\_example\\popup-dialog.tsx 1`] = `"
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\icon\\_example\\Enhanced.tsx 1`] = `"


                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\icon\\_example\\IconExample.tsx 1`] = `"
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\icon\\_example\\IconFontEnhanced.tsx 1`] = `"


                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\icon\\_example\\IconFontExample.tsx 1`] = `"

                                                        How do you feel today?

                                                        What is your favourite food?

                                                        How much icons does TDesign Icon includes?

                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\icon\\_example\\IconSelect.tsx 1`] = `"
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\icon\\_example\\SvgSpriteExample.tsx 1`] = `"

                                                        How do you feel today?

                                                        What is your favourite food?

                                                        How much icons does TDesign Icon includes?

                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\image\\_example\\avif.tsx 1`] = `"
                                                        图片加载中
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\image\\_example\\extra-always.tsx 1`] = `"
                                                        有遮罩
                                                        图片加载中
                                                        高清
                                                        无遮罩
                                                        图片加载中
                                                        高清
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\image\\_example\\extra-hover.tsx 1`] = `"
                                                        图片加载中
                                                        预览
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\image\\_example\\fill-mode.tsx 1`] = `"
                                                        图片加载中
                                                        fill
                                                        图片加载中
                                                        contain
                                                        图片加载中
                                                        cover
                                                        图片加载中
                                                        none
                                                        图片加载中
                                                        scale-down
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\image\\_example\\fill-position.tsx 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 packages\\components\\image\\_example\\gallery-cover.tsx 1`] = `""`; + +exports[`ssr snapshot test > ssr test packages\\components\\image\\_example\\lazy-list.tsx 1`] = `"
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\image\\_example\\lazy-single.tsx 1`] = `"
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\image\\_example\\placeholder.tsx 1`] = `"

                                                        加载中的图片

                                                        默认占位
                                                        图片加载中
                                                        自定义占位

                                                        加载失败的图片

                                                        默认错误
                                                        图片加载中
                                                        自定义错误
                                                        图片加载中
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\image\\_example\\shape.tsx 1`] = `"
                                                        图片加载中
                                                        square
                                                        图片加载中
                                                        round
                                                        图片加载中
                                                        circle
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\image-viewer\\_example\\album.tsx 1`] = `"
                                                        test
                                                        图片加载中
                                                        预览
                                                        相册封面标题
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\image-viewer\\_example\\albumIcons.tsx 1`] = `"
                                                        test
                                                        图片加载中
                                                        预览
                                                        相册封面标题
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\image-viewer\\_example\\base.tsx 1`] = `"
                                                        test
                                                        图片加载中
                                                        预览
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\image-viewer\\_example\\block.tsx 1`] = `"
                                                        test
                                                        图片加载中
                                                        预览
                                                        test
                                                        图片加载中
                                                        预览
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\image-viewer\\_example\\button.tsx 1`] = `""`; + +exports[`ssr snapshot test > ssr test packages\\components\\image-viewer\\_example\\error.tsx 1`] = `"
                                                        test
                                                        图片加载中
                                                        预览
                                                        test
                                                        图片加载中
                                                        预览
                                                        test
                                                        图片加载中
                                                        预览
                                                        test
                                                        图片加载中
                                                        预览
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\image-viewer\\_example\\modeless.tsx 1`] = `"
                                                        test
                                                        图片加载中
                                                        预览
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\image-viewer\\_example\\multiple.tsx 1`] = `"
                                                        test
                                                        图片加载中
                                                        预览
                                                        test
                                                        图片加载中
                                                        预览
                                                        test
                                                        图片加载中
                                                        预览
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\image-viewer\\_example\\svg.tsx 1`] = `"
                                                        test
                                                        图片加载中
                                                        预览
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\input\\_example\\addon.tsx 1`] = `"
                                                        http://
                                                        http://
                                                        .com
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\input\\_example\\align.tsx 1`] = `"
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\input\\_example\\auto-width.tsx 1`] = `"
                                                        宽度自适应
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\input\\_example\\base.tsx 1`] = `"
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\input\\_example\\borderless.tsx 1`] = `"
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\input\\_example\\clearable.tsx 1`] = `"
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\input\\_example\\disabled.tsx 1`] = `"
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\input\\_example\\format.tsx 1`] = `"
                                                        请输入数字
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\input\\_example\\group.tsx 1`] = `"
                                                         - 
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\input\\_example\\max-length-count.tsx 1`] = `"
                                                        0/10
                                                        0/10
                                                        0/5
                                                        0/5
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\input\\_example\\password.tsx 1`] = `"
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\input\\_example\\size.tsx 1`] = `"
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\input\\_example\\status.tsx 1`] = `"
                                                        这是普通文本提示
                                                        校验通过文本提示
                                                        校验不通过文本提示
                                                        校验存在严重问题文本提示
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\input\\_example\\textarea.tsx 1`] = `"
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\input-adornment\\_example\\select.tsx 1`] = `"
                                                        请选择
                                                        请选择
                                                        请选择
                                                        请选择
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\input-adornment\\_example\\text.tsx 1`] = `"
                                                        http://
                                                        请输入
                                                        .com
                                                        http://
                                                        .com
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\input-number\\_example\\align.tsx 1`] = `"
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\input-number\\_example\\auto-width.tsx 1`] = `"
                                                        请输入
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\input-number\\_example\\center.tsx 1`] = `"
                                                        请输入
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\input-number\\_example\\default.tsx 1`] = `"
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\input-number\\_example\\format.tsx 1`] = `"
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\input-number\\_example\\large-number.tsx 1`] = `"
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\input-number\\_example\\left.tsx 1`] = `"
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\input-number\\_example\\normal.tsx 1`] = `"
                                                        机器:
                                                        金额:
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\input-number\\_example\\size.tsx 1`] = `"
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\input-number\\_example\\status.tsx 1`] = `"
                                                        这是普通文本提示
                                                        校验通过文本提示
                                                        校验不通过文本提示
                                                        校验存在严重问题文本提示
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\input-number\\_example\\step.tsx 1`] = `"
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\layout\\_example\\aside.tsx 1`] = `"

                                                        侧边导航布局

                                                        Content
                                                        Copyright @ 2019-2020 Tencent. All Rights Reserved
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\layout\\_example\\base.tsx 1`] = `"

                                                        顶部导航布局

                                                        Header
                                                        Content
                                                        Copyright @ 2019-2021 Tencent. All Rights Reserved

                                                        侧边导航布局

                                                        Content
                                                        Copyright @ 2019-2021 Tencent. All Rights Reserved

                                                        组合导航布局

                                                        Header
                                                        Content
                                                        Copyright @ 2019-2021 Tencent. All Rights Reserved

                                                        Header
                                                        Content
                                                        Copyright @ 2019-2021 Tencent. All Rights Reserved

                                                        Header
                                                        Content
                                                        Copyright @ 2019-2021 Tencent. All Rights Reserved
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\layout\\_example\\combine.tsx 1`] = `"
                                                        • 已选内容
                                                        • 菜单内容一
                                                        • 菜单内容二
                                                        • 菜单内容三
                                                        Content
                                                        Copyright @ 2019-2020 Tencent. All Rights Reserved
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\layout\\_example\\top.tsx 1`] = `"
                                                        • 已选内容
                                                        • 菜单内容一
                                                        • 菜单内容二
                                                        • 菜单内容三
                                                        Content
                                                        Copyright @ 2019-2020 Tencent. All Rights Reserved
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\link\\_example\\base.tsx 1`] = `"跳转链接"`; + +exports[`ssr snapshot test > ssr test packages\\components\\link\\_example\\disabled.tsx 1`] = `""`; + +exports[`ssr snapshot test > ssr test packages\\components\\link\\_example\\hover.tsx 1`] = `""`; + +exports[`ssr snapshot test > ssr test packages\\components\\link\\_example\\icon.tsx 1`] = `""`; + +exports[`ssr snapshot test > ssr test packages\\components\\link\\_example\\size.tsx 1`] = `""`; + +exports[`ssr snapshot test > ssr test packages\\components\\link\\_example\\theme.tsx 1`] = `""`; + +exports[`ssr snapshot test > ssr test packages\\components\\link\\_example\\underline.tsx 1`] = `""`; + +exports[`ssr snapshot test > ssr test packages\\components\\list\\_example\\asyncLoading.tsx 1`] = `"
                                                        • 列表内容列表内容列表内容
                                                        • 列表内容列表内容列表内容
                                                        • 列表内容列表内容列表内容
                                                        • 列表内容列表内容列表内容
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\list\\_example\\base.tsx 1`] = `"
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\list\\_example\\header-footer.tsx 1`] = `"
                                                        这里是 Header
                                                        • 列表内容列表内容列表内容
                                                        • 列表内容列表内容列表内容
                                                        • 列表内容列表内容列表内容
                                                        • 列表内容列表内容列表内容

                                                        通过 TNode 插入的 Header

                                                        • 列表内容列表内容列表内容
                                                        • 列表内容列表内容列表内容
                                                        • 列表内容列表内容列表内容
                                                        • 列表内容列表内容列表内容
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\list\\_example\\image-text.tsx 1`] = `"
                                                        • 列表主内容

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

                                                        • 列表主内容

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

                                                        • 列表主内容

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

                                                        • 列表主内容

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

                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\list\\_example\\multiline.tsx 1`] = `"
                                                        • 列表主内容

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

                                                        • 列表主内容

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

                                                        • 列表主内容

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

                                                        • 列表主内容

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

                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\list\\_example\\operation.tsx 1`] = `"
                                                        • 列表主内容

                                                          列表内容列表内容

                                                        • 列表主内容

                                                          列表内容列表内容

                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\list\\_example\\scroll.tsx 1`] = `"
                                                          "`; + +exports[`ssr snapshot test > ssr test packages\\components\\list\\_example\\size.tsx 1`] = `"

                                                          尺寸-小

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

                                                          尺寸-中(默认)

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

                                                          尺寸-大

                                                          • 列表内容列表内容列表内容
                                                          • 列表内容列表内容列表内容
                                                          • 列表内容列表内容列表内容
                                                          • 列表内容列表内容列表内容
                                                          "`; + +exports[`ssr snapshot test > ssr test packages\\components\\list\\_example\\stripe.tsx 1`] = `"
                                                          • 列表内容列表内容列表内容
                                                          • 列表内容列表内容列表内容
                                                          • 列表内容列表内容列表内容
                                                          • 列表内容列表内容列表内容
                                                          "`; + +exports[`ssr snapshot test > ssr test packages\\components\\list\\_example\\virtual-scroll.tsx 1`] = `"
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\loading\\_example\\base.tsx 1`] = `"
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\loading\\_example\\delay.tsx 1`] = `"
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\loading\\_example\\fullscreen.tsx 1`] = `"Loading state:"`; + +exports[`ssr snapshot test > ssr test packages\\components\\loading\\_example\\icon-text.tsx 1`] = `"
                                                            拼命加载中...
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\loading\\_example\\service.tsx 1`] = `"
                                                            我是service的容器
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\loading\\_example\\size.tsx 1`] = `"
                                                            加载中...(小)
                                                            加载中...(中)
                                                            加载中...(大)
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\loading\\_example\\text.tsx 1`] = `"
                                                            静态文字加载中...
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\loading\\_example\\wrap.tsx 1`] = `"
                                                            this is loading component
                                                            this is loading component
                                                            this is loading component
                                                            this is loading component
                                                            this is loading component
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\menu\\_example\\closable-side.tsx 1`] = `"
                                                            • 仪表盘
                                                            • 资源列表
                                                            • 调度平台
                                                            • 精准监控
                                                            • 根目录
                                                            • 消息区
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\menu\\_example\\custom-header.tsx 1`] = `"
                                                            • 菜单1
                                                            • 菜单2
                                                            • 菜单3
                                                            • 菜单4
                                                            • 菜单1
                                                            • 菜单2
                                                            • 菜单3
                                                            • 菜单4
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\menu\\_example\\custom-side.tsx 1`] = `"
                                                            • 仪表盘
                                                            • 资源列表
                                                            • 视频区
                                                            • 根目录
                                                            • 调度平台
                                                            • 精准监控
                                                            • 个人中心
                                                            • 仪表盘
                                                            • 资源列表
                                                            • 视频区
                                                            • 根目录
                                                            • 调度平台
                                                            • 精准监控
                                                            • 个人中心
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\menu\\_example\\double.tsx 1`] = `"
                                                            • 菜单1
                                                            • 菜单2
                                                            • 菜单3
                                                            • 菜单4
                                                              子菜单1
                                                              子菜单2
                                                            • 菜单1
                                                            • 菜单2
                                                            • 菜单3
                                                            • 菜单4
                                                              子菜单1
                                                              子菜单2
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\menu\\_example\\group-side.tsx 1`] = `"
                                                              主导航
                                                            • 仪表盘
                                                            • 组件
                                                            • 列表项
                                                              • 基础列表项
                                                              • 卡片列表项
                                                              • 筛选列表项
                                                              • 树状筛选列表项
                                                            • 表单项
                                                            • 详情页
                                                            • 结果页
                                                            • 更多
                                                            • 个人页
                                                            • 登录页
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\menu\\_example\\multi-side.tsx 1`] = `"
                                                            • 仪表盘
                                                            • 资源列表
                                                              • 菜单二
                                                            • 调度平台
                                                              • 二级菜单-1
                                                                • 三级菜单-1
                                                                • 三级菜单-2
                                                                • 三级菜单-3
                                                              • 二级菜单-2
                                                            • 精准监控
                                                              • 二级菜单-1
                                                              • 二级菜单-2
                                                            • 根目录
                                                            • 消息区
                                                              • 二级菜单-1
                                                              • 二级菜单-2
                                                            • 仪表盘
                                                            • 资源列表
                                                              • 二级菜单-1
                                                                • 三级菜单-1
                                                                • 三级菜单-2
                                                                • 三级菜单-3
                                                            • 调度平台
                                                              • 二级菜单-1
                                                              • 二级菜单-2
                                                            • 精准监控
                                                              • 二级菜单-1
                                                              • 二级菜单-2
                                                            • 根目录
                                                            • 消息区
                                                              • 二级菜单-1
                                                              • 二级菜单-2
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\menu\\_example\\multiple.tsx 1`] = `"
                                                            • 电器
                                                            • 女装
                                                            • 水果蔬菜
                                                            • 其他
                                                            • 电器
                                                            • 女装
                                                            • 水果蔬菜
                                                            • 其他
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\menu\\_example\\popup-side.tsx 1`] = `"
                                                            • 仪表盘
                                                            • 资源列表
                                                            • 调度平台
                                                            • 精准监控
                                                            • 根目录
                                                            • 消息区
                                                            • 仪表盘
                                                            • 资源列表
                                                            • 调度平台
                                                            • 精准监控
                                                            • 根目录
                                                            • 消息区
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\menu\\_example\\single.tsx 1`] = `"
                                                            • 菜单1
                                                            • 菜单2
                                                            • 菜单3
                                                            • 菜单4
                                                            • 菜单1
                                                            • 菜单2
                                                            • 菜单3
                                                            • 菜单4
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\menu\\_example\\single-side.tsx 1`] = `"
                                                            • 仪表盘
                                                            • 资源列表
                                                            • 视频区
                                                            • 根目录
                                                            • 调度平台
                                                            • 精准监控
                                                            • 个人中心
                                                            • 仪表盘
                                                            • 资源列表
                                                            • 视频区
                                                            • 根目录
                                                            • 调度平台
                                                            • 精准监控
                                                            • 个人中心
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\message\\_example\\base.tsx 1`] = `"
                                                            用户表示普通操作信息提示
                                                            用于表示操作顺利达成
                                                            用户表示操作引起一定后果
                                                            用于表示操作引起严重的后果
                                                            用于帮助用户操作的信息提示
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\message\\_example\\close.tsx 1`] = `"
                                                            默认关闭按钮
                                                            自定义关闭按钮(文字)关闭
                                                            自定义关闭按钮(函数)
                                                            x
                                                            自定义关闭按钮(ReactNode)
                                                            x
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\message\\_example\\close-all.tsx 1`] = `"
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\message\\_example\\close-function.tsx 1`] = `""`; + +exports[`ssr snapshot test > ssr test packages\\components\\message\\_example\\config.tsx 1`] = `"
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\message\\_example\\duration.tsx 1`] = `"
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\message\\_example\\loading.tsx 1`] = `"
                                                            用于表示操作正在生效的过程中
                                                            用于表示操作顺利达成(10s)
                                                            用于表示普通操作失败中断(10s)
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\message\\_example\\methods.tsx 1`] = `"
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\message\\_example\\offset.tsx 1`] = `"
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\notification\\_example\\attach.tsx 1`] = `"
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\notification\\_example\\base.tsx 1`] = `"
                                                            标题名称
                                                            这是一条消息通知
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\notification\\_example\\close-all.tsx 1`] = `"
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\notification\\_example\\content.tsx 1`] = `"
                                                            自定义内容(字符串)
                                                            这是一条消息通知
                                                            自定义内容
                                                            这是一条消息通知
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\notification\\_example\\footer.tsx 1`] = `"
                                                            自定义底部详情
                                                            这是一条消息通知
                                                            重启查看详情
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\notification\\_example\\icon.tsx 1`] = `"
                                                            普通通知
                                                            这是一条消息通知这是一条消息通知这是一条消息通知这是一条消息通知这是一条消息通知这是一条消息通知这是一条消息通知
                                                            危险通知
                                                            这是一条消息通知这是一条消息通知这是一条消息通知这是一条消息通知这是一条消息通知这是一条消息通知这是一条消息通知
                                                            告警通知
                                                            这是一条消息通知这是一条消息通知这是一条消息通知这是一条消息通知这是一条消息通知这是一条消息通知这是一条消息通知
                                                            成功通知
                                                            这是一条消息通知这是一条消息通知这是一条消息通知这是一条消息通知这是一条消息通知这是一条消息通知这是一条消息通知
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\notification\\_example\\operation.tsx 1`] = `"
                                                            超出的文本省略号显示
                                                            文案不限长度,但是展示最大显示三行折行的末尾显示折行末尾显示折行末尾显示折行末尾显示折行末尾显示折行折行末尾显示折行折行末尾显示折行末尾显示折行折行末尾
                                                            自定义底部
                                                            使用 props function 自定义底部内容
                                                            自定义标题 我是副标题
                                                            1. 使用 props function 自定义标题;2. 使用插槽自定义底部内容
                                                            自定义标题 我是副标题
                                                            1. 使用插槽自定义标题 2. 使用插槽自定义底部内容
                                                            自定义内容
                                                            使用插槽自定义内容
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\notification\\_example\\placement.tsx 1`] = `"
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\notification\\_example\\plugin.tsx 1`] = `"
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\notification\\_example\\toggle.tsx 1`] = `""`; + +exports[`ssr snapshot test > ssr test packages\\components\\pagination\\_example\\base.tsx 1`] = `"
                                                            共 100 条数据
                                                            请选择
                                                            • 1
                                                            • 2
                                                            • 3
                                                            • 4
                                                            • 5
                                                            • 20
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\pagination\\_example\\jump.tsx 1`] = `"
                                                            共 645 条数据
                                                            请选择
                                                            • 1
                                                            • 2
                                                            • 3
                                                            • 4
                                                            • 5
                                                            • 33
                                                            跳至
                                                            / 33 页
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\pagination\\_example\\mini.tsx 1`] = `"
                                                            共 100 条数据
                                                            请选择
                                                            • 1
                                                            • 2
                                                            • 3
                                                            • 4
                                                            • 5
                                                            • 20
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\pagination\\_example\\more.tsx 1`] = `"
                                                            展示首尾页码省略
                                                            共 100 条数据
                                                            请选择
                                                            • 1
                                                            • 2
                                                            • 3
                                                            • 4
                                                            • 5
                                                            • 20
                                                            不展示首尾页码省略
                                                            共 100 条数据
                                                            请选择
                                                            • 1
                                                            • 2
                                                            • 3
                                                            • 4
                                                            • 5
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\pagination\\_example\\page-num.tsx 1`] = `"
                                                            共 645 条数据
                                                            请选择
                                                            • 1
                                                            • 2
                                                            • 3
                                                            • 4
                                                            • 5
                                                            • 33
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\pagination\\_example\\pagination-mini.tsx 1`] = `"
                                                            layout:
                                                            size:
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\pagination\\_example\\simple.tsx 1`] = `"
                                                            共 100 条数据
                                                            请选择
                                                            跳至
                                                            / 20 页
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\pagination\\_example\\simple-mini.tsx 1`] = `"
                                                            共 100 条数据
                                                            请选择
                                                            跳至
                                                            / 20 页
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\pagination\\_example\\total.tsx 1`] = `"
                                                            共 685 条数据
                                                            请选择
                                                            • 1
                                                            • 2
                                                            • 3
                                                            • 4
                                                            • 5
                                                            • 69
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\popconfirm\\_example\\base.tsx 1`] = `"
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\popconfirm\\_example\\button.tsx 1`] = `"
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\popconfirm\\_example\\describe.tsx 1`] = `"
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\popconfirm\\_example\\extends.tsx 1`] = `""`; + +exports[`ssr snapshot test > ssr test packages\\components\\popconfirm\\_example\\icon.tsx 1`] = `"
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\popconfirm\\_example\\inherit.tsx 1`] = `"
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\popconfirm\\_example\\placement.tsx 1`] = `"
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\popconfirm\\_example\\theme.tsx 1`] = `"
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\popup\\_example\\base.tsx 1`] = `""`; + +exports[`ssr snapshot test > ssr test packages\\components\\popup\\_example\\container.tsx 1`] = `"
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\popup\\_example\\destroy.tsx 1`] = `""`; + +exports[`ssr snapshot test > ssr test packages\\components\\popup\\_example\\disabled.tsx 1`] = `""`; + +exports[`ssr snapshot test > ssr test packages\\components\\popup\\_example\\dynamic.tsx 1`] = `""`; + +exports[`ssr snapshot test > ssr test packages\\components\\popup\\_example\\placement.tsx 1`] = `"
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\popup\\_example\\plugin.tsx 1`] = `"
                                                            这里是一个日志查询的例子,在很长的日志内容中,日志内容存在换行的情况,可以点击链接进行日志查询操作点击此链接,会打开浮层进行跳转操作
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\popup\\_example\\popper-options.tsx 1`] = `"
                                                            请输入横向偏移量:
                                                            请输入纵向偏移量:
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\popup\\_example\\style.tsx 1`] = `"
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\popup\\_example\\trigger.tsx 1`] = `"
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\popup\\_example\\trigger-element.tsx 1`] = `"
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\popup\\_example\\visible.tsx 1`] = `""`; + +exports[`ssr snapshot test > ssr test packages\\components\\progress\\_example\\circle.tsx 1`] = `"
                                                            默认样式
                                                            0%
                                                            不显示数字
                                                            自定义内容
                                                            75 day
                                                            进度完成
                                                            进度发生错误
                                                            进度被中断
                                                            自定义颜色
                                                            小尺寸
                                                            0%
                                                            默认尺寸
                                                            0%
                                                            大尺寸
                                                            0%
                                                            自定义尺寸
                                                            0%
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\progress\\_example\\line.tsx 1`] = `"

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

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

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

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

                                                            30%

                                                            30%
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\qrcode\\_example\\base.tsx 1`] = `"
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\qrcode\\_example\\customColor.tsx 1`] = `"
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\qrcode\\_example\\customSize.tsx 1`] = `"

                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\qrcode\\_example\\customStatusRender.tsx 1`] = `"

                                                            加载中...

                                                            二维码过期

                                                            点击刷新

                                                            已扫描
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\qrcode\\_example\\download.tsx 1`] = `"
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\qrcode\\_example\\icon.tsx 1`] = `"
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\qrcode\\_example\\level.tsx 1`] = `"
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\qrcode\\_example\\popover.tsx 1`] = `""`; + +exports[`ssr snapshot test > ssr test packages\\components\\qrcode\\_example\\status.tsx 1`] = `"

                                                            二维码过期

                                                            点击刷新

                                                            已扫描

                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\qrcode\\_example\\type.tsx 1`] = `"
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\radio\\_example\\base.tsx 1`] = `"
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\radio\\_example\\group.tsx 1`] = `"
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\radio\\_example\\size.tsx 1`] = `"
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\radio\\_example\\type.tsx 1`] = `"
                                                            普通单选按钮
                                                            边框型单选按钮
                                                            填充型单选按钮
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\range-input\\_example\\base.tsx 1`] = `"
                                                            -
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\range-input\\_example\\popup.tsx 1`] = `"
                                                            -
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\range-input\\_example\\size.tsx 1`] = `"
                                                            -
                                                            -
                                                            -
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\range-input\\_example\\status.tsx 1`] = `"
                                                            -
                                                            -
                                                            -
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\rate\\_example\\base.tsx 1`] = `"
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\rate\\_example\\clearable.tsx 1`] = `"

                                                            clearable: true

                                                            clearable: false

                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\rate\\_example\\custom.tsx 1`] = `"
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\rate\\_example\\icon.tsx 1`] = `"
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\rate\\_example\\size.tsx 1`] = `"

                                                            16px

                                                            24px

                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\rate\\_example\\status.tsx 1`] = `"

                                                            未评分状态

                                                            满分状态

                                                            半星状态

                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\rate\\_example\\texts.tsx 1`] = `"
                                                            满意
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\select\\_example\\base.tsx 1`] = `"
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\select\\_example\\collapsed.tsx 1`] = `"

                                                            default:

                                                            请选择

                                                            use collapsedItems:

                                                            size control:
                                                            disabled control:
                                                            readonly control:
                                                            请选择
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\select\\_example\\creatable.tsx 1`] = `"
                                                            请选择
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\select\\_example\\custom-options.tsx 1`] = `"
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\select\\_example\\custom-selected.tsx 1`] = `"
                                                            请选择
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\select\\_example\\disabled.tsx 1`] = `"
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\select\\_example\\filterable.tsx 1`] = `"
                                                            -请选择-
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\select\\_example\\group.tsx 1`] = `"
                                                            请选择
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\select\\_example\\keys.tsx 1`] = `"
                                                            请选择
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\select\\_example\\label-in-value.tsx 1`] = `"
                                                            请选择
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\select\\_example\\max.tsx 1`] = `"
                                                            请选择
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\select\\_example\\multiple.tsx 1`] = `"
                                                            请选择
                                                            请选择云产品
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\select\\_example\\noborder.tsx 1`] = `"
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\select\\_example\\options.tsx 1`] = `"
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\select\\_example\\panel.tsx 1`] = `"
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\select\\_example\\popup-props.tsx 1`] = `"
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\select\\_example\\prefix.tsx 1`] = `"
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\select\\_example\\remote-search.tsx 1`] = `"
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\select\\_example\\scroll-bottom.tsx 1`] = `"
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\select\\_example\\scroll-top.tsx 1`] = `"
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\select\\_example\\size.tsx 1`] = `"
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\select\\_example\\status.tsx 1`] = `"
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\select\\_example\\virtual-scroll.tsx 1`] = `"
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\select-input\\_example\\autocomplete.tsx 1`] = `"
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\select-input\\_example\\autowidth.tsx 1`] = `"
                                                            tdesign-vue
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\select-input\\_example\\autowidth-multiple.tsx 1`] = `"
                                                            Vue
                                                            +2
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\select-input\\_example\\borderless.tsx 1`] = `"
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\select-input\\_example\\borderless-multiple.tsx 1`] = `"
                                                            Vue
                                                            +2
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\select-input\\_example\\collapsed-items.tsx 1`] = `"
                                                            tdesign-vue
                                                            +5


                                                            tdesign-vue
                                                            tdesign-react
                                                            More(+4)
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\select-input\\_example\\custom-tag.tsx 1`] = `"
                                                            tdesign-vue


                                                            tdesign-vue
                                                            tdesign-react


                                                            tdesign-vuetdesign-reacttdesign-mobile-vue
                                                            tdesign-vuetdesign-reacttdesign-mobile-vue
                                                            tdesign-vuetdesign-reacttdesign-mobile-vue
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\select-input\\_example\\excess-tags-display-type.tsx 1`] = `"

                                                            第一种呈现方式:超出时滚动显示


                                                            tdesign-vue
                                                            tdesign-react
                                                            tdesign-miniprogram
                                                            tdesign-angular
                                                            tdesign-mobile-vue
                                                            tdesign-mobile-react



                                                            第二种呈现方式:超出时换行显示


                                                            tdesign-vue
                                                            tdesign-react
                                                            tdesign-miniprogram
                                                            tdesign-angular
                                                            tdesign-mobile-vue
                                                            tdesign-mobile-react
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\select-input\\_example\\label-suffix.tsx 1`] = `"
                                                            前置内容:


                                                            单位:元
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\select-input\\_example\\multiple.tsx 1`] = `"



                                                            Vue
                                                            React
                                                            Miniprogram
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\select-input\\_example\\single.tsx 1`] = `"
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\select-input\\_example\\status.tsx 1`] = `"
                                                            禁用状态:
                                                            这是禁用状态的文本
                                                            只读状态:
                                                            这是只读状态的文本提示
                                                            成功状态:
                                                            校验通过文本提示
                                                            警告状态:
                                                            校验不通过文本提示
                                                            错误状态:
                                                            校验存在严重问题文本提示
                                                            加载状态:
                                                            处于加载状态的文本提示
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\select-input\\_example\\width.tsx 1`] = `"
                                                            下拉框默认宽度:

                                                            下拉框最大宽度:

                                                            与内容宽度一致:

                                                            下拉框固定宽度:

                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\skeleton\\_example\\advance.tsx 1`] = `"
                                                            组合成网页效果
                                                            image
                                                            image
                                                            image
                                                            确定

                                                            标题

                                                            内容
                                                            组合成列表效果
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\skeleton\\_example\\animation.tsx 1`] = `"
                                                            渐变加载动画
                                                            闪烁加载动画
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\skeleton\\_example\\base.tsx 1`] = `"
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\skeleton\\_example\\delay.tsx 1`] = `"
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\skeleton\\_example\\theme.tsx 1`] = `"
                                                            文本
                                                            头像
                                                            段落
                                                            头像描述
                                                            选项卡
                                                            文章
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\slider\\_example\\base.tsx 1`] = `"
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\slider\\_example\\disabled.tsx 1`] = `"
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\slider\\_example\\input-number.tsx 1`] = `"
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\slider\\_example\\input-number-vertical.tsx 1`] = `"
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\slider\\_example\\marks.tsx 1`] = `"
                                                            0°C
                                                            12°C
                                                            37°C
                                                            0°C
                                                            8°C
                                                            37°C
                                                            50°C
                                                            70°C
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\slider\\_example\\min-and-max.tsx 1`] = `"
                                                            min:10
                                                            max:30
                                                            min:10
                                                            max:30
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\slider\\_example\\step.tsx 1`] = `"
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\slider\\_example\\vertical.tsx 1`] = `"
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\slider\\_example\\vertical-marks.tsx 1`] = `"
                                                            0°C
                                                            12°C
                                                            37°C
                                                            0°C
                                                            8°C
                                                            37°C
                                                            50°C
                                                            70°C
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\space\\_example\\align.tsx 1`] = `"
                                                            start
                                                            center
                                                            end
                                                            baseline
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\space\\_example\\base.tsx 1`] = `"
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\space\\_example\\break-line.tsx 1`] = `"
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\space\\_example\\separator.tsx 1`] = `"
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\space\\_example\\size.tsx 1`] = `"

                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\space\\_example\\vertical.tsx 1`] = `"
                                                            仅有内容区域的卡片形式。卡片内容区域可以是文字、图片、表单、表格等形式信息内容。可使用大中小不同的卡片尺寸,按业务需求进行呈现。
                                                            仅有内容区域的卡片形式。卡片内容区域可以是文字、图片、表单、表格等形式信息内容。可使用大中小不同的卡片尺寸,按业务需求进行呈现。
                                                            仅有内容区域的卡片形式。卡片内容区域可以是文字、图片、表单、表格等形式信息内容。可使用大中小不同的卡片尺寸,按业务需求进行呈现。
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\statistic\\_example\\animation.tsx 1`] = `"
                                                            Total Assets
                                                            0.00%
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\statistic\\_example\\base.tsx 1`] = `"
                                                            Total Assets
                                                            82.76%
                                                            Total Assets
                                                            82.76USD
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\statistic\\_example\\color.tsx 1`] = `"
                                                            Total Assets
                                                            82.76%
                                                            Total Assets
                                                            82.76%
                                                            Total Assets
                                                            82.76%
                                                            Total Assets
                                                            82.76%
                                                            Total Assets
                                                            82.76%
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\statistic\\_example\\combination.tsx 1`] = `"
                                                            Total Assets
                                                            82.76%
                                                            Total Assets
                                                            52.18%
                                                            Yesterday traffic
                                                            Voice duration
                                                            789minute
                                                            the day before 9%
                                                            Total number of voice DAUs
                                                            188
                                                            the day before
                                                            9%
                                                            last week
                                                            9%
                                                            Total Assets
                                                            52.18%
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\statistic\\_example\\loading.tsx 1`] = `"
                                                            Downloads
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\statistic\\_example\\slot.tsx 1`] = `"
                                                            Total Assets
                                                            56.32%
                                                            Total Assets
                                                            $176,059%
                                                            Total Assets
                                                            62.58%
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\statistic\\_example\\trend.tsx 1`] = `"
                                                            Total Assets
                                                            82.76%
                                                            Total Assets
                                                            82.76%
                                                            Total Assets
                                                            82.76%
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\steps\\_example\\extra.tsx 1`] = `"
                                                            步骤1
                                                            这里是提示文字
                                                            2
                                                            步骤2
                                                            这里是提示文字
                                                            3
                                                            步骤3
                                                            这里是提示文字
                                                            4
                                                            步骤4
                                                            这里是提示文字
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\steps\\_example\\icon.tsx 1`] = `"
                                                            登录
                                                            已完成状态
                                                            购物
                                                            进行中状态
                                                            支付
                                                            未开始
                                                            完成
                                                            未开始
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\steps\\_example\\no-sequence.tsx 1`] = `"
                                                            已完成的步骤
                                                            这里是提示文字
                                                            进行中的步骤
                                                            这里是提示文字
                                                            未进行的步骤
                                                            这里是提示文字
                                                            未进行的步骤
                                                            这里是提示文字
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\steps\\_example\\sequence.tsx 1`] = `"
                                                            已完成的步骤
                                                            这里是提示文字
                                                            2
                                                            进行中的步骤
                                                            这里是提示文字
                                                            3
                                                            未进行的步骤
                                                            这里是提示文字
                                                            4
                                                            未进行的步骤
                                                            这里是提示文字
                                                            已完成的步骤
                                                            这里是提示文字
                                                            已完成的步骤
                                                            这里是提示文字
                                                            3
                                                            进行中的步骤
                                                            这里是提示文字
                                                            4
                                                            未进行的步骤
                                                            这里是提示文字
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\steps\\_example\\status.tsx 1`] = `"
                                                            已完成的步骤
                                                            这里是提示文字
                                                            2
                                                            进行中的步骤
                                                            这里是提示文字
                                                            3
                                                            未进行的步骤
                                                            这里是提示文字
                                                            4
                                                            未进行的步骤
                                                            这里是提示文字
                                                            已完成的步骤
                                                            这里是提示文字
                                                            2
                                                            进行中的步骤
                                                            这里是提示文字
                                                            错误的步骤
                                                            优先展示\`t-step\`中设置的 status
                                                            4
                                                            未进行的步骤
                                                            这里是提示文字
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\steps\\_example\\vertical-no-sequence.tsx 1`] = `"
                                                            已完成的步骤
                                                            这里是提示文字
                                                            进行中的步骤
                                                            这里是提示文字
                                                            未进行的步骤
                                                            这里是提示文字
                                                            未进行的步骤
                                                            这里是提示文字
                                                            未进行的步骤
                                                            这里是提示文字
                                                            进行中的步骤
                                                            这里是提示文字
                                                            已完成的步骤
                                                            这里是提示文字
                                                            已完成的步骤
                                                            这里是提示文字
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\steps\\_example\\vertical-sequence.tsx 1`] = `"
                                                            已完成的步骤
                                                            这里是提示文字
                                                            2
                                                            进行中的步骤
                                                            这里是提示文字
                                                            3
                                                            未进行的步骤
                                                            这里是提示文字
                                                            4
                                                            未进行的步骤
                                                            这里是提示文字
                                                            4
                                                            未进行的步骤
                                                            这里是提示文字
                                                            3
                                                            进行中的步骤
                                                            这里是提示文字
                                                            已完成的步骤
                                                            这里是提示文字
                                                            已完成的步骤
                                                            这里是提示文字
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\sticky-tool\\_example\\base.tsx 1`] = `"
                                                            chat
                                                            add
                                                            qrcode
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\sticky-tool\\_example\\compact.tsx 1`] = `"
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\sticky-tool\\_example\\shape.tsx 1`] = `"
                                                            chat
                                                            add
                                                            qrcode
                                                            chat
                                                            add
                                                            qrcode
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\swiper\\_example\\base.tsx 1`] = `"
                                                            6
                                                            1
                                                            2
                                                            3
                                                            4
                                                            5
                                                            6
                                                            1
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\swiper\\_example\\card.tsx 1`] = `"
                                                            1
                                                            2
                                                            3
                                                            4
                                                            5
                                                            6
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\swiper\\_example\\current.tsx 1`] = `"
                                                            6
                                                            1
                                                            2
                                                            3
                                                            4
                                                            5
                                                            6
                                                            1
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\swiper\\_example\\fade.tsx 1`] = `"
                                                            6
                                                            1
                                                            2
                                                            3
                                                            4
                                                            5
                                                            6
                                                            1
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\swiper\\_example\\fraction.tsx 1`] = `"
                                                            6
                                                            1
                                                            2
                                                            3
                                                            4
                                                            5
                                                            6
                                                            1
                                                            1/6
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\swiper\\_example\\placement.tsx 1`] = `"
                                                            6
                                                            1
                                                            2
                                                            3
                                                            4
                                                            5
                                                            6
                                                            1
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\swiper\\_example\\size.tsx 1`] = `"

                                                            large

                                                            6
                                                            1
                                                            2
                                                            3
                                                            4
                                                            5
                                                            6
                                                            1

                                                            small

                                                            6
                                                            1
                                                            2
                                                            3
                                                            4
                                                            5
                                                            6
                                                            1
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\swiper\\_example\\vertical.tsx 1`] = `"
                                                            6
                                                            1
                                                            2
                                                            3
                                                            4
                                                            5
                                                            6
                                                            1
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\switch\\_example\\base.tsx 1`] = `"
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\switch\\_example\\beforeChange.tsx 1`] = `"
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\switch\\_example\\describe.tsx 1`] = `"
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\switch\\_example\\size.tsx 1`] = `"
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\switch\\_example\\status.tsx 1`] = `"
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\table\\_example\\affix.tsx 1`] = `"
                                                            共 38 条数据
                                                            请选择
                                                            • 1
                                                            • 2
                                                            • 3
                                                            • 4
                                                            • 5
                                                            • 6
                                                            • 7
                                                            • 8
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\table\\_example\\async-loading.tsx 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 packages\\components\\table\\_example\\base.tsx 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
                                                            共 28 条数据
                                                            请选择
                                                            • 1
                                                            • 2
                                                            • 3
                                                            • 4
                                                            • 5
                                                            • 6
                                                            跳至
                                                            / 6 页
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\table\\_example\\custom-cell.tsx 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 packages\\components\\table\\_example\\custom-col.tsx 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
                                                            共 100 条数据
                                                            请选择
                                                            • 1
                                                            • 2
                                                            • 3
                                                            • 4
                                                            • 5
                                                            • 20
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\table\\_example\\custom-col-button.tsx 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
                                                            共 100 条数据
                                                            请选择
                                                            • 1
                                                            • 2
                                                            • 3
                                                            • 4
                                                            • 5
                                                            • 20
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\table\\_example\\custom-footer.tsx 1`] = `"
                                                            申请人
                                                            审批状态
                                                            签署方式
                                                            邮箱地址
                                                            申请时间
                                                            贾明
                                                            审批通过
                                                            电子签署
                                                            w.cezkdudy@lhll.au
                                                            2022-01-01
                                                            张三
                                                            审批失败
                                                            纸质签署
                                                            r.nmgw@peurezgn.sl
                                                            2022-02-01
                                                            王芳
                                                            审批过期
                                                            纸质签署
                                                            p.cumx@rampblpa.ru
                                                            2022-03-01
                                                            表尾信息
                                                            表尾信息
                                                            表尾信息
                                                            表尾信息
                                                            表尾信息
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\table\\_example\\custom-header.tsx 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
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\table\\_example\\data-sort.tsx 1`] = `"
                                                            申请人
                                                            申请状态
                                                            申请耗时(天)
                                                            签署方式
                                                            邮箱地址
                                                            申请时间
                                                            贾明
                                                            审批通过
                                                            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 packages\\components\\table\\_example\\drag-col-sort.tsx 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 packages\\components\\table\\_example\\drag-sort.tsx 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 packages\\components\\table\\_example\\drag-sort-handler.tsx 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 packages\\components\\table\\_example\\editable-cell.tsx 1`] = `"
                                                            申请人
                                                            申请状态
                                                            申请事项
                                                            创建日期
                                                            请选择
                                                            请选择
                                                            请选择
                                                            请选择
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\table\\_example\\editable-row.tsx 1`] = `"


                                                            申请人
                                                            申请状态
                                                            申请事项
                                                            创建日期
                                                            操作栏
                                                            请输入
                                                            请选择
                                                            请选择
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\table\\_example\\ellipsis.tsx 1`] = `"
                                                            申请人
                                                            审批状态
                                                            签署方式(超长标题示例)
                                                            邮箱地址
                                                            申请事项
                                                            审核时间
                                                            操作
                                                            贾明(kyrieJia)
                                                            审批通过
                                                            电子签署
                                                            w.cezkdudy@lhll.au
                                                            宣传物料制作费用
                                                            2021-11-01
                                                            张三(threeZhang)
                                                            审批失败
                                                            纸质签署
                                                            r.nmgw@peurezgn.sl
                                                            algolia 服务报销
                                                            2021-12-01
                                                            王芳(fangWang)
                                                            审批过期
                                                            纸质签署
                                                            p.cumx@rampblpa.ru
                                                            相关周边制作费
                                                            2022-01-01
                                                            贾明(kyrieJia)
                                                            审批通过
                                                            电子签署
                                                            w.cezkdudy@lhll.au
                                                            激励奖品快递费
                                                            2022-02-01
                                                            张三(threeZhang)
                                                            审批失败
                                                            纸质签署
                                                            r.nmgw@peurezgn.sl
                                                            宣传物料制作费用
                                                            2021-11-01
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\table\\_example\\empty.tsx 1`] = `"
                                                            项目名称
                                                            管理员
                                                            所属公司
                                                            暂无数据
                                                            项目名称
                                                            管理员
                                                            所属公司
                                                            😄 it is empty. 😁
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\table\\_example\\expandable.tsx 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 packages\\components\\table\\_example\\filter-controlled.tsx 1`] = `"
                                                            已选筛选条件:{"lastName":[]}
                                                            申请人
                                                            申请状态
                                                            签署方式
                                                            Email
                                                            Date
                                                            搜索“”,找到 5 条结果
                                                            贾明
                                                            审批通过
                                                            电子签署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
                                                            共 0 条数据
                                                            请选择
                                                            • 1
                                                            跳至
                                                            / 1 页
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\table\\_example\\fixed-column.tsx 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 packages\\components\\table\\_example\\fixed-header.tsx 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 packages\\components\\table\\_example\\fixed-header-col.tsx 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 packages\\components\\table\\_example\\lazy.tsx 1`] = `"
                                                            申请人
                                                            申请状态
                                                            申请事项
                                                            邮箱地址
                                                            申请时间
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\table\\_example\\loading.tsx 1`] = `"
                                                            集群名称
                                                            状态
                                                            管理员
                                                            描述
                                                            集群名称
                                                            状态
                                                            管理员
                                                            描述
                                                            集群名称
                                                            状态
                                                            管理员
                                                            描述
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\table\\_example\\merge-cells.tsx 1`] = `"
                                                            申请人
                                                            申请状态
                                                            审批事项
                                                            邮箱地址
                                                            其他信息
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\table\\_example\\multi-header.tsx 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 packages\\components\\table\\_example\\multiple-sort.tsx 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 packages\\components\\table\\_example\\pagination.tsx 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
                                                            共 59 条数据
                                                            请选择
                                                            • 1
                                                            • 2
                                                            • 3
                                                            • 4
                                                            • 5
                                                            • 12
                                                            跳至
                                                            / 12 页
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\table\\_example\\select-multiple.tsx 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 packages\\components\\table\\_example\\select-single.tsx 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 packages\\components\\table\\_example\\single-sort.tsx 1`] = `"
                                                            排序方式:{"sortBy":"status","descending":true}
                                                            申请人
                                                            申请状态
                                                            申请耗时(天)
                                                            签署方式
                                                            申请时间
                                                            贾明
                                                            审批通过
                                                            2电子签署2022-01-01
                                                            张三
                                                            审批失败
                                                            3纸质签署2022-02-01
                                                            王芳
                                                            审批过期
                                                            1纸质签署2022-03-01
                                                            贾明
                                                            审批通过
                                                            4电子签署2022-04-01
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\table\\_example\\style.tsx 1`] = `"
                                                            申请人
                                                            审批状态
                                                            申请耗时(天)
                                                            签署方式
                                                            邮箱地址
                                                            申请时间
                                                            贾明
                                                            审批通过
                                                            2电子签署
                                                            w.cezkdudy@lhll.au
                                                            2022-01-01
                                                            张三
                                                            审批失败
                                                            10纸质签署
                                                            r.nmgw@peurezgn.sl
                                                            2022-02-01
                                                            王芳
                                                            审批过期
                                                            1纸质签署
                                                            p.cumx@rampblpa.ru
                                                            2022-03-01
                                                            贾明
                                                            审批通过
                                                            2电子签署
                                                            w.cezkdudy@lhll.au
                                                            2022-04-01
                                                            张三
                                                            审批失败
                                                            10纸质签署
                                                            r.nmgw@peurezgn.sl
                                                            2022-01-01
                                                            汇总:近期数据波动较大
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\table\\_example\\tree.tsx 1`] = `"
                                                            排序
                                                            编号
                                                            名称
                                                            签署方式
                                                            操作
                                                            0
                                                            申请人 0_1 号
                                                            电子签署
                                                            1
                                                            申请人 1_1 号
                                                            纸质签署
                                                            2
                                                            申请人 2_1 号
                                                            电子签署
                                                            3
                                                            申请人 3_1 号
                                                            纸质签署
                                                            4
                                                            申请人 4_1 号
                                                            电子签署
                                                            66666
                                                            申请人懒加载节点 66666,点我体验
                                                            电子签署
                                                            88888
                                                            申请人懒加载节点 88888,点我体验
                                                            电子签署
                                                            共 100 条数据
                                                            请选择
                                                            • 1
                                                            • 2
                                                            • 3
                                                            • 4
                                                            • 5
                                                            • 6
                                                            • 7
                                                            • 8
                                                            • 9
                                                            • 10
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\table\\_example\\tree-select.tsx 1`] = `"
                                                            序号
                                                            申请人
                                                            状态
                                                            申请事项
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\table\\_example\\virtual-scroll.tsx 1`] = `"
                                                            序号
                                                            申请人
                                                            申请状态
                                                            申请事项
                                                            邮箱地址
                                                            申请时间
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\tabs\\_example\\ban.tsx 1`] = `"
                                                            选项卡1
                                                            选项卡2
                                                            选项卡3
                                                            选项卡1内容区
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\tabs\\_example\\base.tsx 1`] = `"
                                                            选项卡1
                                                            选项卡2
                                                            选项卡3

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

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

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

                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\tabs\\_example\\combination.tsx 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 packages\\components\\tabs\\_example\\custom.tsx 1`] = `"
                                                            选项卡 1
                                                            选项卡 2
                                                            选项卡 3
                                                            选项卡 4
                                                            选项卡 5
                                                            选项卡 6
                                                            选项卡 7
                                                            选项卡 8
                                                            选项卡 9
                                                            选项卡 10
                                                            选项卡 1内容区
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\tabs\\_example\\drag-sort.tsx 1`] = `"
                                                            选项卡一
                                                            选项卡二
                                                            选项卡三

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

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

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

                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\tabs\\_example\\icon.tsx 1`] = `"
                                                            选项卡1
                                                            选项卡2
                                                            选项卡3
                                                            选项卡1内容区
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\tabs\\_example\\lazy-load.tsx 1`] = `"
                                                            选项卡1
                                                            选项卡2
                                                            选项卡3

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

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

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

                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\tabs\\_example\\operation.tsx 1`] = `"
                                                            选项卡1
                                                            选项卡1
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\tabs\\_example\\position.tsx 1`] = `"
                                                            选项卡1
                                                            选项卡2
                                                            选项卡3
                                                            选项卡1内容区
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\tabs\\_example\\size.tsx 1`] = `"
                                                            选项卡1
                                                            选项卡2
                                                            选项卡1内容区
                                                            选项卡1
                                                            选项卡2
                                                            选项卡1内容区
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\tabs\\_example\\theme.tsx 1`] = `"
                                                            选项卡1
                                                            选项卡2
                                                            选项卡1
                                                            选项卡2
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\tag\\_example\\base.tsx 1`] = `"
                                                            标签一
                                                            标签一
                                                            标签二
                                                            标签三
                                                            标签四
                                                            灰标签
                                                            标签一
                                                            标签二
                                                            标签三
                                                            标签四
                                                            灰标签
                                                            标签一
                                                            标签二
                                                            标签三
                                                            标签四
                                                            灰标签
                                                            标签一
                                                            标签二
                                                            标签三
                                                            标签四
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\tag\\_example\\check-tag-group.tsx 1`] = `"
                                                            标签1
                                                            标签2
                                                            标签3
                                                            标签4
                                                            标签5
                                                            标签6
                                                            标签1
                                                            标签2
                                                            标签3
                                                            标签4
                                                            标签5
                                                            标签6
                                                            标签1
                                                            标签2
                                                            标签3
                                                            标签4
                                                            标签5
                                                            标签6
                                                            TAG_A(1)
                                                            TAG_B(2)
                                                            TAG_C(3)
                                                            TAG_D(4)
                                                            TAG_E(5)
                                                            TAG_F(6)
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\tag\\_example\\custom-color.tsx 1`] = `"
                                                            #0052D9
                                                            default
                                                            light
                                                            outline
                                                            light-outline
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\tag\\_example\\delete.tsx 1`] = `"
                                                            可删除标签0
                                                            可删除标签1
                                                            可删除标签2
                                                            可添加标签
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\tag\\_example\\icon.tsx 1`] = `"
                                                            默认标签
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\tag\\_example\\long-text.tsx 1`] = `"
                                                            默认超八个字超长文本标签超长省略文本标签
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\tag\\_example\\selectable.tsx 1`] = `"
                                                            选中/未选态
                                                            选中态
                                                            未选态
                                                            选中禁用
                                                            未选禁用
                                                            选中/未选态
                                                            选中态
                                                            未选态
                                                            选中禁用
                                                            未选禁用
                                                            Outline Tag
                                                            Checked
                                                            Unchecked
                                                            Disabled
                                                            Disabled
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\tag\\_example\\shape.tsx 1`] = `"
                                                            标签一
                                                            标签一
                                                            标签一
                                                            标签一
                                                            标签一
                                                            标签一
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\tag\\_example\\size.tsx 1`] = `"
                                                            小型标签
                                                            默认标签
                                                            大型标签
                                                            小型标签
                                                            默认标签
                                                            大型标签
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\tag-input\\_example\\auto-width.tsx 1`] = `"
                                                            Vue
                                                            React
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\tag-input\\_example\\base.tsx 1`] = `"
                                                            Vue
                                                            React
                                                            Angular
                                                            Controlled:
                                                            Vue
                                                            React
                                                            UnControlled:
                                                            Vue
                                                            React
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\tag-input\\_example\\collapsed.tsx 1`] = `"
                                                            Vue
                                                            +4
                                                            Vue
                                                            React
                                                            Miniprogram
                                                            More(2)
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\tag-input\\_example\\custom-tag.tsx 1`] = `"
                                                            StudentA
                                                            StudentB
                                                            +1


                                                            StudentA
                                                            StudentB
                                                            StudentC
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\tag-input\\_example\\draggable.tsx 1`] = `"
                                                            Vue
                                                            React
                                                            Angular
                                                            Controlled:
                                                            Vue
                                                            React
                                                            Angular
                                                            Miniprogram
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\tag-input\\_example\\excess.tsx 1`] = `"
                                                            Scroll:
                                                            Vue
                                                            React
                                                            BreakLine:
                                                            Vue
                                                            React
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\tag-input\\_example\\max.tsx 1`] = `"
                                                            最多只能输入 3 个标签
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\tag-input\\_example\\max-row.tsx 1`] = `"

                                                            最大高度为2

                                                            小尺寸:
                                                            Vue
                                                            React
                                                            Angular
                                                            Svelte
                                                            Solid
                                                            MiniProgram
                                                            Flutter
                                                            UniApp
                                                            Html5
                                                            Css3
                                                            JavaScript
                                                            TypeScript
                                                            Node.js
                                                            Python
                                                            Java
                                                            Go
                                                            Rust
                                                            C++

                                                            最大高度为3

                                                            中等尺寸:
                                                            Vue
                                                            React
                                                            Angular
                                                            Svelte
                                                            Solid
                                                            MiniProgram
                                                            Flutter
                                                            UniApp
                                                            Html5
                                                            Css3
                                                            JavaScript
                                                            TypeScript
                                                            Node.js
                                                            Python
                                                            Java
                                                            Go
                                                            Rust
                                                            C++

                                                            最大高度为4

                                                            大尺寸:
                                                            Vue
                                                            React
                                                            Angular
                                                            Svelte
                                                            Solid
                                                            MiniProgram
                                                            Flutter
                                                            UniApp
                                                            Html5
                                                            Css3
                                                            JavaScript
                                                            TypeScript
                                                            Node.js
                                                            Python
                                                            Java
                                                            Go
                                                            Rust
                                                            C++
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\tag-input\\_example\\size.tsx 1`] = `"
                                                            Vue
                                                            React
                                                            Vue
                                                            React
                                                            Vue
                                                            React
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\tag-input\\_example\\status.tsx 1`] = `"
                                                            Vue
                                                            React
                                                            Miniprogram
                                                            Vue
                                                            React
                                                            Miniprogram
                                                            这是普通文本提示
                                                            Vue
                                                            React
                                                            Miniprogram
                                                            校验通过文本提示
                                                            Vue
                                                            React
                                                            Miniprogram
                                                            校验不通过文本提示
                                                            Vue
                                                            React
                                                            Miniprogram
                                                            校验存在严重问题文本提示
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\tag-input\\_example\\theme.tsx 1`] = `"
                                                            Vue
                                                            React
                                                            Miniprogram
                                                            Vue
                                                            React
                                                            Miniprogram
                                                            Vue
                                                            React
                                                            Miniprogram
                                                            Vue
                                                            React
                                                            Miniprogram
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\textarea\\_example\\base.tsx 1`] = `"
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\textarea\\_example\\events.tsx 1`] = `"
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\textarea\\_example\\maxlength.tsx 1`] = `"
                                                            这里可以放一些提示文字
                                                            0/20
                                                            0/20
                                                            0/20
                                                            0/20
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\textarea\\_example\\type.tsx 1`] = `"
                                                            正常提示
                                                            成功提示
                                                            警告提示
                                                            错误提示
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\time-picker\\_example\\disabled.tsx 1`] = `"

                                                            禁用整个选择器

                                                            禁用指定时间

                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\time-picker\\_example\\hide-clear-button.tsx 1`] = `"

                                                            禁止清空

                                                            允许清空

                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\time-picker\\_example\\hm.tsx 1`] = `"

                                                            时分选择

                                                            毫秒选择

                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\time-picker\\_example\\hms.tsx 1`] = `"
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\time-picker\\_example\\keyboard.tsx 1`] = `"
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\time-picker\\_example\\panel.tsx 1`] = `"
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\time-picker\\_example\\presets.tsx 1`] = `"
                                                            -
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\time-picker\\_example\\range.tsx 1`] = `"
                                                            -
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\time-picker\\_example\\show-steps.tsx 1`] = `"
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\time-picker\\_example\\twelve-hour-meridian.tsx 1`] = `"
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\timeline\\_example\\base.tsx 1`] = `"

                                                            时间轴方向

                                                            • 事件一
                                                              2022-01-01
                                                            • 事件二
                                                              2022-02-01
                                                            • 事件三
                                                              2022-03-01
                                                            • 事件四
                                                              2022-04-01
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\timeline\\_example\\customContent.tsx 1`] = `"
                                                            • 事件一
                                                              事件一自定义内容
                                                              2022-01-01
                                                            • 事件二
                                                              事件二自定义内容
                                                              2022-02-01
                                                            • 事件三
                                                              事件三自定义内容
                                                              2022-03-01
                                                            • 事件四
                                                              事件四自定义内容
                                                              2022-04-01
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\timeline\\_example\\customDot.tsx 1`] = `"

                                                            时间轴样式

                                                            • 事件一
                                                              2022-01-01
                                                            • 事件二
                                                              2022-02-01
                                                            • 事件三
                                                              2022-03-01
                                                            • 事件四
                                                              2022-04-01
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\timeline\\_example\\layout.tsx 1`] = `"

                                                            时间轴方向

                                                            对齐方式

                                                            label对齐方式

                                                            • 事件一
                                                              2022-01-01
                                                            • 事件二
                                                              2022-02-01
                                                            • 事件三
                                                              2022-03-01
                                                            • 事件四
                                                              2022-04-01
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\timeline\\_example\\loading.tsx 1`] = `"

                                                            加载中

                                                            • 事件一
                                                              2022-01-01
                                                            • 事件二
                                                              2022-02-01
                                                            • 事件三
                                                              2022-03-01
                                                            • 事件四
                                                              2022-04-01
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\timeline\\_example\\reverse.tsx 1`] = `"

                                                            是否倒序

                                                            • 事件一
                                                              2022-01-01
                                                            • 事件二
                                                              2022-02-01
                                                            • 事件三
                                                              2022-03-01
                                                            • 事件四
                                                              2022-04-01
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\timeline\\_example\\theme.tsx 1`] = `"
                                                            • 已完成的时间
                                                              2022-01-01
                                                            • 成功的时间
                                                              2022-02-01
                                                            • 危险时间
                                                              2022-03-01
                                                            • 告警事件
                                                              2022-04-01
                                                            • 默认的时间
                                                              2022-05-01
                                                            • 自定义主题色
                                                              2022-06-01
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\tooltip\\_example\\arrow.tsx 1`] = `""`; + +exports[`ssr snapshot test > ssr test packages\\components\\tooltip\\_example\\base.tsx 1`] = `"
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\tooltip\\_example\\duration.tsx 1`] = `""`; + +exports[`ssr snapshot test > ssr test packages\\components\\tooltip\\_example\\lite.tsx 1`] = `"
                                                            不可用状态下提示
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\tooltip\\_example\\mouse.tsx 1`] = `""`; + +exports[`ssr snapshot test > ssr test packages\\components\\tooltip\\_example\\no-arrow.tsx 1`] = `""`; + +exports[`ssr snapshot test > ssr test packages\\components\\tooltip\\_example\\theme.tsx 1`] = `"
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\tooltip\\_example\\trigger.tsx 1`] = `"
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\transfer\\_example\\base.tsx 1`] = `"
                                                            0 / 20 项
                                                            0 / 0 项
                                                            暂无数据
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\transfer\\_example\\checked.tsx 1`] = `"
                                                            3 / 20 项
                                                            0 / 0 项
                                                            暂无数据
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\transfer\\_example\\custom.tsx 1`] = `""`; + +exports[`ssr snapshot test > ssr test packages\\components\\transfer\\_example\\custom-render.tsx 1`] = `"
                                                            0 / 20 项
                                                            0 / 0 项
                                                            暂无数据
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\transfer\\_example\\empty.tsx 1`] = `"

                                                            默认暂无数据

                                                            0 / 0 项
                                                            暂无数据
                                                            0 / 0 项
                                                            暂无数据

                                                            自定义暂无数据

                                                            0 / 0 项
                                                            No Source
                                                            0 / 0 项
                                                            No Target
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\transfer\\_example\\pagination.tsx 1`] = `"
                                                            0 / 20 项
                                                            跳至
                                                            / 2 页
                                                            0 / 0 项
                                                            暂无数据
                                                            跳至
                                                            / 1 页
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\transfer\\_example\\search.tsx 1`] = `""`; + +exports[`ssr snapshot test > ssr test packages\\components\\transfer\\_example\\tree.tsx 1`] = `"
                                                            0 / 5 项
                                                            暂无数据
                                                            0 / 0 项
                                                            暂无数据
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\tree\\_example\\activable.tsx 1`] = `"
                                                            暂无数据
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\tree\\_example\\base.tsx 1`] = `"
                                                            暂无数据
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\tree\\_example\\checkable.tsx 1`] = `"
                                                            暂无数据
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\tree\\_example\\controlled.tsx 1`] = `"
                                                            checked:
                                                            expanded:
                                                            actived:
                                                            暂无数据
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\tree\\_example\\disabled.tsx 1`] = `"
                                                            暂无数据
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\tree\\_example\\draggable.tsx 1`] = `"
                                                            暂无数据
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\tree\\_example\\empty.tsx 1`] = `"
                                                            暂无数据
                                                            😊 空数据(string)
                                                            😊 空数据( empty props )
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\tree\\_example\\expand-all.tsx 1`] = `"
                                                            暂无数据
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\tree\\_example\\expand-level.tsx 1`] = `"
                                                            暂无数据
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\tree\\_example\\expand-mutex.tsx 1`] = `"
                                                            暂无数据
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\tree\\_example\\filter.tsx 1`] = `"
                                                            filter:
                                                            暂无数据
                                                            filter:
                                                            暂无数据
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\tree\\_example\\icon.tsx 1`] = `"

                                                            render 1:

                                                            暂无数据

                                                            render 2:

                                                            暂无数据
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\tree\\_example\\label.tsx 1`] = `"
                                                            暂无数据
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\tree\\_example\\lazy.tsx 1`] = `"
                                                            暂无数据
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\tree\\_example\\line.tsx 1`] = `"
                                                            暂无数据

                                                            render

                                                            暂无数据
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\tree\\_example\\load.tsx 1`] = `"
                                                            暂无数据
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\tree\\_example\\operations.tsx 1`] = `"

                                                            render:

                                                            暂无数据

                                                            api:

                                                            filter:
                                                            暂无数据

                                                            api:

                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\tree\\_example\\state.tsx 1`] = `"

                                                            state:

                                                            暂无数据

                                                            api:

                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\tree\\_example\\sync.tsx 1`] = `"
                                                            checked:
                                                            expanded:
                                                            actived:
                                                            暂无数据
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\tree\\_example\\vscroll.tsx 1`] = `"
                                                            暂无数据
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\tree-select\\_example\\base.tsx 1`] = `"
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\tree-select\\_example\\collapsed.tsx 1`] = `"
                                                            广州市
                                                            +1
                                                            广州市
                                                            更多...
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\tree-select\\_example\\filterable.tsx 1`] = `"
                                                            请选择
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\tree-select\\_example\\lazy.tsx 1`] = `"
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\tree-select\\_example\\multiple.tsx 1`] = `"
                                                            广州市
                                                            深圳市
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\tree-select\\_example\\panelContent.tsx 1`] = `"
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\tree-select\\_example\\prefix.tsx 1`] = `"
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\tree-select\\_example\\prefixsuffix.tsx 1`] = `"
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\tree-select\\_example\\props.tsx 1`] = `"
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\tree-select\\_example\\valuedisplay.tsx 1`] = `"
                                                            广州市(guangzhou)
                                                            广州市(guangzhou)
                                                            深圳市(shenzhen)
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\tree-select\\_example\\valuetype.tsx 1`] = `"
                                                            广州市
                                                            深圳市
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\typography\\_example\\base.tsx 1`] = `"

                                                            What is TDesign

                                                            TDesign is an enterprise-level design system accumulated by Tencent's various business teams.
                                                            TDesign features a unified design values, consistent design language, and visual style, helping users form continuous and coherent perceptions of the experience. Based on this, TDesign offers out-of-the-box UI component libraries, design guidelines, and design assets, elegantly and efficiently freeing design and development from repetitive tasks. Simultaneously, it facilitates easy extension on top of TDesign, enabling a better alignment with business requirements.

                                                            Comprehensive

                                                            TDesign Support Vue 2, Vue 3, React, components for Desktop Application and Vue 3, Wechat MiniProgram components for Mobile Application.
                                                            • Features
                                                            • Comprehensive
                                                              • Consistency
                                                              • Usability
                                                            • Join TDesign
                                                            1. Features
                                                            2. Comprehensive
                                                              1. Consistency
                                                              2. Usability
                                                            3. Join TDesign
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\typography\\_example\\copyable.tsx 1`] = `"This is a copyable text.
                                                            This is a copyable long text. TDesign was founded with the principles of open-source collaboration from the beginning. The collaboration scheme discussion, component design, and API design, including source code, are fully open within the company, garnering widespread attention from internal developers and designers. TDesign follows an equal, open, and strict policy, regardless of the participants' roles....

                                                            This is a copyable long text with custom suffix."`; + +exports[`ssr snapshot test > ssr test packages\\components\\typography\\_example\\ellipsis.tsx 1`] = `"
                                                            TDesign was founded with the principles of open-source collaboration from the beginning. The collaboration scheme discussion, component design, and API design, including source code, are fully open within the company, garnering widespread attention from internal developers and designers. TDesign follows an equal, open, and strict policy, regardless of the participants' roles....
                                                            TDesign was founded with the principles of open-source collaboration from the beginning. The collaboration scheme discussion, component design, and API design, including source code, are fully open within the company, garnering widespread attention from internal developers and designers. TDesign follows an equal, open, and strict policy, regardless of the participants' roles....
                                                            TDesign was founded with the principles of open-source collaboration from the beginning. The collaboration scheme discussion, component design, and API design, including source code, are fully open within the company, garnering widespread attention from internal developers and designers. TDesign follows an equal, open, and strict policy, regardless of the participants' roles....
                                                            TDesign was founded with the principles of open-source collaboration from the beginning. The collaboration scheme discussion, component design, and API design, including source code, are fully open within the company, garnering widespread attention from internal developers and designers. TDesign follows an equal, open, and strict policy, regardless of the participants' roles....
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\typography\\_example\\text.tsx 1`] = `"
                                                            TDesign (primary)
                                                            TDesign (secondary)
                                                            TDesign (disabled)
                                                            TDesign (success)
                                                            TDesign (warning)
                                                            TDesign (error)
                                                            TDesign (mark)
                                                            TDesign (code)
                                                            TDesign (keyboard)
                                                            TDesign (underline)
                                                            TDesign (delete)
                                                            TDesign (strong)
                                                            TDesign (italic)
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\typography\\_example\\title.tsx 1`] = `"

                                                            H1. TDesign

                                                            H2. TDesign

                                                            H3. TDesign

                                                            H4. TDesign

                                                            H5. TDesign
                                                            H6. TDesign
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\upload\\_example\\base.tsx 1`] = `"

                                                            要求文件大小在 1M 以内
                                                            文件上传失败示例
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\upload\\_example\\custom-drag.tsx 1`] = `"


                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\upload\\_example\\draggable.tsx 1`] = `"
                                                            是否自动上传:

                                                            点击上传  /  拖拽到此区域
                                                            默认文件
                                                            文件大小1.0 KB上传日期2022-09-25
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\upload\\_example\\file-flow-list.tsx 1`] = `"

                                                            支持批量上传文件,文件格式不限,最多只能上传 10 份文件
                                                            点击上方“选择文件”或将文件拖拽到此区域
                                                            取消上传
                                                            点击上传
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\upload\\_example\\image.tsx 1`] = `"

                                                            • 请选择图片

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

                                                            单张图片文件上传(上传失败状态演示)
                                                            • 点击上传图片

                                                            允许选择多张图片文件上传,最多只能上传 3 张图片
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\upload\\_example\\img-flow-list.tsx 1`] = `"
                                                            AutoUpload

                                                            支持批量上传图片文件
                                                            • demo…-1.png

                                                            • avatar.jpg

                                                            取消上传

                                                            Different Status Images
                                                            • loading.svg

                                                            • loading.svg

                                                            • 上传中 10%

                                                              loading.svg

                                                            • 上传失败

                                                              loading.svg

                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\upload\\_example\\request-method.tsx 1`] = `"
                                                            自定义上传方法需要返回成功或失败信息
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\upload\\_example\\single-custom.tsx 1`] = `"
                                                            上传文件大小在 1M 以内
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\upload\\_example\\single-input.tsx 1`] = `"

                                                            请选择文件
                                                            "`; From f0e2a84521a73079f444986b14e9585e0b593c96 Mon Sep 17 00:00:00 2001 From: OrthoCapez <77829706+Dcose@users.noreply.github.com> Date: Sun, 12 Oct 2025 00:31:27 +0800 Subject: [PATCH 4/5] chore(test): align vitest tooling versions and dedupe jest-axe --- package.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/package.json b/package.json index 1e9511d53b..db1157ef63 100644 --- a/package.json +++ b/package.json @@ -133,8 +133,7 @@ "rollup-plugin-terser": "^7.0.2", "rollup-plugin-typescript2": "^0.31.2", "typescript": "5.6.2", - "vitest": "^2.1.1", - "jest-axe": "^10.0.0" + "vitest": "^2.1.1" }, "dependencies": { "@tdesign/common": "workspace:^", From 1a9e16889fe2f3d52a071288795e513f0a0ec28e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sun, 12 Oct 2025 03:30:01 +0000 Subject: [PATCH 5/5] chore: update snapshot --- .../__snapshots__/vitest-button.test.jsx.snap | 11 +- .../__snapshots__/vitest-upload.test.jsx.snap | 2 + test/snap/__snapshots__/csr.test.jsx.snap | 151252 +-------------- test/snap/__snapshots__/ssr.test.jsx.snap | 1366 +- 4 files changed, 388 insertions(+), 152243 deletions(-) diff --git a/packages/components/button/__tests__/__snapshots__/vitest-button.test.jsx.snap b/packages/components/button/__tests__/__snapshots__/vitest-button.test.jsx.snap index ba29f7c177..3981d138ab 100644 --- a/packages/components/button/__tests__/__snapshots__/vitest-button.test.jsx.snap +++ b/packages/components/button/__tests__/__snapshots__/vitest-button.test.jsx.snap @@ -71,9 +71,9 @@ exports[`Button Component > props.content works fine 1`] = ` exports[`Button Component > props.disabled works fine 1`] = `
                                                            csr test packages/components/transfer/_example/cust class="t-transfer__operations" >
                                                            csr test packages/components/transfer/_example/cust
                                                            csr test packages/components/transfer/_example/cust class="t-transfer__operations" >
                                                            csr test packages/components/transfer/_example/cust
                                                            csr test packages/components/transfer/_example/empt class="t-transfer__operations" >
                                                            csr test packages/components/transfer/_example/empt
                                                            csr test packages/components/transfer/_example/empt class="t-transfer__operations" >
                                                            csr test packages/components/transfer/_example/empt
                                                            csr test packages/components/transfer/_example/pagi class="t-transfer__operations" >
                                                            csr test packages/components/transfer/_example/pagi
                                                            csr test packages/components/transfer/_example/sear class="t-transfer__operations" >
                                                            csr test packages/components/transfer/_example/sear
                                                            csr test packages/components/transfer/_example/tree class="t-transfer__operations" >
                                                            csr test packages/components/transfer/_example/tree
                                                            csr test packages/components/typography/_example/co > This is a copyable text.
                                                            -
                                                            -
                                                            -
                                                            -`; - -exports[`csr snapshot test > csr test packages\\components\\affix\\_example\\container.tsx 1`] = ` -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -`; - -exports[`csr snapshot test > csr test packages\\components\\alert\\_example\\base.tsx 1`] = ` -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - - - -
                                                            -
                                                            -
                                                            -
                                                            - 这是一条成功的消息提示 -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - - - -
                                                            -
                                                            -
                                                            -
                                                            - 这是一条普通的消息提示 -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - - - -
                                                            -
                                                            -
                                                            -
                                                            - 这是一条警示消息 -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - - - -
                                                            -
                                                            -
                                                            -
                                                            - 高危操作/出错信息提示 -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -`; - -exports[`csr snapshot test > csr test packages\\components\\alert\\_example\\close.tsx 1`] = ` -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - - - -
                                                            -
                                                            -
                                                            -
                                                            - 这是一条成功的消息提示 -
                                                            -
                                                            -
                                                            -
                                                            - - - - - -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - - - -
                                                            -
                                                            -
                                                            -
                                                            - 这是一条普通的消息提示 -
                                                            -
                                                            -
                                                            -
                                                            - 知道了 -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - - - -
                                                            -
                                                            -
                                                            -
                                                            - 这是一条警示消息 -
                                                            -
                                                            -
                                                            -
                                                            - FunctionPropClose -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - - - -
                                                            -
                                                            -
                                                            -
                                                            - 高危操作/出错信息提示 -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - - 关闭 - -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -`; - -exports[`csr snapshot test > csr test packages\\components\\alert\\_example\\collapse.tsx 1`] = ` -
                                                            -
                                                            -
                                                            - - - -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - 1.这是一条普通的消息提示描述, -
                                                            -
                                                            - 2.这是一条普通的消息提示描述, -
                                                            -
                                                            - 展开更多 -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - - - - - -
                                                            -
                                                            -
                                                            -`; - -exports[`csr snapshot test > csr test packages\\components\\alert\\_example\\icon.tsx 1`] = ` -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - - - -
                                                            -
                                                            -
                                                            -
                                                            - 这是一条成功的消息提示 -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - - - -
                                                            -
                                                            -
                                                            -
                                                            - 这是一条普通的消息提示 -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - - - -
                                                            -
                                                            -
                                                            -
                                                            - 这是一条警示消息 -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - - - -
                                                            -
                                                            -
                                                            -
                                                            - 高危操作/出错信息提示 -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -`; - -exports[`csr snapshot test > csr test packages\\components\\alert\\_example\\operation.tsx 1`] = ` -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - - - -
                                                            -
                                                            -
                                                            -
                                                            - 这是一条成功的消息提示 -
                                                            -
                                                            - - 相关操作 - -
                                                            -
                                                            -
                                                            -
                                                            - - - - - -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - - - -
                                                            -
                                                            -
                                                            -
                                                            - 这是一条普通的消息提示 -
                                                            -
                                                            - - 相关操作 - -
                                                            -
                                                            -
                                                            -
                                                            - - - - - -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - - - -
                                                            -
                                                            -
                                                            -
                                                            - 这是一条警示消息 -
                                                            -
                                                            - - 相关操作 - -
                                                            -
                                                            -
                                                            -
                                                            - - - - - -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - - - -
                                                            -
                                                            -
                                                            -
                                                            - 高危操作/出错信息提示 -
                                                            -
                                                            - - 相关操作 - -
                                                            -
                                                            -
                                                            -
                                                            - - - - - -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -`; - -exports[`csr snapshot test > csr test packages\\components\\alert\\_example\\swiper.tsx 1`] = ` -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - - - -
                                                            -
                                                            -
                                                            -
                                                            - 这是一条成功的消息提示 -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - - - -
                                                            -
                                                            -
                                                            -
                                                            - 这是一条普通的消息提示 -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - - - -
                                                            -
                                                            -
                                                            -
                                                            - 这是一条警示消息 -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - - - -
                                                            -
                                                            -
                                                            -
                                                            - 高危操作/出错信息提示 -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -`; - -exports[`csr snapshot test > csr test packages\\components\\alert\\_example\\title.tsx 1`] = ` -
                                                            -
                                                            -
                                                            - - - -
                                                            -
                                                            -
                                                            - 这是一条普通的消息提示 -
                                                            -
                                                            -
                                                            - 这是一条普通的消息提示描述,这是一条普通的消息提示描述 -
                                                            -
                                                            - - 相关操作 - -
                                                            -
                                                            -
                                                            -
                                                            - - - - - -
                                                            -
                                                            -
                                                            -`; - -exports[`csr snapshot test > csr test packages\\components\\anchor\\_example\\base.tsx 1`] = ` -
                                                            -
                                                            - -`; - -exports[`csr snapshot test > csr test packages\\components\\anchor\\_example\\container.tsx 1`] = ` -
                                                            -
                                                            -
                                                            - -
                                                            -
                                                            - content-1 -
                                                            -
                                                            - content-2 -
                                                            -
                                                            - content-3 -
                                                            -
                                                            - content-4 -
                                                            -
                                                            - content-5 -
                                                            -
                                                            -
                                                            -
                                                            -`; - -exports[`csr snapshot test > csr test packages\\components\\anchor\\_example\\cursor.tsx 1`] = ` -
                                                            - -`; - -exports[`csr snapshot test > csr test packages\\components\\anchor\\_example\\customize-highlight.tsx 1`] = ` -
                                                            -
                                                            - -`; - -exports[`csr snapshot test > csr test packages\\components\\anchor\\_example\\large.tsx 1`] = ` -
                                                            - -`; - -exports[`csr snapshot test > csr test packages\\components\\anchor\\_example\\multiple.tsx 1`] = ` -
                                                            - -`; - -exports[`csr snapshot test > csr test packages\\components\\anchor\\_example\\small.tsx 1`] = ` -
                                                            - -`; - -exports[`csr snapshot test > csr test packages\\components\\anchor\\_example\\target.tsx 1`] = ` -
                                                            -
                                                            -

                                                            - 基础锚点 - - - - - - - -

                                                            -

                                                            - 多级锚点 - - - - - - - -

                                                            -

                                                            - 尺寸大小 - - - - - - - -

                                                            -

                                                            - 指定容器 - - - - - - - -

                                                            -
                                                            -
                                                            -`; - -exports[`csr snapshot test > csr test packages\\components\\auto-complete\\_example\\base.tsx 1`] = ` -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - -
                                                            -
                                                            -
                                                            -`; - -exports[`csr snapshot test > csr test packages\\components\\auto-complete\\_example\\filter.tsx 1`] = ` -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -`; - -exports[`csr snapshot test > csr test packages\\components\\auto-complete\\_example\\option.tsx 1`] = ` -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -`; - -exports[`csr snapshot test > csr test packages\\components\\auto-complete\\_example\\size.tsx 1`] = ` -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - 小尺寸: -
                                                            - -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - 中尺寸: -
                                                            - -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - 大尺寸: -
                                                            - -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -`; - -exports[`csr snapshot test > csr test packages\\components\\auto-complete\\_example\\status.tsx 1`] = ` -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - -
                                                            -
                                                            - 这是禁用状态 -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - -
                                                            -
                                                            - 这是只读状态 -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - -
                                                            -
                                                            - 这是普通状态 -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - -
                                                            -
                                                            - 这是告警状态 -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - -
                                                            -
                                                            - 这是错误状态 -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - -
                                                            -
                                                            - 这是成功状态 -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -`; - -exports[`csr snapshot test > csr test packages\\components\\auto-complete\\_example\\trigger-element.tsx 1`] = ` -
                                                            -
                                                            -
                                                            - -
                                                            -
                                                            -
                                                            -
                                                            - -
                                                            -
                                                            -
                                                            -
                                                            - -
                                                            -
                                                            - 正常提示 -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - -
                                                            -
                                                            - 成功提示 -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - -
                                                            -
                                                            - 警告提示 -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - -
                                                            -
                                                            - 错误提示 -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -`; - -exports[`csr snapshot test > csr test packages\\components\\time-picker\\_example\\disabled.tsx 1`] = ` -
                                                            -
                                                            -
                                                            -

                                                            - 禁用整个选择器 -

                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - - - - - - - - - - -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -

                                                            - 禁用指定时间 -

                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - - - - - - - - - - -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -`; - -exports[`csr snapshot test > csr test packages\\components\\time-picker\\_example\\hide-clear-button.tsx 1`] = ` -
                                                            -
                                                            -
                                                            -

                                                            - 禁止清空 -

                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - - - - - - - - - - -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -

                                                            - 允许清空 -

                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - - - - - - - - - - -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -`; - -exports[`csr snapshot test > csr test packages\\components\\time-picker\\_example\\hm.tsx 1`] = ` -
                                                            -
                                                            -
                                                            -

                                                            - 时分选择 -

                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - - - - - - - - - - -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -

                                                            - 毫秒选择 -

                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - - - - - - - - - - -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -`; - -exports[`csr snapshot test > csr test packages\\components\\time-picker\\_example\\hms.tsx 1`] = ` -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - - - - - - - - - - -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -`; - -exports[`csr snapshot test > csr test packages\\components\\time-picker\\_example\\keyboard.tsx 1`] = ` -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - - - - - - - - - - -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -`; - -exports[`csr snapshot test > csr test packages\\components\\time-picker\\_example\\panel.tsx 1`] = ` -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                              -
                                                            • - 00 -
                                                            • -
                                                            • - 01 -
                                                            • -
                                                            • - 02 -
                                                            • -
                                                            • - 03 -
                                                            • -
                                                            • - 04 -
                                                            • -
                                                            • - 05 -
                                                            • -
                                                            • - 06 -
                                                            • -
                                                            • - 07 -
                                                            • -
                                                            • - 08 -
                                                            • -
                                                            • - 09 -
                                                            • -
                                                            • - 10 -
                                                            • -
                                                            • - 11 -
                                                            • -
                                                            • - 12 -
                                                            • -
                                                            • - 13 -
                                                            • -
                                                            • - 14 -
                                                            • -
                                                            • - 15 -
                                                            • -
                                                            • - 16 -
                                                            • -
                                                            • - 17 -
                                                            • -
                                                            • - 18 -
                                                            • -
                                                            • - 19 -
                                                            • -
                                                            • - 20 -
                                                            • -
                                                            • - 21 -
                                                            • -
                                                            • - 22 -
                                                            • -
                                                            • - 23 -
                                                            • -
                                                            -
                                                              -
                                                            • - 00 -
                                                            • -
                                                            • - 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 -
                                                            • -
                                                            • - 32 -
                                                            • -
                                                            • - 33 -
                                                            • -
                                                            • - 34 -
                                                            • -
                                                            • - 35 -
                                                            • -
                                                            • - 36 -
                                                            • -
                                                            • - 37 -
                                                            • -
                                                            • - 38 -
                                                            • -
                                                            • - 39 -
                                                            • -
                                                            • - 40 -
                                                            • -
                                                            • - 41 -
                                                            • -
                                                            • - 42 -
                                                            • -
                                                            • - 43 -
                                                            • -
                                                            • - 44 -
                                                            • -
                                                            • - 45 -
                                                            • -
                                                            • - 46 -
                                                            • -
                                                            • - 47 -
                                                            • -
                                                            • - 48 -
                                                            • -
                                                            • - 49 -
                                                            • -
                                                            • - 50 -
                                                            • -
                                                            • - 51 -
                                                            • -
                                                            • - 52 -
                                                            • -
                                                            • - 53 -
                                                            • -
                                                            • - 54 -
                                                            • -
                                                            • - 55 -
                                                            • -
                                                            • - 56 -
                                                            • -
                                                            • - 57 -
                                                            • -
                                                            • - 58 -
                                                            • -
                                                            • - 59 -
                                                            • -
                                                            -
                                                              -
                                                            • - 00 -
                                                            • -
                                                            • - 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 -
                                                            • -
                                                            • - 32 -
                                                            • -
                                                            • - 33 -
                                                            • -
                                                            • - 34 -
                                                            • -
                                                            • - 35 -
                                                            • -
                                                            • - 36 -
                                                            • -
                                                            • - 37 -
                                                            • -
                                                            • - 38 -
                                                            • -
                                                            • - 39 -
                                                            • -
                                                            • - 40 -
                                                            • -
                                                            • - 41 -
                                                            • -
                                                            • - 42 -
                                                            • -
                                                            • - 43 -
                                                            • -
                                                            • - 44 -
                                                            • -
                                                            • - 45 -
                                                            • -
                                                            • - 46 -
                                                            • -
                                                            • - 47 -
                                                            • -
                                                            • - 48 -
                                                            • -
                                                            • - 49 -
                                                            • -
                                                            • - 50 -
                                                            • -
                                                            • - 51 -
                                                            • -
                                                            • - 52 -
                                                            • -
                                                            • - 53 -
                                                            • -
                                                            • - 54 -
                                                            • -
                                                            • - 55 -
                                                            • -
                                                            • - 56 -
                                                            • -
                                                            • - 57 -
                                                            • -
                                                            • - 58 -
                                                            • -
                                                            • - 59 -
                                                            • -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -`; - -exports[`csr snapshot test > csr test packages\\components\\time-picker\\_example\\presets.tsx 1`] = ` -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - - - - - - - - - - -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - -
                                                            -
                                                            -
                                                            - - -
                                                            -
                                                            -
                                                            - -
                                                            -
                                                            - - - - - - - - - -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -`; - -exports[`csr snapshot test > csr test packages\\components\\time-picker\\_example\\range.tsx 1`] = ` -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - -
                                                            -
                                                            -
                                                            - - -
                                                            -
                                                            -
                                                            - -
                                                            -
                                                            - - - - - - - - - -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -`; - -exports[`csr snapshot test > csr test packages\\components\\time-picker\\_example\\show-steps.tsx 1`] = ` -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - - - - - - - - - - -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -`; - -exports[`csr snapshot test > csr test packages\\components\\time-picker\\_example\\twelve-hour-meridian.tsx 1`] = ` -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - - - - - - - - - - -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -`; - -exports[`csr snapshot test > csr test packages\\components\\timeline\\_example\\base.tsx 1`] = ` -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -

                                                            - 时间轴方向 -

                                                            -
                                                            -
                                                            -
                                                            - - -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                              -
                                                            • -
                                                              -
                                                              -
                                                              -
                                                              -
                                                              - 事件一 -
                                                              - 2022-01-01 -
                                                              -
                                                              -
                                                            • -
                                                            • -
                                                              -
                                                              -
                                                              -
                                                              -
                                                              - 事件二 -
                                                              - 2022-02-01 -
                                                              -
                                                              -
                                                            • -
                                                            • -
                                                              -
                                                              -
                                                              -
                                                              -
                                                              - 事件三 -
                                                              - 2022-03-01 -
                                                              -
                                                              -
                                                            • -
                                                            • -
                                                              -
                                                              -
                                                              -
                                                              -
                                                              - 事件四 -
                                                              - 2022-04-01 -
                                                              -
                                                              -
                                                            • -
                                                            -
                                                            -
                                                            -
                                                            -`; - -exports[`csr snapshot test > csr test packages\\components\\timeline\\_example\\customContent.tsx 1`] = ` -
                                                            -
                                                              -
                                                            • -
                                                              -
                                                              -
                                                              -
                                                              -
                                                              -
                                                              - 事件一 -
                                                              -
                                                              - 事件一自定义内容 -
                                                              -
                                                              - 2022-01-01 -
                                                              -
                                                              -
                                                            • -
                                                            • -
                                                              -
                                                              -
                                                              -
                                                              -
                                                              -
                                                              - 事件二 -
                                                              -
                                                              - 事件二自定义内容 -
                                                              -
                                                              - 2022-02-01 -
                                                              -
                                                              -
                                                            • -
                                                            • -
                                                              -
                                                              -
                                                              -
                                                              -
                                                              -
                                                              - 事件三 -
                                                              -
                                                              - 事件三自定义内容 -
                                                              -
                                                              - 2022-03-01 -
                                                              -
                                                              -
                                                            • -
                                                            • -
                                                              -
                                                              -
                                                              -
                                                              -
                                                              -
                                                              - 事件四 -
                                                              -
                                                              - 事件四自定义内容 -
                                                              -
                                                              - 2022-04-01 -
                                                              -
                                                              -
                                                            • -
                                                            -
                                                            -`; - -exports[`csr snapshot test > csr test packages\\components\\timeline\\_example\\customDot.tsx 1`] = ` -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -

                                                            - 时间轴样式 -

                                                            -
                                                            -
                                                            -
                                                            - - -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                              -
                                                            • -
                                                              -
                                                              - - - - - - -
                                                              -
                                                              -
                                                              -
                                                              - 事件一 -
                                                              - 2022-01-01 -
                                                              -
                                                              -
                                                            • -
                                                            • -
                                                              -
                                                              - - - - - - - - - - - - -
                                                              -
                                                              -
                                                              -
                                                              - 事件二 -
                                                              - 2022-02-01 -
                                                              -
                                                              -
                                                            • -
                                                            • -
                                                              -
                                                              - - - - - - -
                                                              -
                                                              -
                                                              -
                                                              - 事件三 -
                                                              - 2022-03-01 -
                                                              -
                                                              -
                                                            • -
                                                            • -
                                                              -
                                                              - - - - - - - - -
                                                              -
                                                              -
                                                              -
                                                              - 事件四 -
                                                              - 2022-04-01 -
                                                              -
                                                              -
                                                            • -
                                                            -
                                                            -
                                                            -
                                                            -`; - -exports[`csr snapshot test > csr test packages\\components\\timeline\\_example\\layout.tsx 1`] = ` -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -

                                                            - 时间轴方向 -

                                                            -
                                                            -
                                                            -
                                                            - - -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -

                                                            - 对齐方式 -

                                                            -
                                                            -
                                                            -
                                                            - - - -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -

                                                            - label对齐方式 -

                                                            -
                                                            -
                                                            -
                                                            - - -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                              -
                                                            • -
                                                              -
                                                              -
                                                              -
                                                              -
                                                              - 事件一 -
                                                              - 2022-01-01 -
                                                              -
                                                              -
                                                            • -
                                                            • -
                                                              -
                                                              -
                                                              -
                                                              -
                                                              - 事件二 -
                                                              - 2022-02-01 -
                                                              -
                                                              -
                                                            • -
                                                            • -
                                                              -
                                                              -
                                                              -
                                                              -
                                                              - 事件三 -
                                                              - 2022-03-01 -
                                                              -
                                                              -
                                                            • -
                                                            • -
                                                              -
                                                              -
                                                              -
                                                              -
                                                              - 事件四 -
                                                              - 2022-04-01 -
                                                              -
                                                              -
                                                            • -
                                                            -
                                                            -
                                                            -
                                                            -`; - -exports[`csr snapshot test > csr test packages\\components\\timeline\\_example\\loading.tsx 1`] = ` -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -

                                                            - 加载中 -

                                                            -
                                                            -
                                                            - -
                                                            -
                                                            -
                                                            -
                                                            -
                                                              -
                                                            • -
                                                              -
                                                              -
                                                              -
                                                              -
                                                              - 事件一 -
                                                              - 2022-01-01 -
                                                              -
                                                              -
                                                            • -
                                                            • -
                                                              -
                                                              -
                                                              -
                                                              -
                                                              - 事件二 -
                                                              - 2022-02-01 -
                                                              -
                                                              -
                                                            • -
                                                            • -
                                                              -
                                                              -
                                                              -
                                                              -
                                                              - 事件三 -
                                                              - 2022-03-01 -
                                                              -
                                                              -
                                                            • -
                                                            • -
                                                              -
                                                              -
                                                              -
                                                              -
                                                              - 事件四 -
                                                              - 2022-04-01 -
                                                              -
                                                              -
                                                            • -
                                                            -
                                                            -
                                                            -
                                                            -`; - -exports[`csr snapshot test > csr test packages\\components\\timeline\\_example\\reverse.tsx 1`] = ` -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -

                                                            - 是否倒序 -

                                                            -
                                                            -
                                                            - -
                                                            -
                                                            -
                                                            -
                                                            -
                                                              -
                                                            • -
                                                              -
                                                              -
                                                              -
                                                              -
                                                              - 事件一 -
                                                              - 2022-01-01 -
                                                              -
                                                              -
                                                            • -
                                                            • -
                                                              -
                                                              -
                                                              -
                                                              -
                                                              - 事件二 -
                                                              - 2022-02-01 -
                                                              -
                                                              -
                                                            • -
                                                            • -
                                                              -
                                                              -
                                                              -
                                                              -
                                                              - 事件三 -
                                                              - 2022-03-01 -
                                                              -
                                                              -
                                                            • -
                                                            • -
                                                              -
                                                              -
                                                              -
                                                              -
                                                              - 事件四 -
                                                              - 2022-04-01 -
                                                              -
                                                              -
                                                            • -
                                                            -
                                                            -
                                                            -
                                                            -`; - -exports[`csr snapshot test > csr test packages\\components\\timeline\\_example\\theme.tsx 1`] = ` -
                                                            -
                                                              -
                                                            • -
                                                              -
                                                              -
                                                              -
                                                              -
                                                              - 已完成的时间 -
                                                              - 2022-01-01 -
                                                              -
                                                              -
                                                            • -
                                                            • -
                                                              -
                                                              -
                                                              -
                                                              -
                                                              - 成功的时间 -
                                                              - 2022-02-01 -
                                                              -
                                                              -
                                                            • -
                                                            • -
                                                              -
                                                              -
                                                              -
                                                              -
                                                              - 危险时间 -
                                                              - 2022-03-01 -
                                                              -
                                                              -
                                                            • -
                                                            • -
                                                              -
                                                              -
                                                              -
                                                              -
                                                              - 告警事件 -
                                                              - 2022-04-01 -
                                                              -
                                                              -
                                                            • -
                                                            • -
                                                              -
                                                              -
                                                              -
                                                              -
                                                              - 默认的时间 -
                                                              - 2022-05-01 -
                                                              -
                                                              -
                                                            • -
                                                            • -
                                                              -
                                                              -
                                                              -
                                                              -
                                                              - 自定义主题色 -
                                                              - 2022-06-01 -
                                                              -
                                                              -
                                                            • -
                                                            -
                                                            -`; - -exports[`csr snapshot test > csr test packages\\components\\tooltip\\_example\\arrow.tsx 1`] = ` -
                                                            - -
                                                            -`; - -exports[`csr snapshot test > csr test packages\\components\\tooltip\\_example\\base.tsx 1`] = ` -
                                                            -
                                                            - - - - - - - - - - - - -
                                                            -
                                                            -`; - -exports[`csr snapshot test > csr test packages\\components\\tooltip\\_example\\duration.tsx 1`] = ` -
                                                            - -
                                                            -
                                                            - 提示在5秒后消失 -
                                                            -
                                                            -
                                                            - -
                                                            -`; - -exports[`csr snapshot test > csr test packages\\components\\tooltip\\_example\\lite.tsx 1`] = ` -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - -
                                                            -
                                                            -
                                                            -
                                                            - -
                                                            -
                                                            -
                                                            -
                                                            - -
                                                            -
                                                            -
                                                            -
                                                            - -
                                                            -
                                                            -
                                                            -
                                                            - -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - -
                                                            -
                                                            -
                                                            -
                                                            - -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - - 不可用状态下提示 - -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -`; - -exports[`csr snapshot test > csr test packages\\components\\tooltip\\_example\\mouse.tsx 1`] = ` - -`; - -exports[`csr snapshot test > csr test packages\\components\\tooltip\\_example\\no-arrow.tsx 1`] = ` -
                                                            - -
                                                            -`; - -exports[`csr snapshot test > csr test packages\\components\\tooltip\\_example\\theme.tsx 1`] = ` -
                                                            -
                                                            -
                                                            - -
                                                            -
                                                            - -
                                                            -
                                                            - -
                                                            -
                                                            - -
                                                            -
                                                            - -
                                                            -
                                                            - -
                                                            -
                                                            -
                                                            -`; - -exports[`csr snapshot test > csr test packages\\components\\tooltip\\_example\\trigger.tsx 1`] = ` -
                                                            -
                                                            -
                                                            - -
                                                            -
                                                            -
                                                            -
                                                            - -
                                                            -
                                                            -
                                                            -
                                                            - -
                                                            -
                                                            - -
                                                            -
                                                            -
                                                            -`; - -exports[`csr snapshot test > csr test packages\\components\\transfer\\_example\\base.tsx 1`] = ` -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - - - 0 / 19 项 - -
                                                            - -
                                                            -
                                                            -
                                                            -
                                                            - - - - - - - - - - - - - - - - - - - -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - - - - - - - -
                                                            -
                                                            - - - - - - - -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - - - 0 / 1 项 - -
                                                            - -
                                                            -
                                                            -
                                                            -
                                                            - -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -`; - -exports[`csr snapshot test > csr test packages\\components\\transfer\\_example\\checked.tsx 1`] = ` -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - - - 3 / 20 项 - -
                                                            - -
                                                            -
                                                            -
                                                            -
                                                            - - - - - - - - - - - - - - - - - - - - -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - -
                                                            - - - - - - - -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - - - 0 / 0 项 - -
                                                            - -
                                                            -
                                                            -
                                                            -
                                                            - - 暂无数据 - -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -`; - -exports[`csr snapshot test > csr test packages\\components\\transfer\\_example\\custom.tsx 1`] = ` -
                                                            - -
                                                            -`; - -exports[`csr snapshot test > csr test packages\\components\\transfer\\_example\\custom-render.tsx 1`] = ` -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - - - 0 / 20 项 - -
                                                            - -
                                                            -
                                                            -
                                                            -
                                                            - - - - - - - - - - - - - - - - - - - - -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - - - - - - - -
                                                            -
                                                            - - - - - - - -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - - - 0 / 0 项 - -
                                                            - -
                                                            -
                                                            -
                                                            -
                                                            - - 暂无数据 - -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -`; - -exports[`csr snapshot test > csr test packages\\components\\transfer\\_example\\empty.tsx 1`] = ` -
                                                            -
                                                            -

                                                            - 默认暂无数据 -

                                                            -
                                                            -
                                                            -
                                                            -
                                                            - - - 0 / 0 项 - -
                                                            - -
                                                            -
                                                            -
                                                            -
                                                            - - 暂无数据 - -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - - - - - - - -
                                                            -
                                                            - - - - - - - -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - - - 0 / 0 项 - -
                                                            - -
                                                            -
                                                            -
                                                            -
                                                            - - 暂无数据 - -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -

                                                            - 自定义暂无数据 -

                                                            -
                                                            -
                                                            -
                                                            -
                                                            - - - 0 / 0 项 - -
                                                            - -
                                                            -
                                                            -
                                                            -
                                                            - - No Source - -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - - - - - - - -
                                                            -
                                                            - - - - - - - -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - - - 0 / 0 项 - -
                                                            - -
                                                            -
                                                            -
                                                            -
                                                            - No Target -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -`; - -exports[`csr snapshot test > csr test packages\\components\\transfer\\_example\\pagination.tsx 1`] = ` -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - - - 0 / 20 项 - -
                                                            - -
                                                            -
                                                            -
                                                            -
                                                            - - - - - - - - - - -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - - - - - -
                                                            -
                                                            - 跳至 -
                                                            -
                                                            -
                                                            -
                                                            - -
                                                            -
                                                            -
                                                            - - - / 2 页 - - -
                                                            -
                                                            -
                                                            - - - - - -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - - - - - - - -
                                                            -
                                                            - - - - - - - -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - - - 0 / 0 项 - -
                                                            - -
                                                            -
                                                            -
                                                            -
                                                            - - 暂无数据 - -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - - - - - -
                                                            -
                                                            - 跳至 -
                                                            -
                                                            -
                                                            -
                                                            - -
                                                            -
                                                            -
                                                            - - - / 1 页 - - -
                                                            -
                                                            -
                                                            - - - - - -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -`; - -exports[`csr snapshot test > csr test packages\\components\\transfer\\_example\\search.tsx 1`] = ` -
                                                            - -
                                                            -`; - -exports[`csr snapshot test > csr test packages\\components\\transfer\\_example\\tree.tsx 1`] = ` -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - - - 0 / 5 项 - -
                                                            - -
                                                            -
                                                            -
                                                            -
                                                            - 暂无数据 -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - - - - - - - -
                                                            -
                                                            - - - - - - - -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - - - 0 / 0 项 - -
                                                            - -
                                                            -
                                                            -
                                                            -
                                                            - - 暂无数据 - -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -`; - -exports[`csr snapshot test > csr test packages\\components\\tree\\_example\\activable.tsx 1`] = ` -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - -
                                                            -
                                                            -
                                                            - -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - -
                                                            -
                                                            -
                                                            - -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - -
                                                            -
                                                            -
                                                            - -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - 暂无数据 -
                                                            -
                                                            -
                                                            -
                                                            -`; - -exports[`csr snapshot test > csr test packages\\components\\tree\\_example\\base.tsx 1`] = ` -
                                                            -
                                                            - 暂无数据 -
                                                            -
                                                            -`; - -exports[`csr snapshot test > csr test packages\\components\\tree\\_example\\checkable.tsx 1`] = ` -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - -
                                                            -
                                                            -
                                                            - -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - -
                                                            -
                                                            -
                                                            - -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - -
                                                            -
                                                            -
                                                            -
                                                            - - - -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - 暂无数据 -
                                                            -
                                                            -
                                                            -
                                                            -`; - -exports[`csr snapshot test > csr test packages\\components\\tree\\_example\\controlled.tsx 1`] = ` -
                                                            -
                                                            -
                                                            -
                                                            - - - checked: - - -
                                                            -
                                                            - -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - - - expanded: - - -
                                                            -
                                                            - -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - - - actived: - - -
                                                            -
                                                            - -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - 暂无数据 -
                                                            -
                                                            -
                                                            -
                                                            -`; - -exports[`csr snapshot test > csr test packages\\components\\tree\\_example\\disabled.tsx 1`] = ` -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - -
                                                            -
                                                            -
                                                            - -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - 暂无数据 -
                                                            -
                                                            -
                                                            -
                                                            -`; - -exports[`csr snapshot test > csr test packages\\components\\tree\\_example\\draggable.tsx 1`] = ` -
                                                            -
                                                            -
                                                            -
                                                            - 暂无数据 -
                                                            -
                                                            -
                                                            -
                                                            -`; - -exports[`csr snapshot test > csr test packages\\components\\tree\\_example\\empty.tsx 1`] = ` -
                                                            -
                                                            -
                                                            -
                                                            - 暂无数据 -
                                                            -
                                                            -
                                                            -
                                                            - 😊 空数据(string) -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - 😊 空数据( empty props ) -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -`; - -exports[`csr snapshot test > csr test packages\\components\\tree\\_example\\expand-all.tsx 1`] = ` -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - -
                                                            -
                                                            -
                                                            - -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - -
                                                            -
                                                            -
                                                            - -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - -
                                                            -
                                                            -
                                                            - -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - 暂无数据 -
                                                            -
                                                            -
                                                            -
                                                            -`; - -exports[`csr snapshot test > csr test packages\\components\\tree\\_example\\expand-level.tsx 1`] = ` -
                                                            -
                                                            - 暂无数据 -
                                                            -
                                                            -`; - -exports[`csr snapshot test > csr test packages\\components\\tree\\_example\\expand-mutex.tsx 1`] = ` -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - -
                                                            -
                                                            -
                                                            - -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - -
                                                            -
                                                            -
                                                            - -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - 暂无数据 -
                                                            -
                                                            -
                                                            -
                                                            -`; - -exports[`csr snapshot test > csr test packages\\components\\tree\\_example\\filter.tsx 1`] = ` -
                                                            -
                                                            -
                                                            -
                                                            - - - filter: - - -
                                                            -
                                                            - -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - 暂无数据 -
                                                            -
                                                            -
                                                            -
                                                            - - - filter: - - -
                                                            -
                                                            - -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - 暂无数据 -
                                                            -
                                                            -
                                                            -
                                                            -`; - -exports[`csr snapshot test > csr test packages\\components\\tree\\_example\\icon.tsx 1`] = ` -
                                                            -
                                                            -
                                                            -

                                                            - render 1: -

                                                            -
                                                            -
                                                            -
                                                            - 暂无数据 -
                                                            -
                                                            -
                                                            -

                                                            - render 2: -

                                                            -
                                                            -
                                                            -
                                                            - 暂无数据 -
                                                            -
                                                            -
                                                            -
                                                            -`; - -exports[`csr snapshot test > csr test packages\\components\\tree\\_example\\label.tsx 1`] = ` -
                                                            -
                                                            - 暂无数据 -
                                                            -
                                                            -`; - -exports[`csr snapshot test > csr test packages\\components\\tree\\_example\\lazy.tsx 1`] = ` -
                                                            -
                                                            - 暂无数据 -
                                                            -
                                                            -`; - -exports[`csr snapshot test > csr test packages\\components\\tree\\_example\\line.tsx 1`] = ` -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - -
                                                            -
                                                            -
                                                            - -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - -
                                                            -
                                                            -
                                                            - -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - 暂无数据 -
                                                            -
                                                            -
                                                            -

                                                            - render -

                                                            -
                                                            -
                                                            -
                                                            - 暂无数据 -
                                                            -
                                                            -
                                                            -
                                                            -`; - -exports[`csr snapshot test > csr test packages\\components\\tree\\_example\\load.tsx 1`] = ` -
                                                            -
                                                            - 暂无数据 -
                                                            -
                                                            -`; - -exports[`csr snapshot test > csr test packages\\components\\tree\\_example\\operations.tsx 1`] = ` -
                                                            -
                                                            -
                                                            -

                                                            - render: -

                                                            -
                                                            -
                                                            -
                                                            - 暂无数据 -
                                                            -
                                                            -
                                                            -

                                                            - api: -

                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - -
                                                            -
                                                            -
                                                            - -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - -
                                                            -
                                                            -
                                                            - -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - - - filter: - - -
                                                            -
                                                            - -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - 暂无数据 -
                                                            -
                                                            -
                                                            -

                                                            - api: -

                                                            -
                                                            -
                                                            -
                                                            -
                                                            - -
                                                            -
                                                            - -
                                                            -
                                                            - -
                                                            -
                                                            - -
                                                            -
                                                            - -
                                                            -
                                                            - -
                                                            -
                                                            - -
                                                            -
                                                            - -
                                                            -
                                                            - -
                                                            -
                                                            - -
                                                            -
                                                            - -
                                                            -
                                                            - -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -`; - -exports[`csr snapshot test > csr test packages\\components\\tree\\_example\\state.tsx 1`] = ` -
                                                            -
                                                            -
                                                            -

                                                            - state: -

                                                            -
                                                            -
                                                            -
                                                            - 暂无数据 -
                                                            -
                                                            -
                                                            -

                                                            - api: -

                                                            -
                                                            -
                                                            -
                                                            - -
                                                            -
                                                            -
                                                            -
                                                            -`; - -exports[`csr snapshot test > csr test packages\\components\\tree\\_example\\sync.tsx 1`] = ` -
                                                            -
                                                            -
                                                            -
                                                            - - - checked: - - -
                                                            -
                                                            - -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - - - expanded: - - -
                                                            -
                                                            - -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - - - actived: - - -
                                                            -
                                                            - -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - 暂无数据 -
                                                            -
                                                            -
                                                            -
                                                            -`; - -exports[`csr snapshot test > csr test packages\\components\\tree\\_example\\vscroll.tsx 1`] = ` -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - -
                                                            -
                                                            -
                                                            - -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - -
                                                            -
                                                            -
                                                            - -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - -
                                                            -
                                                            -
                                                            - 暂无数据 -
                                                            -
                                                            -
                                                            -
                                                            -`; - -exports[`csr snapshot test > csr test packages\\components\\tree-select\\_example\\base.tsx 1`] = ` -
                                                            -
                                                            -
                                                            -
                                                            - - - - - - -
                                                            -
                                                            -
                                                            -
                                                            -`; - -exports[`csr snapshot test > csr test packages\\components\\tree-select\\_example\\collapsed.tsx 1`] = ` -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - - 广州市 - - - - - - -
                                                            -
                                                            - - + - 1 - -
                                                            -
                                                            - - - - - - - -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - - 广州市 - - - - - - -
                                                            -
                                                            - - 更多... - -
                                                            -
                                                            - - - - - - - -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -`; - -exports[`csr snapshot test > csr test packages\\components\\tree-select\\_example\\filterable.tsx 1`] = ` -
                                                            -
                                                            -
                                                            -
                                                            - - -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - - - - - - -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - - - 请选择 - - - - - - -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -`; - -exports[`csr snapshot test > csr test packages\\components\\tree-select\\_example\\lazy.tsx 1`] = ` -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - - - - - - -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -`; - -exports[`csr snapshot test > csr test packages\\components\\tree-select\\_example\\multiple.tsx 1`] = ` -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - - 广州市 - - - - - - -
                                                            -
                                                            - - 深圳市 - - - - - - -
                                                            -
                                                            - - - - - - - -
                                                            -
                                                            -
                                                            -
                                                            -`; - -exports[`csr snapshot test > csr test packages\\components\\tree-select\\_example\\panelContent.tsx 1`] = ` -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - - - - - - -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -`; - -exports[`csr snapshot test > csr test packages\\components\\tree-select\\_example\\prefix.tsx 1`] = ` -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - - - - - - - - - - - - -
                                                            - - - - - - -
                                                            -
                                                            -
                                                            -
                                                            -`; - -exports[`csr snapshot test > csr test packages\\components\\tree-select\\_example\\prefixsuffix.tsx 1`] = ` -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - - - - - - - - - - - - -
                                                            - - - - - - -
                                                            -
                                                            -
                                                            -
                                                            -`; - -exports[`csr snapshot test > csr test packages\\components\\tree-select\\_example\\props.tsx 1`] = ` -
                                                            -
                                                            -
                                                            -
                                                            - - - - - - -
                                                            -
                                                            -
                                                            -
                                                            -`; - -exports[`csr snapshot test > csr test packages\\components\\tree-select\\_example\\valuedisplay.tsx 1`] = ` -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - 广州市(guangzhou) -
                                                            - - - - - - -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - - 广州市 - ( - guangzhou - ) - - - - - - -
                                                            -
                                                            - - 深圳市 - ( - shenzhen - ) - - - - - - -
                                                            -
                                                            - - - - - - - -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -`; - -exports[`csr snapshot test > csr test packages\\components\\tree-select\\_example\\valuetype.tsx 1`] = ` -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - - - - - - -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - - 广州市 - - - - - - -
                                                            -
                                                            - - 深圳市 - - - - - - -
                                                            -
                                                            - - - - - - - -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -`; - -exports[`csr snapshot test > csr test packages\\components\\typography\\_example\\base.tsx 1`] = ` -
                                                            -

                                                            - What is TDesign -

                                                            - - - TDesign is an enterprise-level design system accumulated by Tencent's various business teams. - - -
                                                            - - - TDesign features a unified design values, consistent design language, and visual style, helping users form continuous and coherent perceptions of the experience. - - - - Based on this, TDesign offers out-of-the-box UI component libraries, design guidelines, and design assets, elegantly and efficiently freeing design and development from repetitive tasks. Simultaneously, it facilitates easy extension on top of TDesign, enabling a better alignment with business requirements. -
                                                            -

                                                            - Comprehensive -

                                                            -
                                                            - TDesign Support - - - Vue 2 - - - , - - - Vue 3 - - - , - - - React - - - , components for Desktop Application and - - - Vue 3 - - - , - - - Wechat MiniProgram - - - components for Mobile Application. -
                                                            -
                                                            -
                                                            -
                                                            -
                                                              -
                                                            • - Features -
                                                            • -
                                                            • - Comprehensive -
                                                                -
                                                              • - Consistency -
                                                              • -
                                                              • - Usability -
                                                              • -
                                                              -
                                                            • -
                                                            • - Join TDesign -
                                                            • -
                                                            -
                                                              -
                                                            1. - Features -
                                                            2. -
                                                            3. - Comprehensive -
                                                                -
                                                              1. - Consistency -
                                                              2. -
                                                              3. - Usability -
                                                              4. -
                                                              -
                                                            4. -
                                                            5. - Join TDesign -
                                                            6. -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -`; - -exports[`csr snapshot test > csr test packages\\components\\typography\\_example\\copyable.tsx 1`] = ` -
                                                            - - This is a copyable text. - - -
                                                            -
                                                            - - - - This is a copyable long text. - TDesign was founded with the principles of open-source collaboration from the beginning. The collaboration scheme discussion, component design, and API design, including source code, are fully open within the company, garnering widespread attention from internal developers and designers. TDesign follows an equal, open, and strict policy, regardless of the participants' roles. - - - - ... - - - - -
                                                            - -
                                                            - - This is a copyable long text with custom suffix. - - -
                                                            -`; - -exports[`csr snapshot test > csr test packages\\components\\typography\\_example\\ellipsis.tsx 1`] = ` -
                                                            -
                                                            - - - - TDesign was founded with the principles of open-source collaboration from the beginning. The collaboration scheme discussion, component design, and API design, including source code, are fully open within the company, garnering widespread attention from internal developers and designers. TDesign follows an equal, open, and strict policy, regardless of the participants' roles. - - - - ... - - - - -
                                                            -
                                                            - - - - TDesign was founded with the principles of open-source collaboration from the beginning. The collaboration scheme discussion, component design, and API design, including source code, are fully open within the company, garnering widespread attention from internal developers and designers. TDesign follows an equal, open, and strict policy, regardless of the participants' roles. - - - - ... - - - - - - -
                                                            -
                                                            - - - - TDesign was founded with the principles of open-source collaboration from the beginning. The collaboration scheme discussion, component design, and API design, including source code, are fully open within the company, garnering widespread attention from internal developers and designers. TDesign follows an equal, open, and strict policy, regardless of the participants' roles. - - - - - ... - - - - - -
                                                            -
                                                            - - - - TDesign was founded with the principles of open-source collaboration from the beginning. The collaboration scheme discussion, component design, and API design, including source code, are fully open within the company, garnering widespread attention from internal developers and designers. TDesign follows an equal, open, and strict policy, regardless of the participants' roles. - - - - ... - - - - - - - - - - - - -
                                                            -
                                                            -`; - -exports[`csr snapshot test > csr test packages\\components\\typography\\_example\\text.tsx 1`] = ` -
                                                            -
                                                            -
                                                            - - TDesign (primary) - -
                                                            -
                                                            - - TDesign (secondary) - -
                                                            -
                                                            - - TDesign (disabled) - -
                                                            -
                                                            - - TDesign (success) - -
                                                            -
                                                            - - TDesign (warning) - -
                                                            -
                                                            - - TDesign (error) - -
                                                            -
                                                            - - - TDesign (mark) - - -
                                                            -
                                                            - - - TDesign (code) - - -
                                                            -
                                                            - - - TDesign (keyboard) - - -
                                                            -
                                                            - - - TDesign (underline) - - -
                                                            -
                                                            - - - TDesign (delete) - - -
                                                            -
                                                            - - - TDesign (strong) - - -
                                                            -
                                                            - - - TDesign (italic) - - -
                                                            -
                                                            -
                                                            -`; - -exports[`csr snapshot test > csr test packages\\components\\typography\\_example\\title.tsx 1`] = ` -
                                                            -

                                                            - H1. TDesign -

                                                            -

                                                            - H2. TDesign -

                                                            -

                                                            - H3. TDesign -

                                                            -

                                                            - H4. TDesign -

                                                            -
                                                            - H5. TDesign -
                                                            -
                                                            - H6. TDesign -
                                                            -
                                                            -`; - -exports[`csr snapshot test > csr test packages\\components\\upload\\_example\\base.tsx 1`] = ` -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - - -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - -
                                                            -
                                                            - -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - -
                                                            -
                                                            - -
                                                            - - 要求文件大小在 1M 以内 - -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - -
                                                            -
                                                            - -
                                                            - -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - -
                                                            -
                                                            - -
                                                            - - 文件上传失败示例 - -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -`; - -exports[`csr snapshot test > csr test packages\\components\\upload\\_example\\custom-drag.tsx 1`] = ` -
                                                            -
                                                            -
                                                            - -
                                                            -
                                                            -
                                                            - -
                                                            -
                                                            - -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -`; - -exports[`csr snapshot test > csr test packages\\components\\upload\\_example\\draggable.tsx 1`] = ` -
                                                            -
                                                            -
                                                            -
                                                            - 是否自动上传: - -
                                                            -
                                                            -
                                                            -
                                                            - - -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - -
                                                            -
                                                            -
                                                            - - 点击上传 - - -   /   - 拖拽到此区域 - -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - -
                                                            -
                                                            -
                                                            -
                                                            - - 默认文件 - - - - -
                                                            - - 文件大小 - : - 1.0 KB - - - 上传日期 - : - 2022-09-25 - - -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -`; - -exports[`csr snapshot test > csr test packages\\components\\upload\\_example\\file-flow-list.tsx 1`] = ` -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - -
                                                            -
                                                            - -
                                                            -
                                                            - -
                                                            -
                                                            - -
                                                            -
                                                            - -
                                                            -
                                                            - -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - -
                                                            -
                                                            -
                                                            - -
                                                            - - 支持批量上传文件,文件格式不限,最多只能上传 10 份文件 - -
                                                            -
                                                            -
                                                            - 点击上方“选择文件”或将文件拖拽到此区域 -
                                                            -
                                                            -
                                                            -
                                                            - - 取消上传 - -
                                                            -
                                                            - - 点击上传 - -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -`; - -exports[`csr snapshot test > csr test packages\\components\\upload\\_example\\image.tsx 1`] = ` -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - -
                                                            -
                                                            - -
                                                            -
                                                            - -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - -
                                                            -
                                                              -
                                                            • -
                                                              - - - - - -

                                                              - 请选择图片 -

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

                                                              - 点击上传图片 -

                                                              -
                                                              -
                                                            • -
                                                            -
                                                            - - 单张图片文件上传(上传失败状态演示) - -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - -
                                                            -
                                                              -
                                                            • -
                                                              -
                                                              - -
                                                              -
                                                              -
                                                              - - - - - - - - -
                                                              -
                                                              - 图片加载中 -
                                                              -
                                                              -
                                                              -
                                                              -
                                                              - - - - - - - - - - - - - - - - - - - - -
                                                              -
                                                              - - default.jpeg - -
                                                            • -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - -
                                                            -
                                                              -
                                                            • -
                                                              - - - - - -

                                                              - 点击上传图片 -

                                                              -
                                                              -
                                                            • -
                                                            -
                                                            - - 允许选择多张图片文件上传,最多只能上传 3 张图片 - -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -`; - -exports[`csr snapshot test > csr test packages\\components\\upload\\_example\\img-flow-list.tsx 1`] = ` -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - AutoUpload - -
                                                            -
                                                            -
                                                            - -
                                                            -
                                                            - -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - -
                                                            -
                                                            -
                                                            - -
                                                            - - 支持批量上传图片文件 - -
                                                            -
                                                            -
                                                              -
                                                            • -
                                                              -
                                                              - -
                                                              -
                                                              -
                                                              - - - - - - - - -
                                                              -
                                                              -
                                                              -
                                                              -
                                                              - - - - - - - - - - - - - - - - - - - - -
                                                              -
                                                              -

                                                              - - - - demo…-1.png -

                                                              -
                                                            • -
                                                            • -
                                                              -
                                                              - -
                                                              -
                                                              -
                                                              - - - - - - - - -
                                                              -
                                                              -
                                                              -
                                                              -
                                                              - - - - - - - - - - - - - - - - - - - - -
                                                              -
                                                              -

                                                              - - - - avatar.jpg -

                                                              -
                                                            • -
                                                            -
                                                            -
                                                            -
                                                            - - 取消上传 - -
                                                            - -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - - Different Status Images - -
                                                            -
                                                            -
                                                            -
                                                            - -
                                                            -
                                                            -
                                                            - -
                                                            -
                                                            -
                                                            -
                                                              -
                                                            • -
                                                              -
                                                              - -
                                                              -
                                                              -
                                                              - - - - - - - - -
                                                              -
                                                              -
                                                              -
                                                              -
                                                              - - - - - - - - - - - - - - - - - - - - -
                                                              -
                                                              -

                                                              - - - - loading.svg -

                                                              -
                                                            • -
                                                            • -
                                                              -
                                                              - -
                                                              -
                                                              -
                                                              - - - - - - - - -
                                                              -
                                                              -
                                                              -
                                                              -
                                                              - - - - - - - - - - - - - - - - - - - - -
                                                              -
                                                              -

                                                              - - - - loading.svg -

                                                              -
                                                            • -
                                                            • -
                                                              -
                                                              -
                                                              - - -
                                                              - - -
                                                              -

                                                              - 上传中 - 10% -

                                                              - -
                                                              - - - - - - - - - -
                                                              - -

                                                              - loading.svg -

                                                              - -
                                                            • -
                                                              -
                                                              - - - -

                                                              - 上传失败 -

                                                              -
                                                              -
                                                              - - - - - - - - - -
                                                              -
                                                              -

                                                              - loading.svg -

                                                              -
                                                            • - - - - - - - -`; - -exports[`csr snapshot test > csr test packages\\components\\upload\\_example\\request-method.tsx 1`] = ` -
                                                              -
                                                              -
                                                              -
                                                              - - -
                                                              -
                                                              -
                                                              -
                                                              -
                                                              - -
                                                              -
                                                              - -
                                                              - - 自定义上传方法需要返回成功或失败信息 - -
                                                              -
                                                              -
                                                              -
                                                              -
                                                              -`; - -exports[`csr snapshot test > csr test packages\\components\\upload\\_example\\single-custom.tsx 1`] = ` -
                                                              -
                                                              -
                                                              -
                                                              - -
                                                              - -
                                                              - - 上传文件大小在 1M 以内 - -
                                                              -
                                                              -
                                                              -
                                                              -`; - -exports[`csr snapshot test > csr test packages\\components\\upload\\_example\\single-input.tsx 1`] = ` -
                                                              -
                                                              -
                                                              -
                                                              -
                                                              - -
                                                              -
                                                              - -
                                                              -
                                                              -
                                                              -
                                                              -
                                                              -
                                                              -
                                                              -
                                                              - -
                                                              -
                                                              -
                                                              - - 请选择文件 - -
                                                              -
                                                              -
                                                              - -
                                                              -
                                                              -
                                                              -
                                                              -
                                                              -
                                                              -`; - exports[`ssr snapshot test > ssr test packages/components/affix/_example/base.tsx 1`] = `"
                                                              "`; exports[`ssr snapshot test > ssr test packages/components/affix/_example/container.tsx 1`] = `"
                                                              "`; @@ -298943,7 +149633,7 @@ exports[`ssr snapshot test > ssr test packages/components/breadcrumb/_example/ba exports[`ssr snapshot test > ssr test packages/components/breadcrumb/_example/custom.tsx 1`] = `"
                                                              页面1>>
                                                              页面2>>
                                                              页面3>>
                                                              页面1/////
                                                              页面2/////
                                                              页面3/////
                                                              "`; -exports[`ssr snapshot test > ssr test packages/components/breadcrumb/_example/custom-ellipsis.tsx 1`] = `"
                                                              页面1
                                                              页面2
                                                              页面5
                                                              页面1
                                                              页面2
                                                              页面5
                                                              "`; +exports[`ssr snapshot test > ssr test packages/components/breadcrumb/_example/custom-ellipsis.tsx 1`] = `"
                                                              页面1
                                                              页面2
                                                              页面5
                                                              页面1
                                                              页面2
                                                              页面5
                                                              "`; exports[`ssr snapshot test > ssr test packages/components/breadcrumb/_example/ellipsis.tsx 1`] = `"
                                                              页面1
                                                              页面2
                                                              页面5
                                                              页面1
                                                              页面2
                                                              页面5
                                                              "`; @@ -298961,17 +149651,17 @@ exports[`ssr snapshot test > ssr test packages/components/button/_example/base.t exports[`ssr snapshot test > ssr test packages/components/button/_example/block.tsx 1`] = `"
                                                              "`; -exports[`ssr snapshot test > ssr test packages/components/button/_example/custom-element.tsx 1`] = `""`; +exports[`ssr snapshot test > ssr test packages/components/button/_example/custom-element.tsx 1`] = `""`; exports[`ssr snapshot test > ssr test packages/components/button/_example/ghost.tsx 1`] = `"
                                                              "`; -exports[`ssr snapshot test > ssr test packages/components/button/_example/icon.tsx 1`] = `"
                                                              "`; +exports[`ssr snapshot test > ssr test packages/components/button/_example/icon.tsx 1`] = `"
                                                              "`; exports[`ssr snapshot test > ssr test packages/components/button/_example/shape.tsx 1`] = `"
                                                              "`; exports[`ssr snapshot test > ssr test packages/components/button/_example/size.tsx 1`] = `"
                                                              "`; -exports[`ssr snapshot test > ssr test packages/components/button/_example/status.tsx 1`] = `"
                                                              填充按钮
                                                              "`; +exports[`ssr snapshot test > ssr test packages/components/button/_example/status.tsx 1`] = `"
                                                              填充按钮
                                                              "`; exports[`ssr snapshot test > ssr test packages/components/button/_example/theme.tsx 1`] = `"
                                                              "`; @@ -299077,7 +149767,7 @@ exports[`ssr snapshot test > ssr test packages/components/checkbox/_example/grou exports[`ssr snapshot test > ssr test packages/components/checkbox/_example/link.tsx 1`] = `"
                                                              "`; -exports[`ssr snapshot test > ssr test packages/components/checkbox/_example/max.tsx 1`] = `"
                                                              最多可选:
                                                              选中值: 北京
                                                              "`; +exports[`ssr snapshot test > ssr test packages/components/checkbox/_example/max.tsx 1`] = `"
                                                              最多可选:
                                                              选中值: 北京
                                                              "`; exports[`ssr snapshot test > ssr test packages/components/collapse/_example/base.tsx 1`] = `"
                                                              这是一个折叠标题
                                                              这部分是每个折叠面板折叠或展开的内容,可根据不同业务或用户的使用诉求,进行自定义填充。可以是纯文本、图文、子列表等内容形式。
                                                              设置默认展开项
                                                              这部分是每个折叠面板折叠或展开的内容,可根据不同业务或用户的使用诉求,进行自定义填充。可以是纯文本、图文、子列表等内容形式。
                                                              自定义折叠面板内容
                                                              Vue
                                                              React
                                                              当前折叠面板折叠时,销毁面板内容
                                                              嵌套使用折叠面板
                                                              这是一个折叠标题
                                                              这部分是每个折叠面板折叠或展开的内容,可根据不同业务或用户的使用诉求,进行自定义填充。可以是纯文本、图文、子列表等内容形式。
                                                              这是一个折叠标题
                                                              这部分是每个折叠面板折叠或展开的内容,可根据不同业务或用户的使用诉求,进行自定义填充。可以是纯文本、图文、子列表等内容形式。
                                                              "`; @@ -299155,7 +149845,7 @@ exports[`ssr snapshot test > ssr test packages/components/date-picker/_example/m exports[`ssr snapshot test > ssr test packages/components/date-picker/_example/multiple.tsx 1`] = `"
                                                              2024-10-01
                                                              2024-10-24
                                                              2024-50周
                                                              2024-51周
                                                              2022
                                                              2023
                                                              2024
                                                              "`; -exports[`ssr snapshot test > ssr test packages/components/date-picker/_example/panel.tsx 1`] = `"
                                                              30
                                                              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
                                                              5
                                                              6
                                                              7
                                                              8
                                                              9
                                                              10
                                                              30
                                                              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
                                                              5
                                                              6
                                                              7
                                                              8
                                                              9
                                                              10
                                                              00:00:00
                                                              30
                                                              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
                                                              5
                                                              6
                                                              7
                                                              8
                                                              9
                                                              10
                                                              28
                                                              29
                                                              30
                                                              31
                                                              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
                                                              5
                                                              6
                                                              7
                                                              30
                                                              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
                                                              5
                                                              6
                                                              7
                                                              8
                                                              9
                                                              10
                                                              00:00:00
                                                              "`; +exports[`ssr snapshot test > ssr test packages/components/date-picker/_example/panel.tsx 1`] = `"
                                                              30
                                                              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
                                                              5
                                                              6
                                                              7
                                                              8
                                                              9
                                                              10
                                                              30
                                                              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
                                                              5
                                                              6
                                                              7
                                                              8
                                                              9
                                                              10
                                                              00:00:00
                                                              30
                                                              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
                                                              5
                                                              6
                                                              7
                                                              8
                                                              9
                                                              10
                                                              28
                                                              29
                                                              30
                                                              31
                                                              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
                                                              5
                                                              6
                                                              7
                                                              30
                                                              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
                                                              5
                                                              6
                                                              7
                                                              8
                                                              9
                                                              10
                                                              00:00:00
                                                              "`; exports[`ssr snapshot test > ssr test packages/components/date-picker/_example/quarter.tsx 1`] = `"
                                                              -
                                                              "`; @@ -299275,7 +149965,7 @@ exports[`ssr snapshot test > ssr test packages/components/form/_example/custom-v exports[`ssr snapshot test > ssr test packages/components/form/_example/customized-form-controls.tsx 1`] = `"
                                                              "`; -exports[`ssr snapshot test > ssr test packages/components/form/_example/disabled.tsx 1`] = `"
                                                              请选择单张图片文件上传
                                                              提交
                                                              重置
                                                              "`; +exports[`ssr snapshot test > ssr test packages/components/form/_example/disabled.tsx 1`] = `"
                                                              请选择单张图片文件上传
                                                              提交
                                                              重置
                                                              "`; exports[`ssr snapshot test > ssr test packages/components/form/_example/error-message.tsx 1`] = `"
                                                              一句话介绍自己
                                                              "`; @@ -299351,11 +150041,11 @@ exports[`ssr snapshot test > ssr test packages/components/image/_example/fill-po exports[`ssr snapshot test > ssr test packages/components/image/_example/gallery-cover.tsx 1`] = `""`; -exports[`ssr snapshot test > ssr test packages/components/image/_example/lazy-list.tsx 1`] = `"
                                                              "`; +exports[`ssr snapshot test > ssr test packages/components/image/_example/lazy-list.tsx 1`] = `"
                                                              "`; -exports[`ssr snapshot test > ssr test packages/components/image/_example/lazy-single.tsx 1`] = `"
                                                              "`; +exports[`ssr snapshot test > ssr test packages/components/image/_example/lazy-single.tsx 1`] = `"
                                                              "`; -exports[`ssr snapshot test > ssr test packages/components/image/_example/placeholder.tsx 1`] = `"

                                                              加载中的图片

                                                              默认占位
                                                              图片加载中
                                                              自定义占位

                                                              加载失败的图片

                                                              默认错误
                                                              图片加载中
                                                              自定义错误
                                                              图片加载中
                                                              "`; +exports[`ssr snapshot test > ssr test packages/components/image/_example/placeholder.tsx 1`] = `"

                                                              加载中的图片

                                                              默认占位
                                                              图片加载中
                                                              自定义占位

                                                              加载失败的图片

                                                              默认错误
                                                              图片加载中
                                                              自定义错误
                                                              图片加载中
                                                              "`; exports[`ssr snapshot test > ssr test packages/components/image/_example/shape.tsx 1`] = `"
                                                              图片加载中
                                                              square
                                                              图片加载中
                                                              round
                                                              图片加载中
                                                              circle
                                                              "`; @@ -299409,27 +150099,27 @@ exports[`ssr snapshot test > ssr test packages/components/input-adornment/_examp exports[`ssr snapshot test > ssr test packages/components/input-adornment/_example/text.tsx 1`] = `"
                                                              http://
                                                              请输入
                                                              .com
                                                              http://
                                                              .com
                                                              "`; -exports[`ssr snapshot test > ssr test packages/components/input-number/_example/align.tsx 1`] = `"
                                                              "`; +exports[`ssr snapshot test > ssr test packages/components/input-number/_example/align.tsx 1`] = `"
                                                              "`; -exports[`ssr snapshot test > ssr test packages/components/input-number/_example/auto-width.tsx 1`] = `"
                                                              请输入
                                                              "`; +exports[`ssr snapshot test > ssr test packages/components/input-number/_example/auto-width.tsx 1`] = `"
                                                              请输入
                                                              "`; -exports[`ssr snapshot test > ssr test packages/components/input-number/_example/center.tsx 1`] = `"
                                                              请输入
                                                              "`; +exports[`ssr snapshot test > ssr test packages/components/input-number/_example/center.tsx 1`] = `"
                                                              请输入
                                                              "`; -exports[`ssr snapshot test > ssr test packages/components/input-number/_example/default.tsx 1`] = `"
                                                              "`; +exports[`ssr snapshot test > ssr test packages/components/input-number/_example/default.tsx 1`] = `"
                                                              "`; -exports[`ssr snapshot test > ssr test packages/components/input-number/_example/format.tsx 1`] = `"
                                                              "`; +exports[`ssr snapshot test > ssr test packages/components/input-number/_example/format.tsx 1`] = `"
                                                              "`; -exports[`ssr snapshot test > ssr test packages/components/input-number/_example/large-number.tsx 1`] = `"
                                                              "`; +exports[`ssr snapshot test > ssr test packages/components/input-number/_example/large-number.tsx 1`] = `"
                                                              "`; -exports[`ssr snapshot test > ssr test packages/components/input-number/_example/left.tsx 1`] = `"
                                                              "`; +exports[`ssr snapshot test > ssr test packages/components/input-number/_example/left.tsx 1`] = `"
                                                              "`; exports[`ssr snapshot test > ssr test packages/components/input-number/_example/normal.tsx 1`] = `"
                                                              机器:
                                                              金额:
                                                              "`; -exports[`ssr snapshot test > ssr test packages/components/input-number/_example/size.tsx 1`] = `"
                                                              "`; +exports[`ssr snapshot test > ssr test packages/components/input-number/_example/size.tsx 1`] = `"
                                                              "`; -exports[`ssr snapshot test > ssr test packages/components/input-number/_example/status.tsx 1`] = `"
                                                              这是普通文本提示
                                                              校验通过文本提示
                                                              校验不通过文本提示
                                                              校验存在严重问题文本提示
                                                              "`; +exports[`ssr snapshot test > ssr test packages/components/input-number/_example/status.tsx 1`] = `"
                                                              这是普通文本提示
                                                              校验通过文本提示
                                                              校验不通过文本提示
                                                              校验存在严重问题文本提示
                                                              "`; -exports[`ssr snapshot test > ssr test packages/components/input-number/_example/step.tsx 1`] = `"
                                                              "`; +exports[`ssr snapshot test > ssr test packages/components/input-number/_example/step.tsx 1`] = `"
                                                              "`; exports[`ssr snapshot test > ssr test packages/components/layout/_example/aside.tsx 1`] = `"

                                                              侧边导航布局

                                                              Content
                                                              Copyright @ 2019-2020 Tencent. All Rights Reserved
                                                              "`; @@ -299489,23 +150179,23 @@ exports[`ssr snapshot test > ssr test packages/components/loading/_example/text. exports[`ssr snapshot test > ssr test packages/components/loading/_example/wrap.tsx 1`] = `"
                                                              this is loading component
                                                              this is loading component
                                                              this is loading component
                                                              this is loading component
                                                              this is loading component
                                                              "`; -exports[`ssr snapshot test > ssr test packages/components/menu/_example/closable-side.tsx 1`] = `"
                                                              • 仪表盘
                                                              • 资源列表
                                                              • 调度平台
                                                              • 精准监控
                                                              • 根目录
                                                              • 消息区
                                                              "`; +exports[`ssr snapshot test > ssr test packages/components/menu/_example/closable-side.tsx 1`] = `"
                                                              • 仪表盘
                                                              • 资源列表
                                                              • 调度平台
                                                              • 精准监控
                                                              • 根目录
                                                              • 消息区
                                                              "`; -exports[`ssr snapshot test > ssr test packages/components/menu/_example/custom-header.tsx 1`] = `"
                                                              • 菜单1
                                                              • 菜单2
                                                              • 菜单3
                                                              • 菜单4
                                                              • 菜单1
                                                              • 菜单2
                                                              • 菜单3
                                                              • 菜单4
                                                              "`; +exports[`ssr snapshot test > ssr test packages/components/menu/_example/custom-header.tsx 1`] = `"
                                                              • 菜单1
                                                              • 菜单2
                                                              • 菜单3
                                                              • 菜单4
                                                              • 菜单1
                                                              • 菜单2
                                                              • 菜单3
                                                              • 菜单4
                                                              "`; exports[`ssr snapshot test > ssr test packages/components/menu/_example/custom-side.tsx 1`] = `"
                                                              • 仪表盘
                                                              • 资源列表
                                                              • 视频区
                                                              • 根目录
                                                              • 调度平台
                                                              • 精准监控
                                                              • 个人中心
                                                              • 仪表盘
                                                              • 资源列表
                                                              • 视频区
                                                              • 根目录
                                                              • 调度平台
                                                              • 精准监控
                                                              • 个人中心
                                                              "`; exports[`ssr snapshot test > ssr test packages/components/menu/_example/double.tsx 1`] = `"
                                                              • 菜单1
                                                              • 菜单2
                                                              • 菜单3
                                                              • 菜单4
                                                                子菜单1
                                                                子菜单2
                                                              • 菜单1
                                                              • 菜单2
                                                              • 菜单3
                                                              • 菜单4
                                                                子菜单1
                                                                子菜单2
                                                              "`; -exports[`ssr snapshot test > ssr test packages/components/menu/_example/group-side.tsx 1`] = `"
                                                                主导航
                                                              • 仪表盘
                                                              • 组件
                                                              • 列表项
                                                                • 基础列表项
                                                                • 卡片列表项
                                                                • 筛选列表项
                                                                • 树状筛选列表项
                                                              • 表单项
                                                              • 详情页
                                                              • 结果页
                                                              • 更多
                                                              • 个人页
                                                              • 登录页
                                                              "`; +exports[`ssr snapshot test > ssr test packages/components/menu/_example/group-side.tsx 1`] = `"
                                                                主导航
                                                              • 仪表盘
                                                              • 组件
                                                              • 列表项
                                                                • 基础列表项
                                                                • 卡片列表项
                                                                • 筛选列表项
                                                                • 树状筛选列表项
                                                              • 表单项
                                                              • 详情页
                                                              • 结果页
                                                              • 更多
                                                              • 个人页
                                                              • 登录页
                                                              "`; -exports[`ssr snapshot test > ssr test packages/components/menu/_example/multi-side.tsx 1`] = `"
                                                              • 仪表盘
                                                              • 资源列表
                                                                • 菜单二
                                                              • 调度平台
                                                                • 二级菜单-1
                                                                  • 三级菜单-1
                                                                  • 三级菜单-2
                                                                  • 三级菜单-3
                                                                • 二级菜单-2
                                                              • 精准监控
                                                                • 二级菜单-1
                                                                • 二级菜单-2
                                                              • 根目录
                                                              • 消息区
                                                                • 二级菜单-1
                                                                • 二级菜单-2
                                                              • 仪表盘
                                                              • 资源列表
                                                                • 二级菜单-1
                                                                  • 三级菜单-1
                                                                  • 三级菜单-2
                                                                  • 三级菜单-3
                                                              • 调度平台
                                                                • 二级菜单-1
                                                                • 二级菜单-2
                                                              • 精准监控
                                                                • 二级菜单-1
                                                                • 二级菜单-2
                                                              • 根目录
                                                              • 消息区
                                                                • 二级菜单-1
                                                                • 二级菜单-2
                                                              "`; +exports[`ssr snapshot test > ssr test packages/components/menu/_example/multi-side.tsx 1`] = `"
                                                              • 仪表盘
                                                              • 资源列表
                                                                • 菜单二
                                                              • 调度平台
                                                                • 二级菜单-1
                                                                  • 三级菜单-1
                                                                  • 三级菜单-2
                                                                  • 三级菜单-3
                                                                • 二级菜单-2
                                                              • 精准监控
                                                                • 二级菜单-1
                                                                • 二级菜单-2
                                                              • 根目录
                                                              • 消息区
                                                                • 二级菜单-1
                                                                • 二级菜单-2
                                                              • 仪表盘
                                                              • 资源列表
                                                                • 二级菜单-1
                                                                  • 三级菜单-1
                                                                  • 三级菜单-2
                                                                  • 三级菜单-3
                                                              • 调度平台
                                                                • 二级菜单-1
                                                                • 二级菜单-2
                                                              • 精准监控
                                                                • 二级菜单-1
                                                                • 二级菜单-2
                                                              • 根目录
                                                              • 消息区
                                                                • 二级菜单-1
                                                                • 二级菜单-2
                                                              "`; exports[`ssr snapshot test > ssr test packages/components/menu/_example/multiple.tsx 1`] = `"
                                                              • 电器
                                                              • 女装
                                                              • 水果蔬菜
                                                              • 其他
                                                              • 电器
                                                              • 女装
                                                              • 水果蔬菜
                                                              • 其他
                                                              "`; exports[`ssr snapshot test > ssr test packages/components/menu/_example/popup-side.tsx 1`] = `"
                                                              • 仪表盘
                                                              • 资源列表
                                                              • 调度平台
                                                              • 精准监控
                                                              • 根目录
                                                              • 消息区
                                                              • 仪表盘
                                                              • 资源列表
                                                              • 调度平台
                                                              • 精准监控
                                                              • 根目录
                                                              • 消息区
                                                              "`; -exports[`ssr snapshot test > ssr test packages/components/menu/_example/single.tsx 1`] = `"
                                                              • 菜单1
                                                              • 菜单2
                                                              • 菜单3
                                                              • 菜单4
                                                              • 菜单1
                                                              • 菜单2
                                                              • 菜单3
                                                              • 菜单4
                                                              "`; +exports[`ssr snapshot test > ssr test packages/components/menu/_example/single.tsx 1`] = `"
                                                              • 菜单1
                                                              • 菜单2
                                                              • 菜单3
                                                              • 菜单4
                                                              • 菜单1
                                                              • 菜单2
                                                              • 菜单3
                                                              • 菜单4
                                                              "`; exports[`ssr snapshot test > ssr test packages/components/menu/_example/single-side.tsx 1`] = `"
                                                              • 仪表盘
                                                              • 资源列表
                                                              • 视频区
                                                              • 根目录
                                                              • 调度平台
                                                              • 精准监控
                                                              • 个人中心
                                                              • 仪表盘
                                                              • 资源列表
                                                              • 视频区
                                                              • 根目录
                                                              • 调度平台
                                                              • 精准监控
                                                              • 个人中心
                                                              "`; @@ -299557,7 +150247,7 @@ exports[`ssr snapshot test > ssr test packages/components/pagination/_example/mo exports[`ssr snapshot test > ssr test packages/components/pagination/_example/page-num.tsx 1`] = `"
                                                              共 645 条数据
                                                              请选择
                                                              • 1
                                                              • 2
                                                              • 3
                                                              • 4
                                                              • 5
                                                              • 33
                                                              "`; -exports[`ssr snapshot test > ssr test packages/components/pagination/_example/pagination-mini.tsx 1`] = `"
                                                              layout:
                                                              size:
                                                              "`; +exports[`ssr snapshot test > ssr test packages/components/pagination/_example/pagination-mini.tsx 1`] = `"
                                                              layout:
                                                              size:
                                                              "`; exports[`ssr snapshot test > ssr test packages/components/pagination/_example/simple.tsx 1`] = `"
                                                              共 100 条数据
                                                              请选择
                                                              跳至
                                                              / 20 页
                                                              "`; @@ -299615,7 +150305,7 @@ exports[`ssr snapshot test > ssr test packages/components/qrcode/_example/base.t exports[`ssr snapshot test > ssr test packages/components/qrcode/_example/customColor.tsx 1`] = `"
                                                              "`; -exports[`ssr snapshot test > ssr test packages/components/qrcode/_example/customSize.tsx 1`] = `"

                                                              "`; +exports[`ssr snapshot test > ssr test packages/components/qrcode/_example/customSize.tsx 1`] = `"

                                                              "`; exports[`ssr snapshot test > ssr test packages/components/qrcode/_example/customStatusRender.tsx 1`] = `"

                                                              加载中...

                                                              二维码过期

                                                              点击刷新

                                                              已扫描
                                                              "`; @@ -299747,9 +150437,9 @@ exports[`ssr snapshot test > ssr test packages/components/slider/_example/base.t exports[`ssr snapshot test > ssr test packages/components/slider/_example/disabled.tsx 1`] = `"
                                                              "`; -exports[`ssr snapshot test > ssr test packages/components/slider/_example/input-number.tsx 1`] = `"
                                                              "`; +exports[`ssr snapshot test > ssr test packages/components/slider/_example/input-number.tsx 1`] = `"
                                                              "`; -exports[`ssr snapshot test > ssr test packages/components/slider/_example/input-number-vertical.tsx 1`] = `"
                                                              "`; +exports[`ssr snapshot test > ssr test packages/components/slider/_example/input-number-vertical.tsx 1`] = `"
                                                              "`; exports[`ssr snapshot test > ssr test packages/components/slider/_example/marks.tsx 1`] = `"
                                                              0°C
                                                              12°C
                                                              37°C
                                                              0°C
                                                              8°C
                                                              37°C
                                                              50°C
                                                              70°C
                                                              "`; @@ -299843,7 +150533,7 @@ exports[`ssr snapshot test > ssr test packages/components/table/_example/custom- exports[`ssr snapshot test > ssr test packages/components/table/_example/custom-col.tsx 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
                                                              共 100 条数据
                                                              请选择
                                                              • 1
                                                              • 2
                                                              • 3
                                                              • 4
                                                              • 5
                                                              • 20
                                                              "`; -exports[`ssr snapshot test > ssr test packages/components/table/_example/custom-col-button.tsx 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
                                                              共 100 条数据
                                                              请选择
                                                              • 1
                                                              • 2
                                                              • 3
                                                              • 4
                                                              • 5
                                                              • 20
                                                              "`; +exports[`ssr snapshot test > ssr test packages/components/table/_example/custom-col-button.tsx 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
                                                              共 100 条数据
                                                              请选择
                                                              • 1
                                                              • 2
                                                              • 3
                                                              • 4
                                                              • 5
                                                              • 20
                                                              "`; exports[`ssr snapshot test > ssr test packages/components/table/_example/custom-footer.tsx 1`] = `"
                                                              申请人
                                                              审批状态
                                                              签署方式
                                                              邮箱地址
                                                              申请时间
                                                              贾明
                                                              审批通过
                                                              电子签署
                                                              w.cezkdudy@lhll.au
                                                              2022-01-01
                                                              张三
                                                              审批失败
                                                              纸质签署
                                                              r.nmgw@peurezgn.sl
                                                              2022-02-01
                                                              王芳
                                                              审批过期
                                                              纸质签署
                                                              p.cumx@rampblpa.ru
                                                              2022-03-01
                                                              表尾信息
                                                              表尾信息
                                                              表尾信息
                                                              表尾信息
                                                              表尾信息
                                                              "`; @@ -299881,7 +150571,7 @@ exports[`ssr snapshot test > ssr test packages/components/table/_example/loading exports[`ssr snapshot test > ssr test packages/components/table/_example/merge-cells.tsx 1`] = `"
                                                              申请人
                                                              申请状态
                                                              审批事项
                                                              邮箱地址
                                                              其他信息
                                                              "`; -exports[`ssr snapshot test > ssr test packages/components/table/_example/multi-header.tsx 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 packages/components/table/_example/multi-header.tsx 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 packages/components/table/_example/multiple-sort.tsx 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
                                                              "`; @@ -300011,7 +150701,7 @@ exports[`ssr snapshot test > ssr test packages/components/tooltip/_example/base. exports[`ssr snapshot test > ssr test packages/components/tooltip/_example/duration.tsx 1`] = `""`; -exports[`ssr snapshot test > ssr test packages/components/tooltip/_example/lite.tsx 1`] = `"
                                                              不可用状态下提示
                                                              "`; +exports[`ssr snapshot test > ssr test packages/components/tooltip/_example/lite.tsx 1`] = `"
                                                              不可用状态下提示
                                                              "`; exports[`ssr snapshot test > ssr test packages/components/tooltip/_example/mouse.tsx 1`] = `""`; @@ -300021,21 +150711,21 @@ exports[`ssr snapshot test > ssr test packages/components/tooltip/_example/theme exports[`ssr snapshot test > ssr test packages/components/tooltip/_example/trigger.tsx 1`] = `"
                                                              "`; -exports[`ssr snapshot test > ssr test packages/components/transfer/_example/base.tsx 1`] = `"
                                                              0 / 20 项
                                                              0 / 0 项
                                                              暂无数据
                                                              "`; +exports[`ssr snapshot test > ssr test packages/components/transfer/_example/base.tsx 1`] = `"
                                                              0 / 20 项
                                                              0 / 0 项
                                                              暂无数据
                                                              "`; -exports[`ssr snapshot test > ssr test packages/components/transfer/_example/checked.tsx 1`] = `"
                                                              3 / 20 项
                                                              0 / 0 项
                                                              暂无数据
                                                              "`; +exports[`ssr snapshot test > ssr test packages/components/transfer/_example/checked.tsx 1`] = `"
                                                              3 / 20 项
                                                              0 / 0 项
                                                              暂无数据
                                                              "`; -exports[`ssr snapshot test > ssr test packages/components/transfer/_example/custom.tsx 1`] = `""`; +exports[`ssr snapshot test > ssr test packages/components/transfer/_example/custom.tsx 1`] = `""`; -exports[`ssr snapshot test > ssr test packages/components/transfer/_example/custom-render.tsx 1`] = `"
                                                              0 / 20 项
                                                              0 / 0 项
                                                              暂无数据
                                                              "`; +exports[`ssr snapshot test > ssr test packages/components/transfer/_example/custom-render.tsx 1`] = `"
                                                              0 / 20 项
                                                              0 / 0 项
                                                              暂无数据
                                                              "`; -exports[`ssr snapshot test > ssr test packages/components/transfer/_example/empty.tsx 1`] = `"

                                                              默认暂无数据

                                                              0 / 0 项
                                                              暂无数据
                                                              0 / 0 项
                                                              暂无数据

                                                              自定义暂无数据

                                                              0 / 0 项
                                                              No Source
                                                              0 / 0 项
                                                              No Target
                                                              "`; +exports[`ssr snapshot test > ssr test packages/components/transfer/_example/empty.tsx 1`] = `"

                                                              默认暂无数据

                                                              0 / 0 项
                                                              暂无数据
                                                              0 / 0 项
                                                              暂无数据

                                                              自定义暂无数据

                                                              0 / 0 项
                                                              No Source
                                                              0 / 0 项
                                                              No Target
                                                              "`; -exports[`ssr snapshot test > ssr test packages/components/transfer/_example/pagination.tsx 1`] = `"
                                                              0 / 20 项
                                                              跳至
                                                              / 2 页
                                                              0 / 0 项
                                                              暂无数据
                                                              跳至
                                                              / 1 页
                                                              "`; +exports[`ssr snapshot test > ssr test packages/components/transfer/_example/pagination.tsx 1`] = `"
                                                              0 / 20 项
                                                              跳至
                                                              / 2 页
                                                              0 / 0 项
                                                              暂无数据
                                                              跳至
                                                              / 1 页
                                                              "`; -exports[`ssr snapshot test > ssr test packages/components/transfer/_example/search.tsx 1`] = `""`; +exports[`ssr snapshot test > ssr test packages/components/transfer/_example/search.tsx 1`] = `""`; -exports[`ssr snapshot test > ssr test packages/components/transfer/_example/tree.tsx 1`] = `"
                                                              0 / 5 项
                                                              暂无数据
                                                              0 / 0 项
                                                              暂无数据
                                                              "`; +exports[`ssr snapshot test > ssr test packages/components/transfer/_example/tree.tsx 1`] = `"
                                                              0 / 5 项
                                                              暂无数据
                                                              0 / 0 项
                                                              暂无数据
                                                              "`; exports[`ssr snapshot test > ssr test packages/components/tree/_example/activable.tsx 1`] = `"
                                                              暂无数据
                                                              "`; @@ -300101,7 +150791,7 @@ exports[`ssr snapshot test > ssr test packages/components/tree-select/_example/v exports[`ssr snapshot test > ssr test packages/components/typography/_example/base.tsx 1`] = `"

                                                              What is TDesign

                                                              TDesign is an enterprise-level design system accumulated by Tencent's various business teams.
                                                              TDesign features a unified design values, consistent design language, and visual style, helping users form continuous and coherent perceptions of the experience. Based on this, TDesign offers out-of-the-box UI component libraries, design guidelines, and design assets, elegantly and efficiently freeing design and development from repetitive tasks. Simultaneously, it facilitates easy extension on top of TDesign, enabling a better alignment with business requirements.

                                                              Comprehensive

                                                              TDesign Support Vue 2, Vue 3, React, components for Desktop Application and Vue 3, Wechat MiniProgram components for Mobile Application.
                                                              • Features
                                                              • Comprehensive
                                                                • Consistency
                                                                • Usability
                                                              • Join TDesign
                                                              1. Features
                                                              2. Comprehensive
                                                                1. Consistency
                                                                2. Usability
                                                              3. Join TDesign
                                                              "`; -exports[`ssr snapshot test > ssr test packages/components/typography/_example/copyable.tsx 1`] = `"This is a copyable text.
                                                              This is a copyable long text. TDesign was founded with the principles of open-source collaboration from the beginning. The collaboration scheme discussion, component design, and API design, including source code, are fully open within the company, garnering widespread attention from internal developers and designers. TDesign follows an equal, open, and strict policy, regardless of the participants' roles....

                                                              This is a copyable long text with custom suffix."`; +exports[`ssr snapshot test > ssr test packages/components/typography/_example/copyable.tsx 1`] = `"This is a copyable text.
                                                              This is a copyable long text. TDesign was founded with the principles of open-source collaboration from the beginning. The collaboration scheme discussion, component design, and API design, including source code, are fully open within the company, garnering widespread attention from internal developers and designers. TDesign follows an equal, open, and strict policy, regardless of the participants' roles....

                                                              This is a copyable long text with custom suffix."`; exports[`ssr snapshot test > ssr test packages/components/typography/_example/ellipsis.tsx 1`] = `"
                                                              TDesign was founded with the principles of open-source collaboration from the beginning. The collaboration scheme discussion, component design, and API design, including source code, are fully open within the company, garnering widespread attention from internal developers and designers. TDesign follows an equal, open, and strict policy, regardless of the participants' roles....
                                                              TDesign was founded with the principles of open-source collaboration from the beginning. The collaboration scheme discussion, component design, and API design, including source code, are fully open within the company, garnering widespread attention from internal developers and designers. TDesign follows an equal, open, and strict policy, regardless of the participants' roles....
                                                              TDesign was founded with the principles of open-source collaboration from the beginning. The collaboration scheme discussion, component design, and API design, including source code, are fully open within the company, garnering widespread attention from internal developers and designers. TDesign follows an equal, open, and strict policy, regardless of the participants' roles....
                                                              TDesign was founded with the principles of open-source collaboration from the beginning. The collaboration scheme discussion, component design, and API design, including source code, are fully open within the company, garnering widespread attention from internal developers and designers. TDesign follows an equal, open, and strict policy, regardless of the participants' roles....
                                                              "`; @@ -300109,1294 +150799,20 @@ exports[`ssr snapshot test > ssr test packages/components/typography/_example/te exports[`ssr snapshot test > ssr test packages/components/typography/_example/title.tsx 1`] = `"

                                                              H1. TDesign

                                                              H2. TDesign

                                                              H3. TDesign

                                                              H4. TDesign

                                                              H5. TDesign
                                                              H6. TDesign
                                                              "`; -exports[`ssr snapshot test > ssr test packages/components/upload/_example/base.tsx 1`] = `"

                                                              要求文件大小在 1M 以内
                                                              文件上传失败示例
                                                              "`; +exports[`ssr snapshot test > ssr test packages/components/upload/_example/base.tsx 1`] = `"

                                                              要求文件大小在 1M 以内
                                                              文件上传失败示例
                                                              "`; -exports[`ssr snapshot test > ssr test packages/components/upload/_example/custom-drag.tsx 1`] = `"


                                                              "`; +exports[`ssr snapshot test > ssr test packages/components/upload/_example/custom-drag.tsx 1`] = `"


                                                              "`; exports[`ssr snapshot test > ssr test packages/components/upload/_example/draggable.tsx 1`] = `"
                                                              是否自动上传:

                                                              点击上传  /  拖拽到此区域
                                                              默认文件
                                                              文件大小1.0 KB上传日期2022-09-25
                                                              "`; -exports[`ssr snapshot test > ssr test packages/components/upload/_example/file-flow-list.tsx 1`] = `"

                                                              支持批量上传文件,文件格式不限,最多只能上传 10 份文件
                                                              点击上方“选择文件”或将文件拖拽到此区域
                                                              取消上传
                                                              点击上传
                                                              "`; +exports[`ssr snapshot test > ssr test packages/components/upload/_example/file-flow-list.tsx 1`] = `"

                                                              支持批量上传文件,文件格式不限,最多只能上传 10 份文件
                                                              点击上方“选择文件”或将文件拖拽到此区域
                                                              取消上传
                                                              点击上传
                                                              "`; exports[`ssr snapshot test > ssr test packages/components/upload/_example/image.tsx 1`] = `"

                                                              • 请选择图片

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

                                                              单张图片文件上传(上传失败状态演示)
                                                              • 点击上传图片

                                                              允许选择多张图片文件上传,最多只能上传 3 张图片
                                                              "`; -exports[`ssr snapshot test > ssr test packages/components/upload/_example/img-flow-list.tsx 1`] = `"
                                                              AutoUpload

                                                              支持批量上传图片文件
                                                              • demo…-1.png

                                                              • avatar.jpg

                                                              取消上传

                                                              Different Status Images
                                                              • loading.svg

                                                              • loading.svg

                                                              • 上传中 10%

                                                                loading.svg

                                                              • 上传失败

                                                                loading.svg

                                                              "`; +exports[`ssr snapshot test > ssr test packages/components/upload/_example/img-flow-list.tsx 1`] = `"
                                                              AutoUpload

                                                              支持批量上传图片文件
                                                              • demo…-1.png

                                                              • avatar.jpg

                                                              取消上传

                                                              Different Status Images
                                                              • loading.svg

                                                              • loading.svg

                                                              • 上传中 10%

                                                                loading.svg

                                                              • 上传失败

                                                                loading.svg

                                                              "`; -exports[`ssr snapshot test > ssr test packages/components/upload/_example/request-method.tsx 1`] = `"
                                                              自定义上传方法需要返回成功或失败信息
                                                              "`; +exports[`ssr snapshot test > ssr test packages/components/upload/_example/request-method.tsx 1`] = `"
                                                              自定义上传方法需要返回成功或失败信息
                                                              "`; exports[`ssr snapshot test > ssr test packages/components/upload/_example/single-custom.tsx 1`] = `"
                                                              上传文件大小在 1M 以内
                                                              "`; exports[`ssr snapshot test > ssr test packages/components/upload/_example/single-input.tsx 1`] = `"

                                                              请选择文件
                                                              "`; - -exports[`ssr snapshot test > ssr test packages\\components\\affix\\_example\\base.tsx 1`] = `"
                                                              "`; - -exports[`ssr snapshot test > ssr test packages\\components\\affix\\_example\\container.tsx 1`] = `"
                                                              "`; - -exports[`ssr snapshot test > ssr test packages\\components\\alert\\_example\\base.tsx 1`] = `"
                                                              这是一条成功的消息提示
                                                              这是一条普通的消息提示
                                                              这是一条警示消息
                                                              高危操作/出错信息提示
                                                              "`; - -exports[`ssr snapshot test > ssr test packages\\components\\alert\\_example\\close.tsx 1`] = `"
                                                              这是一条成功的消息提示
                                                              这是一条普通的消息提示
                                                              知道了
                                                              这是一条警示消息
                                                              FunctionPropClose
                                                              高危操作/出错信息提示
                                                              关闭
                                                              "`; - -exports[`ssr snapshot test > ssr test packages\\components\\alert\\_example\\collapse.tsx 1`] = `"
                                                              1.这是一条普通的消息提示描述,
                                                              2.这是一条普通的消息提示描述,
                                                              展开更多
                                                              "`; - -exports[`ssr snapshot test > ssr test packages\\components\\alert\\_example\\icon.tsx 1`] = `"
                                                              这是一条成功的消息提示
                                                              这是一条普通的消息提示
                                                              这是一条警示消息
                                                              高危操作/出错信息提示
                                                              "`; - -exports[`ssr snapshot test > ssr test packages\\components\\alert\\_example\\operation.tsx 1`] = `"
                                                              这是一条成功的消息提示
                                                              相关操作
                                                              这是一条普通的消息提示
                                                              相关操作
                                                              这是一条警示消息
                                                              相关操作
                                                              高危操作/出错信息提示
                                                              相关操作
                                                              "`; - -exports[`ssr snapshot test > ssr test packages\\components\\alert\\_example\\swiper.tsx 1`] = `"
                                                              这是一条成功的消息提示
                                                              这是一条普通的消息提示
                                                              这是一条警示消息
                                                              高危操作/出错信息提示
                                                              "`; - -exports[`ssr snapshot test > ssr test packages\\components\\alert\\_example\\title.tsx 1`] = `"
                                                              这是一条普通的消息提示
                                                              这是一条普通的消息提示描述,这是一条普通的消息提示描述
                                                              相关操作
                                                              "`; - -exports[`ssr snapshot test > ssr test packages\\components\\anchor\\_example\\base.tsx 1`] = `""`; - -exports[`ssr snapshot test > ssr test packages\\components\\anchor\\_example\\container.tsx 1`] = `"
                                                              content-1
                                                              content-2
                                                              content-3
                                                              content-4
                                                              content-5
                                                              "`; - -exports[`ssr snapshot test > ssr test packages\\components\\anchor\\_example\\cursor.tsx 1`] = `""`; - -exports[`ssr snapshot test > ssr test packages\\components\\anchor\\_example\\customize-highlight.tsx 1`] = `""`; - -exports[`ssr snapshot test > ssr test packages\\components\\anchor\\_example\\large.tsx 1`] = `""`; - -exports[`ssr snapshot test > ssr test packages\\components\\anchor\\_example\\multiple.tsx 1`] = `""`; - -exports[`ssr snapshot test > ssr test packages\\components\\anchor\\_example\\small.tsx 1`] = `""`; - -exports[`ssr snapshot test > ssr test packages\\components\\anchor\\_example\\target.tsx 1`] = `"

                                                              基础锚点

                                                              多级锚点

                                                              尺寸大小

                                                              指定容器

                                                              "`; - -exports[`ssr snapshot test > ssr test packages\\components\\auto-complete\\_example\\base.tsx 1`] = `"
                                                              "`; - -exports[`ssr snapshot test > ssr test packages\\components\\auto-complete\\_example\\filter.tsx 1`] = `"
                                                              "`; - -exports[`ssr snapshot test > ssr test packages\\components\\auto-complete\\_example\\option.tsx 1`] = `"
                                                              "`; - -exports[`ssr snapshot test > ssr test packages\\components\\auto-complete\\_example\\size.tsx 1`] = `"
                                                              小尺寸:
                                                              中尺寸:
                                                              大尺寸:
                                                              "`; - -exports[`ssr snapshot test > ssr test packages\\components\\auto-complete\\_example\\status.tsx 1`] = `"
                                                              这是禁用状态
                                                              这是只读状态
                                                              这是普通状态
                                                              这是告警状态
                                                              这是错误状态
                                                              这是成功状态
                                                              "`; - -exports[`ssr snapshot test > ssr test packages\\components\\auto-complete\\_example\\trigger-element.tsx 1`] = `"
                                                              "`; - -exports[`ssr snapshot test > ssr test packages\\components\\avatar\\_example\\adjust.tsx 1`] = `"
                                                              王亿
                                                              王亿亿
                                                              "`; - -exports[`ssr snapshot test > ssr test packages\\components\\avatar\\_example\\base.tsx 1`] = `"
                                                              图片加载中
                                                              W
                                                              "`; - -exports[`ssr snapshot test > ssr test packages\\components\\avatar\\_example\\group.tsx 1`] = `"
                                                              图片加载中
                                                              W
                                                              图片加载中
                                                              W
                                                              "`; - -exports[`ssr snapshot test > ssr test packages\\components\\avatar\\_example\\group-cascading.tsx 1`] = `"
                                                              图片加载中
                                                              W
                                                              图片加载中
                                                              W
                                                              "`; - -exports[`ssr snapshot test > ssr test packages\\components\\avatar\\_example\\group-max.tsx 1`] = `"
                                                              图片加载中
                                                              Avatar
                                                              +1
                                                              图片加载中
                                                              Avatar
                                                              图片加载中
                                                              Avatar
                                                              more
                                                              "`; - -exports[`ssr snapshot test > ssr test packages\\components\\avatar\\_example\\shape.tsx 1`] = `"
                                                              W
                                                              W
                                                              "`; - -exports[`ssr snapshot test > ssr test packages\\components\\avatar\\_example\\size.tsx 1`] = `"
                                                              W
                                                              W
                                                              W
                                                              W
                                                              W
                                                              W
                                                              W
                                                              W
                                                              test
                                                              图片加载中
                                                              图片加载中
                                                              图片加载中
                                                              图片加载中
                                                              "`; - -exports[`ssr snapshot test > ssr test packages\\components\\back-top\\_example\\baseList.tsx 1`] = `"
                                                              • 列表内容
                                                              • 列表内容
                                                              • 列表内容
                                                              • 列表内容
                                                              • 列表内容
                                                              • 列表内容
                                                              • 列表内容
                                                              • 列表内容
                                                              • 列表内容
                                                              • 列表内容
                                                              • 列表内容
                                                              • 列表内容
                                                              • 列表内容
                                                              • 列表内容
                                                              • 列表内容
                                                              • 列表内容
                                                              • 列表内容
                                                              • 列表内容
                                                              • 列表内容
                                                              • 列表内容
                                                              • 列表内容
                                                              • 列表内容
                                                              • 列表内容
                                                              • 列表内容
                                                              • 列表内容
                                                              • 列表内容
                                                              • 列表内容
                                                              • 列表内容
                                                              • 列表内容
                                                              • 列表内容
                                                              • 列表内容
                                                              • 列表内容
                                                              • 列表内容
                                                              • 列表内容
                                                              • 列表内容
                                                              • 列表内容
                                                              • 列表内容
                                                              • 列表内容
                                                              • 列表内容
                                                              • 列表内容
                                                              • 列表内容
                                                              • 列表内容
                                                              • 列表内容
                                                              • 列表内容
                                                              • 列表内容
                                                              • 列表内容
                                                              • 列表内容
                                                              • 列表内容
                                                              • 列表内容
                                                              • 列表内容
                                                              "`; - -exports[`ssr snapshot test > ssr test packages\\components\\back-top\\_example\\baseListSmall.tsx 1`] = `"
                                                              • 列表内容
                                                              • 列表内容
                                                              • 列表内容
                                                              • 列表内容
                                                              • 列表内容
                                                              • 列表内容
                                                              • 列表内容
                                                              • 列表内容
                                                              • 列表内容
                                                              • 列表内容
                                                              • 列表内容
                                                              • 列表内容
                                                              • 列表内容
                                                              • 列表内容
                                                              • 列表内容
                                                              • 列表内容
                                                              • 列表内容
                                                              • 列表内容
                                                              • 列表内容
                                                              • 列表内容
                                                              • 列表内容
                                                              • 列表内容
                                                              • 列表内容
                                                              • 列表内容
                                                              • 列表内容
                                                              • 列表内容
                                                              • 列表内容
                                                              • 列表内容
                                                              • 列表内容
                                                              • 列表内容
                                                              • 列表内容
                                                              • 列表内容
                                                              • 列表内容
                                                              • 列表内容
                                                              • 列表内容
                                                              • 列表内容
                                                              • 列表内容
                                                              • 列表内容
                                                              • 列表内容
                                                              • 列表内容
                                                              • 列表内容
                                                              • 列表内容
                                                              • 列表内容
                                                              • 列表内容
                                                              • 列表内容
                                                              • 列表内容
                                                              • 列表内容
                                                              • 列表内容
                                                              • 列表内容
                                                              • 列表内容
                                                              "`; - -exports[`ssr snapshot test > ssr test packages\\components\\back-top\\_example\\custom.tsx 1`] = `"
                                                              "`; - -exports[`ssr snapshot test > ssr test packages\\components\\back-top\\_example\\shape.tsx 1`] = `"
                                                              "`; - -exports[`ssr snapshot test > ssr test packages\\components\\back-top\\_example\\size.tsx 1`] = `"
                                                              "`; - -exports[`ssr snapshot test > ssr test packages\\components\\back-top\\_example\\theme.tsx 1`] = `"
                                                              "`; - -exports[`ssr snapshot test > ssr test packages\\components\\badge\\_example\\base.tsx 1`] = `"解锁新徽章"`; - -exports[`ssr snapshot test > ssr test packages\\components\\badge\\_example\\color.tsx 1`] = `"
                                                              "`; - -exports[`ssr snapshot test > ssr test packages\\components\\badge\\_example\\custom.tsx 1`] = `"
                                                              hot
                                                              new
                                                              100
                                                              hot
                                                              new
                                                              new
                                                              "`; - -exports[`ssr snapshot test > ssr test packages\\components\\badge\\_example\\number.tsx 1`] = `"29999+"`; - -exports[`ssr snapshot test > ssr test packages\\components\\badge\\_example\\offset.tsx 1`] = `"22222"`; - -exports[`ssr snapshot test > ssr test packages\\components\\badge\\_example\\shape.tsx 1`] = `"299"`; - -exports[`ssr snapshot test > ssr test packages\\components\\badge\\_example\\size.tsx 1`] = `"

                                                              1.默认大小

                                                              29999+

                                                              2.小

                                                              29999+"`; - -exports[`ssr snapshot test > ssr test packages\\components\\breadcrumb\\_example\\base.tsx 1`] = `"
                                                              页面1
                                                              页面2页面2页面2页面2页面2页面2页面2页面2
                                                              页面3页面3页面3页面3页面3页面3页面3页面3页面3页面3页面3页面3页面3页面3页面3
                                                              "`; - -exports[`ssr snapshot test > ssr test packages\\components\\breadcrumb\\_example\\custom.tsx 1`] = `"
                                                              页面1>>
                                                              页面2>>
                                                              页面3>>
                                                              页面1/////
                                                              页面2/////
                                                              页面3/////
                                                              "`; - -exports[`ssr snapshot test > ssr test packages\\components\\breadcrumb\\_example\\custom-ellipsis.tsx 1`] = `"
                                                              页面1
                                                              页面2
                                                              页面5
                                                              页面1
                                                              页面2
                                                              页面5
                                                              "`; - -exports[`ssr snapshot test > ssr test packages\\components\\breadcrumb\\_example\\ellipsis.tsx 1`] = `"
                                                              页面1
                                                              页面2
                                                              页面5
                                                              页面1
                                                              页面2
                                                              页面5
                                                              "`; - -exports[`ssr snapshot test > ssr test packages\\components\\breadcrumb\\_example\\href.tsx 1`] = `"
                                                              页面2
                                                              页面3
                                                              点击计数器:0
                                                              "`; - -exports[`ssr snapshot test > ssr test packages\\components\\breadcrumb\\_example\\icon.tsx 1`] = `"
                                                              页面1
                                                              页面2
                                                              页面3
                                                              "`; - -exports[`ssr snapshot test > ssr test packages\\components\\breadcrumb\\_example\\options.tsx 1`] = `"
                                                              页面1
                                                              页面2
                                                              "`; - -exports[`ssr snapshot test > ssr test packages\\components\\breadcrumb\\_example\\to.tsx 1`] = `""`; - -exports[`ssr snapshot test > ssr test packages\\components\\breadcrumb\\_example\\width.tsx 1`] = `"
                                                              父级设置100px父级设置100px
                                                              设置最大宽度160px设置最大宽度160px设置最大宽度160px
                                                              设置最大宽度240px设置最大宽度240px设置最大宽度240px设置最大宽度240px设置最大宽度240px
                                                              父级设置100px父级设置100px
                                                              "`; - -exports[`ssr snapshot test > ssr test packages\\components\\button\\_example\\base.tsx 1`] = `"
                                                              "`; - -exports[`ssr snapshot test > ssr test packages\\components\\button\\_example\\block.tsx 1`] = `"
                                                              "`; - -exports[`ssr snapshot test > ssr test packages\\components\\button\\_example\\custom-element.tsx 1`] = `""`; - -exports[`ssr snapshot test > ssr test packages\\components\\button\\_example\\ghost.tsx 1`] = `"
                                                              "`; - -exports[`ssr snapshot test > ssr test packages\\components\\button\\_example\\icon.tsx 1`] = `"
                                                              "`; - -exports[`ssr snapshot test > ssr test packages\\components\\button\\_example\\shape.tsx 1`] = `"
                                                              "`; - -exports[`ssr snapshot test > ssr test packages\\components\\button\\_example\\size.tsx 1`] = `"
                                                              "`; - -exports[`ssr snapshot test > ssr test packages\\components\\button\\_example\\status.tsx 1`] = `"
                                                              填充按钮
                                                              "`; - -exports[`ssr snapshot test > ssr test packages\\components\\button\\_example\\theme.tsx 1`] = `"
                                                              "`; - -exports[`ssr snapshot test > ssr test packages\\components\\calendar\\_example\\base.tsx 1`] = `"
                                                              请选择
                                                              请选择
                                                              隐藏周末
                                                              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
                                                              "`; - -exports[`ssr snapshot test > ssr test packages\\components\\calendar\\_example\\card.tsx 1`] = `"
                                                              请选择
                                                              请选择
                                                              30
                                                              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
                                                              "`; - -exports[`ssr snapshot test > ssr test packages\\components\\calendar\\_example\\cell.tsx 1`] = `"
                                                              请选择
                                                              请选择
                                                              隐藏周末
                                                              30
                                                              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
                                                              "`; - -exports[`ssr snapshot test > ssr test packages\\components\\calendar\\_example\\cell-append.tsx 1`] = `"
                                                              请选择
                                                              请选择
                                                              隐藏周末
                                                              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
                                                              "`; - -exports[`ssr snapshot test > ssr test packages\\components\\calendar\\_example\\controller-config.tsx 1`] = `"
                                                              控件全局



                                                              控件局部






                                                              请选择
                                                              请选择
                                                              隐藏周末
                                                              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
                                                              "`; - -exports[`ssr snapshot test > ssr test packages\\components\\calendar\\_example\\events.tsx 1`] = `"
                                                              请选择
                                                              请选择
                                                              隐藏周末
                                                              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
                                                              "`; - -exports[`ssr snapshot test > ssr test packages\\components\\calendar\\_example\\filter.tsx 1`] = `"
                                                              请选择
                                                              请选择
                                                              隐藏周末
                                                              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
                                                              "`; - -exports[`ssr snapshot test > ssr test packages\\components\\calendar\\_example\\first-day-of-week.tsx 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 packages\\components\\calendar\\_example\\head.tsx 1`] = `"
                                                              🗓 TDesign开发计划
                                                              请选择
                                                              请选择
                                                              隐藏周末
                                                              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
                                                              "`; - -exports[`ssr snapshot test > ssr test packages\\components\\calendar\\_example\\mode.tsx 1`] = `"
                                                              请选择
                                                              请选择
                                                              隐藏周末
                                                              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
                                                              "`; - -exports[`ssr snapshot test > ssr test packages\\components\\calendar\\_example\\range.tsx 1`] = `"
                                                              请选择
                                                              请选择
                                                              隐藏周末
                                                              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
                                                              "`; - -exports[`ssr snapshot test > ssr test packages\\components\\calendar\\_example\\slot-props-api.tsx 1`] = `"
                                                              2020-12 工作安排
                                                              请选择
                                                              请选择
                                                              隐藏周末
                                                              30
                                                              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
                                                              "`; - -exports[`ssr snapshot test > ssr test packages\\components\\calendar\\_example\\value.tsx 1`] = `"
                                                              请选择
                                                              请选择
                                                              隐藏周末
                                                              26
                                                              27
                                                              28
                                                              29
                                                              30
                                                              31
                                                              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
                                                              01
                                                              02
                                                              03
                                                              04
                                                              05
                                                              06
                                                              "`; - -exports[`ssr snapshot test > ssr test packages\\components\\calendar\\_example\\week.tsx 1`] = `"
                                                              请选择
                                                              请选择
                                                              隐藏周末
                                                              星期1
                                                              星期2
                                                              星期3
                                                              星期4
                                                              星期5
                                                              星期6
                                                              星期7
                                                              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
                                                              "`; - -exports[`ssr snapshot test > ssr test packages\\components\\card\\_example\\base.tsx 1`] = `"
                                                              标题
                                                              操作
                                                              仅有内容区域的卡片形式。卡片内容区域可以是文字、图片、表单、表格等形式信息内容。可使用大中小不同的卡片尺寸,按业务需求进行呈现。
                                                              "`; - -exports[`ssr snapshot test > ssr test packages\\components\\card\\_example\\bordered.tsx 1`] = `"
                                                              仅有内容区域的卡片形式。卡片内容区域可以是文字、图片、表单、表格等形式信息内容。可使用大中小不同的卡片尺寸,按业务需求进行呈现。
                                                              "`; - -exports[`ssr snapshot test > ssr test packages\\components\\card\\_example\\bordered-none.tsx 1`] = `"
                                                              标题
                                                              仅有内容区域的卡片形式。卡片内容区域可以是文字、图片、表单、表格等形式信息内容。可使用大中小不同的卡片尺寸,按业务需求进行呈现。
                                                              "`; - -exports[`ssr snapshot test > ssr test packages\\components\\card\\_example\\custom-loading-props.tsx 1`] = `"
                                                              自定义loadingProps Card
                                                              仅有内容区域的卡片形式。卡片内容区域可以是文字、图片、表单、表格等形式信息内容。可使用大中小不同的卡片尺寸,按业务需求进行呈现。
                                                              TDesign努力加载中...
                                                              "`; - -exports[`ssr snapshot test > ssr test packages\\components\\card\\_example\\footer.tsx 1`] = `"
                                                              默认标签
                                                              "`; - -exports[`ssr snapshot test > ssr test packages\\components\\card\\_example\\footer-actions.tsx 1`] = `"
                                                              "`; - -exports[`ssr snapshot test > ssr test packages\\components\\card\\_example\\footer-content.tsx 1`] = `"
                                                              "`; - -exports[`ssr snapshot test > ssr test packages\\components\\card\\_example\\footer-content-actions.tsx 1`] = `"
                                                              "`; - -exports[`ssr snapshot test > ssr test packages\\components\\card\\_example\\header.tsx 1`] = `"
                                                              标题
                                                              卡片内容,以描述性为主,可以是文字、图片或图文组合的形式。按业务需求进行自定义组合。
                                                              "`; - -exports[`ssr snapshot test > ssr test packages\\components\\card\\_example\\header-all-props.tsx 1`] = `"
                                                              标题
                                                              副标题

                                                              描述

                                                              操作
                                                              卡片内容,以描述性为主,可以是文字、图片或图文组合的形式。按业务需求进行自定义组合。
                                                              "`; - -exports[`ssr snapshot test > ssr test packages\\components\\card\\_example\\header-bordered.tsx 1`] = `"
                                                              标题
                                                              卡片内容,以描述性为主,可以是文字、图片或图文组合的形式。按业务需求进行自定义组合。
                                                              "`; - -exports[`ssr snapshot test > ssr test packages\\components\\card\\_example\\header-description.tsx 1`] = `"
                                                              标题

                                                              描述

                                                              操作
                                                              卡片内容,以描述性为主,可以是文字、图片或图文组合的形式。按业务需求进行自定义组合。
                                                              "`; - -exports[`ssr snapshot test > ssr test packages\\components\\card\\_example\\header-footer-actions.tsx 1`] = `"
                                                              图片加载中
                                                              标题

                                                              卡片内容

                                                              "`; - -exports[`ssr snapshot test > ssr test packages\\components\\card\\_example\\header-subtitle.tsx 1`] = `"
                                                              标题
                                                              副标题
                                                              操作
                                                              卡片内容,以描述性为主,可以是文字、图片或图文组合的形式。按业务需求进行自定义组合。
                                                              "`; - -exports[`ssr snapshot test > ssr test packages\\components\\card\\_example\\header-subtitle-footer-actions.tsx 1`] = `"
                                                              标题
                                                              副标题
                                                              "`; - -exports[`ssr snapshot test > ssr test packages\\components\\cascader\\_example\\base.tsx 1`] = `"
                                                              "`; - -exports[`ssr snapshot test > ssr test packages\\components\\cascader\\_example\\check-strictly.tsx 1`] = `"
                                                              请选择
                                                              "`; - -exports[`ssr snapshot test > ssr test packages\\components\\cascader\\_example\\collapsed.tsx 1`] = `"
                                                              请选择
                                                              请选择
                                                              "`; - -exports[`ssr snapshot test > ssr test packages\\components\\cascader\\_example\\custom-options.tsx 1`] = `"
                                                              "`; - -exports[`ssr snapshot test > ssr test packages\\components\\cascader\\_example\\disabled.tsx 1`] = `"
                                                              请选择
                                                              "`; - -exports[`ssr snapshot test > ssr test packages\\components\\cascader\\_example\\ellipsis.tsx 1`] = `"
                                                              "`; - -exports[`ssr snapshot test > ssr test packages\\components\\cascader\\_example\\filterable.tsx 1`] = `"
                                                              请选择
                                                              "`; - -exports[`ssr snapshot test > ssr test packages\\components\\cascader\\_example\\keys.tsx 1`] = `"
                                                              请选择
                                                              "`; - -exports[`ssr snapshot test > ssr test packages\\components\\cascader\\_example\\load.tsx 1`] = `"
                                                              请选择
                                                              "`; - -exports[`ssr snapshot test > ssr test packages\\components\\cascader\\_example\\max.tsx 1`] = `"
                                                              请选择
                                                              "`; - -exports[`ssr snapshot test > ssr test packages\\components\\cascader\\_example\\multiple.tsx 1`] = `"
                                                              请选择
                                                              "`; - -exports[`ssr snapshot test > ssr test packages\\components\\cascader\\_example\\panel.tsx 1`] = `"
                                                              暂无数据
                                                              暂无数据
                                                              "`; - -exports[`ssr snapshot test > ssr test packages\\components\\cascader\\_example\\show-all-levels.tsx 1`] = `"
                                                              请选择
                                                              "`; - -exports[`ssr snapshot test > ssr test packages\\components\\cascader\\_example\\size.tsx 1`] = `"
                                                              "`; - -exports[`ssr snapshot test > ssr test packages\\components\\cascader\\_example\\trigger.tsx 1`] = `"
                                                              "`; - -exports[`ssr snapshot test > ssr test packages\\components\\cascader\\_example\\value-display.tsx 1`] = `"
                                                              单选:
                                                              (2.2)
                                                              多选:
                                                              请选择
                                                              "`; - -exports[`ssr snapshot test > ssr test packages\\components\\cascader\\_example\\value-mode.tsx 1`] = `"
                                                              请选择
                                                              请选择
                                                              请选择
                                                              "`; - -exports[`ssr snapshot test > ssr test packages\\components\\cascader\\_example\\value-type.tsx 1`] = `"
                                                              ["1","1.1"]
                                                              [["1","1.1"],["1","1.2"]]
                                                              请选择
                                                              "`; - -exports[`ssr snapshot test > ssr test packages\\components\\checkbox\\_example\\base.tsx 1`] = `"
                                                              "`; - -exports[`ssr snapshot test > ssr test packages\\components\\checkbox\\_example\\controlled.tsx 1`] = `"
                                                              "`; - -exports[`ssr snapshot test > ssr test packages\\components\\checkbox\\_example\\group.tsx 1`] = `"
                                                              选中值: 北京
                                                              "`; - -exports[`ssr snapshot test > ssr test packages\\components\\checkbox\\_example\\link.tsx 1`] = `"
                                                              "`; - -exports[`ssr snapshot test > ssr test packages\\components\\checkbox\\_example\\max.tsx 1`] = `"
                                                              最多可选:
                                                              选中值: 北京
                                                              "`; - -exports[`ssr snapshot test > ssr test packages\\components\\collapse\\_example\\base.tsx 1`] = `"
                                                              这是一个折叠标题
                                                              这部分是每个折叠面板折叠或展开的内容,可根据不同业务或用户的使用诉求,进行自定义填充。可以是纯文本、图文、子列表等内容形式。
                                                              设置默认展开项
                                                              这部分是每个折叠面板折叠或展开的内容,可根据不同业务或用户的使用诉求,进行自定义填充。可以是纯文本、图文、子列表等内容形式。
                                                              自定义折叠面板内容
                                                              Vue
                                                              React
                                                              当前折叠面板折叠时,销毁面板内容
                                                              嵌套使用折叠面板
                                                              这是一个折叠标题
                                                              这部分是每个折叠面板折叠或展开的内容,可根据不同业务或用户的使用诉求,进行自定义填充。可以是纯文本、图文、子列表等内容形式。
                                                              这是一个折叠标题
                                                              这部分是每个折叠面板折叠或展开的内容,可根据不同业务或用户的使用诉求,进行自定义填充。可以是纯文本、图文、子列表等内容形式。
                                                              "`; - -exports[`ssr snapshot test > ssr test packages\\components\\collapse\\_example\\icon.tsx 1`] = `"
                                                              这是一个折叠标题
                                                              这部分是每个折叠面板折叠或展开的内容,可根据不同业务或用户的使用诉求,进行自定义填充。可以是纯文本、图文、子列表等内容形式。
                                                              折叠后自动销毁
                                                              自定义折叠面板内容
                                                              Vue
                                                              React
                                                              自定义图标
                                                              这部分是每个折叠面板折叠或展开的内容,可根据不同业务或用户的使用诉求,进行自定义填充。可以是纯文本、图文、子列表等内容形式。
                                                              "`; - -exports[`ssr snapshot test > ssr test packages\\components\\collapse\\_example\\mutex.tsx 1`] = `"
                                                              这是一个折叠标题
                                                              这部分是每个折叠面板折叠或展开的内容,可根据不同业务或用户的使用诉求,进行自定义填充。可以是纯文本、图文、子列表等内容形式。
                                                              折叠后自动销毁
                                                              自定义折叠面板内容
                                                              Vue
                                                              React
                                                              "`; - -exports[`ssr snapshot test > ssr test packages\\components\\collapse\\_example\\other.tsx 1`] = `"
                                                              这是一个折叠标题
                                                              这部分是每个折叠面板折叠或展开的内容,可根据不同业务或用户的使用诉求,进行自定义填充。可以是纯文本、图文、子列表等内容形式。
                                                              折叠后自动销毁
                                                              自定义折叠面板内容
                                                              Vue
                                                              React
                                                              当前展开的Collapse Panel:
                                                              "`; - -exports[`ssr snapshot test > ssr test packages\\components\\collapse\\_example\\rightSlot.tsx 1`] = `"
                                                              这是一个折叠标题
                                                              这部分是每个折叠面板折叠或展开的内容,可根据不同业务或用户的使用诉求,进行自定义填充。可以是纯文本、图文、子列表等内容形式。
                                                              这是一个折叠标题
                                                              这部分是每个折叠面板折叠或展开的内容,可根据不同业务或用户的使用诉求,进行自定义填充。可以是纯文本、图文、子列表等内容形式。
                                                              这是一个折叠标题
                                                              这部分是每个折叠面板折叠或展开的内容,可根据不同业务或用户的使用诉求,进行自定义填充。可以是纯文本、图文、子列表等内容形式。
                                                              "`; - -exports[`ssr snapshot test > ssr test packages\\components\\color-picker\\_example\\color-mode.tsx 1`] = `"
                                                              默认(单色 + 线性渐变)
                                                              rgba(0, 82, 217, 1)
                                                              仅单色模式
                                                              #0052d9
                                                              仅线性渐变模式
                                                              linear-gradient(45deg, #4facfe 0%, #00f2fe 100%)
                                                              "`; - -exports[`ssr snapshot test > ssr test packages\\components\\color-picker\\_example\\enable-alpha.tsx 1`] = `"
                                                              请选择

                                                              最近使用颜色

                                                                系统预设颜色

                                                                "`; - -exports[`ssr snapshot test > ssr test packages\\components\\color-picker\\_example\\panel.tsx 1`] = `"
                                                                请选择

                                                                最近使用颜色

                                                                  系统预设颜色

                                                                  "`; - -exports[`ssr snapshot test > ssr test packages\\components\\color-picker\\_example\\recent-color.tsx 1`] = `"
                                                                  预设最近使用色
                                                                  请选择

                                                                  最近使用颜色

                                                                  系统预设颜色

                                                                  完全不显示最近使用色
                                                                  请选择

                                                                  系统预设颜色

                                                                  "`; - -exports[`ssr snapshot test > ssr test packages\\components\\color-picker\\_example\\status-disabled.tsx 1`] = `"
                                                                  #0052d9
                                                                  "`; - -exports[`ssr snapshot test > ssr test packages\\components\\color-picker\\_example\\status-readonly.tsx 1`] = `"
                                                                  请选择

                                                                  最近使用颜色

                                                                    系统预设颜色

                                                                    "`; - -exports[`ssr snapshot test > ssr test packages\\components\\color-picker\\_example\\swatch-color.tsx 1`] = `"
                                                                    自定义系统色
                                                                    请选择

                                                                    最近使用颜色

                                                                      系统预设颜色

                                                                      完全不显示系统色
                                                                      请选择

                                                                      最近使用颜色

                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\color-picker\\_example\\trigger.tsx 1`] = `"
                                                                        #0052d9
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\comment\\_example\\base.tsx 1`] = `"
                                                                        评论作者名今天16:38
                                                                        评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容。
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\comment\\_example\\list.tsx 1`] = `"
                                                                        • 评论作者名A今天16:38
                                                                          A评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容。
                                                                        • 评论作者名B今天16:38
                                                                          B评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容。
                                                                        • 评论作者名C今天16:38
                                                                          C评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容。
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\comment\\_example\\operation.tsx 1`] = `"
                                                                        评论作者名今天16:38
                                                                        评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容。
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\comment\\_example\\quote.tsx 1`] = `"
                                                                        评论作者名A今天16:38
                                                                        A评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容。
                                                                        引用内容标题
                                                                        引用内容引用内容引用内容引用内容引用内容引用内容引用内容引用内容引用内容引用内容引用内容引用内容引用内容引用内容引用内容引用内容引用内容引用内容。
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\comment\\_example\\reply.tsx 1`] = `"
                                                                        评论作者名A今天16:38
                                                                        A评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容。
                                                                        评论作者名B评论作者名A今天16:38
                                                                        B评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容。
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\comment\\_example\\reply-form.tsx 1`] = `"
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\config-provider\\_example\\calendar.tsx 1`] = `"
                                                                        please select
                                                                        please select
                                                                        Hide Weekend
                                                                        MondayTuesdayWednesdayThursdayFridaySaturdaySunday
                                                                        30
                                                                        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
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\config-provider\\_example\\date-picker.tsx 1`] = `"
                                                                        ~
                                                                        ~
                                                                        ~
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\config-provider\\_example\\dialog.tsx 1`] = `"
                                                                        Title
                                                                        Would you like to be my friends?
                                                                        confirm
                                                                        Would you like to be my friends?
                                                                        confirm
                                                                        Would you like to be my friends?
                                                                        confirm
                                                                        Would you like to be my friends?
                                                                        confirm
                                                                        Would you like to be my friends?
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\config-provider\\_example\\global.tsx 1`] = `"

                                                                        使用ConfigProvider包裹业务功能的最外层组件,点击下方图标查看示例代码

                                                                        英文语言包引入路径:import enConfig from 'tdesign-react/es/locale/en_US';

                                                                        中文语言包引入路径:import zhConfig from 'tdesign-react/es/locale/zh_CN';

                                                                        日文语言包引入路径:import jpConfig from 'tdesign-react/es/locale/ja_JP';

                                                                        韩文语言包引入路径:import koConfig from 'tdesign-react/es/locale/ko_KR';

                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\config-provider\\_example\\input.tsx 1`] = `"
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\config-provider\\_example\\others.tsx 1`] = `"
                                                                        Feature Tag
                                                                        Feature Tag
                                                                        Feature Tag
                                                                        Feature Tag
                                                                        Tree Empty Data
                                                                        First Step
                                                                        You need to click the blue button
                                                                        Second Step
                                                                        Fill your base information into the form
                                                                        Error Step
                                                                        Something Wrong! Custom Error Icon!
                                                                        4
                                                                        Last Step
                                                                        You haven't finish this step.
                                                                        图片加载中
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\config-provider\\_example\\pagination.tsx 1`] = `"
                                                                        Total 36 items
                                                                        please select
                                                                        • 1
                                                                        • 2
                                                                        • 3
                                                                        • 4
                                                                        / 4
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\config-provider\\_example\\popconfirm.tsx 1`] = `"
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\config-provider\\_example\\table.tsx 1`] = `"
                                                                        Type
                                                                        Platform
                                                                        Property
                                                                        Empty Data
                                                                        Type
                                                                        Platform
                                                                        Property
                                                                        ArrayVue(PC)A
                                                                        StringReact(PC)B
                                                                        ObjectMiniprogramC
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\date-picker\\_example\\base.tsx 1`] = `"
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\date-picker\\_example\\cancel-range-limit.tsx 1`] = `"
                                                                        -
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\date-picker\\_example\\custom-icon.tsx 1`] = `"
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\date-picker\\_example\\date-presets-alt.tsx 1`] = `"
                                                                        -
                                                                        -
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\date-picker\\_example\\date-range.tsx 1`] = `"
                                                                        -
                                                                        -
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\date-picker\\_example\\date-time.tsx 1`] = `"
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\date-picker\\_example\\disable-date.tsx 1`] = `"
                                                                        -
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\date-picker\\_example\\first-day-of-week.tsx 1`] = `"
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\date-picker\\_example\\month.tsx 1`] = `"
                                                                        -
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\date-picker\\_example\\multiple.tsx 1`] = `"
                                                                        2024-10-01
                                                                        2024-10-24
                                                                        2024-50周
                                                                        2024-51周
                                                                        2022
                                                                        2023
                                                                        2024
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\date-picker\\_example\\panel.tsx 1`] = `"
                                                                        30
                                                                        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
                                                                        5
                                                                        6
                                                                        7
                                                                        8
                                                                        9
                                                                        10
                                                                        30
                                                                        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
                                                                        5
                                                                        6
                                                                        7
                                                                        8
                                                                        9
                                                                        10
                                                                        00:00:00
                                                                        30
                                                                        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
                                                                        5
                                                                        6
                                                                        7
                                                                        8
                                                                        9
                                                                        10
                                                                        28
                                                                        29
                                                                        30
                                                                        31
                                                                        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
                                                                        5
                                                                        6
                                                                        7
                                                                        30
                                                                        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
                                                                        5
                                                                        6
                                                                        7
                                                                        8
                                                                        9
                                                                        10
                                                                        00:00:00
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\date-picker\\_example\\quarter.tsx 1`] = `"
                                                                        -
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\date-picker\\_example\\week.tsx 1`] = `"
                                                                        -
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\date-picker\\_example\\year.tsx 1`] = `"
                                                                        -
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\descriptions\\_example\\base.tsx 1`] = `"
                                                                        Shipping address
                                                                        NameTDesignTelephone Number139****0609
                                                                        AreaChina Tencent HeadquartersAddressShenzhen Penguin Island D1 4A Mail Center
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\descriptions\\_example\\bordered.tsx 1`] = `"
                                                                        Shipping address
                                                                        NameTDesignTelephone Number139****0609
                                                                        AreaChina Tencent HeadquartersAddressShenzhen Penguin Island D1 4A Mail Center
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\descriptions\\_example\\colon.tsx 1`] = `"
                                                                        展示冒号
                                                                        Shipping address
                                                                        NameTDesignTelephone Number139****0609
                                                                        AreaChina Tencent HeadquartersAddressShenzhen Penguin Island D1 4A Mail Center
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\descriptions\\_example\\column.tsx 1`] = `"
                                                                        Shipping address
                                                                        NameTDesignTelephone Number139****0609
                                                                        AreaChina Tencent HeadquartersAddressShenzhen Penguin Island D1 4A Mail Center
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\descriptions\\_example\\custom-style.tsx 1`] = `"
                                                                        Shipping address
                                                                        NameTDesignTelephone Number139****0609
                                                                        AreaChina Tencent HeadquartersAddressShenzhen Penguin Island D1 4A Mail Center
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\descriptions\\_example\\items.tsx 1`] = `"
                                                                        Shipping address
                                                                        NameTDesign139****0609
                                                                        Area

                                                                        China Tencent Headquarters

                                                                        Address Shenzhen Penguin Island D1 4A Mail Center
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\descriptions\\_example\\layout.tsx 1`] = `"
                                                                        layout:
                                                                        itemLayout:
                                                                        Shipping address
                                                                        NameTDesignTelephone Number139****0609
                                                                        AreaChina Tencent HeadquartersAddressShenzhen Penguin Island D1 4A Mail Center
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\descriptions\\_example\\nest.tsx 1`] = `"
                                                                        Shipping address
                                                                        NameTDesignTelephone Number139****0609
                                                                        AreaChina Tencent HeadquartersAddress
                                                                        CityShenzhenDetailPenguin Island D1 4A Mail Center
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\descriptions\\_example\\size.tsx 1`] = `"
                                                                        Shipping address
                                                                        NameTDesignTelephone Number139****0609
                                                                        AreaChina Tencent HeadquartersAddressShenzhen Penguin Island D1 4A Mail Center
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\descriptions\\_example\\table-layout.tsx 1`] = `"
                                                                        Shipping address
                                                                        NameTDesignTelephone Number139****0609
                                                                        AreaChina Tencent HeadquartersAddressShenzhen Penguin Island D1 4A Mail Center
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\dialog\\_example\\async.tsx 1`] = `""`; - -exports[`ssr snapshot test > ssr test packages\\components\\dialog\\_example\\attach.tsx 1`] = `"
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\dialog\\_example\\base.tsx 1`] = `""`; - -exports[`ssr snapshot test > ssr test packages\\components\\dialog\\_example\\custom.tsx 1`] = `""`; - -exports[`ssr snapshot test > ssr test packages\\components\\dialog\\_example\\icon.tsx 1`] = `""`; - -exports[`ssr snapshot test > ssr test packages\\components\\dialog\\_example\\modal.tsx 1`] = `"
                                                                        普通对话框

                                                                        This is a dialog

                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\dialog\\_example\\plugin.tsx 1`] = `"

                                                                        函数调用方式一:DialogPlugin(options)

                                                                        函数调用方式二:DialogPlugin.confirm(options)

                                                                        函数调用方式三:DialogPlugin.alert(options)

                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\dialog\\_example\\position.tsx 1`] = `""`; - -exports[`ssr snapshot test > ssr test packages\\components\\dialog\\_example\\warning.tsx 1`] = `"
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\divider\\_example\\base.tsx 1`] = `"

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

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

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

                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\divider\\_example\\text.tsx 1`] = `"

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

                                                                        TDesign

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

                                                                        TDesign

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

                                                                        TDesign

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

                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\divider\\_example\\vertical.tsx 1`] = `"正直
                                                                        进取
                                                                        合作
                                                                        创新"`; - -exports[`ssr snapshot test > ssr test packages\\components\\drawer\\_example\\attach-parent.tsx 1`] = `"

                                                                        渲染在当前元素中。

                                                                        抽屉弹出方向:
                                                                        抽屉弹出模式:
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\drawer\\_example\\base.tsx 1`] = `""`; - -exports[`ssr snapshot test > ssr test packages\\components\\drawer\\_example\\custom.tsx 1`] = `""`; - -exports[`ssr snapshot test > ssr test packages\\components\\drawer\\_example\\destroy.tsx 1`] = `""`; - -exports[`ssr snapshot test > ssr test packages\\components\\drawer\\_example\\no-mask.tsx 1`] = `""`; - -exports[`ssr snapshot test > ssr test packages\\components\\drawer\\_example\\operation.tsx 1`] = `""`; - -exports[`ssr snapshot test > ssr test packages\\components\\drawer\\_example\\placement.tsx 1`] = `"
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\drawer\\_example\\plugin.tsx 1`] = `"

                                                                        函数调用方式一:DrawerPlugin(options)

                                                                        函数调用方式二:drawer(options)

                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\drawer\\_example\\popup.tsx 1`] = `"
                                                                        抽屉弹出模式:
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\drawer\\_example\\size.tsx 1`] = `"
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\drawer\\_example\\size-draggable.tsx 1`] = `"
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\dropdown\\_example\\base.tsx 1`] = `""`; - -exports[`ssr snapshot test > ssr test packages\\components\\dropdown\\_example\\button.tsx 1`] = `""`; - -exports[`ssr snapshot test > ssr test packages\\components\\dropdown\\_example\\child.tsx 1`] = `""`; - -exports[`ssr snapshot test > ssr test packages\\components\\dropdown\\_example\\click.tsx 1`] = `""`; - -exports[`ssr snapshot test > ssr test packages\\components\\dropdown\\_example\\custom.tsx 1`] = `""`; - -exports[`ssr snapshot test > ssr test packages\\components\\dropdown\\_example\\disabled.tsx 1`] = `""`; - -exports[`ssr snapshot test > ssr test packages\\components\\dropdown\\_example\\icon.tsx 1`] = `""`; - -exports[`ssr snapshot test > ssr test packages\\components\\dropdown\\_example\\left.tsx 1`] = `""`; - -exports[`ssr snapshot test > ssr test packages\\components\\dropdown\\_example\\long.tsx 1`] = `""`; - -exports[`ssr snapshot test > ssr test packages\\components\\dropdown\\_example\\multiple.tsx 1`] = `""`; - -exports[`ssr snapshot test > ssr test packages\\components\\dropdown\\_example\\split.tsx 1`] = `""`; - -exports[`ssr snapshot test > ssr test packages\\components\\dropdown\\_example\\theme.tsx 1`] = `""`; - -exports[`ssr snapshot test > ssr test packages\\components\\empty\\_example\\base.tsx 1`] = `"
                                                                        暂无数据
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\empty\\_example\\descriptions.tsx 1`] = `"
                                                                        暂无数据
                                                                        description
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\empty\\_example\\operation.tsx 1`] = `"
                                                                        暂无数据
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\empty\\_example\\self-defined.tsx 1`] = `"
                                                                        暂无数据
                                                                        暂无数据
                                                                        暂无数据
                                                                        暂无数据
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\empty\\_example\\size.tsx 1`] = `"
                                                                        暂无数据
                                                                        建设中
                                                                        网络错误
                                                                        成功
                                                                        失败
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\empty\\_example\\status.tsx 1`] = `"
                                                                        暂无数据
                                                                        建设中
                                                                        网络错误
                                                                        成功
                                                                        失败
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\form\\_example\\align.tsx 1`] = `"
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\form\\_example\\base.tsx 1`] = `"
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\form\\_example\\clear-validate.tsx 1`] = `"
                                                                        一句话介绍自己
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\form\\_example\\custom-validator.tsx 1`] = `"
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\form\\_example\\customized-form-controls.tsx 1`] = `"
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\form\\_example\\disabled.tsx 1`] = `"
                                                                        请选择单张图片文件上传
                                                                        提交
                                                                        重置
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\form\\_example\\error-message.tsx 1`] = `"
                                                                        一句话介绍自己
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\form\\_example\\form-field-linkage.tsx 1`] = `"
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\form\\_example\\form-list.tsx 1`] = `"
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\form\\_example\\layout.tsx 1`] = `"
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\form\\_example\\login.tsx 1`] = `"
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\form\\_example\\nested-data.tsx 1`] = `"
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\form\\_example\\reset.tsx 1`] = `"
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\form\\_example\\validate-complicated-data.tsx 1`] = `"
                                                                        学生1
                                                                        学生2
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\form\\_example\\validate-message.tsx 1`] = `"
                                                                        一句话介绍自己
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\form\\_example\\validator.tsx 1`] = `"
                                                                        这里请填写密码
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\form\\_example\\validator-status.tsx 1`] = `"
                                                                        校验不通过,请输入正确内容
                                                                        自定义新增icon
                                                                        自定义帮助icon
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\grid\\_example\\base.tsx 1`] = `"
                                                                        1
                                                                        1
                                                                        1
                                                                        1
                                                                        1
                                                                        1
                                                                        1
                                                                        1
                                                                        1
                                                                        1
                                                                        1
                                                                        1
                                                                        2
                                                                        2
                                                                        2
                                                                        2
                                                                        2
                                                                        2
                                                                        3
                                                                        3
                                                                        3
                                                                        3
                                                                        4
                                                                        4
                                                                        4
                                                                        6
                                                                        6
                                                                        12
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\grid\\_example\\flex.tsx 1`] = `"
                                                                        2 / 5
                                                                        3 / 5
                                                                        100px
                                                                        Fill Rest
                                                                        1 1 200px
                                                                        0 1 300px
                                                                        none
                                                                        auto with no-wrap
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\grid\\_example\\gutter.tsx 1`] = `"
                                                                        col-3
                                                                        col-3
                                                                        col-3
                                                                        col-3
                                                                        col-3
                                                                        col-3
                                                                        col-3
                                                                        col-3
                                                                        col-3
                                                                        col-3
                                                                        col-3
                                                                        col-3
                                                                        col-3
                                                                        col-3
                                                                        col-3
                                                                        col-3
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\grid\\_example\\halign.tsx 1`] = `"

                                                                        align left

                                                                        col-2
                                                                        col-2
                                                                        col-2
                                                                        col-2

                                                                        align center

                                                                        col-2
                                                                        col-2
                                                                        col-2
                                                                        col-2

                                                                        align right

                                                                        col-2
                                                                        col-2
                                                                        col-2
                                                                        col-2

                                                                        space-between

                                                                        col-2
                                                                        col-2
                                                                        col-2
                                                                        col-2

                                                                        space-around

                                                                        col-2
                                                                        col-2
                                                                        col-2
                                                                        col-2
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\grid\\_example\\offset.tsx 1`] = `"
                                                                        col-4
                                                                        col-4
                                                                        col-3 col-offset-3
                                                                        col-3 col-offset-3
                                                                        col-6 col-offset-2
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\grid\\_example\\order.tsx 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 packages\\components\\grid\\_example\\responsive.tsx 1`] = `"
                                                                        宽度响应式
                                                                        Col
                                                                        Col
                                                                        其他属性响应式(支持span,offset,order,pull,push)
                                                                        Col
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\grid\\_example\\sort.tsx 1`] = `"
                                                                        通过 \`pull\` \`push\` 进行排序
                                                                        col-9 col-push-3
                                                                        col-3 col-pull-9
                                                                        col-8 col-push-4
                                                                        col-4 col-pull-8
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\grid\\_example\\valign.tsx 1`] = `"

                                                                        align top

                                                                        col-3
                                                                        col-3
                                                                        col-3
                                                                        col-3

                                                                        Align Middle

                                                                        col-3
                                                                        col-3
                                                                        col-3
                                                                        col-3

                                                                        Align Bottom

                                                                        col-3
                                                                        col-3
                                                                        col-3
                                                                        col-3
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\guide\\_example\\base.tsx 1`] = `"
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\guide\\_example\\custom-popup.tsx 1`] = `"
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\guide\\_example\\dialog.tsx 1`] = `"
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\guide\\_example\\no-mask.tsx 1`] = `"
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\guide\\_example\\popup-dialog.tsx 1`] = `"
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\icon\\_example\\Enhanced.tsx 1`] = `"


                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\icon\\_example\\IconExample.tsx 1`] = `"
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\icon\\_example\\IconFontEnhanced.tsx 1`] = `"


                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\icon\\_example\\IconFontExample.tsx 1`] = `"

                                                                        How do you feel today?

                                                                        What is your favourite food?

                                                                        How much icons does TDesign Icon includes?

                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\icon\\_example\\IconSelect.tsx 1`] = `"
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\icon\\_example\\SvgSpriteExample.tsx 1`] = `"

                                                                        How do you feel today?

                                                                        What is your favourite food?

                                                                        How much icons does TDesign Icon includes?

                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\image\\_example\\avif.tsx 1`] = `"
                                                                        图片加载中
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\image\\_example\\extra-always.tsx 1`] = `"
                                                                        有遮罩
                                                                        图片加载中
                                                                        高清
                                                                        无遮罩
                                                                        图片加载中
                                                                        高清
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\image\\_example\\extra-hover.tsx 1`] = `"
                                                                        图片加载中
                                                                        预览
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\image\\_example\\fill-mode.tsx 1`] = `"
                                                                        图片加载中
                                                                        fill
                                                                        图片加载中
                                                                        contain
                                                                        图片加载中
                                                                        cover
                                                                        图片加载中
                                                                        none
                                                                        图片加载中
                                                                        scale-down
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\image\\_example\\fill-position.tsx 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 packages\\components\\image\\_example\\gallery-cover.tsx 1`] = `""`; - -exports[`ssr snapshot test > ssr test packages\\components\\image\\_example\\lazy-list.tsx 1`] = `"
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\image\\_example\\lazy-single.tsx 1`] = `"
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\image\\_example\\placeholder.tsx 1`] = `"

                                                                        加载中的图片

                                                                        默认占位
                                                                        图片加载中
                                                                        自定义占位

                                                                        加载失败的图片

                                                                        默认错误
                                                                        图片加载中
                                                                        自定义错误
                                                                        图片加载中
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\image\\_example\\shape.tsx 1`] = `"
                                                                        图片加载中
                                                                        square
                                                                        图片加载中
                                                                        round
                                                                        图片加载中
                                                                        circle
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\image-viewer\\_example\\album.tsx 1`] = `"
                                                                        test
                                                                        图片加载中
                                                                        预览
                                                                        相册封面标题
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\image-viewer\\_example\\albumIcons.tsx 1`] = `"
                                                                        test
                                                                        图片加载中
                                                                        预览
                                                                        相册封面标题
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\image-viewer\\_example\\base.tsx 1`] = `"
                                                                        test
                                                                        图片加载中
                                                                        预览
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\image-viewer\\_example\\block.tsx 1`] = `"
                                                                        test
                                                                        图片加载中
                                                                        预览
                                                                        test
                                                                        图片加载中
                                                                        预览
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\image-viewer\\_example\\button.tsx 1`] = `""`; - -exports[`ssr snapshot test > ssr test packages\\components\\image-viewer\\_example\\error.tsx 1`] = `"
                                                                        test
                                                                        图片加载中
                                                                        预览
                                                                        test
                                                                        图片加载中
                                                                        预览
                                                                        test
                                                                        图片加载中
                                                                        预览
                                                                        test
                                                                        图片加载中
                                                                        预览
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\image-viewer\\_example\\modeless.tsx 1`] = `"
                                                                        test
                                                                        图片加载中
                                                                        预览
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\image-viewer\\_example\\multiple.tsx 1`] = `"
                                                                        test
                                                                        图片加载中
                                                                        预览
                                                                        test
                                                                        图片加载中
                                                                        预览
                                                                        test
                                                                        图片加载中
                                                                        预览
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\image-viewer\\_example\\svg.tsx 1`] = `"
                                                                        test
                                                                        图片加载中
                                                                        预览
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\input\\_example\\addon.tsx 1`] = `"
                                                                        http://
                                                                        http://
                                                                        .com
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\input\\_example\\align.tsx 1`] = `"
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\input\\_example\\auto-width.tsx 1`] = `"
                                                                        宽度自适应
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\input\\_example\\base.tsx 1`] = `"
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\input\\_example\\borderless.tsx 1`] = `"
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\input\\_example\\clearable.tsx 1`] = `"
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\input\\_example\\disabled.tsx 1`] = `"
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\input\\_example\\format.tsx 1`] = `"
                                                                        请输入数字
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\input\\_example\\group.tsx 1`] = `"
                                                                         - 
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\input\\_example\\max-length-count.tsx 1`] = `"
                                                                        0/10
                                                                        0/10
                                                                        0/5
                                                                        0/5
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\input\\_example\\password.tsx 1`] = `"
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\input\\_example\\size.tsx 1`] = `"
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\input\\_example\\status.tsx 1`] = `"
                                                                        这是普通文本提示
                                                                        校验通过文本提示
                                                                        校验不通过文本提示
                                                                        校验存在严重问题文本提示
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\input\\_example\\textarea.tsx 1`] = `"
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\input-adornment\\_example\\select.tsx 1`] = `"
                                                                        请选择
                                                                        请选择
                                                                        请选择
                                                                        请选择
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\input-adornment\\_example\\text.tsx 1`] = `"
                                                                        http://
                                                                        请输入
                                                                        .com
                                                                        http://
                                                                        .com
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\input-number\\_example\\align.tsx 1`] = `"
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\input-number\\_example\\auto-width.tsx 1`] = `"
                                                                        请输入
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\input-number\\_example\\center.tsx 1`] = `"
                                                                        请输入
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\input-number\\_example\\default.tsx 1`] = `"
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\input-number\\_example\\format.tsx 1`] = `"
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\input-number\\_example\\large-number.tsx 1`] = `"
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\input-number\\_example\\left.tsx 1`] = `"
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\input-number\\_example\\normal.tsx 1`] = `"
                                                                        机器:
                                                                        金额:
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\input-number\\_example\\size.tsx 1`] = `"
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\input-number\\_example\\status.tsx 1`] = `"
                                                                        这是普通文本提示
                                                                        校验通过文本提示
                                                                        校验不通过文本提示
                                                                        校验存在严重问题文本提示
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\input-number\\_example\\step.tsx 1`] = `"
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\layout\\_example\\aside.tsx 1`] = `"

                                                                        侧边导航布局

                                                                        Content
                                                                        Copyright @ 2019-2020 Tencent. All Rights Reserved
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\layout\\_example\\base.tsx 1`] = `"

                                                                        顶部导航布局

                                                                        Header
                                                                        Content
                                                                        Copyright @ 2019-2021 Tencent. All Rights Reserved

                                                                        侧边导航布局

                                                                        Content
                                                                        Copyright @ 2019-2021 Tencent. All Rights Reserved

                                                                        组合导航布局

                                                                        Header
                                                                        Content
                                                                        Copyright @ 2019-2021 Tencent. All Rights Reserved

                                                                        Header
                                                                        Content
                                                                        Copyright @ 2019-2021 Tencent. All Rights Reserved

                                                                        Header
                                                                        Content
                                                                        Copyright @ 2019-2021 Tencent. All Rights Reserved
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\layout\\_example\\combine.tsx 1`] = `"
                                                                        • 已选内容
                                                                        • 菜单内容一
                                                                        • 菜单内容二
                                                                        • 菜单内容三
                                                                        Content
                                                                        Copyright @ 2019-2020 Tencent. All Rights Reserved
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\layout\\_example\\top.tsx 1`] = `"
                                                                        • 已选内容
                                                                        • 菜单内容一
                                                                        • 菜单内容二
                                                                        • 菜单内容三
                                                                        Content
                                                                        Copyright @ 2019-2020 Tencent. All Rights Reserved
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\link\\_example\\base.tsx 1`] = `"跳转链接"`; - -exports[`ssr snapshot test > ssr test packages\\components\\link\\_example\\disabled.tsx 1`] = `""`; - -exports[`ssr snapshot test > ssr test packages\\components\\link\\_example\\hover.tsx 1`] = `""`; - -exports[`ssr snapshot test > ssr test packages\\components\\link\\_example\\icon.tsx 1`] = `""`; - -exports[`ssr snapshot test > ssr test packages\\components\\link\\_example\\size.tsx 1`] = `""`; - -exports[`ssr snapshot test > ssr test packages\\components\\link\\_example\\theme.tsx 1`] = `""`; - -exports[`ssr snapshot test > ssr test packages\\components\\link\\_example\\underline.tsx 1`] = `""`; - -exports[`ssr snapshot test > ssr test packages\\components\\list\\_example\\asyncLoading.tsx 1`] = `"
                                                                        • 列表内容列表内容列表内容
                                                                        • 列表内容列表内容列表内容
                                                                        • 列表内容列表内容列表内容
                                                                        • 列表内容列表内容列表内容
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\list\\_example\\base.tsx 1`] = `"
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\list\\_example\\header-footer.tsx 1`] = `"
                                                                        这里是 Header
                                                                        • 列表内容列表内容列表内容
                                                                        • 列表内容列表内容列表内容
                                                                        • 列表内容列表内容列表内容
                                                                        • 列表内容列表内容列表内容

                                                                        通过 TNode 插入的 Header

                                                                        • 列表内容列表内容列表内容
                                                                        • 列表内容列表内容列表内容
                                                                        • 列表内容列表内容列表内容
                                                                        • 列表内容列表内容列表内容
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\list\\_example\\image-text.tsx 1`] = `"
                                                                        • 列表主内容

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

                                                                        • 列表主内容

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

                                                                        • 列表主内容

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

                                                                        • 列表主内容

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

                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\list\\_example\\multiline.tsx 1`] = `"
                                                                        • 列表主内容

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

                                                                        • 列表主内容

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

                                                                        • 列表主内容

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

                                                                        • 列表主内容

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

                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\list\\_example\\operation.tsx 1`] = `"
                                                                        • 列表主内容

                                                                          列表内容列表内容

                                                                        • 列表主内容

                                                                          列表内容列表内容

                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\list\\_example\\scroll.tsx 1`] = `"
                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\list\\_example\\size.tsx 1`] = `"

                                                                          尺寸-小

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

                                                                          尺寸-中(默认)

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

                                                                          尺寸-大

                                                                          • 列表内容列表内容列表内容
                                                                          • 列表内容列表内容列表内容
                                                                          • 列表内容列表内容列表内容
                                                                          • 列表内容列表内容列表内容
                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\list\\_example\\stripe.tsx 1`] = `"
                                                                          • 列表内容列表内容列表内容
                                                                          • 列表内容列表内容列表内容
                                                                          • 列表内容列表内容列表内容
                                                                          • 列表内容列表内容列表内容
                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\list\\_example\\virtual-scroll.tsx 1`] = `"
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\loading\\_example\\base.tsx 1`] = `"
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\loading\\_example\\delay.tsx 1`] = `"
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\loading\\_example\\fullscreen.tsx 1`] = `"Loading state:"`; - -exports[`ssr snapshot test > ssr test packages\\components\\loading\\_example\\icon-text.tsx 1`] = `"
                                                                            拼命加载中...
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\loading\\_example\\service.tsx 1`] = `"
                                                                            我是service的容器
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\loading\\_example\\size.tsx 1`] = `"
                                                                            加载中...(小)
                                                                            加载中...(中)
                                                                            加载中...(大)
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\loading\\_example\\text.tsx 1`] = `"
                                                                            静态文字加载中...
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\loading\\_example\\wrap.tsx 1`] = `"
                                                                            this is loading component
                                                                            this is loading component
                                                                            this is loading component
                                                                            this is loading component
                                                                            this is loading component
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\menu\\_example\\closable-side.tsx 1`] = `"
                                                                            • 仪表盘
                                                                            • 资源列表
                                                                            • 调度平台
                                                                            • 精准监控
                                                                            • 根目录
                                                                            • 消息区
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\menu\\_example\\custom-header.tsx 1`] = `"
                                                                            • 菜单1
                                                                            • 菜单2
                                                                            • 菜单3
                                                                            • 菜单4
                                                                            • 菜单1
                                                                            • 菜单2
                                                                            • 菜单3
                                                                            • 菜单4
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\menu\\_example\\custom-side.tsx 1`] = `"
                                                                            • 仪表盘
                                                                            • 资源列表
                                                                            • 视频区
                                                                            • 根目录
                                                                            • 调度平台
                                                                            • 精准监控
                                                                            • 个人中心
                                                                            • 仪表盘
                                                                            • 资源列表
                                                                            • 视频区
                                                                            • 根目录
                                                                            • 调度平台
                                                                            • 精准监控
                                                                            • 个人中心
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\menu\\_example\\double.tsx 1`] = `"
                                                                            • 菜单1
                                                                            • 菜单2
                                                                            • 菜单3
                                                                            • 菜单4
                                                                              子菜单1
                                                                              子菜单2
                                                                            • 菜单1
                                                                            • 菜单2
                                                                            • 菜单3
                                                                            • 菜单4
                                                                              子菜单1
                                                                              子菜单2
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\menu\\_example\\group-side.tsx 1`] = `"
                                                                              主导航
                                                                            • 仪表盘
                                                                            • 组件
                                                                            • 列表项
                                                                              • 基础列表项
                                                                              • 卡片列表项
                                                                              • 筛选列表项
                                                                              • 树状筛选列表项
                                                                            • 表单项
                                                                            • 详情页
                                                                            • 结果页
                                                                            • 更多
                                                                            • 个人页
                                                                            • 登录页
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\menu\\_example\\multi-side.tsx 1`] = `"
                                                                            • 仪表盘
                                                                            • 资源列表
                                                                              • 菜单二
                                                                            • 调度平台
                                                                              • 二级菜单-1
                                                                                • 三级菜单-1
                                                                                • 三级菜单-2
                                                                                • 三级菜单-3
                                                                              • 二级菜单-2
                                                                            • 精准监控
                                                                              • 二级菜单-1
                                                                              • 二级菜单-2
                                                                            • 根目录
                                                                            • 消息区
                                                                              • 二级菜单-1
                                                                              • 二级菜单-2
                                                                            • 仪表盘
                                                                            • 资源列表
                                                                              • 二级菜单-1
                                                                                • 三级菜单-1
                                                                                • 三级菜单-2
                                                                                • 三级菜单-3
                                                                            • 调度平台
                                                                              • 二级菜单-1
                                                                              • 二级菜单-2
                                                                            • 精准监控
                                                                              • 二级菜单-1
                                                                              • 二级菜单-2
                                                                            • 根目录
                                                                            • 消息区
                                                                              • 二级菜单-1
                                                                              • 二级菜单-2
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\menu\\_example\\multiple.tsx 1`] = `"
                                                                            • 电器
                                                                            • 女装
                                                                            • 水果蔬菜
                                                                            • 其他
                                                                            • 电器
                                                                            • 女装
                                                                            • 水果蔬菜
                                                                            • 其他
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\menu\\_example\\popup-side.tsx 1`] = `"
                                                                            • 仪表盘
                                                                            • 资源列表
                                                                            • 调度平台
                                                                            • 精准监控
                                                                            • 根目录
                                                                            • 消息区
                                                                            • 仪表盘
                                                                            • 资源列表
                                                                            • 调度平台
                                                                            • 精准监控
                                                                            • 根目录
                                                                            • 消息区
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\menu\\_example\\single.tsx 1`] = `"
                                                                            • 菜单1
                                                                            • 菜单2
                                                                            • 菜单3
                                                                            • 菜单4
                                                                            • 菜单1
                                                                            • 菜单2
                                                                            • 菜单3
                                                                            • 菜单4
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\menu\\_example\\single-side.tsx 1`] = `"
                                                                            • 仪表盘
                                                                            • 资源列表
                                                                            • 视频区
                                                                            • 根目录
                                                                            • 调度平台
                                                                            • 精准监控
                                                                            • 个人中心
                                                                            • 仪表盘
                                                                            • 资源列表
                                                                            • 视频区
                                                                            • 根目录
                                                                            • 调度平台
                                                                            • 精准监控
                                                                            • 个人中心
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\message\\_example\\base.tsx 1`] = `"
                                                                            用户表示普通操作信息提示
                                                                            用于表示操作顺利达成
                                                                            用户表示操作引起一定后果
                                                                            用于表示操作引起严重的后果
                                                                            用于帮助用户操作的信息提示
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\message\\_example\\close.tsx 1`] = `"
                                                                            默认关闭按钮
                                                                            自定义关闭按钮(文字)关闭
                                                                            自定义关闭按钮(函数)
                                                                            x
                                                                            自定义关闭按钮(ReactNode)
                                                                            x
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\message\\_example\\close-all.tsx 1`] = `"
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\message\\_example\\close-function.tsx 1`] = `""`; - -exports[`ssr snapshot test > ssr test packages\\components\\message\\_example\\config.tsx 1`] = `"
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\message\\_example\\duration.tsx 1`] = `"
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\message\\_example\\loading.tsx 1`] = `"
                                                                            用于表示操作正在生效的过程中
                                                                            用于表示操作顺利达成(10s)
                                                                            用于表示普通操作失败中断(10s)
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\message\\_example\\methods.tsx 1`] = `"
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\message\\_example\\offset.tsx 1`] = `"
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\notification\\_example\\attach.tsx 1`] = `"
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\notification\\_example\\base.tsx 1`] = `"
                                                                            标题名称
                                                                            这是一条消息通知
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\notification\\_example\\close-all.tsx 1`] = `"
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\notification\\_example\\content.tsx 1`] = `"
                                                                            自定义内容(字符串)
                                                                            这是一条消息通知
                                                                            自定义内容
                                                                            这是一条消息通知
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\notification\\_example\\footer.tsx 1`] = `"
                                                                            自定义底部详情
                                                                            这是一条消息通知
                                                                            重启查看详情
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\notification\\_example\\icon.tsx 1`] = `"
                                                                            普通通知
                                                                            这是一条消息通知这是一条消息通知这是一条消息通知这是一条消息通知这是一条消息通知这是一条消息通知这是一条消息通知
                                                                            危险通知
                                                                            这是一条消息通知这是一条消息通知这是一条消息通知这是一条消息通知这是一条消息通知这是一条消息通知这是一条消息通知
                                                                            告警通知
                                                                            这是一条消息通知这是一条消息通知这是一条消息通知这是一条消息通知这是一条消息通知这是一条消息通知这是一条消息通知
                                                                            成功通知
                                                                            这是一条消息通知这是一条消息通知这是一条消息通知这是一条消息通知这是一条消息通知这是一条消息通知这是一条消息通知
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\notification\\_example\\operation.tsx 1`] = `"
                                                                            超出的文本省略号显示
                                                                            文案不限长度,但是展示最大显示三行折行的末尾显示折行末尾显示折行末尾显示折行末尾显示折行末尾显示折行折行末尾显示折行折行末尾显示折行末尾显示折行折行末尾
                                                                            自定义底部
                                                                            使用 props function 自定义底部内容
                                                                            自定义标题 我是副标题
                                                                            1. 使用 props function 自定义标题;2. 使用插槽自定义底部内容
                                                                            自定义标题 我是副标题
                                                                            1. 使用插槽自定义标题 2. 使用插槽自定义底部内容
                                                                            自定义内容
                                                                            使用插槽自定义内容
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\notification\\_example\\placement.tsx 1`] = `"
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\notification\\_example\\plugin.tsx 1`] = `"
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\notification\\_example\\toggle.tsx 1`] = `""`; - -exports[`ssr snapshot test > ssr test packages\\components\\pagination\\_example\\base.tsx 1`] = `"
                                                                            共 100 条数据
                                                                            请选择
                                                                            • 1
                                                                            • 2
                                                                            • 3
                                                                            • 4
                                                                            • 5
                                                                            • 20
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\pagination\\_example\\jump.tsx 1`] = `"
                                                                            共 645 条数据
                                                                            请选择
                                                                            • 1
                                                                            • 2
                                                                            • 3
                                                                            • 4
                                                                            • 5
                                                                            • 33
                                                                            跳至
                                                                            / 33 页
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\pagination\\_example\\mini.tsx 1`] = `"
                                                                            共 100 条数据
                                                                            请选择
                                                                            • 1
                                                                            • 2
                                                                            • 3
                                                                            • 4
                                                                            • 5
                                                                            • 20
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\pagination\\_example\\more.tsx 1`] = `"
                                                                            展示首尾页码省略
                                                                            共 100 条数据
                                                                            请选择
                                                                            • 1
                                                                            • 2
                                                                            • 3
                                                                            • 4
                                                                            • 5
                                                                            • 20
                                                                            不展示首尾页码省略
                                                                            共 100 条数据
                                                                            请选择
                                                                            • 1
                                                                            • 2
                                                                            • 3
                                                                            • 4
                                                                            • 5
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\pagination\\_example\\page-num.tsx 1`] = `"
                                                                            共 645 条数据
                                                                            请选择
                                                                            • 1
                                                                            • 2
                                                                            • 3
                                                                            • 4
                                                                            • 5
                                                                            • 33
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\pagination\\_example\\pagination-mini.tsx 1`] = `"
                                                                            layout:
                                                                            size:
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\pagination\\_example\\simple.tsx 1`] = `"
                                                                            共 100 条数据
                                                                            请选择
                                                                            跳至
                                                                            / 20 页
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\pagination\\_example\\simple-mini.tsx 1`] = `"
                                                                            共 100 条数据
                                                                            请选择
                                                                            跳至
                                                                            / 20 页
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\pagination\\_example\\total.tsx 1`] = `"
                                                                            共 685 条数据
                                                                            请选择
                                                                            • 1
                                                                            • 2
                                                                            • 3
                                                                            • 4
                                                                            • 5
                                                                            • 69
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\popconfirm\\_example\\base.tsx 1`] = `"
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\popconfirm\\_example\\button.tsx 1`] = `"
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\popconfirm\\_example\\describe.tsx 1`] = `"
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\popconfirm\\_example\\extends.tsx 1`] = `""`; - -exports[`ssr snapshot test > ssr test packages\\components\\popconfirm\\_example\\icon.tsx 1`] = `"
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\popconfirm\\_example\\inherit.tsx 1`] = `"
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\popconfirm\\_example\\placement.tsx 1`] = `"
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\popconfirm\\_example\\theme.tsx 1`] = `"
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\popup\\_example\\base.tsx 1`] = `""`; - -exports[`ssr snapshot test > ssr test packages\\components\\popup\\_example\\container.tsx 1`] = `"
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\popup\\_example\\destroy.tsx 1`] = `""`; - -exports[`ssr snapshot test > ssr test packages\\components\\popup\\_example\\disabled.tsx 1`] = `""`; - -exports[`ssr snapshot test > ssr test packages\\components\\popup\\_example\\dynamic.tsx 1`] = `""`; - -exports[`ssr snapshot test > ssr test packages\\components\\popup\\_example\\placement.tsx 1`] = `"
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\popup\\_example\\plugin.tsx 1`] = `"
                                                                            这里是一个日志查询的例子,在很长的日志内容中,日志内容存在换行的情况,可以点击链接进行日志查询操作点击此链接,会打开浮层进行跳转操作
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\popup\\_example\\popper-options.tsx 1`] = `"
                                                                            请输入横向偏移量:
                                                                            请输入纵向偏移量:
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\popup\\_example\\style.tsx 1`] = `"
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\popup\\_example\\trigger.tsx 1`] = `"
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\popup\\_example\\trigger-element.tsx 1`] = `"
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\popup\\_example\\visible.tsx 1`] = `""`; - -exports[`ssr snapshot test > ssr test packages\\components\\progress\\_example\\circle.tsx 1`] = `"
                                                                            默认样式
                                                                            0%
                                                                            不显示数字
                                                                            自定义内容
                                                                            75 day
                                                                            进度完成
                                                                            进度发生错误
                                                                            进度被中断
                                                                            自定义颜色
                                                                            小尺寸
                                                                            0%
                                                                            默认尺寸
                                                                            0%
                                                                            大尺寸
                                                                            0%
                                                                            自定义尺寸
                                                                            0%
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\progress\\_example\\line.tsx 1`] = `"

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

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

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

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

                                                                            30%

                                                                            30%
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\qrcode\\_example\\base.tsx 1`] = `"
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\qrcode\\_example\\customColor.tsx 1`] = `"
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\qrcode\\_example\\customSize.tsx 1`] = `"

                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\qrcode\\_example\\customStatusRender.tsx 1`] = `"

                                                                            加载中...

                                                                            二维码过期

                                                                            点击刷新

                                                                            已扫描
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\qrcode\\_example\\download.tsx 1`] = `"
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\qrcode\\_example\\icon.tsx 1`] = `"
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\qrcode\\_example\\level.tsx 1`] = `"
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\qrcode\\_example\\popover.tsx 1`] = `""`; - -exports[`ssr snapshot test > ssr test packages\\components\\qrcode\\_example\\status.tsx 1`] = `"

                                                                            二维码过期

                                                                            点击刷新

                                                                            已扫描

                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\qrcode\\_example\\type.tsx 1`] = `"
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\radio\\_example\\base.tsx 1`] = `"
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\radio\\_example\\group.tsx 1`] = `"
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\radio\\_example\\size.tsx 1`] = `"
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\radio\\_example\\type.tsx 1`] = `"
                                                                            普通单选按钮
                                                                            边框型单选按钮
                                                                            填充型单选按钮
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\range-input\\_example\\base.tsx 1`] = `"
                                                                            -
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\range-input\\_example\\popup.tsx 1`] = `"
                                                                            -
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\range-input\\_example\\size.tsx 1`] = `"
                                                                            -
                                                                            -
                                                                            -
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\range-input\\_example\\status.tsx 1`] = `"
                                                                            -
                                                                            -
                                                                            -
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\rate\\_example\\base.tsx 1`] = `"
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\rate\\_example\\clearable.tsx 1`] = `"

                                                                            clearable: true

                                                                            clearable: false

                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\rate\\_example\\custom.tsx 1`] = `"
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\rate\\_example\\icon.tsx 1`] = `"
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\rate\\_example\\size.tsx 1`] = `"

                                                                            16px

                                                                            24px

                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\rate\\_example\\status.tsx 1`] = `"

                                                                            未评分状态

                                                                            满分状态

                                                                            半星状态

                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\rate\\_example\\texts.tsx 1`] = `"
                                                                            满意
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\select\\_example\\base.tsx 1`] = `"
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\select\\_example\\collapsed.tsx 1`] = `"

                                                                            default:

                                                                            请选择

                                                                            use collapsedItems:

                                                                            size control:
                                                                            disabled control:
                                                                            readonly control:
                                                                            请选择
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\select\\_example\\creatable.tsx 1`] = `"
                                                                            请选择
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\select\\_example\\custom-options.tsx 1`] = `"
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\select\\_example\\custom-selected.tsx 1`] = `"
                                                                            请选择
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\select\\_example\\disabled.tsx 1`] = `"
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\select\\_example\\filterable.tsx 1`] = `"
                                                                            -请选择-
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\select\\_example\\group.tsx 1`] = `"
                                                                            请选择
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\select\\_example\\keys.tsx 1`] = `"
                                                                            请选择
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\select\\_example\\label-in-value.tsx 1`] = `"
                                                                            请选择
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\select\\_example\\max.tsx 1`] = `"
                                                                            请选择
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\select\\_example\\multiple.tsx 1`] = `"
                                                                            请选择
                                                                            请选择云产品
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\select\\_example\\noborder.tsx 1`] = `"
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\select\\_example\\options.tsx 1`] = `"
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\select\\_example\\panel.tsx 1`] = `"
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\select\\_example\\popup-props.tsx 1`] = `"
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\select\\_example\\prefix.tsx 1`] = `"
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\select\\_example\\remote-search.tsx 1`] = `"
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\select\\_example\\scroll-bottom.tsx 1`] = `"
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\select\\_example\\scroll-top.tsx 1`] = `"
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\select\\_example\\size.tsx 1`] = `"
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\select\\_example\\status.tsx 1`] = `"
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\select\\_example\\virtual-scroll.tsx 1`] = `"
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\select-input\\_example\\autocomplete.tsx 1`] = `"
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\select-input\\_example\\autowidth.tsx 1`] = `"
                                                                            tdesign-vue
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\select-input\\_example\\autowidth-multiple.tsx 1`] = `"
                                                                            Vue
                                                                            +2
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\select-input\\_example\\borderless.tsx 1`] = `"
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\select-input\\_example\\borderless-multiple.tsx 1`] = `"
                                                                            Vue
                                                                            +2
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\select-input\\_example\\collapsed-items.tsx 1`] = `"
                                                                            tdesign-vue
                                                                            +5


                                                                            tdesign-vue
                                                                            tdesign-react
                                                                            More(+4)
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\select-input\\_example\\custom-tag.tsx 1`] = `"
                                                                            tdesign-vue


                                                                            tdesign-vue
                                                                            tdesign-react


                                                                            tdesign-vuetdesign-reacttdesign-mobile-vue
                                                                            tdesign-vuetdesign-reacttdesign-mobile-vue
                                                                            tdesign-vuetdesign-reacttdesign-mobile-vue
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\select-input\\_example\\excess-tags-display-type.tsx 1`] = `"

                                                                            第一种呈现方式:超出时滚动显示


                                                                            tdesign-vue
                                                                            tdesign-react
                                                                            tdesign-miniprogram
                                                                            tdesign-angular
                                                                            tdesign-mobile-vue
                                                                            tdesign-mobile-react



                                                                            第二种呈现方式:超出时换行显示


                                                                            tdesign-vue
                                                                            tdesign-react
                                                                            tdesign-miniprogram
                                                                            tdesign-angular
                                                                            tdesign-mobile-vue
                                                                            tdesign-mobile-react
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\select-input\\_example\\label-suffix.tsx 1`] = `"
                                                                            前置内容:


                                                                            单位:元
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\select-input\\_example\\multiple.tsx 1`] = `"



                                                                            Vue
                                                                            React
                                                                            Miniprogram
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\select-input\\_example\\single.tsx 1`] = `"
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\select-input\\_example\\status.tsx 1`] = `"
                                                                            禁用状态:
                                                                            这是禁用状态的文本
                                                                            只读状态:
                                                                            这是只读状态的文本提示
                                                                            成功状态:
                                                                            校验通过文本提示
                                                                            警告状态:
                                                                            校验不通过文本提示
                                                                            错误状态:
                                                                            校验存在严重问题文本提示
                                                                            加载状态:
                                                                            处于加载状态的文本提示
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\select-input\\_example\\width.tsx 1`] = `"
                                                                            下拉框默认宽度:

                                                                            下拉框最大宽度:

                                                                            与内容宽度一致:

                                                                            下拉框固定宽度:

                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\skeleton\\_example\\advance.tsx 1`] = `"
                                                                            组合成网页效果
                                                                            image
                                                                            image
                                                                            image
                                                                            确定

                                                                            标题

                                                                            内容
                                                                            组合成列表效果
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\skeleton\\_example\\animation.tsx 1`] = `"
                                                                            渐变加载动画
                                                                            闪烁加载动画
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\skeleton\\_example\\base.tsx 1`] = `"
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\skeleton\\_example\\delay.tsx 1`] = `"
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\skeleton\\_example\\theme.tsx 1`] = `"
                                                                            文本
                                                                            头像
                                                                            段落
                                                                            头像描述
                                                                            选项卡
                                                                            文章
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\slider\\_example\\base.tsx 1`] = `"
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\slider\\_example\\disabled.tsx 1`] = `"
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\slider\\_example\\input-number.tsx 1`] = `"
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\slider\\_example\\input-number-vertical.tsx 1`] = `"
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\slider\\_example\\marks.tsx 1`] = `"
                                                                            0°C
                                                                            12°C
                                                                            37°C
                                                                            0°C
                                                                            8°C
                                                                            37°C
                                                                            50°C
                                                                            70°C
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\slider\\_example\\min-and-max.tsx 1`] = `"
                                                                            min:10
                                                                            max:30
                                                                            min:10
                                                                            max:30
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\slider\\_example\\step.tsx 1`] = `"
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\slider\\_example\\vertical.tsx 1`] = `"
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\slider\\_example\\vertical-marks.tsx 1`] = `"
                                                                            0°C
                                                                            12°C
                                                                            37°C
                                                                            0°C
                                                                            8°C
                                                                            37°C
                                                                            50°C
                                                                            70°C
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\space\\_example\\align.tsx 1`] = `"
                                                                            start
                                                                            center
                                                                            end
                                                                            baseline
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\space\\_example\\base.tsx 1`] = `"
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\space\\_example\\break-line.tsx 1`] = `"
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\space\\_example\\separator.tsx 1`] = `"
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\space\\_example\\size.tsx 1`] = `"

                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\space\\_example\\vertical.tsx 1`] = `"
                                                                            仅有内容区域的卡片形式。卡片内容区域可以是文字、图片、表单、表格等形式信息内容。可使用大中小不同的卡片尺寸,按业务需求进行呈现。
                                                                            仅有内容区域的卡片形式。卡片内容区域可以是文字、图片、表单、表格等形式信息内容。可使用大中小不同的卡片尺寸,按业务需求进行呈现。
                                                                            仅有内容区域的卡片形式。卡片内容区域可以是文字、图片、表单、表格等形式信息内容。可使用大中小不同的卡片尺寸,按业务需求进行呈现。
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\statistic\\_example\\animation.tsx 1`] = `"
                                                                            Total Assets
                                                                            0.00%
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\statistic\\_example\\base.tsx 1`] = `"
                                                                            Total Assets
                                                                            82.76%
                                                                            Total Assets
                                                                            82.76USD
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\statistic\\_example\\color.tsx 1`] = `"
                                                                            Total Assets
                                                                            82.76%
                                                                            Total Assets
                                                                            82.76%
                                                                            Total Assets
                                                                            82.76%
                                                                            Total Assets
                                                                            82.76%
                                                                            Total Assets
                                                                            82.76%
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\statistic\\_example\\combination.tsx 1`] = `"
                                                                            Total Assets
                                                                            82.76%
                                                                            Total Assets
                                                                            52.18%
                                                                            Yesterday traffic
                                                                            Voice duration
                                                                            789minute
                                                                            the day before 9%
                                                                            Total number of voice DAUs
                                                                            188
                                                                            the day before
                                                                            9%
                                                                            last week
                                                                            9%
                                                                            Total Assets
                                                                            52.18%
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\statistic\\_example\\loading.tsx 1`] = `"
                                                                            Downloads
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\statistic\\_example\\slot.tsx 1`] = `"
                                                                            Total Assets
                                                                            56.32%
                                                                            Total Assets
                                                                            $176,059%
                                                                            Total Assets
                                                                            62.58%
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\statistic\\_example\\trend.tsx 1`] = `"
                                                                            Total Assets
                                                                            82.76%
                                                                            Total Assets
                                                                            82.76%
                                                                            Total Assets
                                                                            82.76%
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\steps\\_example\\extra.tsx 1`] = `"
                                                                            步骤1
                                                                            这里是提示文字
                                                                            2
                                                                            步骤2
                                                                            这里是提示文字
                                                                            3
                                                                            步骤3
                                                                            这里是提示文字
                                                                            4
                                                                            步骤4
                                                                            这里是提示文字
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\steps\\_example\\icon.tsx 1`] = `"
                                                                            登录
                                                                            已完成状态
                                                                            购物
                                                                            进行中状态
                                                                            支付
                                                                            未开始
                                                                            完成
                                                                            未开始
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\steps\\_example\\no-sequence.tsx 1`] = `"
                                                                            已完成的步骤
                                                                            这里是提示文字
                                                                            进行中的步骤
                                                                            这里是提示文字
                                                                            未进行的步骤
                                                                            这里是提示文字
                                                                            未进行的步骤
                                                                            这里是提示文字
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\steps\\_example\\sequence.tsx 1`] = `"
                                                                            已完成的步骤
                                                                            这里是提示文字
                                                                            2
                                                                            进行中的步骤
                                                                            这里是提示文字
                                                                            3
                                                                            未进行的步骤
                                                                            这里是提示文字
                                                                            4
                                                                            未进行的步骤
                                                                            这里是提示文字
                                                                            已完成的步骤
                                                                            这里是提示文字
                                                                            已完成的步骤
                                                                            这里是提示文字
                                                                            3
                                                                            进行中的步骤
                                                                            这里是提示文字
                                                                            4
                                                                            未进行的步骤
                                                                            这里是提示文字
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\steps\\_example\\status.tsx 1`] = `"
                                                                            已完成的步骤
                                                                            这里是提示文字
                                                                            2
                                                                            进行中的步骤
                                                                            这里是提示文字
                                                                            3
                                                                            未进行的步骤
                                                                            这里是提示文字
                                                                            4
                                                                            未进行的步骤
                                                                            这里是提示文字
                                                                            已完成的步骤
                                                                            这里是提示文字
                                                                            2
                                                                            进行中的步骤
                                                                            这里是提示文字
                                                                            错误的步骤
                                                                            优先展示\`t-step\`中设置的 status
                                                                            4
                                                                            未进行的步骤
                                                                            这里是提示文字
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\steps\\_example\\vertical-no-sequence.tsx 1`] = `"
                                                                            已完成的步骤
                                                                            这里是提示文字
                                                                            进行中的步骤
                                                                            这里是提示文字
                                                                            未进行的步骤
                                                                            这里是提示文字
                                                                            未进行的步骤
                                                                            这里是提示文字
                                                                            未进行的步骤
                                                                            这里是提示文字
                                                                            进行中的步骤
                                                                            这里是提示文字
                                                                            已完成的步骤
                                                                            这里是提示文字
                                                                            已完成的步骤
                                                                            这里是提示文字
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\steps\\_example\\vertical-sequence.tsx 1`] = `"
                                                                            已完成的步骤
                                                                            这里是提示文字
                                                                            2
                                                                            进行中的步骤
                                                                            这里是提示文字
                                                                            3
                                                                            未进行的步骤
                                                                            这里是提示文字
                                                                            4
                                                                            未进行的步骤
                                                                            这里是提示文字
                                                                            4
                                                                            未进行的步骤
                                                                            这里是提示文字
                                                                            3
                                                                            进行中的步骤
                                                                            这里是提示文字
                                                                            已完成的步骤
                                                                            这里是提示文字
                                                                            已完成的步骤
                                                                            这里是提示文字
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\sticky-tool\\_example\\base.tsx 1`] = `"
                                                                            chat
                                                                            add
                                                                            qrcode
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\sticky-tool\\_example\\compact.tsx 1`] = `"
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\sticky-tool\\_example\\shape.tsx 1`] = `"
                                                                            chat
                                                                            add
                                                                            qrcode
                                                                            chat
                                                                            add
                                                                            qrcode
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\swiper\\_example\\base.tsx 1`] = `"
                                                                            6
                                                                            1
                                                                            2
                                                                            3
                                                                            4
                                                                            5
                                                                            6
                                                                            1
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\swiper\\_example\\card.tsx 1`] = `"
                                                                            1
                                                                            2
                                                                            3
                                                                            4
                                                                            5
                                                                            6
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\swiper\\_example\\current.tsx 1`] = `"
                                                                            6
                                                                            1
                                                                            2
                                                                            3
                                                                            4
                                                                            5
                                                                            6
                                                                            1
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\swiper\\_example\\fade.tsx 1`] = `"
                                                                            6
                                                                            1
                                                                            2
                                                                            3
                                                                            4
                                                                            5
                                                                            6
                                                                            1
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\swiper\\_example\\fraction.tsx 1`] = `"
                                                                            6
                                                                            1
                                                                            2
                                                                            3
                                                                            4
                                                                            5
                                                                            6
                                                                            1
                                                                            1/6
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\swiper\\_example\\placement.tsx 1`] = `"
                                                                            6
                                                                            1
                                                                            2
                                                                            3
                                                                            4
                                                                            5
                                                                            6
                                                                            1
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\swiper\\_example\\size.tsx 1`] = `"

                                                                            large

                                                                            6
                                                                            1
                                                                            2
                                                                            3
                                                                            4
                                                                            5
                                                                            6
                                                                            1

                                                                            small

                                                                            6
                                                                            1
                                                                            2
                                                                            3
                                                                            4
                                                                            5
                                                                            6
                                                                            1
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\swiper\\_example\\vertical.tsx 1`] = `"
                                                                            6
                                                                            1
                                                                            2
                                                                            3
                                                                            4
                                                                            5
                                                                            6
                                                                            1
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\switch\\_example\\base.tsx 1`] = `"
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\switch\\_example\\beforeChange.tsx 1`] = `"
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\switch\\_example\\describe.tsx 1`] = `"
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\switch\\_example\\size.tsx 1`] = `"
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\switch\\_example\\status.tsx 1`] = `"
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\table\\_example\\affix.tsx 1`] = `"
                                                                            共 38 条数据
                                                                            请选择
                                                                            • 1
                                                                            • 2
                                                                            • 3
                                                                            • 4
                                                                            • 5
                                                                            • 6
                                                                            • 7
                                                                            • 8
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\table\\_example\\async-loading.tsx 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 packages\\components\\table\\_example\\base.tsx 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
                                                                            共 28 条数据
                                                                            请选择
                                                                            • 1
                                                                            • 2
                                                                            • 3
                                                                            • 4
                                                                            • 5
                                                                            • 6
                                                                            跳至
                                                                            / 6 页
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\table\\_example\\custom-cell.tsx 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 packages\\components\\table\\_example\\custom-col.tsx 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
                                                                            共 100 条数据
                                                                            请选择
                                                                            • 1
                                                                            • 2
                                                                            • 3
                                                                            • 4
                                                                            • 5
                                                                            • 20
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\table\\_example\\custom-col-button.tsx 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
                                                                            共 100 条数据
                                                                            请选择
                                                                            • 1
                                                                            • 2
                                                                            • 3
                                                                            • 4
                                                                            • 5
                                                                            • 20
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\table\\_example\\custom-footer.tsx 1`] = `"
                                                                            申请人
                                                                            审批状态
                                                                            签署方式
                                                                            邮箱地址
                                                                            申请时间
                                                                            贾明
                                                                            审批通过
                                                                            电子签署
                                                                            w.cezkdudy@lhll.au
                                                                            2022-01-01
                                                                            张三
                                                                            审批失败
                                                                            纸质签署
                                                                            r.nmgw@peurezgn.sl
                                                                            2022-02-01
                                                                            王芳
                                                                            审批过期
                                                                            纸质签署
                                                                            p.cumx@rampblpa.ru
                                                                            2022-03-01
                                                                            表尾信息
                                                                            表尾信息
                                                                            表尾信息
                                                                            表尾信息
                                                                            表尾信息
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\table\\_example\\custom-header.tsx 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
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\table\\_example\\data-sort.tsx 1`] = `"
                                                                            申请人
                                                                            申请状态
                                                                            申请耗时(天)
                                                                            签署方式
                                                                            邮箱地址
                                                                            申请时间
                                                                            贾明
                                                                            审批通过
                                                                            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 packages\\components\\table\\_example\\drag-col-sort.tsx 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 packages\\components\\table\\_example\\drag-sort.tsx 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 packages\\components\\table\\_example\\drag-sort-handler.tsx 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 packages\\components\\table\\_example\\editable-cell.tsx 1`] = `"
                                                                            申请人
                                                                            申请状态
                                                                            申请事项
                                                                            创建日期
                                                                            请选择
                                                                            请选择
                                                                            请选择
                                                                            请选择
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\table\\_example\\editable-row.tsx 1`] = `"


                                                                            申请人
                                                                            申请状态
                                                                            申请事项
                                                                            创建日期
                                                                            操作栏
                                                                            请输入
                                                                            请选择
                                                                            请选择
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\table\\_example\\ellipsis.tsx 1`] = `"
                                                                            申请人
                                                                            审批状态
                                                                            签署方式(超长标题示例)
                                                                            邮箱地址
                                                                            申请事项
                                                                            审核时间
                                                                            操作
                                                                            贾明(kyrieJia)
                                                                            审批通过
                                                                            电子签署
                                                                            w.cezkdudy@lhll.au
                                                                            宣传物料制作费用
                                                                            2021-11-01
                                                                            张三(threeZhang)
                                                                            审批失败
                                                                            纸质签署
                                                                            r.nmgw@peurezgn.sl
                                                                            algolia 服务报销
                                                                            2021-12-01
                                                                            王芳(fangWang)
                                                                            审批过期
                                                                            纸质签署
                                                                            p.cumx@rampblpa.ru
                                                                            相关周边制作费
                                                                            2022-01-01
                                                                            贾明(kyrieJia)
                                                                            审批通过
                                                                            电子签署
                                                                            w.cezkdudy@lhll.au
                                                                            激励奖品快递费
                                                                            2022-02-01
                                                                            张三(threeZhang)
                                                                            审批失败
                                                                            纸质签署
                                                                            r.nmgw@peurezgn.sl
                                                                            宣传物料制作费用
                                                                            2021-11-01
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\table\\_example\\empty.tsx 1`] = `"
                                                                            项目名称
                                                                            管理员
                                                                            所属公司
                                                                            暂无数据
                                                                            项目名称
                                                                            管理员
                                                                            所属公司
                                                                            😄 it is empty. 😁
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\table\\_example\\expandable.tsx 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 packages\\components\\table\\_example\\filter-controlled.tsx 1`] = `"
                                                                            已选筛选条件:{"lastName":[]}
                                                                            申请人
                                                                            申请状态
                                                                            签署方式
                                                                            Email
                                                                            Date
                                                                            搜索“”,找到 5 条结果
                                                                            贾明
                                                                            审批通过
                                                                            电子签署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
                                                                            共 0 条数据
                                                                            请选择
                                                                            • 1
                                                                            跳至
                                                                            / 1 页
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\table\\_example\\fixed-column.tsx 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 packages\\components\\table\\_example\\fixed-header.tsx 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 packages\\components\\table\\_example\\fixed-header-col.tsx 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 packages\\components\\table\\_example\\lazy.tsx 1`] = `"
                                                                            申请人
                                                                            申请状态
                                                                            申请事项
                                                                            邮箱地址
                                                                            申请时间
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\table\\_example\\loading.tsx 1`] = `"
                                                                            集群名称
                                                                            状态
                                                                            管理员
                                                                            描述
                                                                            集群名称
                                                                            状态
                                                                            管理员
                                                                            描述
                                                                            集群名称
                                                                            状态
                                                                            管理员
                                                                            描述
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\table\\_example\\merge-cells.tsx 1`] = `"
                                                                            申请人
                                                                            申请状态
                                                                            审批事项
                                                                            邮箱地址
                                                                            其他信息
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\table\\_example\\multi-header.tsx 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 packages\\components\\table\\_example\\multiple-sort.tsx 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 packages\\components\\table\\_example\\pagination.tsx 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
                                                                            共 59 条数据
                                                                            请选择
                                                                            • 1
                                                                            • 2
                                                                            • 3
                                                                            • 4
                                                                            • 5
                                                                            • 12
                                                                            跳至
                                                                            / 12 页
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\table\\_example\\select-multiple.tsx 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 packages\\components\\table\\_example\\select-single.tsx 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 packages\\components\\table\\_example\\single-sort.tsx 1`] = `"
                                                                            排序方式:{"sortBy":"status","descending":true}
                                                                            申请人
                                                                            申请状态
                                                                            申请耗时(天)
                                                                            签署方式
                                                                            申请时间
                                                                            贾明
                                                                            审批通过
                                                                            2电子签署2022-01-01
                                                                            张三
                                                                            审批失败
                                                                            3纸质签署2022-02-01
                                                                            王芳
                                                                            审批过期
                                                                            1纸质签署2022-03-01
                                                                            贾明
                                                                            审批通过
                                                                            4电子签署2022-04-01
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\table\\_example\\style.tsx 1`] = `"
                                                                            申请人
                                                                            审批状态
                                                                            申请耗时(天)
                                                                            签署方式
                                                                            邮箱地址
                                                                            申请时间
                                                                            贾明
                                                                            审批通过
                                                                            2电子签署
                                                                            w.cezkdudy@lhll.au
                                                                            2022-01-01
                                                                            张三
                                                                            审批失败
                                                                            10纸质签署
                                                                            r.nmgw@peurezgn.sl
                                                                            2022-02-01
                                                                            王芳
                                                                            审批过期
                                                                            1纸质签署
                                                                            p.cumx@rampblpa.ru
                                                                            2022-03-01
                                                                            贾明
                                                                            审批通过
                                                                            2电子签署
                                                                            w.cezkdudy@lhll.au
                                                                            2022-04-01
                                                                            张三
                                                                            审批失败
                                                                            10纸质签署
                                                                            r.nmgw@peurezgn.sl
                                                                            2022-01-01
                                                                            汇总:近期数据波动较大
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\table\\_example\\tree.tsx 1`] = `"
                                                                            排序
                                                                            编号
                                                                            名称
                                                                            签署方式
                                                                            操作
                                                                            0
                                                                            申请人 0_1 号
                                                                            电子签署
                                                                            1
                                                                            申请人 1_1 号
                                                                            纸质签署
                                                                            2
                                                                            申请人 2_1 号
                                                                            电子签署
                                                                            3
                                                                            申请人 3_1 号
                                                                            纸质签署
                                                                            4
                                                                            申请人 4_1 号
                                                                            电子签署
                                                                            66666
                                                                            申请人懒加载节点 66666,点我体验
                                                                            电子签署
                                                                            88888
                                                                            申请人懒加载节点 88888,点我体验
                                                                            电子签署
                                                                            共 100 条数据
                                                                            请选择
                                                                            • 1
                                                                            • 2
                                                                            • 3
                                                                            • 4
                                                                            • 5
                                                                            • 6
                                                                            • 7
                                                                            • 8
                                                                            • 9
                                                                            • 10
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\table\\_example\\tree-select.tsx 1`] = `"
                                                                            序号
                                                                            申请人
                                                                            状态
                                                                            申请事项
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\table\\_example\\virtual-scroll.tsx 1`] = `"
                                                                            序号
                                                                            申请人
                                                                            申请状态
                                                                            申请事项
                                                                            邮箱地址
                                                                            申请时间
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\tabs\\_example\\ban.tsx 1`] = `"
                                                                            选项卡1
                                                                            选项卡2
                                                                            选项卡3
                                                                            选项卡1内容区
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\tabs\\_example\\base.tsx 1`] = `"
                                                                            选项卡1
                                                                            选项卡2
                                                                            选项卡3

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

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

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

                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\tabs\\_example\\combination.tsx 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 packages\\components\\tabs\\_example\\custom.tsx 1`] = `"
                                                                            选项卡 1
                                                                            选项卡 2
                                                                            选项卡 3
                                                                            选项卡 4
                                                                            选项卡 5
                                                                            选项卡 6
                                                                            选项卡 7
                                                                            选项卡 8
                                                                            选项卡 9
                                                                            选项卡 10
                                                                            选项卡 1内容区
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\tabs\\_example\\drag-sort.tsx 1`] = `"
                                                                            选项卡一
                                                                            选项卡二
                                                                            选项卡三

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

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

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

                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\tabs\\_example\\icon.tsx 1`] = `"
                                                                            选项卡1
                                                                            选项卡2
                                                                            选项卡3
                                                                            选项卡1内容区
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\tabs\\_example\\lazy-load.tsx 1`] = `"
                                                                            选项卡1
                                                                            选项卡2
                                                                            选项卡3

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

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

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

                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\tabs\\_example\\operation.tsx 1`] = `"
                                                                            选项卡1
                                                                            选项卡1
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\tabs\\_example\\position.tsx 1`] = `"
                                                                            选项卡1
                                                                            选项卡2
                                                                            选项卡3
                                                                            选项卡1内容区
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\tabs\\_example\\size.tsx 1`] = `"
                                                                            选项卡1
                                                                            选项卡2
                                                                            选项卡1内容区
                                                                            选项卡1
                                                                            选项卡2
                                                                            选项卡1内容区
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\tabs\\_example\\theme.tsx 1`] = `"
                                                                            选项卡1
                                                                            选项卡2
                                                                            选项卡1
                                                                            选项卡2
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\tag\\_example\\base.tsx 1`] = `"
                                                                            标签一
                                                                            标签一
                                                                            标签二
                                                                            标签三
                                                                            标签四
                                                                            灰标签
                                                                            标签一
                                                                            标签二
                                                                            标签三
                                                                            标签四
                                                                            灰标签
                                                                            标签一
                                                                            标签二
                                                                            标签三
                                                                            标签四
                                                                            灰标签
                                                                            标签一
                                                                            标签二
                                                                            标签三
                                                                            标签四
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\tag\\_example\\check-tag-group.tsx 1`] = `"
                                                                            标签1
                                                                            标签2
                                                                            标签3
                                                                            标签4
                                                                            标签5
                                                                            标签6
                                                                            标签1
                                                                            标签2
                                                                            标签3
                                                                            标签4
                                                                            标签5
                                                                            标签6
                                                                            标签1
                                                                            标签2
                                                                            标签3
                                                                            标签4
                                                                            标签5
                                                                            标签6
                                                                            TAG_A(1)
                                                                            TAG_B(2)
                                                                            TAG_C(3)
                                                                            TAG_D(4)
                                                                            TAG_E(5)
                                                                            TAG_F(6)
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\tag\\_example\\custom-color.tsx 1`] = `"
                                                                            #0052D9
                                                                            default
                                                                            light
                                                                            outline
                                                                            light-outline
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\tag\\_example\\delete.tsx 1`] = `"
                                                                            可删除标签0
                                                                            可删除标签1
                                                                            可删除标签2
                                                                            可添加标签
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\tag\\_example\\icon.tsx 1`] = `"
                                                                            默认标签
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\tag\\_example\\long-text.tsx 1`] = `"
                                                                            默认超八个字超长文本标签超长省略文本标签
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\tag\\_example\\selectable.tsx 1`] = `"
                                                                            选中/未选态
                                                                            选中态
                                                                            未选态
                                                                            选中禁用
                                                                            未选禁用
                                                                            选中/未选态
                                                                            选中态
                                                                            未选态
                                                                            选中禁用
                                                                            未选禁用
                                                                            Outline Tag
                                                                            Checked
                                                                            Unchecked
                                                                            Disabled
                                                                            Disabled
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\tag\\_example\\shape.tsx 1`] = `"
                                                                            标签一
                                                                            标签一
                                                                            标签一
                                                                            标签一
                                                                            标签一
                                                                            标签一
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\tag\\_example\\size.tsx 1`] = `"
                                                                            小型标签
                                                                            默认标签
                                                                            大型标签
                                                                            小型标签
                                                                            默认标签
                                                                            大型标签
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\tag-input\\_example\\auto-width.tsx 1`] = `"
                                                                            Vue
                                                                            React
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\tag-input\\_example\\base.tsx 1`] = `"
                                                                            Vue
                                                                            React
                                                                            Angular
                                                                            Controlled:
                                                                            Vue
                                                                            React
                                                                            UnControlled:
                                                                            Vue
                                                                            React
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\tag-input\\_example\\collapsed.tsx 1`] = `"
                                                                            Vue
                                                                            +4
                                                                            Vue
                                                                            React
                                                                            Miniprogram
                                                                            More(2)
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\tag-input\\_example\\custom-tag.tsx 1`] = `"
                                                                            StudentA
                                                                            StudentB
                                                                            +1


                                                                            StudentA
                                                                            StudentB
                                                                            StudentC
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\tag-input\\_example\\draggable.tsx 1`] = `"
                                                                            Vue
                                                                            React
                                                                            Angular
                                                                            Controlled:
                                                                            Vue
                                                                            React
                                                                            Angular
                                                                            Miniprogram
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\tag-input\\_example\\excess.tsx 1`] = `"
                                                                            Scroll:
                                                                            Vue
                                                                            React
                                                                            BreakLine:
                                                                            Vue
                                                                            React
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\tag-input\\_example\\max.tsx 1`] = `"
                                                                            最多只能输入 3 个标签
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\tag-input\\_example\\max-row.tsx 1`] = `"

                                                                            最大高度为2

                                                                            小尺寸:
                                                                            Vue
                                                                            React
                                                                            Angular
                                                                            Svelte
                                                                            Solid
                                                                            MiniProgram
                                                                            Flutter
                                                                            UniApp
                                                                            Html5
                                                                            Css3
                                                                            JavaScript
                                                                            TypeScript
                                                                            Node.js
                                                                            Python
                                                                            Java
                                                                            Go
                                                                            Rust
                                                                            C++

                                                                            最大高度为3

                                                                            中等尺寸:
                                                                            Vue
                                                                            React
                                                                            Angular
                                                                            Svelte
                                                                            Solid
                                                                            MiniProgram
                                                                            Flutter
                                                                            UniApp
                                                                            Html5
                                                                            Css3
                                                                            JavaScript
                                                                            TypeScript
                                                                            Node.js
                                                                            Python
                                                                            Java
                                                                            Go
                                                                            Rust
                                                                            C++

                                                                            最大高度为4

                                                                            大尺寸:
                                                                            Vue
                                                                            React
                                                                            Angular
                                                                            Svelte
                                                                            Solid
                                                                            MiniProgram
                                                                            Flutter
                                                                            UniApp
                                                                            Html5
                                                                            Css3
                                                                            JavaScript
                                                                            TypeScript
                                                                            Node.js
                                                                            Python
                                                                            Java
                                                                            Go
                                                                            Rust
                                                                            C++
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\tag-input\\_example\\size.tsx 1`] = `"
                                                                            Vue
                                                                            React
                                                                            Vue
                                                                            React
                                                                            Vue
                                                                            React
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\tag-input\\_example\\status.tsx 1`] = `"
                                                                            Vue
                                                                            React
                                                                            Miniprogram
                                                                            Vue
                                                                            React
                                                                            Miniprogram
                                                                            这是普通文本提示
                                                                            Vue
                                                                            React
                                                                            Miniprogram
                                                                            校验通过文本提示
                                                                            Vue
                                                                            React
                                                                            Miniprogram
                                                                            校验不通过文本提示
                                                                            Vue
                                                                            React
                                                                            Miniprogram
                                                                            校验存在严重问题文本提示
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\tag-input\\_example\\theme.tsx 1`] = `"
                                                                            Vue
                                                                            React
                                                                            Miniprogram
                                                                            Vue
                                                                            React
                                                                            Miniprogram
                                                                            Vue
                                                                            React
                                                                            Miniprogram
                                                                            Vue
                                                                            React
                                                                            Miniprogram
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\textarea\\_example\\base.tsx 1`] = `"
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\textarea\\_example\\events.tsx 1`] = `"
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\textarea\\_example\\maxlength.tsx 1`] = `"
                                                                            这里可以放一些提示文字
                                                                            0/20
                                                                            0/20
                                                                            0/20
                                                                            0/20
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\textarea\\_example\\type.tsx 1`] = `"
                                                                            正常提示
                                                                            成功提示
                                                                            警告提示
                                                                            错误提示
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\time-picker\\_example\\disabled.tsx 1`] = `"

                                                                            禁用整个选择器

                                                                            禁用指定时间

                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\time-picker\\_example\\hide-clear-button.tsx 1`] = `"

                                                                            禁止清空

                                                                            允许清空

                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\time-picker\\_example\\hm.tsx 1`] = `"

                                                                            时分选择

                                                                            毫秒选择

                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\time-picker\\_example\\hms.tsx 1`] = `"
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\time-picker\\_example\\keyboard.tsx 1`] = `"
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\time-picker\\_example\\panel.tsx 1`] = `"
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\time-picker\\_example\\presets.tsx 1`] = `"
                                                                            -
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\time-picker\\_example\\range.tsx 1`] = `"
                                                                            -
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\time-picker\\_example\\show-steps.tsx 1`] = `"
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\time-picker\\_example\\twelve-hour-meridian.tsx 1`] = `"
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\timeline\\_example\\base.tsx 1`] = `"

                                                                            时间轴方向

                                                                            • 事件一
                                                                              2022-01-01
                                                                            • 事件二
                                                                              2022-02-01
                                                                            • 事件三
                                                                              2022-03-01
                                                                            • 事件四
                                                                              2022-04-01
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\timeline\\_example\\customContent.tsx 1`] = `"
                                                                            • 事件一
                                                                              事件一自定义内容
                                                                              2022-01-01
                                                                            • 事件二
                                                                              事件二自定义内容
                                                                              2022-02-01
                                                                            • 事件三
                                                                              事件三自定义内容
                                                                              2022-03-01
                                                                            • 事件四
                                                                              事件四自定义内容
                                                                              2022-04-01
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\timeline\\_example\\customDot.tsx 1`] = `"

                                                                            时间轴样式

                                                                            • 事件一
                                                                              2022-01-01
                                                                            • 事件二
                                                                              2022-02-01
                                                                            • 事件三
                                                                              2022-03-01
                                                                            • 事件四
                                                                              2022-04-01
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\timeline\\_example\\layout.tsx 1`] = `"

                                                                            时间轴方向

                                                                            对齐方式

                                                                            label对齐方式

                                                                            • 事件一
                                                                              2022-01-01
                                                                            • 事件二
                                                                              2022-02-01
                                                                            • 事件三
                                                                              2022-03-01
                                                                            • 事件四
                                                                              2022-04-01
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\timeline\\_example\\loading.tsx 1`] = `"

                                                                            加载中

                                                                            • 事件一
                                                                              2022-01-01
                                                                            • 事件二
                                                                              2022-02-01
                                                                            • 事件三
                                                                              2022-03-01
                                                                            • 事件四
                                                                              2022-04-01
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\timeline\\_example\\reverse.tsx 1`] = `"

                                                                            是否倒序

                                                                            • 事件一
                                                                              2022-01-01
                                                                            • 事件二
                                                                              2022-02-01
                                                                            • 事件三
                                                                              2022-03-01
                                                                            • 事件四
                                                                              2022-04-01
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\timeline\\_example\\theme.tsx 1`] = `"
                                                                            • 已完成的时间
                                                                              2022-01-01
                                                                            • 成功的时间
                                                                              2022-02-01
                                                                            • 危险时间
                                                                              2022-03-01
                                                                            • 告警事件
                                                                              2022-04-01
                                                                            • 默认的时间
                                                                              2022-05-01
                                                                            • 自定义主题色
                                                                              2022-06-01
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\tooltip\\_example\\arrow.tsx 1`] = `""`; - -exports[`ssr snapshot test > ssr test packages\\components\\tooltip\\_example\\base.tsx 1`] = `"
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\tooltip\\_example\\duration.tsx 1`] = `""`; - -exports[`ssr snapshot test > ssr test packages\\components\\tooltip\\_example\\lite.tsx 1`] = `"
                                                                            不可用状态下提示
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\tooltip\\_example\\mouse.tsx 1`] = `""`; - -exports[`ssr snapshot test > ssr test packages\\components\\tooltip\\_example\\no-arrow.tsx 1`] = `""`; - -exports[`ssr snapshot test > ssr test packages\\components\\tooltip\\_example\\theme.tsx 1`] = `"
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\tooltip\\_example\\trigger.tsx 1`] = `"
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\transfer\\_example\\base.tsx 1`] = `"
                                                                            0 / 20 项
                                                                            0 / 0 项
                                                                            暂无数据
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\transfer\\_example\\checked.tsx 1`] = `"
                                                                            3 / 20 项
                                                                            0 / 0 项
                                                                            暂无数据
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\transfer\\_example\\custom.tsx 1`] = `""`; - -exports[`ssr snapshot test > ssr test packages\\components\\transfer\\_example\\custom-render.tsx 1`] = `"
                                                                            0 / 20 项
                                                                            0 / 0 项
                                                                            暂无数据
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\transfer\\_example\\empty.tsx 1`] = `"

                                                                            默认暂无数据

                                                                            0 / 0 项
                                                                            暂无数据
                                                                            0 / 0 项
                                                                            暂无数据

                                                                            自定义暂无数据

                                                                            0 / 0 项
                                                                            No Source
                                                                            0 / 0 项
                                                                            No Target
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\transfer\\_example\\pagination.tsx 1`] = `"
                                                                            0 / 20 项
                                                                            跳至
                                                                            / 2 页
                                                                            0 / 0 项
                                                                            暂无数据
                                                                            跳至
                                                                            / 1 页
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\transfer\\_example\\search.tsx 1`] = `""`; - -exports[`ssr snapshot test > ssr test packages\\components\\transfer\\_example\\tree.tsx 1`] = `"
                                                                            0 / 5 项
                                                                            暂无数据
                                                                            0 / 0 项
                                                                            暂无数据
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\tree\\_example\\activable.tsx 1`] = `"
                                                                            暂无数据
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\tree\\_example\\base.tsx 1`] = `"
                                                                            暂无数据
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\tree\\_example\\checkable.tsx 1`] = `"
                                                                            暂无数据
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\tree\\_example\\controlled.tsx 1`] = `"
                                                                            checked:
                                                                            expanded:
                                                                            actived:
                                                                            暂无数据
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\tree\\_example\\disabled.tsx 1`] = `"
                                                                            暂无数据
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\tree\\_example\\draggable.tsx 1`] = `"
                                                                            暂无数据
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\tree\\_example\\empty.tsx 1`] = `"
                                                                            暂无数据
                                                                            😊 空数据(string)
                                                                            😊 空数据( empty props )
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\tree\\_example\\expand-all.tsx 1`] = `"
                                                                            暂无数据
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\tree\\_example\\expand-level.tsx 1`] = `"
                                                                            暂无数据
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\tree\\_example\\expand-mutex.tsx 1`] = `"
                                                                            暂无数据
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\tree\\_example\\filter.tsx 1`] = `"
                                                                            filter:
                                                                            暂无数据
                                                                            filter:
                                                                            暂无数据
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\tree\\_example\\icon.tsx 1`] = `"

                                                                            render 1:

                                                                            暂无数据

                                                                            render 2:

                                                                            暂无数据
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\tree\\_example\\label.tsx 1`] = `"
                                                                            暂无数据
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\tree\\_example\\lazy.tsx 1`] = `"
                                                                            暂无数据
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\tree\\_example\\line.tsx 1`] = `"
                                                                            暂无数据

                                                                            render

                                                                            暂无数据
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\tree\\_example\\load.tsx 1`] = `"
                                                                            暂无数据
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\tree\\_example\\operations.tsx 1`] = `"

                                                                            render:

                                                                            暂无数据

                                                                            api:

                                                                            filter:
                                                                            暂无数据

                                                                            api:

                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\tree\\_example\\state.tsx 1`] = `"

                                                                            state:

                                                                            暂无数据

                                                                            api:

                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\tree\\_example\\sync.tsx 1`] = `"
                                                                            checked:
                                                                            expanded:
                                                                            actived:
                                                                            暂无数据
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\tree\\_example\\vscroll.tsx 1`] = `"
                                                                            暂无数据
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\tree-select\\_example\\base.tsx 1`] = `"
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\tree-select\\_example\\collapsed.tsx 1`] = `"
                                                                            广州市
                                                                            +1
                                                                            广州市
                                                                            更多...
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\tree-select\\_example\\filterable.tsx 1`] = `"
                                                                            请选择
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\tree-select\\_example\\lazy.tsx 1`] = `"
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\tree-select\\_example\\multiple.tsx 1`] = `"
                                                                            广州市
                                                                            深圳市
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\tree-select\\_example\\panelContent.tsx 1`] = `"
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\tree-select\\_example\\prefix.tsx 1`] = `"
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\tree-select\\_example\\prefixsuffix.tsx 1`] = `"
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\tree-select\\_example\\props.tsx 1`] = `"
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\tree-select\\_example\\valuedisplay.tsx 1`] = `"
                                                                            广州市(guangzhou)
                                                                            广州市(guangzhou)
                                                                            深圳市(shenzhen)
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\tree-select\\_example\\valuetype.tsx 1`] = `"
                                                                            广州市
                                                                            深圳市
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\typography\\_example\\base.tsx 1`] = `"

                                                                            What is TDesign

                                                                            TDesign is an enterprise-level design system accumulated by Tencent's various business teams.
                                                                            TDesign features a unified design values, consistent design language, and visual style, helping users form continuous and coherent perceptions of the experience. Based on this, TDesign offers out-of-the-box UI component libraries, design guidelines, and design assets, elegantly and efficiently freeing design and development from repetitive tasks. Simultaneously, it facilitates easy extension on top of TDesign, enabling a better alignment with business requirements.

                                                                            Comprehensive

                                                                            TDesign Support Vue 2, Vue 3, React, components for Desktop Application and Vue 3, Wechat MiniProgram components for Mobile Application.
                                                                            • Features
                                                                            • Comprehensive
                                                                              • Consistency
                                                                              • Usability
                                                                            • Join TDesign
                                                                            1. Features
                                                                            2. Comprehensive
                                                                              1. Consistency
                                                                              2. Usability
                                                                            3. Join TDesign
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\typography\\_example\\copyable.tsx 1`] = `"This is a copyable text.
                                                                            This is a copyable long text. TDesign was founded with the principles of open-source collaboration from the beginning. The collaboration scheme discussion, component design, and API design, including source code, are fully open within the company, garnering widespread attention from internal developers and designers. TDesign follows an equal, open, and strict policy, regardless of the participants' roles....

                                                                            This is a copyable long text with custom suffix."`; - -exports[`ssr snapshot test > ssr test packages\\components\\typography\\_example\\ellipsis.tsx 1`] = `"
                                                                            TDesign was founded with the principles of open-source collaboration from the beginning. The collaboration scheme discussion, component design, and API design, including source code, are fully open within the company, garnering widespread attention from internal developers and designers. TDesign follows an equal, open, and strict policy, regardless of the participants' roles....
                                                                            TDesign was founded with the principles of open-source collaboration from the beginning. The collaboration scheme discussion, component design, and API design, including source code, are fully open within the company, garnering widespread attention from internal developers and designers. TDesign follows an equal, open, and strict policy, regardless of the participants' roles....
                                                                            TDesign was founded with the principles of open-source collaboration from the beginning. The collaboration scheme discussion, component design, and API design, including source code, are fully open within the company, garnering widespread attention from internal developers and designers. TDesign follows an equal, open, and strict policy, regardless of the participants' roles....
                                                                            TDesign was founded with the principles of open-source collaboration from the beginning. The collaboration scheme discussion, component design, and API design, including source code, are fully open within the company, garnering widespread attention from internal developers and designers. TDesign follows an equal, open, and strict policy, regardless of the participants' roles....
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\typography\\_example\\text.tsx 1`] = `"
                                                                            TDesign (primary)
                                                                            TDesign (secondary)
                                                                            TDesign (disabled)
                                                                            TDesign (success)
                                                                            TDesign (warning)
                                                                            TDesign (error)
                                                                            TDesign (mark)
                                                                            TDesign (code)
                                                                            TDesign (keyboard)
                                                                            TDesign (underline)
                                                                            TDesign (delete)
                                                                            TDesign (strong)
                                                                            TDesign (italic)
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\typography\\_example\\title.tsx 1`] = `"

                                                                            H1. TDesign

                                                                            H2. TDesign

                                                                            H3. TDesign

                                                                            H4. TDesign

                                                                            H5. TDesign
                                                                            H6. TDesign
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\upload\\_example\\base.tsx 1`] = `"

                                                                            要求文件大小在 1M 以内
                                                                            文件上传失败示例
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\upload\\_example\\custom-drag.tsx 1`] = `"


                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\upload\\_example\\draggable.tsx 1`] = `"
                                                                            是否自动上传:

                                                                            点击上传  /  拖拽到此区域
                                                                            默认文件
                                                                            文件大小1.0 KB上传日期2022-09-25
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\upload\\_example\\file-flow-list.tsx 1`] = `"

                                                                            支持批量上传文件,文件格式不限,最多只能上传 10 份文件
                                                                            点击上方“选择文件”或将文件拖拽到此区域
                                                                            取消上传
                                                                            点击上传
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\upload\\_example\\image.tsx 1`] = `"

                                                                            • 请选择图片

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

                                                                            单张图片文件上传(上传失败状态演示)
                                                                            • 点击上传图片

                                                                            允许选择多张图片文件上传,最多只能上传 3 张图片
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\upload\\_example\\img-flow-list.tsx 1`] = `"
                                                                            AutoUpload

                                                                            支持批量上传图片文件
                                                                            • demo…-1.png

                                                                            • avatar.jpg

                                                                            取消上传

                                                                            Different Status Images
                                                                            • loading.svg

                                                                            • loading.svg

                                                                            • 上传中 10%

                                                                              loading.svg

                                                                            • 上传失败

                                                                              loading.svg

                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\upload\\_example\\request-method.tsx 1`] = `"
                                                                            自定义上传方法需要返回成功或失败信息
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\upload\\_example\\single-custom.tsx 1`] = `"
                                                                            上传文件大小在 1M 以内
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\upload\\_example\\single-input.tsx 1`] = `"

                                                                            请选择文件
                                                                            "`; diff --git a/test/snap/__snapshots__/ssr.test.jsx.snap b/test/snap/__snapshots__/ssr.test.jsx.snap index a16531fb18..43b9d480f4 100644 --- a/test/snap/__snapshots__/ssr.test.jsx.snap +++ b/test/snap/__snapshots__/ssr.test.jsx.snap @@ -90,7 +90,7 @@ exports[`ssr snapshot test > ssr test packages/components/breadcrumb/_example/ba exports[`ssr snapshot test > ssr test packages/components/breadcrumb/_example/custom.tsx 1`] = `"
                                                                            页面1>>
                                                                            页面2>>
                                                                            页面3>>
                                                                            页面1/////
                                                                            页面2/////
                                                                            页面3/////
                                                                            "`; -exports[`ssr snapshot test > ssr test packages/components/breadcrumb/_example/custom-ellipsis.tsx 1`] = `"
                                                                            页面1
                                                                            页面2
                                                                            页面5
                                                                            页面1
                                                                            页面2
                                                                            页面5
                                                                            "`; +exports[`ssr snapshot test > ssr test packages/components/breadcrumb/_example/custom-ellipsis.tsx 1`] = `"
                                                                            页面1
                                                                            页面2
                                                                            页面5
                                                                            页面1
                                                                            页面2
                                                                            页面5
                                                                            "`; exports[`ssr snapshot test > ssr test packages/components/breadcrumb/_example/ellipsis.tsx 1`] = `"
                                                                            页面1
                                                                            页面2
                                                                            页面5
                                                                            页面1
                                                                            页面2
                                                                            页面5
                                                                            "`; @@ -108,17 +108,17 @@ exports[`ssr snapshot test > ssr test packages/components/button/_example/base.t exports[`ssr snapshot test > ssr test packages/components/button/_example/block.tsx 1`] = `"
                                                                            "`; -exports[`ssr snapshot test > ssr test packages/components/button/_example/custom-element.tsx 1`] = `""`; +exports[`ssr snapshot test > ssr test packages/components/button/_example/custom-element.tsx 1`] = `""`; exports[`ssr snapshot test > ssr test packages/components/button/_example/ghost.tsx 1`] = `"
                                                                            "`; -exports[`ssr snapshot test > ssr test packages/components/button/_example/icon.tsx 1`] = `"
                                                                            "`; +exports[`ssr snapshot test > ssr test packages/components/button/_example/icon.tsx 1`] = `"
                                                                            "`; exports[`ssr snapshot test > ssr test packages/components/button/_example/shape.tsx 1`] = `"
                                                                            "`; exports[`ssr snapshot test > ssr test packages/components/button/_example/size.tsx 1`] = `"
                                                                            "`; -exports[`ssr snapshot test > ssr test packages/components/button/_example/status.tsx 1`] = `"
                                                                            填充按钮
                                                                            "`; +exports[`ssr snapshot test > ssr test packages/components/button/_example/status.tsx 1`] = `"
                                                                            填充按钮
                                                                            "`; exports[`ssr snapshot test > ssr test packages/components/button/_example/theme.tsx 1`] = `"
                                                                            "`; @@ -224,7 +224,7 @@ exports[`ssr snapshot test > ssr test packages/components/checkbox/_example/grou exports[`ssr snapshot test > ssr test packages/components/checkbox/_example/link.tsx 1`] = `"
                                                                            "`; -exports[`ssr snapshot test > ssr test packages/components/checkbox/_example/max.tsx 1`] = `"
                                                                            最多可选:
                                                                            选中值: 北京
                                                                            "`; +exports[`ssr snapshot test > ssr test packages/components/checkbox/_example/max.tsx 1`] = `"
                                                                            最多可选:
                                                                            选中值: 北京
                                                                            "`; exports[`ssr snapshot test > ssr test packages/components/collapse/_example/base.tsx 1`] = `"
                                                                            这是一个折叠标题
                                                                            这部分是每个折叠面板折叠或展开的内容,可根据不同业务或用户的使用诉求,进行自定义填充。可以是纯文本、图文、子列表等内容形式。
                                                                            设置默认展开项
                                                                            这部分是每个折叠面板折叠或展开的内容,可根据不同业务或用户的使用诉求,进行自定义填充。可以是纯文本、图文、子列表等内容形式。
                                                                            自定义折叠面板内容
                                                                            Vue
                                                                            React
                                                                            当前折叠面板折叠时,销毁面板内容
                                                                            嵌套使用折叠面板
                                                                            这是一个折叠标题
                                                                            这部分是每个折叠面板折叠或展开的内容,可根据不同业务或用户的使用诉求,进行自定义填充。可以是纯文本、图文、子列表等内容形式。
                                                                            这是一个折叠标题
                                                                            这部分是每个折叠面板折叠或展开的内容,可根据不同业务或用户的使用诉求,进行自定义填充。可以是纯文本、图文、子列表等内容形式。
                                                                            "`; @@ -302,7 +302,7 @@ exports[`ssr snapshot test > ssr test packages/components/date-picker/_example/m exports[`ssr snapshot test > ssr test packages/components/date-picker/_example/multiple.tsx 1`] = `"
                                                                            2024-10-01
                                                                            2024-10-24
                                                                            2024-50周
                                                                            2024-51周
                                                                            2022
                                                                            2023
                                                                            2024
                                                                            "`; -exports[`ssr snapshot test > ssr test packages/components/date-picker/_example/panel.tsx 1`] = `"
                                                                            30
                                                                            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
                                                                            5
                                                                            6
                                                                            7
                                                                            8
                                                                            9
                                                                            10
                                                                            30
                                                                            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
                                                                            5
                                                                            6
                                                                            7
                                                                            8
                                                                            9
                                                                            10
                                                                            00:00:00
                                                                            30
                                                                            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
                                                                            5
                                                                            6
                                                                            7
                                                                            8
                                                                            9
                                                                            10
                                                                            28
                                                                            29
                                                                            30
                                                                            31
                                                                            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
                                                                            5
                                                                            6
                                                                            7
                                                                            30
                                                                            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
                                                                            5
                                                                            6
                                                                            7
                                                                            8
                                                                            9
                                                                            10
                                                                            00:00:00
                                                                            "`; +exports[`ssr snapshot test > ssr test packages/components/date-picker/_example/panel.tsx 1`] = `"
                                                                            30
                                                                            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
                                                                            5
                                                                            6
                                                                            7
                                                                            8
                                                                            9
                                                                            10
                                                                            30
                                                                            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
                                                                            5
                                                                            6
                                                                            7
                                                                            8
                                                                            9
                                                                            10
                                                                            00:00:00
                                                                            30
                                                                            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
                                                                            5
                                                                            6
                                                                            7
                                                                            8
                                                                            9
                                                                            10
                                                                            28
                                                                            29
                                                                            30
                                                                            31
                                                                            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
                                                                            5
                                                                            6
                                                                            7
                                                                            30
                                                                            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
                                                                            5
                                                                            6
                                                                            7
                                                                            8
                                                                            9
                                                                            10
                                                                            00:00:00
                                                                            "`; exports[`ssr snapshot test > ssr test packages/components/date-picker/_example/quarter.tsx 1`] = `"
                                                                            -
                                                                            "`; @@ -422,7 +422,7 @@ exports[`ssr snapshot test > ssr test packages/components/form/_example/custom-v exports[`ssr snapshot test > ssr test packages/components/form/_example/customized-form-controls.tsx 1`] = `"
                                                                            "`; -exports[`ssr snapshot test > ssr test packages/components/form/_example/disabled.tsx 1`] = `"
                                                                            请选择单张图片文件上传
                                                                            提交
                                                                            重置
                                                                            "`; +exports[`ssr snapshot test > ssr test packages/components/form/_example/disabled.tsx 1`] = `"
                                                                            请选择单张图片文件上传
                                                                            提交
                                                                            重置
                                                                            "`; exports[`ssr snapshot test > ssr test packages/components/form/_example/error-message.tsx 1`] = `"
                                                                            一句话介绍自己
                                                                            "`; @@ -498,11 +498,11 @@ exports[`ssr snapshot test > ssr test packages/components/image/_example/fill-po exports[`ssr snapshot test > ssr test packages/components/image/_example/gallery-cover.tsx 1`] = `""`; -exports[`ssr snapshot test > ssr test packages/components/image/_example/lazy-list.tsx 1`] = `"
                                                                            "`; +exports[`ssr snapshot test > ssr test packages/components/image/_example/lazy-list.tsx 1`] = `"
                                                                            "`; -exports[`ssr snapshot test > ssr test packages/components/image/_example/lazy-single.tsx 1`] = `"
                                                                            "`; +exports[`ssr snapshot test > ssr test packages/components/image/_example/lazy-single.tsx 1`] = `"
                                                                            "`; -exports[`ssr snapshot test > ssr test packages/components/image/_example/placeholder.tsx 1`] = `"

                                                                            加载中的图片

                                                                            默认占位
                                                                            图片加载中
                                                                            自定义占位

                                                                            加载失败的图片

                                                                            默认错误
                                                                            图片加载中
                                                                            自定义错误
                                                                            图片加载中
                                                                            "`; +exports[`ssr snapshot test > ssr test packages/components/image/_example/placeholder.tsx 1`] = `"

                                                                            加载中的图片

                                                                            默认占位
                                                                            图片加载中
                                                                            自定义占位

                                                                            加载失败的图片

                                                                            默认错误
                                                                            图片加载中
                                                                            自定义错误
                                                                            图片加载中
                                                                            "`; exports[`ssr snapshot test > ssr test packages/components/image/_example/shape.tsx 1`] = `"
                                                                            图片加载中
                                                                            square
                                                                            图片加载中
                                                                            round
                                                                            图片加载中
                                                                            circle
                                                                            "`; @@ -556,27 +556,27 @@ exports[`ssr snapshot test > ssr test packages/components/input-adornment/_examp exports[`ssr snapshot test > ssr test packages/components/input-adornment/_example/text.tsx 1`] = `"
                                                                            http://
                                                                            请输入
                                                                            .com
                                                                            http://
                                                                            .com
                                                                            "`; -exports[`ssr snapshot test > ssr test packages/components/input-number/_example/align.tsx 1`] = `"
                                                                            "`; +exports[`ssr snapshot test > ssr test packages/components/input-number/_example/align.tsx 1`] = `"
                                                                            "`; -exports[`ssr snapshot test > ssr test packages/components/input-number/_example/auto-width.tsx 1`] = `"
                                                                            请输入
                                                                            "`; +exports[`ssr snapshot test > ssr test packages/components/input-number/_example/auto-width.tsx 1`] = `"
                                                                            请输入
                                                                            "`; -exports[`ssr snapshot test > ssr test packages/components/input-number/_example/center.tsx 1`] = `"
                                                                            请输入
                                                                            "`; +exports[`ssr snapshot test > ssr test packages/components/input-number/_example/center.tsx 1`] = `"
                                                                            请输入
                                                                            "`; -exports[`ssr snapshot test > ssr test packages/components/input-number/_example/default.tsx 1`] = `"
                                                                            "`; +exports[`ssr snapshot test > ssr test packages/components/input-number/_example/default.tsx 1`] = `"
                                                                            "`; -exports[`ssr snapshot test > ssr test packages/components/input-number/_example/format.tsx 1`] = `"
                                                                            "`; +exports[`ssr snapshot test > ssr test packages/components/input-number/_example/format.tsx 1`] = `"
                                                                            "`; -exports[`ssr snapshot test > ssr test packages/components/input-number/_example/large-number.tsx 1`] = `"
                                                                            "`; +exports[`ssr snapshot test > ssr test packages/components/input-number/_example/large-number.tsx 1`] = `"
                                                                            "`; -exports[`ssr snapshot test > ssr test packages/components/input-number/_example/left.tsx 1`] = `"
                                                                            "`; +exports[`ssr snapshot test > ssr test packages/components/input-number/_example/left.tsx 1`] = `"
                                                                            "`; exports[`ssr snapshot test > ssr test packages/components/input-number/_example/normal.tsx 1`] = `"
                                                                            机器:
                                                                            金额:
                                                                            "`; -exports[`ssr snapshot test > ssr test packages/components/input-number/_example/size.tsx 1`] = `"
                                                                            "`; +exports[`ssr snapshot test > ssr test packages/components/input-number/_example/size.tsx 1`] = `"
                                                                            "`; -exports[`ssr snapshot test > ssr test packages/components/input-number/_example/status.tsx 1`] = `"
                                                                            这是普通文本提示
                                                                            校验通过文本提示
                                                                            校验不通过文本提示
                                                                            校验存在严重问题文本提示
                                                                            "`; +exports[`ssr snapshot test > ssr test packages/components/input-number/_example/status.tsx 1`] = `"
                                                                            这是普通文本提示
                                                                            校验通过文本提示
                                                                            校验不通过文本提示
                                                                            校验存在严重问题文本提示
                                                                            "`; -exports[`ssr snapshot test > ssr test packages/components/input-number/_example/step.tsx 1`] = `"
                                                                            "`; +exports[`ssr snapshot test > ssr test packages/components/input-number/_example/step.tsx 1`] = `"
                                                                            "`; exports[`ssr snapshot test > ssr test packages/components/layout/_example/aside.tsx 1`] = `"

                                                                            侧边导航布局

                                                                            Content
                                                                            Copyright @ 2019-2020 Tencent. All Rights Reserved
                                                                            "`; @@ -636,23 +636,23 @@ exports[`ssr snapshot test > ssr test packages/components/loading/_example/text. exports[`ssr snapshot test > ssr test packages/components/loading/_example/wrap.tsx 1`] = `"
                                                                            this is loading component
                                                                            this is loading component
                                                                            this is loading component
                                                                            this is loading component
                                                                            this is loading component
                                                                            "`; -exports[`ssr snapshot test > ssr test packages/components/menu/_example/closable-side.tsx 1`] = `"
                                                                            • 仪表盘
                                                                            • 资源列表
                                                                            • 调度平台
                                                                            • 精准监控
                                                                            • 根目录
                                                                            • 消息区
                                                                            "`; +exports[`ssr snapshot test > ssr test packages/components/menu/_example/closable-side.tsx 1`] = `"
                                                                            • 仪表盘
                                                                            • 资源列表
                                                                            • 调度平台
                                                                            • 精准监控
                                                                            • 根目录
                                                                            • 消息区
                                                                            "`; -exports[`ssr snapshot test > ssr test packages/components/menu/_example/custom-header.tsx 1`] = `"
                                                                            • 菜单1
                                                                            • 菜单2
                                                                            • 菜单3
                                                                            • 菜单4
                                                                            • 菜单1
                                                                            • 菜单2
                                                                            • 菜单3
                                                                            • 菜单4
                                                                            "`; +exports[`ssr snapshot test > ssr test packages/components/menu/_example/custom-header.tsx 1`] = `"
                                                                            • 菜单1
                                                                            • 菜单2
                                                                            • 菜单3
                                                                            • 菜单4
                                                                            • 菜单1
                                                                            • 菜单2
                                                                            • 菜单3
                                                                            • 菜单4
                                                                            "`; exports[`ssr snapshot test > ssr test packages/components/menu/_example/custom-side.tsx 1`] = `"
                                                                            • 仪表盘
                                                                            • 资源列表
                                                                            • 视频区
                                                                            • 根目录
                                                                            • 调度平台
                                                                            • 精准监控
                                                                            • 个人中心
                                                                            • 仪表盘
                                                                            • 资源列表
                                                                            • 视频区
                                                                            • 根目录
                                                                            • 调度平台
                                                                            • 精准监控
                                                                            • 个人中心
                                                                            "`; exports[`ssr snapshot test > ssr test packages/components/menu/_example/double.tsx 1`] = `"
                                                                            • 菜单1
                                                                            • 菜单2
                                                                            • 菜单3
                                                                            • 菜单4
                                                                              子菜单1
                                                                              子菜单2
                                                                            • 菜单1
                                                                            • 菜单2
                                                                            • 菜单3
                                                                            • 菜单4
                                                                              子菜单1
                                                                              子菜单2
                                                                            "`; -exports[`ssr snapshot test > ssr test packages/components/menu/_example/group-side.tsx 1`] = `"
                                                                              主导航
                                                                            • 仪表盘
                                                                            • 组件
                                                                            • 列表项
                                                                              • 基础列表项
                                                                              • 卡片列表项
                                                                              • 筛选列表项
                                                                              • 树状筛选列表项
                                                                            • 表单项
                                                                            • 详情页
                                                                            • 结果页
                                                                            • 更多
                                                                            • 个人页
                                                                            • 登录页
                                                                            "`; +exports[`ssr snapshot test > ssr test packages/components/menu/_example/group-side.tsx 1`] = `"
                                                                              主导航
                                                                            • 仪表盘
                                                                            • 组件
                                                                            • 列表项
                                                                              • 基础列表项
                                                                              • 卡片列表项
                                                                              • 筛选列表项
                                                                              • 树状筛选列表项
                                                                            • 表单项
                                                                            • 详情页
                                                                            • 结果页
                                                                            • 更多
                                                                            • 个人页
                                                                            • 登录页
                                                                            "`; -exports[`ssr snapshot test > ssr test packages/components/menu/_example/multi-side.tsx 1`] = `"
                                                                            • 仪表盘
                                                                            • 资源列表
                                                                              • 菜单二
                                                                            • 调度平台
                                                                              • 二级菜单-1
                                                                                • 三级菜单-1
                                                                                • 三级菜单-2
                                                                                • 三级菜单-3
                                                                              • 二级菜单-2
                                                                            • 精准监控
                                                                              • 二级菜单-1
                                                                              • 二级菜单-2
                                                                            • 根目录
                                                                            • 消息区
                                                                              • 二级菜单-1
                                                                              • 二级菜单-2
                                                                            • 仪表盘
                                                                            • 资源列表
                                                                              • 二级菜单-1
                                                                                • 三级菜单-1
                                                                                • 三级菜单-2
                                                                                • 三级菜单-3
                                                                            • 调度平台
                                                                              • 二级菜单-1
                                                                              • 二级菜单-2
                                                                            • 精准监控
                                                                              • 二级菜单-1
                                                                              • 二级菜单-2
                                                                            • 根目录
                                                                            • 消息区
                                                                              • 二级菜单-1
                                                                              • 二级菜单-2
                                                                            "`; +exports[`ssr snapshot test > ssr test packages/components/menu/_example/multi-side.tsx 1`] = `"
                                                                            • 仪表盘
                                                                            • 资源列表
                                                                              • 菜单二
                                                                            • 调度平台
                                                                              • 二级菜单-1
                                                                                • 三级菜单-1
                                                                                • 三级菜单-2
                                                                                • 三级菜单-3
                                                                              • 二级菜单-2
                                                                            • 精准监控
                                                                              • 二级菜单-1
                                                                              • 二级菜单-2
                                                                            • 根目录
                                                                            • 消息区
                                                                              • 二级菜单-1
                                                                              • 二级菜单-2
                                                                            • 仪表盘
                                                                            • 资源列表
                                                                              • 二级菜单-1
                                                                                • 三级菜单-1
                                                                                • 三级菜单-2
                                                                                • 三级菜单-3
                                                                            • 调度平台
                                                                              • 二级菜单-1
                                                                              • 二级菜单-2
                                                                            • 精准监控
                                                                              • 二级菜单-1
                                                                              • 二级菜单-2
                                                                            • 根目录
                                                                            • 消息区
                                                                              • 二级菜单-1
                                                                              • 二级菜单-2
                                                                            "`; exports[`ssr snapshot test > ssr test packages/components/menu/_example/multiple.tsx 1`] = `"
                                                                            • 电器
                                                                            • 女装
                                                                            • 水果蔬菜
                                                                            • 其他
                                                                            • 电器
                                                                            • 女装
                                                                            • 水果蔬菜
                                                                            • 其他
                                                                            "`; exports[`ssr snapshot test > ssr test packages/components/menu/_example/popup-side.tsx 1`] = `"
                                                                            • 仪表盘
                                                                            • 资源列表
                                                                            • 调度平台
                                                                            • 精准监控
                                                                            • 根目录
                                                                            • 消息区
                                                                            • 仪表盘
                                                                            • 资源列表
                                                                            • 调度平台
                                                                            • 精准监控
                                                                            • 根目录
                                                                            • 消息区
                                                                            "`; -exports[`ssr snapshot test > ssr test packages/components/menu/_example/single.tsx 1`] = `"
                                                                            • 菜单1
                                                                            • 菜单2
                                                                            • 菜单3
                                                                            • 菜单4
                                                                            • 菜单1
                                                                            • 菜单2
                                                                            • 菜单3
                                                                            • 菜单4
                                                                            "`; +exports[`ssr snapshot test > ssr test packages/components/menu/_example/single.tsx 1`] = `"
                                                                            • 菜单1
                                                                            • 菜单2
                                                                            • 菜单3
                                                                            • 菜单4
                                                                            • 菜单1
                                                                            • 菜单2
                                                                            • 菜单3
                                                                            • 菜单4
                                                                            "`; exports[`ssr snapshot test > ssr test packages/components/menu/_example/single-side.tsx 1`] = `"
                                                                            • 仪表盘
                                                                            • 资源列表
                                                                            • 视频区
                                                                            • 根目录
                                                                            • 调度平台
                                                                            • 精准监控
                                                                            • 个人中心
                                                                            • 仪表盘
                                                                            • 资源列表
                                                                            • 视频区
                                                                            • 根目录
                                                                            • 调度平台
                                                                            • 精准监控
                                                                            • 个人中心
                                                                            "`; @@ -704,7 +704,7 @@ exports[`ssr snapshot test > ssr test packages/components/pagination/_example/mo exports[`ssr snapshot test > ssr test packages/components/pagination/_example/page-num.tsx 1`] = `"
                                                                            共 645 条数据
                                                                            请选择
                                                                            • 1
                                                                            • 2
                                                                            • 3
                                                                            • 4
                                                                            • 5
                                                                            • 33
                                                                            "`; -exports[`ssr snapshot test > ssr test packages/components/pagination/_example/pagination-mini.tsx 1`] = `"
                                                                            layout:
                                                                            size:
                                                                            "`; +exports[`ssr snapshot test > ssr test packages/components/pagination/_example/pagination-mini.tsx 1`] = `"
                                                                            layout:
                                                                            size:
                                                                            "`; exports[`ssr snapshot test > ssr test packages/components/pagination/_example/simple.tsx 1`] = `"
                                                                            共 100 条数据
                                                                            请选择
                                                                            跳至
                                                                            / 20 页
                                                                            "`; @@ -762,7 +762,7 @@ exports[`ssr snapshot test > ssr test packages/components/qrcode/_example/base.t exports[`ssr snapshot test > ssr test packages/components/qrcode/_example/customColor.tsx 1`] = `"
                                                                            "`; -exports[`ssr snapshot test > ssr test packages/components/qrcode/_example/customSize.tsx 1`] = `"

                                                                            "`; +exports[`ssr snapshot test > ssr test packages/components/qrcode/_example/customSize.tsx 1`] = `"

                                                                            "`; exports[`ssr snapshot test > ssr test packages/components/qrcode/_example/customStatusRender.tsx 1`] = `"

                                                                            加载中...

                                                                            二维码过期

                                                                            点击刷新

                                                                            已扫描
                                                                            "`; @@ -894,9 +894,9 @@ exports[`ssr snapshot test > ssr test packages/components/slider/_example/base.t exports[`ssr snapshot test > ssr test packages/components/slider/_example/disabled.tsx 1`] = `"
                                                                            "`; -exports[`ssr snapshot test > ssr test packages/components/slider/_example/input-number.tsx 1`] = `"
                                                                            "`; +exports[`ssr snapshot test > ssr test packages/components/slider/_example/input-number.tsx 1`] = `"
                                                                            "`; -exports[`ssr snapshot test > ssr test packages/components/slider/_example/input-number-vertical.tsx 1`] = `"
                                                                            "`; +exports[`ssr snapshot test > ssr test packages/components/slider/_example/input-number-vertical.tsx 1`] = `"
                                                                            "`; exports[`ssr snapshot test > ssr test packages/components/slider/_example/marks.tsx 1`] = `"
                                                                            0°C
                                                                            12°C
                                                                            37°C
                                                                            0°C
                                                                            8°C
                                                                            37°C
                                                                            50°C
                                                                            70°C
                                                                            "`; @@ -990,7 +990,7 @@ exports[`ssr snapshot test > ssr test packages/components/table/_example/custom- exports[`ssr snapshot test > ssr test packages/components/table/_example/custom-col.tsx 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
                                                                            共 100 条数据
                                                                            请选择
                                                                            • 1
                                                                            • 2
                                                                            • 3
                                                                            • 4
                                                                            • 5
                                                                            • 20
                                                                            "`; -exports[`ssr snapshot test > ssr test packages/components/table/_example/custom-col-button.tsx 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
                                                                            共 100 条数据
                                                                            请选择
                                                                            • 1
                                                                            • 2
                                                                            • 3
                                                                            • 4
                                                                            • 5
                                                                            • 20
                                                                            "`; +exports[`ssr snapshot test > ssr test packages/components/table/_example/custom-col-button.tsx 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
                                                                            共 100 条数据
                                                                            请选择
                                                                            • 1
                                                                            • 2
                                                                            • 3
                                                                            • 4
                                                                            • 5
                                                                            • 20
                                                                            "`; exports[`ssr snapshot test > ssr test packages/components/table/_example/custom-footer.tsx 1`] = `"
                                                                            申请人
                                                                            审批状态
                                                                            签署方式
                                                                            邮箱地址
                                                                            申请时间
                                                                            贾明
                                                                            审批通过
                                                                            电子签署
                                                                            w.cezkdudy@lhll.au
                                                                            2022-01-01
                                                                            张三
                                                                            审批失败
                                                                            纸质签署
                                                                            r.nmgw@peurezgn.sl
                                                                            2022-02-01
                                                                            王芳
                                                                            审批过期
                                                                            纸质签署
                                                                            p.cumx@rampblpa.ru
                                                                            2022-03-01
                                                                            表尾信息
                                                                            表尾信息
                                                                            表尾信息
                                                                            表尾信息
                                                                            表尾信息
                                                                            "`; @@ -1028,7 +1028,7 @@ exports[`ssr snapshot test > ssr test packages/components/table/_example/loading exports[`ssr snapshot test > ssr test packages/components/table/_example/merge-cells.tsx 1`] = `"
                                                                            申请人
                                                                            申请状态
                                                                            审批事项
                                                                            邮箱地址
                                                                            其他信息
                                                                            "`; -exports[`ssr snapshot test > ssr test packages/components/table/_example/multi-header.tsx 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 packages/components/table/_example/multi-header.tsx 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 packages/components/table/_example/multiple-sort.tsx 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
                                                                            "`; @@ -1158,7 +1158,7 @@ exports[`ssr snapshot test > ssr test packages/components/tooltip/_example/base. exports[`ssr snapshot test > ssr test packages/components/tooltip/_example/duration.tsx 1`] = `""`; -exports[`ssr snapshot test > ssr test packages/components/tooltip/_example/lite.tsx 1`] = `"
                                                                            不可用状态下提示
                                                                            "`; +exports[`ssr snapshot test > ssr test packages/components/tooltip/_example/lite.tsx 1`] = `"
                                                                            不可用状态下提示
                                                                            "`; exports[`ssr snapshot test > ssr test packages/components/tooltip/_example/mouse.tsx 1`] = `""`; @@ -1168,21 +1168,21 @@ exports[`ssr snapshot test > ssr test packages/components/tooltip/_example/theme exports[`ssr snapshot test > ssr test packages/components/tooltip/_example/trigger.tsx 1`] = `"
                                                                            "`; -exports[`ssr snapshot test > ssr test packages/components/transfer/_example/base.tsx 1`] = `"
                                                                            0 / 20 项
                                                                            0 / 0 项
                                                                            暂无数据
                                                                            "`; +exports[`ssr snapshot test > ssr test packages/components/transfer/_example/base.tsx 1`] = `"
                                                                            0 / 20 项
                                                                            0 / 0 项
                                                                            暂无数据
                                                                            "`; -exports[`ssr snapshot test > ssr test packages/components/transfer/_example/checked.tsx 1`] = `"
                                                                            3 / 20 项
                                                                            0 / 0 项
                                                                            暂无数据
                                                                            "`; +exports[`ssr snapshot test > ssr test packages/components/transfer/_example/checked.tsx 1`] = `"
                                                                            3 / 20 项
                                                                            0 / 0 项
                                                                            暂无数据
                                                                            "`; -exports[`ssr snapshot test > ssr test packages/components/transfer/_example/custom.tsx 1`] = `""`; +exports[`ssr snapshot test > ssr test packages/components/transfer/_example/custom.tsx 1`] = `""`; -exports[`ssr snapshot test > ssr test packages/components/transfer/_example/custom-render.tsx 1`] = `"
                                                                            0 / 20 项
                                                                            0 / 0 项
                                                                            暂无数据
                                                                            "`; +exports[`ssr snapshot test > ssr test packages/components/transfer/_example/custom-render.tsx 1`] = `"
                                                                            0 / 20 项
                                                                            0 / 0 项
                                                                            暂无数据
                                                                            "`; -exports[`ssr snapshot test > ssr test packages/components/transfer/_example/empty.tsx 1`] = `"

                                                                            默认暂无数据

                                                                            0 / 0 项
                                                                            暂无数据
                                                                            0 / 0 项
                                                                            暂无数据

                                                                            自定义暂无数据

                                                                            0 / 0 项
                                                                            No Source
                                                                            0 / 0 项
                                                                            No Target
                                                                            "`; +exports[`ssr snapshot test > ssr test packages/components/transfer/_example/empty.tsx 1`] = `"

                                                                            默认暂无数据

                                                                            0 / 0 项
                                                                            暂无数据
                                                                            0 / 0 项
                                                                            暂无数据

                                                                            自定义暂无数据

                                                                            0 / 0 项
                                                                            No Source
                                                                            0 / 0 项
                                                                            No Target
                                                                            "`; -exports[`ssr snapshot test > ssr test packages/components/transfer/_example/pagination.tsx 1`] = `"
                                                                            0 / 20 项
                                                                            跳至
                                                                            / 2 页
                                                                            0 / 0 项
                                                                            暂无数据
                                                                            跳至
                                                                            / 1 页
                                                                            "`; +exports[`ssr snapshot test > ssr test packages/components/transfer/_example/pagination.tsx 1`] = `"
                                                                            0 / 20 项
                                                                            跳至
                                                                            / 2 页
                                                                            0 / 0 项
                                                                            暂无数据
                                                                            跳至
                                                                            / 1 页
                                                                            "`; -exports[`ssr snapshot test > ssr test packages/components/transfer/_example/search.tsx 1`] = `""`; +exports[`ssr snapshot test > ssr test packages/components/transfer/_example/search.tsx 1`] = `""`; -exports[`ssr snapshot test > ssr test packages/components/transfer/_example/tree.tsx 1`] = `"
                                                                            0 / 5 项
                                                                            暂无数据
                                                                            0 / 0 项
                                                                            暂无数据
                                                                            "`; +exports[`ssr snapshot test > ssr test packages/components/transfer/_example/tree.tsx 1`] = `"
                                                                            0 / 5 项
                                                                            暂无数据
                                                                            0 / 0 项
                                                                            暂无数据
                                                                            "`; exports[`ssr snapshot test > ssr test packages/components/tree/_example/activable.tsx 1`] = `"
                                                                            暂无数据
                                                                            "`; @@ -1248,7 +1248,7 @@ exports[`ssr snapshot test > ssr test packages/components/tree-select/_example/v exports[`ssr snapshot test > ssr test packages/components/typography/_example/base.tsx 1`] = `"

                                                                            What is TDesign

                                                                            TDesign is an enterprise-level design system accumulated by Tencent's various business teams.
                                                                            TDesign features a unified design values, consistent design language, and visual style, helping users form continuous and coherent perceptions of the experience. Based on this, TDesign offers out-of-the-box UI component libraries, design guidelines, and design assets, elegantly and efficiently freeing design and development from repetitive tasks. Simultaneously, it facilitates easy extension on top of TDesign, enabling a better alignment with business requirements.

                                                                            Comprehensive

                                                                            TDesign Support Vue 2, Vue 3, React, components for Desktop Application and Vue 3, Wechat MiniProgram components for Mobile Application.
                                                                            • Features
                                                                            • Comprehensive
                                                                              • Consistency
                                                                              • Usability
                                                                            • Join TDesign
                                                                            1. Features
                                                                            2. Comprehensive
                                                                              1. Consistency
                                                                              2. Usability
                                                                            3. Join TDesign
                                                                            "`; -exports[`ssr snapshot test > ssr test packages/components/typography/_example/copyable.tsx 1`] = `"This is a copyable text.
                                                                            This is a copyable long text. TDesign was founded with the principles of open-source collaboration from the beginning. The collaboration scheme discussion, component design, and API design, including source code, are fully open within the company, garnering widespread attention from internal developers and designers. TDesign follows an equal, open, and strict policy, regardless of the participants' roles....

                                                                            This is a copyable long text with custom suffix."`; +exports[`ssr snapshot test > ssr test packages/components/typography/_example/copyable.tsx 1`] = `"This is a copyable text.
                                                                            This is a copyable long text. TDesign was founded with the principles of open-source collaboration from the beginning. The collaboration scheme discussion, component design, and API design, including source code, are fully open within the company, garnering widespread attention from internal developers and designers. TDesign follows an equal, open, and strict policy, regardless of the participants' roles....

                                                                            This is a copyable long text with custom suffix."`; exports[`ssr snapshot test > ssr test packages/components/typography/_example/ellipsis.tsx 1`] = `"
                                                                            TDesign was founded with the principles of open-source collaboration from the beginning. The collaboration scheme discussion, component design, and API design, including source code, are fully open within the company, garnering widespread attention from internal developers and designers. TDesign follows an equal, open, and strict policy, regardless of the participants' roles....
                                                                            TDesign was founded with the principles of open-source collaboration from the beginning. The collaboration scheme discussion, component design, and API design, including source code, are fully open within the company, garnering widespread attention from internal developers and designers. TDesign follows an equal, open, and strict policy, regardless of the participants' roles....
                                                                            TDesign was founded with the principles of open-source collaboration from the beginning. The collaboration scheme discussion, component design, and API design, including source code, are fully open within the company, garnering widespread attention from internal developers and designers. TDesign follows an equal, open, and strict policy, regardless of the participants' roles....
                                                                            TDesign was founded with the principles of open-source collaboration from the beginning. The collaboration scheme discussion, component design, and API design, including source code, are fully open within the company, garnering widespread attention from internal developers and designers. TDesign follows an equal, open, and strict policy, regardless of the participants' roles....
                                                                            "`; @@ -1256,1294 +1256,20 @@ exports[`ssr snapshot test > ssr test packages/components/typography/_example/te exports[`ssr snapshot test > ssr test packages/components/typography/_example/title.tsx 1`] = `"

                                                                            H1. TDesign

                                                                            H2. TDesign

                                                                            H3. TDesign

                                                                            H4. TDesign

                                                                            H5. TDesign
                                                                            H6. TDesign
                                                                            "`; -exports[`ssr snapshot test > ssr test packages/components/upload/_example/base.tsx 1`] = `"

                                                                            要求文件大小在 1M 以内
                                                                            文件上传失败示例
                                                                            "`; +exports[`ssr snapshot test > ssr test packages/components/upload/_example/base.tsx 1`] = `"

                                                                            要求文件大小在 1M 以内
                                                                            文件上传失败示例
                                                                            "`; -exports[`ssr snapshot test > ssr test packages/components/upload/_example/custom-drag.tsx 1`] = `"


                                                                            "`; +exports[`ssr snapshot test > ssr test packages/components/upload/_example/custom-drag.tsx 1`] = `"


                                                                            "`; exports[`ssr snapshot test > ssr test packages/components/upload/_example/draggable.tsx 1`] = `"
                                                                            是否自动上传:

                                                                            点击上传  /  拖拽到此区域
                                                                            默认文件
                                                                            文件大小1.0 KB上传日期2022-09-25
                                                                            "`; -exports[`ssr snapshot test > ssr test packages/components/upload/_example/file-flow-list.tsx 1`] = `"

                                                                            支持批量上传文件,文件格式不限,最多只能上传 10 份文件
                                                                            点击上方“选择文件”或将文件拖拽到此区域
                                                                            取消上传
                                                                            点击上传
                                                                            "`; +exports[`ssr snapshot test > ssr test packages/components/upload/_example/file-flow-list.tsx 1`] = `"

                                                                            支持批量上传文件,文件格式不限,最多只能上传 10 份文件
                                                                            点击上方“选择文件”或将文件拖拽到此区域
                                                                            取消上传
                                                                            点击上传
                                                                            "`; exports[`ssr snapshot test > ssr test packages/components/upload/_example/image.tsx 1`] = `"

                                                                            • 请选择图片

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

                                                                            单张图片文件上传(上传失败状态演示)
                                                                            • 点击上传图片

                                                                            允许选择多张图片文件上传,最多只能上传 3 张图片
                                                                            "`; -exports[`ssr snapshot test > ssr test packages/components/upload/_example/img-flow-list.tsx 1`] = `"
                                                                            AutoUpload

                                                                            支持批量上传图片文件
                                                                            • demo…-1.png

                                                                            • avatar.jpg

                                                                            取消上传

                                                                            Different Status Images
                                                                            • loading.svg

                                                                            • loading.svg

                                                                            • 上传中 10%

                                                                              loading.svg

                                                                            • 上传失败

                                                                              loading.svg

                                                                            "`; +exports[`ssr snapshot test > ssr test packages/components/upload/_example/img-flow-list.tsx 1`] = `"
                                                                            AutoUpload

                                                                            支持批量上传图片文件
                                                                            • demo…-1.png

                                                                            • avatar.jpg

                                                                            取消上传

                                                                            Different Status Images
                                                                            • loading.svg

                                                                            • loading.svg

                                                                            • 上传中 10%

                                                                              loading.svg

                                                                            • 上传失败

                                                                              loading.svg

                                                                            "`; -exports[`ssr snapshot test > ssr test packages/components/upload/_example/request-method.tsx 1`] = `"
                                                                            自定义上传方法需要返回成功或失败信息
                                                                            "`; +exports[`ssr snapshot test > ssr test packages/components/upload/_example/request-method.tsx 1`] = `"
                                                                            自定义上传方法需要返回成功或失败信息
                                                                            "`; exports[`ssr snapshot test > ssr test packages/components/upload/_example/single-custom.tsx 1`] = `"
                                                                            上传文件大小在 1M 以内
                                                                            "`; exports[`ssr snapshot test > ssr test packages/components/upload/_example/single-input.tsx 1`] = `"

                                                                            请选择文件
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\affix\\_example\\base.tsx 1`] = `"
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\affix\\_example\\container.tsx 1`] = `"
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\alert\\_example\\base.tsx 1`] = `"
                                                                            这是一条成功的消息提示
                                                                            这是一条普通的消息提示
                                                                            这是一条警示消息
                                                                            高危操作/出错信息提示
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\alert\\_example\\close.tsx 1`] = `"
                                                                            这是一条成功的消息提示
                                                                            这是一条普通的消息提示
                                                                            知道了
                                                                            这是一条警示消息
                                                                            FunctionPropClose
                                                                            高危操作/出错信息提示
                                                                            关闭
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\alert\\_example\\collapse.tsx 1`] = `"
                                                                            1.这是一条普通的消息提示描述,
                                                                            2.这是一条普通的消息提示描述,
                                                                            展开更多
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\alert\\_example\\icon.tsx 1`] = `"
                                                                            这是一条成功的消息提示
                                                                            这是一条普通的消息提示
                                                                            这是一条警示消息
                                                                            高危操作/出错信息提示
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\alert\\_example\\operation.tsx 1`] = `"
                                                                            这是一条成功的消息提示
                                                                            相关操作
                                                                            这是一条普通的消息提示
                                                                            相关操作
                                                                            这是一条警示消息
                                                                            相关操作
                                                                            高危操作/出错信息提示
                                                                            相关操作
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\alert\\_example\\swiper.tsx 1`] = `"
                                                                            这是一条成功的消息提示
                                                                            这是一条普通的消息提示
                                                                            这是一条警示消息
                                                                            高危操作/出错信息提示
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\alert\\_example\\title.tsx 1`] = `"
                                                                            这是一条普通的消息提示
                                                                            这是一条普通的消息提示描述,这是一条普通的消息提示描述
                                                                            相关操作
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\anchor\\_example\\base.tsx 1`] = `""`; - -exports[`ssr snapshot test > ssr test packages\\components\\anchor\\_example\\container.tsx 1`] = `"
                                                                            content-1
                                                                            content-2
                                                                            content-3
                                                                            content-4
                                                                            content-5
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\anchor\\_example\\cursor.tsx 1`] = `""`; - -exports[`ssr snapshot test > ssr test packages\\components\\anchor\\_example\\customize-highlight.tsx 1`] = `""`; - -exports[`ssr snapshot test > ssr test packages\\components\\anchor\\_example\\large.tsx 1`] = `""`; - -exports[`ssr snapshot test > ssr test packages\\components\\anchor\\_example\\multiple.tsx 1`] = `""`; - -exports[`ssr snapshot test > ssr test packages\\components\\anchor\\_example\\small.tsx 1`] = `""`; - -exports[`ssr snapshot test > ssr test packages\\components\\anchor\\_example\\target.tsx 1`] = `"

                                                                            基础锚点

                                                                            多级锚点

                                                                            尺寸大小

                                                                            指定容器

                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\auto-complete\\_example\\base.tsx 1`] = `"
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\auto-complete\\_example\\filter.tsx 1`] = `"
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\auto-complete\\_example\\option.tsx 1`] = `"
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\auto-complete\\_example\\size.tsx 1`] = `"
                                                                            小尺寸:
                                                                            中尺寸:
                                                                            大尺寸:
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\auto-complete\\_example\\status.tsx 1`] = `"
                                                                            这是禁用状态
                                                                            这是只读状态
                                                                            这是普通状态
                                                                            这是告警状态
                                                                            这是错误状态
                                                                            这是成功状态
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\auto-complete\\_example\\trigger-element.tsx 1`] = `"
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\avatar\\_example\\adjust.tsx 1`] = `"
                                                                            王亿
                                                                            王亿亿
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\avatar\\_example\\base.tsx 1`] = `"
                                                                            图片加载中
                                                                            W
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\avatar\\_example\\group.tsx 1`] = `"
                                                                            图片加载中
                                                                            W
                                                                            图片加载中
                                                                            W
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\avatar\\_example\\group-cascading.tsx 1`] = `"
                                                                            图片加载中
                                                                            W
                                                                            图片加载中
                                                                            W
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\avatar\\_example\\group-max.tsx 1`] = `"
                                                                            图片加载中
                                                                            Avatar
                                                                            +1
                                                                            图片加载中
                                                                            Avatar
                                                                            图片加载中
                                                                            Avatar
                                                                            more
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\avatar\\_example\\shape.tsx 1`] = `"
                                                                            W
                                                                            W
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\avatar\\_example\\size.tsx 1`] = `"
                                                                            W
                                                                            W
                                                                            W
                                                                            W
                                                                            W
                                                                            W
                                                                            W
                                                                            W
                                                                            test
                                                                            图片加载中
                                                                            图片加载中
                                                                            图片加载中
                                                                            图片加载中
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\back-top\\_example\\baseList.tsx 1`] = `"
                                                                            • 列表内容
                                                                            • 列表内容
                                                                            • 列表内容
                                                                            • 列表内容
                                                                            • 列表内容
                                                                            • 列表内容
                                                                            • 列表内容
                                                                            • 列表内容
                                                                            • 列表内容
                                                                            • 列表内容
                                                                            • 列表内容
                                                                            • 列表内容
                                                                            • 列表内容
                                                                            • 列表内容
                                                                            • 列表内容
                                                                            • 列表内容
                                                                            • 列表内容
                                                                            • 列表内容
                                                                            • 列表内容
                                                                            • 列表内容
                                                                            • 列表内容
                                                                            • 列表内容
                                                                            • 列表内容
                                                                            • 列表内容
                                                                            • 列表内容
                                                                            • 列表内容
                                                                            • 列表内容
                                                                            • 列表内容
                                                                            • 列表内容
                                                                            • 列表内容
                                                                            • 列表内容
                                                                            • 列表内容
                                                                            • 列表内容
                                                                            • 列表内容
                                                                            • 列表内容
                                                                            • 列表内容
                                                                            • 列表内容
                                                                            • 列表内容
                                                                            • 列表内容
                                                                            • 列表内容
                                                                            • 列表内容
                                                                            • 列表内容
                                                                            • 列表内容
                                                                            • 列表内容
                                                                            • 列表内容
                                                                            • 列表内容
                                                                            • 列表内容
                                                                            • 列表内容
                                                                            • 列表内容
                                                                            • 列表内容
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\back-top\\_example\\baseListSmall.tsx 1`] = `"
                                                                            • 列表内容
                                                                            • 列表内容
                                                                            • 列表内容
                                                                            • 列表内容
                                                                            • 列表内容
                                                                            • 列表内容
                                                                            • 列表内容
                                                                            • 列表内容
                                                                            • 列表内容
                                                                            • 列表内容
                                                                            • 列表内容
                                                                            • 列表内容
                                                                            • 列表内容
                                                                            • 列表内容
                                                                            • 列表内容
                                                                            • 列表内容
                                                                            • 列表内容
                                                                            • 列表内容
                                                                            • 列表内容
                                                                            • 列表内容
                                                                            • 列表内容
                                                                            • 列表内容
                                                                            • 列表内容
                                                                            • 列表内容
                                                                            • 列表内容
                                                                            • 列表内容
                                                                            • 列表内容
                                                                            • 列表内容
                                                                            • 列表内容
                                                                            • 列表内容
                                                                            • 列表内容
                                                                            • 列表内容
                                                                            • 列表内容
                                                                            • 列表内容
                                                                            • 列表内容
                                                                            • 列表内容
                                                                            • 列表内容
                                                                            • 列表内容
                                                                            • 列表内容
                                                                            • 列表内容
                                                                            • 列表内容
                                                                            • 列表内容
                                                                            • 列表内容
                                                                            • 列表内容
                                                                            • 列表内容
                                                                            • 列表内容
                                                                            • 列表内容
                                                                            • 列表内容
                                                                            • 列表内容
                                                                            • 列表内容
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\back-top\\_example\\custom.tsx 1`] = `"
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\back-top\\_example\\shape.tsx 1`] = `"
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\back-top\\_example\\size.tsx 1`] = `"
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\back-top\\_example\\theme.tsx 1`] = `"
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\badge\\_example\\base.tsx 1`] = `"解锁新徽章"`; - -exports[`ssr snapshot test > ssr test packages\\components\\badge\\_example\\color.tsx 1`] = `"
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\badge\\_example\\custom.tsx 1`] = `"
                                                                            hot
                                                                            new
                                                                            100
                                                                            hot
                                                                            new
                                                                            new
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\badge\\_example\\number.tsx 1`] = `"29999+"`; - -exports[`ssr snapshot test > ssr test packages\\components\\badge\\_example\\offset.tsx 1`] = `"22222"`; - -exports[`ssr snapshot test > ssr test packages\\components\\badge\\_example\\shape.tsx 1`] = `"299"`; - -exports[`ssr snapshot test > ssr test packages\\components\\badge\\_example\\size.tsx 1`] = `"

                                                                            1.默认大小

                                                                            29999+

                                                                            2.小

                                                                            29999+"`; - -exports[`ssr snapshot test > ssr test packages\\components\\breadcrumb\\_example\\base.tsx 1`] = `"
                                                                            页面1
                                                                            页面2页面2页面2页面2页面2页面2页面2页面2
                                                                            页面3页面3页面3页面3页面3页面3页面3页面3页面3页面3页面3页面3页面3页面3页面3
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\breadcrumb\\_example\\custom.tsx 1`] = `"
                                                                            页面1>>
                                                                            页面2>>
                                                                            页面3>>
                                                                            页面1/////
                                                                            页面2/////
                                                                            页面3/////
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\breadcrumb\\_example\\custom-ellipsis.tsx 1`] = `"
                                                                            页面1
                                                                            页面2
                                                                            页面5
                                                                            页面1
                                                                            页面2
                                                                            页面5
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\breadcrumb\\_example\\ellipsis.tsx 1`] = `"
                                                                            页面1
                                                                            页面2
                                                                            页面5
                                                                            页面1
                                                                            页面2
                                                                            页面5
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\breadcrumb\\_example\\href.tsx 1`] = `"
                                                                            页面2
                                                                            页面3
                                                                            点击计数器:0
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\breadcrumb\\_example\\icon.tsx 1`] = `"
                                                                            页面1
                                                                            页面2
                                                                            页面3
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\breadcrumb\\_example\\options.tsx 1`] = `"
                                                                            页面1
                                                                            页面2
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\breadcrumb\\_example\\to.tsx 1`] = `""`; - -exports[`ssr snapshot test > ssr test packages\\components\\breadcrumb\\_example\\width.tsx 1`] = `"
                                                                            父级设置100px父级设置100px
                                                                            设置最大宽度160px设置最大宽度160px设置最大宽度160px
                                                                            设置最大宽度240px设置最大宽度240px设置最大宽度240px设置最大宽度240px设置最大宽度240px
                                                                            父级设置100px父级设置100px
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\button\\_example\\base.tsx 1`] = `"
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\button\\_example\\block.tsx 1`] = `"
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\button\\_example\\custom-element.tsx 1`] = `""`; - -exports[`ssr snapshot test > ssr test packages\\components\\button\\_example\\ghost.tsx 1`] = `"
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\button\\_example\\icon.tsx 1`] = `"
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\button\\_example\\shape.tsx 1`] = `"
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\button\\_example\\size.tsx 1`] = `"
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\button\\_example\\status.tsx 1`] = `"
                                                                            填充按钮
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\button\\_example\\theme.tsx 1`] = `"
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\calendar\\_example\\base.tsx 1`] = `"
                                                                            请选择
                                                                            请选择
                                                                            隐藏周末
                                                                            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
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\calendar\\_example\\card.tsx 1`] = `"
                                                                            请选择
                                                                            请选择
                                                                            30
                                                                            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
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\calendar\\_example\\cell.tsx 1`] = `"
                                                                            请选择
                                                                            请选择
                                                                            隐藏周末
                                                                            30
                                                                            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
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\calendar\\_example\\cell-append.tsx 1`] = `"
                                                                            请选择
                                                                            请选择
                                                                            隐藏周末
                                                                            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
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\calendar\\_example\\controller-config.tsx 1`] = `"
                                                                            控件全局



                                                                            控件局部






                                                                            请选择
                                                                            请选择
                                                                            隐藏周末
                                                                            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
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\calendar\\_example\\events.tsx 1`] = `"
                                                                            请选择
                                                                            请选择
                                                                            隐藏周末
                                                                            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
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\calendar\\_example\\filter.tsx 1`] = `"
                                                                            请选择
                                                                            请选择
                                                                            隐藏周末
                                                                            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
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\calendar\\_example\\first-day-of-week.tsx 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 packages\\components\\calendar\\_example\\head.tsx 1`] = `"
                                                                            🗓 TDesign开发计划
                                                                            请选择
                                                                            请选择
                                                                            隐藏周末
                                                                            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
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\calendar\\_example\\mode.tsx 1`] = `"
                                                                            请选择
                                                                            请选择
                                                                            隐藏周末
                                                                            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
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\calendar\\_example\\range.tsx 1`] = `"
                                                                            请选择
                                                                            请选择
                                                                            隐藏周末
                                                                            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
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\calendar\\_example\\slot-props-api.tsx 1`] = `"
                                                                            2020-12 工作安排
                                                                            请选择
                                                                            请选择
                                                                            隐藏周末
                                                                            30
                                                                            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
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\calendar\\_example\\value.tsx 1`] = `"
                                                                            请选择
                                                                            请选择
                                                                            隐藏周末
                                                                            26
                                                                            27
                                                                            28
                                                                            29
                                                                            30
                                                                            31
                                                                            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
                                                                            01
                                                                            02
                                                                            03
                                                                            04
                                                                            05
                                                                            06
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\calendar\\_example\\week.tsx 1`] = `"
                                                                            请选择
                                                                            请选择
                                                                            隐藏周末
                                                                            星期1
                                                                            星期2
                                                                            星期3
                                                                            星期4
                                                                            星期5
                                                                            星期6
                                                                            星期7
                                                                            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
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\card\\_example\\base.tsx 1`] = `"
                                                                            标题
                                                                            操作
                                                                            仅有内容区域的卡片形式。卡片内容区域可以是文字、图片、表单、表格等形式信息内容。可使用大中小不同的卡片尺寸,按业务需求进行呈现。
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\card\\_example\\bordered.tsx 1`] = `"
                                                                            仅有内容区域的卡片形式。卡片内容区域可以是文字、图片、表单、表格等形式信息内容。可使用大中小不同的卡片尺寸,按业务需求进行呈现。
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\card\\_example\\bordered-none.tsx 1`] = `"
                                                                            标题
                                                                            仅有内容区域的卡片形式。卡片内容区域可以是文字、图片、表单、表格等形式信息内容。可使用大中小不同的卡片尺寸,按业务需求进行呈现。
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\card\\_example\\custom-loading-props.tsx 1`] = `"
                                                                            自定义loadingProps Card
                                                                            仅有内容区域的卡片形式。卡片内容区域可以是文字、图片、表单、表格等形式信息内容。可使用大中小不同的卡片尺寸,按业务需求进行呈现。
                                                                            TDesign努力加载中...
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\card\\_example\\footer.tsx 1`] = `"
                                                                            默认标签
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\card\\_example\\footer-actions.tsx 1`] = `"
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\card\\_example\\footer-content.tsx 1`] = `"
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\card\\_example\\footer-content-actions.tsx 1`] = `"
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\card\\_example\\header.tsx 1`] = `"
                                                                            标题
                                                                            卡片内容,以描述性为主,可以是文字、图片或图文组合的形式。按业务需求进行自定义组合。
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\card\\_example\\header-all-props.tsx 1`] = `"
                                                                            标题
                                                                            副标题

                                                                            描述

                                                                            操作
                                                                            卡片内容,以描述性为主,可以是文字、图片或图文组合的形式。按业务需求进行自定义组合。
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\card\\_example\\header-bordered.tsx 1`] = `"
                                                                            标题
                                                                            卡片内容,以描述性为主,可以是文字、图片或图文组合的形式。按业务需求进行自定义组合。
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\card\\_example\\header-description.tsx 1`] = `"
                                                                            标题

                                                                            描述

                                                                            操作
                                                                            卡片内容,以描述性为主,可以是文字、图片或图文组合的形式。按业务需求进行自定义组合。
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\card\\_example\\header-footer-actions.tsx 1`] = `"
                                                                            图片加载中
                                                                            标题

                                                                            卡片内容

                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\card\\_example\\header-subtitle.tsx 1`] = `"
                                                                            标题
                                                                            副标题
                                                                            操作
                                                                            卡片内容,以描述性为主,可以是文字、图片或图文组合的形式。按业务需求进行自定义组合。
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\card\\_example\\header-subtitle-footer-actions.tsx 1`] = `"
                                                                            标题
                                                                            副标题
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\cascader\\_example\\base.tsx 1`] = `"
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\cascader\\_example\\check-strictly.tsx 1`] = `"
                                                                            请选择
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\cascader\\_example\\collapsed.tsx 1`] = `"
                                                                            请选择
                                                                            请选择
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\cascader\\_example\\custom-options.tsx 1`] = `"
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\cascader\\_example\\disabled.tsx 1`] = `"
                                                                            请选择
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\cascader\\_example\\ellipsis.tsx 1`] = `"
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\cascader\\_example\\filterable.tsx 1`] = `"
                                                                            请选择
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\cascader\\_example\\keys.tsx 1`] = `"
                                                                            请选择
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\cascader\\_example\\load.tsx 1`] = `"
                                                                            请选择
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\cascader\\_example\\max.tsx 1`] = `"
                                                                            请选择
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\cascader\\_example\\multiple.tsx 1`] = `"
                                                                            请选择
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\cascader\\_example\\panel.tsx 1`] = `"
                                                                            暂无数据
                                                                            暂无数据
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\cascader\\_example\\show-all-levels.tsx 1`] = `"
                                                                            请选择
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\cascader\\_example\\size.tsx 1`] = `"
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\cascader\\_example\\trigger.tsx 1`] = `"
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\cascader\\_example\\value-display.tsx 1`] = `"
                                                                            单选:
                                                                            (2.2)
                                                                            多选:
                                                                            请选择
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\cascader\\_example\\value-mode.tsx 1`] = `"
                                                                            请选择
                                                                            请选择
                                                                            请选择
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\cascader\\_example\\value-type.tsx 1`] = `"
                                                                            ["1","1.1"]
                                                                            [["1","1.1"],["1","1.2"]]
                                                                            请选择
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\checkbox\\_example\\base.tsx 1`] = `"
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\checkbox\\_example\\controlled.tsx 1`] = `"
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\checkbox\\_example\\group.tsx 1`] = `"
                                                                            选中值: 北京
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\checkbox\\_example\\link.tsx 1`] = `"
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\checkbox\\_example\\max.tsx 1`] = `"
                                                                            最多可选:
                                                                            选中值: 北京
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\collapse\\_example\\base.tsx 1`] = `"
                                                                            这是一个折叠标题
                                                                            这部分是每个折叠面板折叠或展开的内容,可根据不同业务或用户的使用诉求,进行自定义填充。可以是纯文本、图文、子列表等内容形式。
                                                                            设置默认展开项
                                                                            这部分是每个折叠面板折叠或展开的内容,可根据不同业务或用户的使用诉求,进行自定义填充。可以是纯文本、图文、子列表等内容形式。
                                                                            自定义折叠面板内容
                                                                            Vue
                                                                            React
                                                                            当前折叠面板折叠时,销毁面板内容
                                                                            嵌套使用折叠面板
                                                                            这是一个折叠标题
                                                                            这部分是每个折叠面板折叠或展开的内容,可根据不同业务或用户的使用诉求,进行自定义填充。可以是纯文本、图文、子列表等内容形式。
                                                                            这是一个折叠标题
                                                                            这部分是每个折叠面板折叠或展开的内容,可根据不同业务或用户的使用诉求,进行自定义填充。可以是纯文本、图文、子列表等内容形式。
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\collapse\\_example\\icon.tsx 1`] = `"
                                                                            这是一个折叠标题
                                                                            这部分是每个折叠面板折叠或展开的内容,可根据不同业务或用户的使用诉求,进行自定义填充。可以是纯文本、图文、子列表等内容形式。
                                                                            折叠后自动销毁
                                                                            自定义折叠面板内容
                                                                            Vue
                                                                            React
                                                                            自定义图标
                                                                            这部分是每个折叠面板折叠或展开的内容,可根据不同业务或用户的使用诉求,进行自定义填充。可以是纯文本、图文、子列表等内容形式。
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\collapse\\_example\\mutex.tsx 1`] = `"
                                                                            这是一个折叠标题
                                                                            这部分是每个折叠面板折叠或展开的内容,可根据不同业务或用户的使用诉求,进行自定义填充。可以是纯文本、图文、子列表等内容形式。
                                                                            折叠后自动销毁
                                                                            自定义折叠面板内容
                                                                            Vue
                                                                            React
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\collapse\\_example\\other.tsx 1`] = `"
                                                                            这是一个折叠标题
                                                                            这部分是每个折叠面板折叠或展开的内容,可根据不同业务或用户的使用诉求,进行自定义填充。可以是纯文本、图文、子列表等内容形式。
                                                                            折叠后自动销毁
                                                                            自定义折叠面板内容
                                                                            Vue
                                                                            React
                                                                            当前展开的Collapse Panel:
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\collapse\\_example\\rightSlot.tsx 1`] = `"
                                                                            这是一个折叠标题
                                                                            这部分是每个折叠面板折叠或展开的内容,可根据不同业务或用户的使用诉求,进行自定义填充。可以是纯文本、图文、子列表等内容形式。
                                                                            这是一个折叠标题
                                                                            这部分是每个折叠面板折叠或展开的内容,可根据不同业务或用户的使用诉求,进行自定义填充。可以是纯文本、图文、子列表等内容形式。
                                                                            这是一个折叠标题
                                                                            这部分是每个折叠面板折叠或展开的内容,可根据不同业务或用户的使用诉求,进行自定义填充。可以是纯文本、图文、子列表等内容形式。
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\color-picker\\_example\\color-mode.tsx 1`] = `"
                                                                            默认(单色 + 线性渐变)
                                                                            rgba(0, 82, 217, 1)
                                                                            仅单色模式
                                                                            #0052d9
                                                                            仅线性渐变模式
                                                                            linear-gradient(45deg, #4facfe 0%, #00f2fe 100%)
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages\\components\\color-picker\\_example\\enable-alpha.tsx 1`] = `"
                                                                            请选择

                                                                            最近使用颜色

                                                                              系统预设颜色

                                                                              "`; - -exports[`ssr snapshot test > ssr test packages\\components\\color-picker\\_example\\panel.tsx 1`] = `"
                                                                              请选择

                                                                              最近使用颜色

                                                                                系统预设颜色

                                                                                "`; - -exports[`ssr snapshot test > ssr test packages\\components\\color-picker\\_example\\recent-color.tsx 1`] = `"
                                                                                预设最近使用色
                                                                                请选择

                                                                                最近使用颜色

                                                                                系统预设颜色

                                                                                完全不显示最近使用色
                                                                                请选择

                                                                                系统预设颜色

                                                                                "`; - -exports[`ssr snapshot test > ssr test packages\\components\\color-picker\\_example\\status-disabled.tsx 1`] = `"
                                                                                #0052d9
                                                                                "`; - -exports[`ssr snapshot test > ssr test packages\\components\\color-picker\\_example\\status-readonly.tsx 1`] = `"
                                                                                请选择

                                                                                最近使用颜色

                                                                                  系统预设颜色

                                                                                  "`; - -exports[`ssr snapshot test > ssr test packages\\components\\color-picker\\_example\\swatch-color.tsx 1`] = `"
                                                                                  自定义系统色
                                                                                  请选择

                                                                                  最近使用颜色

                                                                                    系统预设颜色

                                                                                    完全不显示系统色
                                                                                    请选择

                                                                                    最近使用颜色

                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\color-picker\\_example\\trigger.tsx 1`] = `"
                                                                                      #0052d9
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\comment\\_example\\base.tsx 1`] = `"
                                                                                      评论作者名今天16:38
                                                                                      评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容。
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\comment\\_example\\list.tsx 1`] = `"
                                                                                      • 评论作者名A今天16:38
                                                                                        A评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容。
                                                                                      • 评论作者名B今天16:38
                                                                                        B评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容。
                                                                                      • 评论作者名C今天16:38
                                                                                        C评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容。
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\comment\\_example\\operation.tsx 1`] = `"
                                                                                      评论作者名今天16:38
                                                                                      评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容。
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\comment\\_example\\quote.tsx 1`] = `"
                                                                                      评论作者名A今天16:38
                                                                                      A评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容。
                                                                                      引用内容标题
                                                                                      引用内容引用内容引用内容引用内容引用内容引用内容引用内容引用内容引用内容引用内容引用内容引用内容引用内容引用内容引用内容引用内容引用内容引用内容。
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\comment\\_example\\reply.tsx 1`] = `"
                                                                                      评论作者名A今天16:38
                                                                                      A评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容。
                                                                                      评论作者名B评论作者名A今天16:38
                                                                                      B评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容。
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\comment\\_example\\reply-form.tsx 1`] = `"
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\config-provider\\_example\\calendar.tsx 1`] = `"
                                                                                      please select
                                                                                      please select
                                                                                      Hide Weekend
                                                                                      MondayTuesdayWednesdayThursdayFridaySaturdaySunday
                                                                                      30
                                                                                      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
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\config-provider\\_example\\date-picker.tsx 1`] = `"
                                                                                      ~
                                                                                      ~
                                                                                      ~
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\config-provider\\_example\\dialog.tsx 1`] = `"
                                                                                      Title
                                                                                      Would you like to be my friends?
                                                                                      confirm
                                                                                      Would you like to be my friends?
                                                                                      confirm
                                                                                      Would you like to be my friends?
                                                                                      confirm
                                                                                      Would you like to be my friends?
                                                                                      confirm
                                                                                      Would you like to be my friends?
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\config-provider\\_example\\global.tsx 1`] = `"

                                                                                      使用ConfigProvider包裹业务功能的最外层组件,点击下方图标查看示例代码

                                                                                      英文语言包引入路径:import enConfig from 'tdesign-react/es/locale/en_US';

                                                                                      中文语言包引入路径:import zhConfig from 'tdesign-react/es/locale/zh_CN';

                                                                                      日文语言包引入路径:import jpConfig from 'tdesign-react/es/locale/ja_JP';

                                                                                      韩文语言包引入路径:import koConfig from 'tdesign-react/es/locale/ko_KR';

                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\config-provider\\_example\\input.tsx 1`] = `"
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\config-provider\\_example\\others.tsx 1`] = `"
                                                                                      Feature Tag
                                                                                      Feature Tag
                                                                                      Feature Tag
                                                                                      Feature Tag
                                                                                      Tree Empty Data
                                                                                      First Step
                                                                                      You need to click the blue button
                                                                                      Second Step
                                                                                      Fill your base information into the form
                                                                                      Error Step
                                                                                      Something Wrong! Custom Error Icon!
                                                                                      4
                                                                                      Last Step
                                                                                      You haven't finish this step.
                                                                                      图片加载中
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\config-provider\\_example\\pagination.tsx 1`] = `"
                                                                                      Total 36 items
                                                                                      please select
                                                                                      • 1
                                                                                      • 2
                                                                                      • 3
                                                                                      • 4
                                                                                      / 4
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\config-provider\\_example\\popconfirm.tsx 1`] = `"
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\config-provider\\_example\\table.tsx 1`] = `"
                                                                                      Type
                                                                                      Platform
                                                                                      Property
                                                                                      Empty Data
                                                                                      Type
                                                                                      Platform
                                                                                      Property
                                                                                      ArrayVue(PC)A
                                                                                      StringReact(PC)B
                                                                                      ObjectMiniprogramC
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\date-picker\\_example\\base.tsx 1`] = `"
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\date-picker\\_example\\cancel-range-limit.tsx 1`] = `"
                                                                                      -
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\date-picker\\_example\\custom-icon.tsx 1`] = `"
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\date-picker\\_example\\date-presets-alt.tsx 1`] = `"
                                                                                      -
                                                                                      -
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\date-picker\\_example\\date-range.tsx 1`] = `"
                                                                                      -
                                                                                      -
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\date-picker\\_example\\date-time.tsx 1`] = `"
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\date-picker\\_example\\disable-date.tsx 1`] = `"
                                                                                      -
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\date-picker\\_example\\first-day-of-week.tsx 1`] = `"
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\date-picker\\_example\\month.tsx 1`] = `"
                                                                                      -
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\date-picker\\_example\\multiple.tsx 1`] = `"
                                                                                      2024-10-01
                                                                                      2024-10-24
                                                                                      2024-50周
                                                                                      2024-51周
                                                                                      2022
                                                                                      2023
                                                                                      2024
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\date-picker\\_example\\panel.tsx 1`] = `"
                                                                                      30
                                                                                      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
                                                                                      5
                                                                                      6
                                                                                      7
                                                                                      8
                                                                                      9
                                                                                      10
                                                                                      30
                                                                                      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
                                                                                      5
                                                                                      6
                                                                                      7
                                                                                      8
                                                                                      9
                                                                                      10
                                                                                      00:00:00
                                                                                      30
                                                                                      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
                                                                                      5
                                                                                      6
                                                                                      7
                                                                                      8
                                                                                      9
                                                                                      10
                                                                                      28
                                                                                      29
                                                                                      30
                                                                                      31
                                                                                      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
                                                                                      5
                                                                                      6
                                                                                      7
                                                                                      30
                                                                                      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
                                                                                      5
                                                                                      6
                                                                                      7
                                                                                      8
                                                                                      9
                                                                                      10
                                                                                      00:00:00
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\date-picker\\_example\\quarter.tsx 1`] = `"
                                                                                      -
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\date-picker\\_example\\week.tsx 1`] = `"
                                                                                      -
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\date-picker\\_example\\year.tsx 1`] = `"
                                                                                      -
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\descriptions\\_example\\base.tsx 1`] = `"
                                                                                      Shipping address
                                                                                      NameTDesignTelephone Number139****0609
                                                                                      AreaChina Tencent HeadquartersAddressShenzhen Penguin Island D1 4A Mail Center
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\descriptions\\_example\\bordered.tsx 1`] = `"
                                                                                      Shipping address
                                                                                      NameTDesignTelephone Number139****0609
                                                                                      AreaChina Tencent HeadquartersAddressShenzhen Penguin Island D1 4A Mail Center
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\descriptions\\_example\\colon.tsx 1`] = `"
                                                                                      展示冒号
                                                                                      Shipping address
                                                                                      NameTDesignTelephone Number139****0609
                                                                                      AreaChina Tencent HeadquartersAddressShenzhen Penguin Island D1 4A Mail Center
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\descriptions\\_example\\column.tsx 1`] = `"
                                                                                      Shipping address
                                                                                      NameTDesignTelephone Number139****0609
                                                                                      AreaChina Tencent HeadquartersAddressShenzhen Penguin Island D1 4A Mail Center
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\descriptions\\_example\\custom-style.tsx 1`] = `"
                                                                                      Shipping address
                                                                                      NameTDesignTelephone Number139****0609
                                                                                      AreaChina Tencent HeadquartersAddressShenzhen Penguin Island D1 4A Mail Center
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\descriptions\\_example\\items.tsx 1`] = `"
                                                                                      Shipping address
                                                                                      NameTDesign139****0609
                                                                                      Area

                                                                                      China Tencent Headquarters

                                                                                      Address Shenzhen Penguin Island D1 4A Mail Center
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\descriptions\\_example\\layout.tsx 1`] = `"
                                                                                      layout:
                                                                                      itemLayout:
                                                                                      Shipping address
                                                                                      NameTDesignTelephone Number139****0609
                                                                                      AreaChina Tencent HeadquartersAddressShenzhen Penguin Island D1 4A Mail Center
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\descriptions\\_example\\nest.tsx 1`] = `"
                                                                                      Shipping address
                                                                                      NameTDesignTelephone Number139****0609
                                                                                      AreaChina Tencent HeadquartersAddress
                                                                                      CityShenzhenDetailPenguin Island D1 4A Mail Center
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\descriptions\\_example\\size.tsx 1`] = `"
                                                                                      Shipping address
                                                                                      NameTDesignTelephone Number139****0609
                                                                                      AreaChina Tencent HeadquartersAddressShenzhen Penguin Island D1 4A Mail Center
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\descriptions\\_example\\table-layout.tsx 1`] = `"
                                                                                      Shipping address
                                                                                      NameTDesignTelephone Number139****0609
                                                                                      AreaChina Tencent HeadquartersAddressShenzhen Penguin Island D1 4A Mail Center
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\dialog\\_example\\async.tsx 1`] = `""`; - -exports[`ssr snapshot test > ssr test packages\\components\\dialog\\_example\\attach.tsx 1`] = `"
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\dialog\\_example\\base.tsx 1`] = `""`; - -exports[`ssr snapshot test > ssr test packages\\components\\dialog\\_example\\custom.tsx 1`] = `""`; - -exports[`ssr snapshot test > ssr test packages\\components\\dialog\\_example\\icon.tsx 1`] = `""`; - -exports[`ssr snapshot test > ssr test packages\\components\\dialog\\_example\\modal.tsx 1`] = `"
                                                                                      普通对话框

                                                                                      This is a dialog

                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\dialog\\_example\\plugin.tsx 1`] = `"

                                                                                      函数调用方式一:DialogPlugin(options)

                                                                                      函数调用方式二:DialogPlugin.confirm(options)

                                                                                      函数调用方式三:DialogPlugin.alert(options)

                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\dialog\\_example\\position.tsx 1`] = `""`; - -exports[`ssr snapshot test > ssr test packages\\components\\dialog\\_example\\warning.tsx 1`] = `"
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\divider\\_example\\base.tsx 1`] = `"

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

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

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

                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\divider\\_example\\text.tsx 1`] = `"

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

                                                                                      TDesign

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

                                                                                      TDesign

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

                                                                                      TDesign

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

                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\divider\\_example\\vertical.tsx 1`] = `"正直
                                                                                      进取
                                                                                      合作
                                                                                      创新"`; - -exports[`ssr snapshot test > ssr test packages\\components\\drawer\\_example\\attach-parent.tsx 1`] = `"

                                                                                      渲染在当前元素中。

                                                                                      抽屉弹出方向:
                                                                                      抽屉弹出模式:
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\drawer\\_example\\base.tsx 1`] = `""`; - -exports[`ssr snapshot test > ssr test packages\\components\\drawer\\_example\\custom.tsx 1`] = `""`; - -exports[`ssr snapshot test > ssr test packages\\components\\drawer\\_example\\destroy.tsx 1`] = `""`; - -exports[`ssr snapshot test > ssr test packages\\components\\drawer\\_example\\no-mask.tsx 1`] = `""`; - -exports[`ssr snapshot test > ssr test packages\\components\\drawer\\_example\\operation.tsx 1`] = `""`; - -exports[`ssr snapshot test > ssr test packages\\components\\drawer\\_example\\placement.tsx 1`] = `"
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\drawer\\_example\\plugin.tsx 1`] = `"

                                                                                      函数调用方式一:DrawerPlugin(options)

                                                                                      函数调用方式二:drawer(options)

                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\drawer\\_example\\popup.tsx 1`] = `"
                                                                                      抽屉弹出模式:
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\drawer\\_example\\size.tsx 1`] = `"
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\drawer\\_example\\size-draggable.tsx 1`] = `"
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\dropdown\\_example\\base.tsx 1`] = `""`; - -exports[`ssr snapshot test > ssr test packages\\components\\dropdown\\_example\\button.tsx 1`] = `""`; - -exports[`ssr snapshot test > ssr test packages\\components\\dropdown\\_example\\child.tsx 1`] = `""`; - -exports[`ssr snapshot test > ssr test packages\\components\\dropdown\\_example\\click.tsx 1`] = `""`; - -exports[`ssr snapshot test > ssr test packages\\components\\dropdown\\_example\\custom.tsx 1`] = `""`; - -exports[`ssr snapshot test > ssr test packages\\components\\dropdown\\_example\\disabled.tsx 1`] = `""`; - -exports[`ssr snapshot test > ssr test packages\\components\\dropdown\\_example\\icon.tsx 1`] = `""`; - -exports[`ssr snapshot test > ssr test packages\\components\\dropdown\\_example\\left.tsx 1`] = `""`; - -exports[`ssr snapshot test > ssr test packages\\components\\dropdown\\_example\\long.tsx 1`] = `""`; - -exports[`ssr snapshot test > ssr test packages\\components\\dropdown\\_example\\multiple.tsx 1`] = `""`; - -exports[`ssr snapshot test > ssr test packages\\components\\dropdown\\_example\\split.tsx 1`] = `""`; - -exports[`ssr snapshot test > ssr test packages\\components\\dropdown\\_example\\theme.tsx 1`] = `""`; - -exports[`ssr snapshot test > ssr test packages\\components\\empty\\_example\\base.tsx 1`] = `"
                                                                                      暂无数据
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\empty\\_example\\descriptions.tsx 1`] = `"
                                                                                      暂无数据
                                                                                      description
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\empty\\_example\\operation.tsx 1`] = `"
                                                                                      暂无数据
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\empty\\_example\\self-defined.tsx 1`] = `"
                                                                                      暂无数据
                                                                                      暂无数据
                                                                                      暂无数据
                                                                                      暂无数据
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\empty\\_example\\size.tsx 1`] = `"
                                                                                      暂无数据
                                                                                      建设中
                                                                                      网络错误
                                                                                      成功
                                                                                      失败
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\empty\\_example\\status.tsx 1`] = `"
                                                                                      暂无数据
                                                                                      建设中
                                                                                      网络错误
                                                                                      成功
                                                                                      失败
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\form\\_example\\align.tsx 1`] = `"
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\form\\_example\\base.tsx 1`] = `"
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\form\\_example\\clear-validate.tsx 1`] = `"
                                                                                      一句话介绍自己
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\form\\_example\\custom-validator.tsx 1`] = `"
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\form\\_example\\customized-form-controls.tsx 1`] = `"
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\form\\_example\\disabled.tsx 1`] = `"
                                                                                      请选择单张图片文件上传
                                                                                      提交
                                                                                      重置
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\form\\_example\\error-message.tsx 1`] = `"
                                                                                      一句话介绍自己
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\form\\_example\\form-field-linkage.tsx 1`] = `"
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\form\\_example\\form-list.tsx 1`] = `"
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\form\\_example\\layout.tsx 1`] = `"
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\form\\_example\\login.tsx 1`] = `"
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\form\\_example\\nested-data.tsx 1`] = `"
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\form\\_example\\reset.tsx 1`] = `"
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\form\\_example\\validate-complicated-data.tsx 1`] = `"
                                                                                      学生1
                                                                                      学生2
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\form\\_example\\validate-message.tsx 1`] = `"
                                                                                      一句话介绍自己
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\form\\_example\\validator.tsx 1`] = `"
                                                                                      这里请填写密码
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\form\\_example\\validator-status.tsx 1`] = `"
                                                                                      校验不通过,请输入正确内容
                                                                                      自定义新增icon
                                                                                      自定义帮助icon
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\grid\\_example\\base.tsx 1`] = `"
                                                                                      1
                                                                                      1
                                                                                      1
                                                                                      1
                                                                                      1
                                                                                      1
                                                                                      1
                                                                                      1
                                                                                      1
                                                                                      1
                                                                                      1
                                                                                      1
                                                                                      2
                                                                                      2
                                                                                      2
                                                                                      2
                                                                                      2
                                                                                      2
                                                                                      3
                                                                                      3
                                                                                      3
                                                                                      3
                                                                                      4
                                                                                      4
                                                                                      4
                                                                                      6
                                                                                      6
                                                                                      12
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\grid\\_example\\flex.tsx 1`] = `"
                                                                                      2 / 5
                                                                                      3 / 5
                                                                                      100px
                                                                                      Fill Rest
                                                                                      1 1 200px
                                                                                      0 1 300px
                                                                                      none
                                                                                      auto with no-wrap
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\grid\\_example\\gutter.tsx 1`] = `"
                                                                                      col-3
                                                                                      col-3
                                                                                      col-3
                                                                                      col-3
                                                                                      col-3
                                                                                      col-3
                                                                                      col-3
                                                                                      col-3
                                                                                      col-3
                                                                                      col-3
                                                                                      col-3
                                                                                      col-3
                                                                                      col-3
                                                                                      col-3
                                                                                      col-3
                                                                                      col-3
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\grid\\_example\\halign.tsx 1`] = `"

                                                                                      align left

                                                                                      col-2
                                                                                      col-2
                                                                                      col-2
                                                                                      col-2

                                                                                      align center

                                                                                      col-2
                                                                                      col-2
                                                                                      col-2
                                                                                      col-2

                                                                                      align right

                                                                                      col-2
                                                                                      col-2
                                                                                      col-2
                                                                                      col-2

                                                                                      space-between

                                                                                      col-2
                                                                                      col-2
                                                                                      col-2
                                                                                      col-2

                                                                                      space-around

                                                                                      col-2
                                                                                      col-2
                                                                                      col-2
                                                                                      col-2
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\grid\\_example\\offset.tsx 1`] = `"
                                                                                      col-4
                                                                                      col-4
                                                                                      col-3 col-offset-3
                                                                                      col-3 col-offset-3
                                                                                      col-6 col-offset-2
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\grid\\_example\\order.tsx 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 packages\\components\\grid\\_example\\responsive.tsx 1`] = `"
                                                                                      宽度响应式
                                                                                      Col
                                                                                      Col
                                                                                      其他属性响应式(支持span,offset,order,pull,push)
                                                                                      Col
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\grid\\_example\\sort.tsx 1`] = `"
                                                                                      通过 \`pull\` \`push\` 进行排序
                                                                                      col-9 col-push-3
                                                                                      col-3 col-pull-9
                                                                                      col-8 col-push-4
                                                                                      col-4 col-pull-8
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\grid\\_example\\valign.tsx 1`] = `"

                                                                                      align top

                                                                                      col-3
                                                                                      col-3
                                                                                      col-3
                                                                                      col-3

                                                                                      Align Middle

                                                                                      col-3
                                                                                      col-3
                                                                                      col-3
                                                                                      col-3

                                                                                      Align Bottom

                                                                                      col-3
                                                                                      col-3
                                                                                      col-3
                                                                                      col-3
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\guide\\_example\\base.tsx 1`] = `"
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\guide\\_example\\custom-popup.tsx 1`] = `"
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\guide\\_example\\dialog.tsx 1`] = `"
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\guide\\_example\\no-mask.tsx 1`] = `"
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\guide\\_example\\popup-dialog.tsx 1`] = `"
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\icon\\_example\\Enhanced.tsx 1`] = `"


                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\icon\\_example\\IconExample.tsx 1`] = `"
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\icon\\_example\\IconFontEnhanced.tsx 1`] = `"


                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\icon\\_example\\IconFontExample.tsx 1`] = `"

                                                                                      How do you feel today?

                                                                                      What is your favourite food?

                                                                                      How much icons does TDesign Icon includes?

                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\icon\\_example\\IconSelect.tsx 1`] = `"
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\icon\\_example\\SvgSpriteExample.tsx 1`] = `"

                                                                                      How do you feel today?

                                                                                      What is your favourite food?

                                                                                      How much icons does TDesign Icon includes?

                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\image\\_example\\avif.tsx 1`] = `"
                                                                                      图片加载中
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\image\\_example\\extra-always.tsx 1`] = `"
                                                                                      有遮罩
                                                                                      图片加载中
                                                                                      高清
                                                                                      无遮罩
                                                                                      图片加载中
                                                                                      高清
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\image\\_example\\extra-hover.tsx 1`] = `"
                                                                                      图片加载中
                                                                                      预览
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\image\\_example\\fill-mode.tsx 1`] = `"
                                                                                      图片加载中
                                                                                      fill
                                                                                      图片加载中
                                                                                      contain
                                                                                      图片加载中
                                                                                      cover
                                                                                      图片加载中
                                                                                      none
                                                                                      图片加载中
                                                                                      scale-down
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\image\\_example\\fill-position.tsx 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 packages\\components\\image\\_example\\gallery-cover.tsx 1`] = `""`; - -exports[`ssr snapshot test > ssr test packages\\components\\image\\_example\\lazy-list.tsx 1`] = `"
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\image\\_example\\lazy-single.tsx 1`] = `"
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\image\\_example\\placeholder.tsx 1`] = `"

                                                                                      加载中的图片

                                                                                      默认占位
                                                                                      图片加载中
                                                                                      自定义占位

                                                                                      加载失败的图片

                                                                                      默认错误
                                                                                      图片加载中
                                                                                      自定义错误
                                                                                      图片加载中
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\image\\_example\\shape.tsx 1`] = `"
                                                                                      图片加载中
                                                                                      square
                                                                                      图片加载中
                                                                                      round
                                                                                      图片加载中
                                                                                      circle
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\image-viewer\\_example\\album.tsx 1`] = `"
                                                                                      test
                                                                                      图片加载中
                                                                                      预览
                                                                                      相册封面标题
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\image-viewer\\_example\\albumIcons.tsx 1`] = `"
                                                                                      test
                                                                                      图片加载中
                                                                                      预览
                                                                                      相册封面标题
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\image-viewer\\_example\\base.tsx 1`] = `"
                                                                                      test
                                                                                      图片加载中
                                                                                      预览
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\image-viewer\\_example\\block.tsx 1`] = `"
                                                                                      test
                                                                                      图片加载中
                                                                                      预览
                                                                                      test
                                                                                      图片加载中
                                                                                      预览
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\image-viewer\\_example\\button.tsx 1`] = `""`; - -exports[`ssr snapshot test > ssr test packages\\components\\image-viewer\\_example\\error.tsx 1`] = `"
                                                                                      test
                                                                                      图片加载中
                                                                                      预览
                                                                                      test
                                                                                      图片加载中
                                                                                      预览
                                                                                      test
                                                                                      图片加载中
                                                                                      预览
                                                                                      test
                                                                                      图片加载中
                                                                                      预览
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\image-viewer\\_example\\modeless.tsx 1`] = `"
                                                                                      test
                                                                                      图片加载中
                                                                                      预览
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\image-viewer\\_example\\multiple.tsx 1`] = `"
                                                                                      test
                                                                                      图片加载中
                                                                                      预览
                                                                                      test
                                                                                      图片加载中
                                                                                      预览
                                                                                      test
                                                                                      图片加载中
                                                                                      预览
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\image-viewer\\_example\\svg.tsx 1`] = `"
                                                                                      test
                                                                                      图片加载中
                                                                                      预览
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\input\\_example\\addon.tsx 1`] = `"
                                                                                      http://
                                                                                      http://
                                                                                      .com
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\input\\_example\\align.tsx 1`] = `"
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\input\\_example\\auto-width.tsx 1`] = `"
                                                                                      宽度自适应
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\input\\_example\\base.tsx 1`] = `"
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\input\\_example\\borderless.tsx 1`] = `"
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\input\\_example\\clearable.tsx 1`] = `"
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\input\\_example\\disabled.tsx 1`] = `"
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\input\\_example\\format.tsx 1`] = `"
                                                                                      请输入数字
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\input\\_example\\group.tsx 1`] = `"
                                                                                       - 
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\input\\_example\\max-length-count.tsx 1`] = `"
                                                                                      0/10
                                                                                      0/10
                                                                                      0/5
                                                                                      0/5
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\input\\_example\\password.tsx 1`] = `"
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\input\\_example\\size.tsx 1`] = `"
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\input\\_example\\status.tsx 1`] = `"
                                                                                      这是普通文本提示
                                                                                      校验通过文本提示
                                                                                      校验不通过文本提示
                                                                                      校验存在严重问题文本提示
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\input\\_example\\textarea.tsx 1`] = `"
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\input-adornment\\_example\\select.tsx 1`] = `"
                                                                                      请选择
                                                                                      请选择
                                                                                      请选择
                                                                                      请选择
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\input-adornment\\_example\\text.tsx 1`] = `"
                                                                                      http://
                                                                                      请输入
                                                                                      .com
                                                                                      http://
                                                                                      .com
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\input-number\\_example\\align.tsx 1`] = `"
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\input-number\\_example\\auto-width.tsx 1`] = `"
                                                                                      请输入
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\input-number\\_example\\center.tsx 1`] = `"
                                                                                      请输入
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\input-number\\_example\\default.tsx 1`] = `"
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\input-number\\_example\\format.tsx 1`] = `"
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\input-number\\_example\\large-number.tsx 1`] = `"
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\input-number\\_example\\left.tsx 1`] = `"
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\input-number\\_example\\normal.tsx 1`] = `"
                                                                                      机器:
                                                                                      金额:
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\input-number\\_example\\size.tsx 1`] = `"
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\input-number\\_example\\status.tsx 1`] = `"
                                                                                      这是普通文本提示
                                                                                      校验通过文本提示
                                                                                      校验不通过文本提示
                                                                                      校验存在严重问题文本提示
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\input-number\\_example\\step.tsx 1`] = `"
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\layout\\_example\\aside.tsx 1`] = `"

                                                                                      侧边导航布局

                                                                                      Content
                                                                                      Copyright @ 2019-2020 Tencent. All Rights Reserved
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\layout\\_example\\base.tsx 1`] = `"

                                                                                      顶部导航布局

                                                                                      Header
                                                                                      Content
                                                                                      Copyright @ 2019-2021 Tencent. All Rights Reserved

                                                                                      侧边导航布局

                                                                                      Content
                                                                                      Copyright @ 2019-2021 Tencent. All Rights Reserved

                                                                                      组合导航布局

                                                                                      Header
                                                                                      Content
                                                                                      Copyright @ 2019-2021 Tencent. All Rights Reserved

                                                                                      Header
                                                                                      Content
                                                                                      Copyright @ 2019-2021 Tencent. All Rights Reserved

                                                                                      Header
                                                                                      Content
                                                                                      Copyright @ 2019-2021 Tencent. All Rights Reserved
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\layout\\_example\\combine.tsx 1`] = `"
                                                                                      • 已选内容
                                                                                      • 菜单内容一
                                                                                      • 菜单内容二
                                                                                      • 菜单内容三
                                                                                      Content
                                                                                      Copyright @ 2019-2020 Tencent. All Rights Reserved
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\layout\\_example\\top.tsx 1`] = `"
                                                                                      • 已选内容
                                                                                      • 菜单内容一
                                                                                      • 菜单内容二
                                                                                      • 菜单内容三
                                                                                      Content
                                                                                      Copyright @ 2019-2020 Tencent. All Rights Reserved
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\link\\_example\\base.tsx 1`] = `"跳转链接"`; - -exports[`ssr snapshot test > ssr test packages\\components\\link\\_example\\disabled.tsx 1`] = `""`; - -exports[`ssr snapshot test > ssr test packages\\components\\link\\_example\\hover.tsx 1`] = `""`; - -exports[`ssr snapshot test > ssr test packages\\components\\link\\_example\\icon.tsx 1`] = `""`; - -exports[`ssr snapshot test > ssr test packages\\components\\link\\_example\\size.tsx 1`] = `""`; - -exports[`ssr snapshot test > ssr test packages\\components\\link\\_example\\theme.tsx 1`] = `""`; - -exports[`ssr snapshot test > ssr test packages\\components\\link\\_example\\underline.tsx 1`] = `""`; - -exports[`ssr snapshot test > ssr test packages\\components\\list\\_example\\asyncLoading.tsx 1`] = `"
                                                                                      • 列表内容列表内容列表内容
                                                                                      • 列表内容列表内容列表内容
                                                                                      • 列表内容列表内容列表内容
                                                                                      • 列表内容列表内容列表内容
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\list\\_example\\base.tsx 1`] = `"
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\list\\_example\\header-footer.tsx 1`] = `"
                                                                                      这里是 Header
                                                                                      • 列表内容列表内容列表内容
                                                                                      • 列表内容列表内容列表内容
                                                                                      • 列表内容列表内容列表内容
                                                                                      • 列表内容列表内容列表内容

                                                                                      通过 TNode 插入的 Header

                                                                                      • 列表内容列表内容列表内容
                                                                                      • 列表内容列表内容列表内容
                                                                                      • 列表内容列表内容列表内容
                                                                                      • 列表内容列表内容列表内容
                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\list\\_example\\image-text.tsx 1`] = `"
                                                                                      • 列表主内容

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

                                                                                      • 列表主内容

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

                                                                                      • 列表主内容

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

                                                                                      • 列表主内容

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

                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\list\\_example\\multiline.tsx 1`] = `"
                                                                                      • 列表主内容

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

                                                                                      • 列表主内容

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

                                                                                      • 列表主内容

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

                                                                                      • 列表主内容

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

                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\list\\_example\\operation.tsx 1`] = `"
                                                                                      • 列表主内容

                                                                                        列表内容列表内容

                                                                                      • 列表主内容

                                                                                        列表内容列表内容

                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\list\\_example\\scroll.tsx 1`] = `"
                                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\list\\_example\\size.tsx 1`] = `"

                                                                                        尺寸-小

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

                                                                                        尺寸-中(默认)

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

                                                                                        尺寸-大

                                                                                        • 列表内容列表内容列表内容
                                                                                        • 列表内容列表内容列表内容
                                                                                        • 列表内容列表内容列表内容
                                                                                        • 列表内容列表内容列表内容
                                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\list\\_example\\stripe.tsx 1`] = `"
                                                                                        • 列表内容列表内容列表内容
                                                                                        • 列表内容列表内容列表内容
                                                                                        • 列表内容列表内容列表内容
                                                                                        • 列表内容列表内容列表内容
                                                                                        "`; - -exports[`ssr snapshot test > ssr test packages\\components\\list\\_example\\virtual-scroll.tsx 1`] = `"
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\loading\\_example\\base.tsx 1`] = `"
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\loading\\_example\\delay.tsx 1`] = `"
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\loading\\_example\\fullscreen.tsx 1`] = `"Loading state:"`; - -exports[`ssr snapshot test > ssr test packages\\components\\loading\\_example\\icon-text.tsx 1`] = `"
                                                                                          拼命加载中...
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\loading\\_example\\service.tsx 1`] = `"
                                                                                          我是service的容器
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\loading\\_example\\size.tsx 1`] = `"
                                                                                          加载中...(小)
                                                                                          加载中...(中)
                                                                                          加载中...(大)
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\loading\\_example\\text.tsx 1`] = `"
                                                                                          静态文字加载中...
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\loading\\_example\\wrap.tsx 1`] = `"
                                                                                          this is loading component
                                                                                          this is loading component
                                                                                          this is loading component
                                                                                          this is loading component
                                                                                          this is loading component
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\menu\\_example\\closable-side.tsx 1`] = `"
                                                                                          • 仪表盘
                                                                                          • 资源列表
                                                                                          • 调度平台
                                                                                          • 精准监控
                                                                                          • 根目录
                                                                                          • 消息区
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\menu\\_example\\custom-header.tsx 1`] = `"
                                                                                          • 菜单1
                                                                                          • 菜单2
                                                                                          • 菜单3
                                                                                          • 菜单4
                                                                                          • 菜单1
                                                                                          • 菜单2
                                                                                          • 菜单3
                                                                                          • 菜单4
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\menu\\_example\\custom-side.tsx 1`] = `"
                                                                                          • 仪表盘
                                                                                          • 资源列表
                                                                                          • 视频区
                                                                                          • 根目录
                                                                                          • 调度平台
                                                                                          • 精准监控
                                                                                          • 个人中心
                                                                                          • 仪表盘
                                                                                          • 资源列表
                                                                                          • 视频区
                                                                                          • 根目录
                                                                                          • 调度平台
                                                                                          • 精准监控
                                                                                          • 个人中心
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\menu\\_example\\double.tsx 1`] = `"
                                                                                          • 菜单1
                                                                                          • 菜单2
                                                                                          • 菜单3
                                                                                          • 菜单4
                                                                                            子菜单1
                                                                                            子菜单2
                                                                                          • 菜单1
                                                                                          • 菜单2
                                                                                          • 菜单3
                                                                                          • 菜单4
                                                                                            子菜单1
                                                                                            子菜单2
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\menu\\_example\\group-side.tsx 1`] = `"
                                                                                            主导航
                                                                                          • 仪表盘
                                                                                          • 组件
                                                                                          • 列表项
                                                                                            • 基础列表项
                                                                                            • 卡片列表项
                                                                                            • 筛选列表项
                                                                                            • 树状筛选列表项
                                                                                          • 表单项
                                                                                          • 详情页
                                                                                          • 结果页
                                                                                          • 更多
                                                                                          • 个人页
                                                                                          • 登录页
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\menu\\_example\\multi-side.tsx 1`] = `"
                                                                                          • 仪表盘
                                                                                          • 资源列表
                                                                                            • 菜单二
                                                                                          • 调度平台
                                                                                            • 二级菜单-1
                                                                                              • 三级菜单-1
                                                                                              • 三级菜单-2
                                                                                              • 三级菜单-3
                                                                                            • 二级菜单-2
                                                                                          • 精准监控
                                                                                            • 二级菜单-1
                                                                                            • 二级菜单-2
                                                                                          • 根目录
                                                                                          • 消息区
                                                                                            • 二级菜单-1
                                                                                            • 二级菜单-2
                                                                                          • 仪表盘
                                                                                          • 资源列表
                                                                                            • 二级菜单-1
                                                                                              • 三级菜单-1
                                                                                              • 三级菜单-2
                                                                                              • 三级菜单-3
                                                                                          • 调度平台
                                                                                            • 二级菜单-1
                                                                                            • 二级菜单-2
                                                                                          • 精准监控
                                                                                            • 二级菜单-1
                                                                                            • 二级菜单-2
                                                                                          • 根目录
                                                                                          • 消息区
                                                                                            • 二级菜单-1
                                                                                            • 二级菜单-2
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\menu\\_example\\multiple.tsx 1`] = `"
                                                                                          • 电器
                                                                                          • 女装
                                                                                          • 水果蔬菜
                                                                                          • 其他
                                                                                          • 电器
                                                                                          • 女装
                                                                                          • 水果蔬菜
                                                                                          • 其他
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\menu\\_example\\popup-side.tsx 1`] = `"
                                                                                          • 仪表盘
                                                                                          • 资源列表
                                                                                          • 调度平台
                                                                                          • 精准监控
                                                                                          • 根目录
                                                                                          • 消息区
                                                                                          • 仪表盘
                                                                                          • 资源列表
                                                                                          • 调度平台
                                                                                          • 精准监控
                                                                                          • 根目录
                                                                                          • 消息区
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\menu\\_example\\single.tsx 1`] = `"
                                                                                          • 菜单1
                                                                                          • 菜单2
                                                                                          • 菜单3
                                                                                          • 菜单4
                                                                                          • 菜单1
                                                                                          • 菜单2
                                                                                          • 菜单3
                                                                                          • 菜单4
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\menu\\_example\\single-side.tsx 1`] = `"
                                                                                          • 仪表盘
                                                                                          • 资源列表
                                                                                          • 视频区
                                                                                          • 根目录
                                                                                          • 调度平台
                                                                                          • 精准监控
                                                                                          • 个人中心
                                                                                          • 仪表盘
                                                                                          • 资源列表
                                                                                          • 视频区
                                                                                          • 根目录
                                                                                          • 调度平台
                                                                                          • 精准监控
                                                                                          • 个人中心
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\message\\_example\\base.tsx 1`] = `"
                                                                                          用户表示普通操作信息提示
                                                                                          用于表示操作顺利达成
                                                                                          用户表示操作引起一定后果
                                                                                          用于表示操作引起严重的后果
                                                                                          用于帮助用户操作的信息提示
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\message\\_example\\close.tsx 1`] = `"
                                                                                          默认关闭按钮
                                                                                          自定义关闭按钮(文字)关闭
                                                                                          自定义关闭按钮(函数)
                                                                                          x
                                                                                          自定义关闭按钮(ReactNode)
                                                                                          x
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\message\\_example\\close-all.tsx 1`] = `"
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\message\\_example\\close-function.tsx 1`] = `""`; - -exports[`ssr snapshot test > ssr test packages\\components\\message\\_example\\config.tsx 1`] = `"
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\message\\_example\\duration.tsx 1`] = `"
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\message\\_example\\loading.tsx 1`] = `"
                                                                                          用于表示操作正在生效的过程中
                                                                                          用于表示操作顺利达成(10s)
                                                                                          用于表示普通操作失败中断(10s)
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\message\\_example\\methods.tsx 1`] = `"
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\message\\_example\\offset.tsx 1`] = `"
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\notification\\_example\\attach.tsx 1`] = `"
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\notification\\_example\\base.tsx 1`] = `"
                                                                                          标题名称
                                                                                          这是一条消息通知
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\notification\\_example\\close-all.tsx 1`] = `"
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\notification\\_example\\content.tsx 1`] = `"
                                                                                          自定义内容(字符串)
                                                                                          这是一条消息通知
                                                                                          自定义内容
                                                                                          这是一条消息通知
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\notification\\_example\\footer.tsx 1`] = `"
                                                                                          自定义底部详情
                                                                                          这是一条消息通知
                                                                                          重启查看详情
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\notification\\_example\\icon.tsx 1`] = `"
                                                                                          普通通知
                                                                                          这是一条消息通知这是一条消息通知这是一条消息通知这是一条消息通知这是一条消息通知这是一条消息通知这是一条消息通知
                                                                                          危险通知
                                                                                          这是一条消息通知这是一条消息通知这是一条消息通知这是一条消息通知这是一条消息通知这是一条消息通知这是一条消息通知
                                                                                          告警通知
                                                                                          这是一条消息通知这是一条消息通知这是一条消息通知这是一条消息通知这是一条消息通知这是一条消息通知这是一条消息通知
                                                                                          成功通知
                                                                                          这是一条消息通知这是一条消息通知这是一条消息通知这是一条消息通知这是一条消息通知这是一条消息通知这是一条消息通知
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\notification\\_example\\operation.tsx 1`] = `"
                                                                                          超出的文本省略号显示
                                                                                          文案不限长度,但是展示最大显示三行折行的末尾显示折行末尾显示折行末尾显示折行末尾显示折行末尾显示折行折行末尾显示折行折行末尾显示折行末尾显示折行折行末尾
                                                                                          自定义底部
                                                                                          使用 props function 自定义底部内容
                                                                                          自定义标题 我是副标题
                                                                                          1. 使用 props function 自定义标题;2. 使用插槽自定义底部内容
                                                                                          自定义标题 我是副标题
                                                                                          1. 使用插槽自定义标题 2. 使用插槽自定义底部内容
                                                                                          自定义内容
                                                                                          使用插槽自定义内容
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\notification\\_example\\placement.tsx 1`] = `"
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\notification\\_example\\plugin.tsx 1`] = `"
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\notification\\_example\\toggle.tsx 1`] = `""`; - -exports[`ssr snapshot test > ssr test packages\\components\\pagination\\_example\\base.tsx 1`] = `"
                                                                                          共 100 条数据
                                                                                          请选择
                                                                                          • 1
                                                                                          • 2
                                                                                          • 3
                                                                                          • 4
                                                                                          • 5
                                                                                          • 20
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\pagination\\_example\\jump.tsx 1`] = `"
                                                                                          共 645 条数据
                                                                                          请选择
                                                                                          • 1
                                                                                          • 2
                                                                                          • 3
                                                                                          • 4
                                                                                          • 5
                                                                                          • 33
                                                                                          跳至
                                                                                          / 33 页
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\pagination\\_example\\mini.tsx 1`] = `"
                                                                                          共 100 条数据
                                                                                          请选择
                                                                                          • 1
                                                                                          • 2
                                                                                          • 3
                                                                                          • 4
                                                                                          • 5
                                                                                          • 20
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\pagination\\_example\\more.tsx 1`] = `"
                                                                                          展示首尾页码省略
                                                                                          共 100 条数据
                                                                                          请选择
                                                                                          • 1
                                                                                          • 2
                                                                                          • 3
                                                                                          • 4
                                                                                          • 5
                                                                                          • 20
                                                                                          不展示首尾页码省略
                                                                                          共 100 条数据
                                                                                          请选择
                                                                                          • 1
                                                                                          • 2
                                                                                          • 3
                                                                                          • 4
                                                                                          • 5
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\pagination\\_example\\page-num.tsx 1`] = `"
                                                                                          共 645 条数据
                                                                                          请选择
                                                                                          • 1
                                                                                          • 2
                                                                                          • 3
                                                                                          • 4
                                                                                          • 5
                                                                                          • 33
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\pagination\\_example\\pagination-mini.tsx 1`] = `"
                                                                                          layout:
                                                                                          size:
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\pagination\\_example\\simple.tsx 1`] = `"
                                                                                          共 100 条数据
                                                                                          请选择
                                                                                          跳至
                                                                                          / 20 页
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\pagination\\_example\\simple-mini.tsx 1`] = `"
                                                                                          共 100 条数据
                                                                                          请选择
                                                                                          跳至
                                                                                          / 20 页
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\pagination\\_example\\total.tsx 1`] = `"
                                                                                          共 685 条数据
                                                                                          请选择
                                                                                          • 1
                                                                                          • 2
                                                                                          • 3
                                                                                          • 4
                                                                                          • 5
                                                                                          • 69
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\popconfirm\\_example\\base.tsx 1`] = `"
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\popconfirm\\_example\\button.tsx 1`] = `"
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\popconfirm\\_example\\describe.tsx 1`] = `"
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\popconfirm\\_example\\extends.tsx 1`] = `""`; - -exports[`ssr snapshot test > ssr test packages\\components\\popconfirm\\_example\\icon.tsx 1`] = `"
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\popconfirm\\_example\\inherit.tsx 1`] = `"
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\popconfirm\\_example\\placement.tsx 1`] = `"
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\popconfirm\\_example\\theme.tsx 1`] = `"
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\popup\\_example\\base.tsx 1`] = `""`; - -exports[`ssr snapshot test > ssr test packages\\components\\popup\\_example\\container.tsx 1`] = `"
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\popup\\_example\\destroy.tsx 1`] = `""`; - -exports[`ssr snapshot test > ssr test packages\\components\\popup\\_example\\disabled.tsx 1`] = `""`; - -exports[`ssr snapshot test > ssr test packages\\components\\popup\\_example\\dynamic.tsx 1`] = `""`; - -exports[`ssr snapshot test > ssr test packages\\components\\popup\\_example\\placement.tsx 1`] = `"
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\popup\\_example\\plugin.tsx 1`] = `"
                                                                                          这里是一个日志查询的例子,在很长的日志内容中,日志内容存在换行的情况,可以点击链接进行日志查询操作点击此链接,会打开浮层进行跳转操作
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\popup\\_example\\popper-options.tsx 1`] = `"
                                                                                          请输入横向偏移量:
                                                                                          请输入纵向偏移量:
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\popup\\_example\\style.tsx 1`] = `"
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\popup\\_example\\trigger.tsx 1`] = `"
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\popup\\_example\\trigger-element.tsx 1`] = `"
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\popup\\_example\\visible.tsx 1`] = `""`; - -exports[`ssr snapshot test > ssr test packages\\components\\progress\\_example\\circle.tsx 1`] = `"
                                                                                          默认样式
                                                                                          0%
                                                                                          不显示数字
                                                                                          自定义内容
                                                                                          75 day
                                                                                          进度完成
                                                                                          进度发生错误
                                                                                          进度被中断
                                                                                          自定义颜色
                                                                                          小尺寸
                                                                                          0%
                                                                                          默认尺寸
                                                                                          0%
                                                                                          大尺寸
                                                                                          0%
                                                                                          自定义尺寸
                                                                                          0%
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\progress\\_example\\line.tsx 1`] = `"

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

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

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

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

                                                                                          30%

                                                                                          30%
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\qrcode\\_example\\base.tsx 1`] = `"
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\qrcode\\_example\\customColor.tsx 1`] = `"
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\qrcode\\_example\\customSize.tsx 1`] = `"

                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\qrcode\\_example\\customStatusRender.tsx 1`] = `"

                                                                                          加载中...

                                                                                          二维码过期

                                                                                          点击刷新

                                                                                          已扫描
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\qrcode\\_example\\download.tsx 1`] = `"
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\qrcode\\_example\\icon.tsx 1`] = `"
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\qrcode\\_example\\level.tsx 1`] = `"
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\qrcode\\_example\\popover.tsx 1`] = `""`; - -exports[`ssr snapshot test > ssr test packages\\components\\qrcode\\_example\\status.tsx 1`] = `"

                                                                                          二维码过期

                                                                                          点击刷新

                                                                                          已扫描

                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\qrcode\\_example\\type.tsx 1`] = `"
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\radio\\_example\\base.tsx 1`] = `"
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\radio\\_example\\group.tsx 1`] = `"
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\radio\\_example\\size.tsx 1`] = `"
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\radio\\_example\\type.tsx 1`] = `"
                                                                                          普通单选按钮
                                                                                          边框型单选按钮
                                                                                          填充型单选按钮
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\range-input\\_example\\base.tsx 1`] = `"
                                                                                          -
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\range-input\\_example\\popup.tsx 1`] = `"
                                                                                          -
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\range-input\\_example\\size.tsx 1`] = `"
                                                                                          -
                                                                                          -
                                                                                          -
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\range-input\\_example\\status.tsx 1`] = `"
                                                                                          -
                                                                                          -
                                                                                          -
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\rate\\_example\\base.tsx 1`] = `"
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\rate\\_example\\clearable.tsx 1`] = `"

                                                                                          clearable: true

                                                                                          clearable: false

                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\rate\\_example\\custom.tsx 1`] = `"
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\rate\\_example\\icon.tsx 1`] = `"
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\rate\\_example\\size.tsx 1`] = `"

                                                                                          16px

                                                                                          24px

                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\rate\\_example\\status.tsx 1`] = `"

                                                                                          未评分状态

                                                                                          满分状态

                                                                                          半星状态

                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\rate\\_example\\texts.tsx 1`] = `"
                                                                                          满意
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\select\\_example\\base.tsx 1`] = `"
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\select\\_example\\collapsed.tsx 1`] = `"

                                                                                          default:

                                                                                          请选择

                                                                                          use collapsedItems:

                                                                                          size control:
                                                                                          disabled control:
                                                                                          readonly control:
                                                                                          请选择
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\select\\_example\\creatable.tsx 1`] = `"
                                                                                          请选择
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\select\\_example\\custom-options.tsx 1`] = `"
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\select\\_example\\custom-selected.tsx 1`] = `"
                                                                                          请选择
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\select\\_example\\disabled.tsx 1`] = `"
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\select\\_example\\filterable.tsx 1`] = `"
                                                                                          -请选择-
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\select\\_example\\group.tsx 1`] = `"
                                                                                          请选择
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\select\\_example\\keys.tsx 1`] = `"
                                                                                          请选择
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\select\\_example\\label-in-value.tsx 1`] = `"
                                                                                          请选择
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\select\\_example\\max.tsx 1`] = `"
                                                                                          请选择
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\select\\_example\\multiple.tsx 1`] = `"
                                                                                          请选择
                                                                                          请选择云产品
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\select\\_example\\noborder.tsx 1`] = `"
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\select\\_example\\options.tsx 1`] = `"
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\select\\_example\\panel.tsx 1`] = `"
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\select\\_example\\popup-props.tsx 1`] = `"
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\select\\_example\\prefix.tsx 1`] = `"
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\select\\_example\\remote-search.tsx 1`] = `"
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\select\\_example\\scroll-bottom.tsx 1`] = `"
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\select\\_example\\scroll-top.tsx 1`] = `"
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\select\\_example\\size.tsx 1`] = `"
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\select\\_example\\status.tsx 1`] = `"
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\select\\_example\\virtual-scroll.tsx 1`] = `"
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\select-input\\_example\\autocomplete.tsx 1`] = `"
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\select-input\\_example\\autowidth.tsx 1`] = `"
                                                                                          tdesign-vue
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\select-input\\_example\\autowidth-multiple.tsx 1`] = `"
                                                                                          Vue
                                                                                          +2
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\select-input\\_example\\borderless.tsx 1`] = `"
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\select-input\\_example\\borderless-multiple.tsx 1`] = `"
                                                                                          Vue
                                                                                          +2
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\select-input\\_example\\collapsed-items.tsx 1`] = `"
                                                                                          tdesign-vue
                                                                                          +5


                                                                                          tdesign-vue
                                                                                          tdesign-react
                                                                                          More(+4)
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\select-input\\_example\\custom-tag.tsx 1`] = `"
                                                                                          tdesign-vue


                                                                                          tdesign-vue
                                                                                          tdesign-react


                                                                                          tdesign-vuetdesign-reacttdesign-mobile-vue
                                                                                          tdesign-vuetdesign-reacttdesign-mobile-vue
                                                                                          tdesign-vuetdesign-reacttdesign-mobile-vue
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\select-input\\_example\\excess-tags-display-type.tsx 1`] = `"

                                                                                          第一种呈现方式:超出时滚动显示


                                                                                          tdesign-vue
                                                                                          tdesign-react
                                                                                          tdesign-miniprogram
                                                                                          tdesign-angular
                                                                                          tdesign-mobile-vue
                                                                                          tdesign-mobile-react



                                                                                          第二种呈现方式:超出时换行显示


                                                                                          tdesign-vue
                                                                                          tdesign-react
                                                                                          tdesign-miniprogram
                                                                                          tdesign-angular
                                                                                          tdesign-mobile-vue
                                                                                          tdesign-mobile-react
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\select-input\\_example\\label-suffix.tsx 1`] = `"
                                                                                          前置内容:


                                                                                          单位:元
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\select-input\\_example\\multiple.tsx 1`] = `"



                                                                                          Vue
                                                                                          React
                                                                                          Miniprogram
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\select-input\\_example\\single.tsx 1`] = `"
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\select-input\\_example\\status.tsx 1`] = `"
                                                                                          禁用状态:
                                                                                          这是禁用状态的文本
                                                                                          只读状态:
                                                                                          这是只读状态的文本提示
                                                                                          成功状态:
                                                                                          校验通过文本提示
                                                                                          警告状态:
                                                                                          校验不通过文本提示
                                                                                          错误状态:
                                                                                          校验存在严重问题文本提示
                                                                                          加载状态:
                                                                                          处于加载状态的文本提示
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\select-input\\_example\\width.tsx 1`] = `"
                                                                                          下拉框默认宽度:

                                                                                          下拉框最大宽度:

                                                                                          与内容宽度一致:

                                                                                          下拉框固定宽度:

                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\skeleton\\_example\\advance.tsx 1`] = `"
                                                                                          组合成网页效果
                                                                                          image
                                                                                          image
                                                                                          image
                                                                                          确定

                                                                                          标题

                                                                                          内容
                                                                                          组合成列表效果
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\skeleton\\_example\\animation.tsx 1`] = `"
                                                                                          渐变加载动画
                                                                                          闪烁加载动画
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\skeleton\\_example\\base.tsx 1`] = `"
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\skeleton\\_example\\delay.tsx 1`] = `"
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\skeleton\\_example\\theme.tsx 1`] = `"
                                                                                          文本
                                                                                          头像
                                                                                          段落
                                                                                          头像描述
                                                                                          选项卡
                                                                                          文章
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\slider\\_example\\base.tsx 1`] = `"
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\slider\\_example\\disabled.tsx 1`] = `"
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\slider\\_example\\input-number.tsx 1`] = `"
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\slider\\_example\\input-number-vertical.tsx 1`] = `"
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\slider\\_example\\marks.tsx 1`] = `"
                                                                                          0°C
                                                                                          12°C
                                                                                          37°C
                                                                                          0°C
                                                                                          8°C
                                                                                          37°C
                                                                                          50°C
                                                                                          70°C
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\slider\\_example\\min-and-max.tsx 1`] = `"
                                                                                          min:10
                                                                                          max:30
                                                                                          min:10
                                                                                          max:30
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\slider\\_example\\step.tsx 1`] = `"
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\slider\\_example\\vertical.tsx 1`] = `"
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\slider\\_example\\vertical-marks.tsx 1`] = `"
                                                                                          0°C
                                                                                          12°C
                                                                                          37°C
                                                                                          0°C
                                                                                          8°C
                                                                                          37°C
                                                                                          50°C
                                                                                          70°C
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\space\\_example\\align.tsx 1`] = `"
                                                                                          start
                                                                                          center
                                                                                          end
                                                                                          baseline
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\space\\_example\\base.tsx 1`] = `"
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\space\\_example\\break-line.tsx 1`] = `"
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\space\\_example\\separator.tsx 1`] = `"
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\space\\_example\\size.tsx 1`] = `"

                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\space\\_example\\vertical.tsx 1`] = `"
                                                                                          仅有内容区域的卡片形式。卡片内容区域可以是文字、图片、表单、表格等形式信息内容。可使用大中小不同的卡片尺寸,按业务需求进行呈现。
                                                                                          仅有内容区域的卡片形式。卡片内容区域可以是文字、图片、表单、表格等形式信息内容。可使用大中小不同的卡片尺寸,按业务需求进行呈现。
                                                                                          仅有内容区域的卡片形式。卡片内容区域可以是文字、图片、表单、表格等形式信息内容。可使用大中小不同的卡片尺寸,按业务需求进行呈现。
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\statistic\\_example\\animation.tsx 1`] = `"
                                                                                          Total Assets
                                                                                          0.00%
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\statistic\\_example\\base.tsx 1`] = `"
                                                                                          Total Assets
                                                                                          82.76%
                                                                                          Total Assets
                                                                                          82.76USD
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\statistic\\_example\\color.tsx 1`] = `"
                                                                                          Total Assets
                                                                                          82.76%
                                                                                          Total Assets
                                                                                          82.76%
                                                                                          Total Assets
                                                                                          82.76%
                                                                                          Total Assets
                                                                                          82.76%
                                                                                          Total Assets
                                                                                          82.76%
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\statistic\\_example\\combination.tsx 1`] = `"
                                                                                          Total Assets
                                                                                          82.76%
                                                                                          Total Assets
                                                                                          52.18%
                                                                                          Yesterday traffic
                                                                                          Voice duration
                                                                                          789minute
                                                                                          the day before 9%
                                                                                          Total number of voice DAUs
                                                                                          188
                                                                                          the day before
                                                                                          9%
                                                                                          last week
                                                                                          9%
                                                                                          Total Assets
                                                                                          52.18%
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\statistic\\_example\\loading.tsx 1`] = `"
                                                                                          Downloads
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\statistic\\_example\\slot.tsx 1`] = `"
                                                                                          Total Assets
                                                                                          56.32%
                                                                                          Total Assets
                                                                                          $176,059%
                                                                                          Total Assets
                                                                                          62.58%
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\statistic\\_example\\trend.tsx 1`] = `"
                                                                                          Total Assets
                                                                                          82.76%
                                                                                          Total Assets
                                                                                          82.76%
                                                                                          Total Assets
                                                                                          82.76%
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\steps\\_example\\extra.tsx 1`] = `"
                                                                                          步骤1
                                                                                          这里是提示文字
                                                                                          2
                                                                                          步骤2
                                                                                          这里是提示文字
                                                                                          3
                                                                                          步骤3
                                                                                          这里是提示文字
                                                                                          4
                                                                                          步骤4
                                                                                          这里是提示文字
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\steps\\_example\\icon.tsx 1`] = `"
                                                                                          登录
                                                                                          已完成状态
                                                                                          购物
                                                                                          进行中状态
                                                                                          支付
                                                                                          未开始
                                                                                          完成
                                                                                          未开始
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\steps\\_example\\no-sequence.tsx 1`] = `"
                                                                                          已完成的步骤
                                                                                          这里是提示文字
                                                                                          进行中的步骤
                                                                                          这里是提示文字
                                                                                          未进行的步骤
                                                                                          这里是提示文字
                                                                                          未进行的步骤
                                                                                          这里是提示文字
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\steps\\_example\\sequence.tsx 1`] = `"
                                                                                          已完成的步骤
                                                                                          这里是提示文字
                                                                                          2
                                                                                          进行中的步骤
                                                                                          这里是提示文字
                                                                                          3
                                                                                          未进行的步骤
                                                                                          这里是提示文字
                                                                                          4
                                                                                          未进行的步骤
                                                                                          这里是提示文字
                                                                                          已完成的步骤
                                                                                          这里是提示文字
                                                                                          已完成的步骤
                                                                                          这里是提示文字
                                                                                          3
                                                                                          进行中的步骤
                                                                                          这里是提示文字
                                                                                          4
                                                                                          未进行的步骤
                                                                                          这里是提示文字
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\steps\\_example\\status.tsx 1`] = `"
                                                                                          已完成的步骤
                                                                                          这里是提示文字
                                                                                          2
                                                                                          进行中的步骤
                                                                                          这里是提示文字
                                                                                          3
                                                                                          未进行的步骤
                                                                                          这里是提示文字
                                                                                          4
                                                                                          未进行的步骤
                                                                                          这里是提示文字
                                                                                          已完成的步骤
                                                                                          这里是提示文字
                                                                                          2
                                                                                          进行中的步骤
                                                                                          这里是提示文字
                                                                                          错误的步骤
                                                                                          优先展示\`t-step\`中设置的 status
                                                                                          4
                                                                                          未进行的步骤
                                                                                          这里是提示文字
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\steps\\_example\\vertical-no-sequence.tsx 1`] = `"
                                                                                          已完成的步骤
                                                                                          这里是提示文字
                                                                                          进行中的步骤
                                                                                          这里是提示文字
                                                                                          未进行的步骤
                                                                                          这里是提示文字
                                                                                          未进行的步骤
                                                                                          这里是提示文字
                                                                                          未进行的步骤
                                                                                          这里是提示文字
                                                                                          进行中的步骤
                                                                                          这里是提示文字
                                                                                          已完成的步骤
                                                                                          这里是提示文字
                                                                                          已完成的步骤
                                                                                          这里是提示文字
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\steps\\_example\\vertical-sequence.tsx 1`] = `"
                                                                                          已完成的步骤
                                                                                          这里是提示文字
                                                                                          2
                                                                                          进行中的步骤
                                                                                          这里是提示文字
                                                                                          3
                                                                                          未进行的步骤
                                                                                          这里是提示文字
                                                                                          4
                                                                                          未进行的步骤
                                                                                          这里是提示文字
                                                                                          4
                                                                                          未进行的步骤
                                                                                          这里是提示文字
                                                                                          3
                                                                                          进行中的步骤
                                                                                          这里是提示文字
                                                                                          已完成的步骤
                                                                                          这里是提示文字
                                                                                          已完成的步骤
                                                                                          这里是提示文字
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\sticky-tool\\_example\\base.tsx 1`] = `"
                                                                                          chat
                                                                                          add
                                                                                          qrcode
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\sticky-tool\\_example\\compact.tsx 1`] = `"
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\sticky-tool\\_example\\shape.tsx 1`] = `"
                                                                                          chat
                                                                                          add
                                                                                          qrcode
                                                                                          chat
                                                                                          add
                                                                                          qrcode
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\swiper\\_example\\base.tsx 1`] = `"
                                                                                          6
                                                                                          1
                                                                                          2
                                                                                          3
                                                                                          4
                                                                                          5
                                                                                          6
                                                                                          1
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\swiper\\_example\\card.tsx 1`] = `"
                                                                                          1
                                                                                          2
                                                                                          3
                                                                                          4
                                                                                          5
                                                                                          6
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\swiper\\_example\\current.tsx 1`] = `"
                                                                                          6
                                                                                          1
                                                                                          2
                                                                                          3
                                                                                          4
                                                                                          5
                                                                                          6
                                                                                          1
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\swiper\\_example\\fade.tsx 1`] = `"
                                                                                          6
                                                                                          1
                                                                                          2
                                                                                          3
                                                                                          4
                                                                                          5
                                                                                          6
                                                                                          1
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\swiper\\_example\\fraction.tsx 1`] = `"
                                                                                          6
                                                                                          1
                                                                                          2
                                                                                          3
                                                                                          4
                                                                                          5
                                                                                          6
                                                                                          1
                                                                                          1/6
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\swiper\\_example\\placement.tsx 1`] = `"
                                                                                          6
                                                                                          1
                                                                                          2
                                                                                          3
                                                                                          4
                                                                                          5
                                                                                          6
                                                                                          1
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\swiper\\_example\\size.tsx 1`] = `"

                                                                                          large

                                                                                          6
                                                                                          1
                                                                                          2
                                                                                          3
                                                                                          4
                                                                                          5
                                                                                          6
                                                                                          1

                                                                                          small

                                                                                          6
                                                                                          1
                                                                                          2
                                                                                          3
                                                                                          4
                                                                                          5
                                                                                          6
                                                                                          1
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\swiper\\_example\\vertical.tsx 1`] = `"
                                                                                          6
                                                                                          1
                                                                                          2
                                                                                          3
                                                                                          4
                                                                                          5
                                                                                          6
                                                                                          1
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\switch\\_example\\base.tsx 1`] = `"
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\switch\\_example\\beforeChange.tsx 1`] = `"
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\switch\\_example\\describe.tsx 1`] = `"
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\switch\\_example\\size.tsx 1`] = `"
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\switch\\_example\\status.tsx 1`] = `"
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\table\\_example\\affix.tsx 1`] = `"
                                                                                          共 38 条数据
                                                                                          请选择
                                                                                          • 1
                                                                                          • 2
                                                                                          • 3
                                                                                          • 4
                                                                                          • 5
                                                                                          • 6
                                                                                          • 7
                                                                                          • 8
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\table\\_example\\async-loading.tsx 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 packages\\components\\table\\_example\\base.tsx 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
                                                                                          共 28 条数据
                                                                                          请选择
                                                                                          • 1
                                                                                          • 2
                                                                                          • 3
                                                                                          • 4
                                                                                          • 5
                                                                                          • 6
                                                                                          跳至
                                                                                          / 6 页
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\table\\_example\\custom-cell.tsx 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 packages\\components\\table\\_example\\custom-col.tsx 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
                                                                                          共 100 条数据
                                                                                          请选择
                                                                                          • 1
                                                                                          • 2
                                                                                          • 3
                                                                                          • 4
                                                                                          • 5
                                                                                          • 20
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\table\\_example\\custom-col-button.tsx 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
                                                                                          共 100 条数据
                                                                                          请选择
                                                                                          • 1
                                                                                          • 2
                                                                                          • 3
                                                                                          • 4
                                                                                          • 5
                                                                                          • 20
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\table\\_example\\custom-footer.tsx 1`] = `"
                                                                                          申请人
                                                                                          审批状态
                                                                                          签署方式
                                                                                          邮箱地址
                                                                                          申请时间
                                                                                          贾明
                                                                                          审批通过
                                                                                          电子签署
                                                                                          w.cezkdudy@lhll.au
                                                                                          2022-01-01
                                                                                          张三
                                                                                          审批失败
                                                                                          纸质签署
                                                                                          r.nmgw@peurezgn.sl
                                                                                          2022-02-01
                                                                                          王芳
                                                                                          审批过期
                                                                                          纸质签署
                                                                                          p.cumx@rampblpa.ru
                                                                                          2022-03-01
                                                                                          表尾信息
                                                                                          表尾信息
                                                                                          表尾信息
                                                                                          表尾信息
                                                                                          表尾信息
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\table\\_example\\custom-header.tsx 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
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\table\\_example\\data-sort.tsx 1`] = `"
                                                                                          申请人
                                                                                          申请状态
                                                                                          申请耗时(天)
                                                                                          签署方式
                                                                                          邮箱地址
                                                                                          申请时间
                                                                                          贾明
                                                                                          审批通过
                                                                                          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 packages\\components\\table\\_example\\drag-col-sort.tsx 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 packages\\components\\table\\_example\\drag-sort.tsx 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 packages\\components\\table\\_example\\drag-sort-handler.tsx 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 packages\\components\\table\\_example\\editable-cell.tsx 1`] = `"
                                                                                          申请人
                                                                                          申请状态
                                                                                          申请事项
                                                                                          创建日期
                                                                                          请选择
                                                                                          请选择
                                                                                          请选择
                                                                                          请选择
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\table\\_example\\editable-row.tsx 1`] = `"


                                                                                          申请人
                                                                                          申请状态
                                                                                          申请事项
                                                                                          创建日期
                                                                                          操作栏
                                                                                          请输入
                                                                                          请选择
                                                                                          请选择
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\table\\_example\\ellipsis.tsx 1`] = `"
                                                                                          申请人
                                                                                          审批状态
                                                                                          签署方式(超长标题示例)
                                                                                          邮箱地址
                                                                                          申请事项
                                                                                          审核时间
                                                                                          操作
                                                                                          贾明(kyrieJia)
                                                                                          审批通过
                                                                                          电子签署
                                                                                          w.cezkdudy@lhll.au
                                                                                          宣传物料制作费用
                                                                                          2021-11-01
                                                                                          张三(threeZhang)
                                                                                          审批失败
                                                                                          纸质签署
                                                                                          r.nmgw@peurezgn.sl
                                                                                          algolia 服务报销
                                                                                          2021-12-01
                                                                                          王芳(fangWang)
                                                                                          审批过期
                                                                                          纸质签署
                                                                                          p.cumx@rampblpa.ru
                                                                                          相关周边制作费
                                                                                          2022-01-01
                                                                                          贾明(kyrieJia)
                                                                                          审批通过
                                                                                          电子签署
                                                                                          w.cezkdudy@lhll.au
                                                                                          激励奖品快递费
                                                                                          2022-02-01
                                                                                          张三(threeZhang)
                                                                                          审批失败
                                                                                          纸质签署
                                                                                          r.nmgw@peurezgn.sl
                                                                                          宣传物料制作费用
                                                                                          2021-11-01
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\table\\_example\\empty.tsx 1`] = `"
                                                                                          项目名称
                                                                                          管理员
                                                                                          所属公司
                                                                                          暂无数据
                                                                                          项目名称
                                                                                          管理员
                                                                                          所属公司
                                                                                          😄 it is empty. 😁
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\table\\_example\\expandable.tsx 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 packages\\components\\table\\_example\\filter-controlled.tsx 1`] = `"
                                                                                          已选筛选条件:{"lastName":[]}
                                                                                          申请人
                                                                                          申请状态
                                                                                          签署方式
                                                                                          Email
                                                                                          Date
                                                                                          搜索“”,找到 5 条结果
                                                                                          贾明
                                                                                          审批通过
                                                                                          电子签署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
                                                                                          共 0 条数据
                                                                                          请选择
                                                                                          • 1
                                                                                          跳至
                                                                                          / 1 页
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\table\\_example\\fixed-column.tsx 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 packages\\components\\table\\_example\\fixed-header.tsx 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 packages\\components\\table\\_example\\fixed-header-col.tsx 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 packages\\components\\table\\_example\\lazy.tsx 1`] = `"
                                                                                          申请人
                                                                                          申请状态
                                                                                          申请事项
                                                                                          邮箱地址
                                                                                          申请时间
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\table\\_example\\loading.tsx 1`] = `"
                                                                                          集群名称
                                                                                          状态
                                                                                          管理员
                                                                                          描述
                                                                                          集群名称
                                                                                          状态
                                                                                          管理员
                                                                                          描述
                                                                                          集群名称
                                                                                          状态
                                                                                          管理员
                                                                                          描述
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\table\\_example\\merge-cells.tsx 1`] = `"
                                                                                          申请人
                                                                                          申请状态
                                                                                          审批事项
                                                                                          邮箱地址
                                                                                          其他信息
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\table\\_example\\multi-header.tsx 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 packages\\components\\table\\_example\\multiple-sort.tsx 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 packages\\components\\table\\_example\\pagination.tsx 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
                                                                                          共 59 条数据
                                                                                          请选择
                                                                                          • 1
                                                                                          • 2
                                                                                          • 3
                                                                                          • 4
                                                                                          • 5
                                                                                          • 12
                                                                                          跳至
                                                                                          / 12 页
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\table\\_example\\select-multiple.tsx 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 packages\\components\\table\\_example\\select-single.tsx 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 packages\\components\\table\\_example\\single-sort.tsx 1`] = `"
                                                                                          排序方式:{"sortBy":"status","descending":true}
                                                                                          申请人
                                                                                          申请状态
                                                                                          申请耗时(天)
                                                                                          签署方式
                                                                                          申请时间
                                                                                          贾明
                                                                                          审批通过
                                                                                          2电子签署2022-01-01
                                                                                          张三
                                                                                          审批失败
                                                                                          3纸质签署2022-02-01
                                                                                          王芳
                                                                                          审批过期
                                                                                          1纸质签署2022-03-01
                                                                                          贾明
                                                                                          审批通过
                                                                                          4电子签署2022-04-01
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\table\\_example\\style.tsx 1`] = `"
                                                                                          申请人
                                                                                          审批状态
                                                                                          申请耗时(天)
                                                                                          签署方式
                                                                                          邮箱地址
                                                                                          申请时间
                                                                                          贾明
                                                                                          审批通过
                                                                                          2电子签署
                                                                                          w.cezkdudy@lhll.au
                                                                                          2022-01-01
                                                                                          张三
                                                                                          审批失败
                                                                                          10纸质签署
                                                                                          r.nmgw@peurezgn.sl
                                                                                          2022-02-01
                                                                                          王芳
                                                                                          审批过期
                                                                                          1纸质签署
                                                                                          p.cumx@rampblpa.ru
                                                                                          2022-03-01
                                                                                          贾明
                                                                                          审批通过
                                                                                          2电子签署
                                                                                          w.cezkdudy@lhll.au
                                                                                          2022-04-01
                                                                                          张三
                                                                                          审批失败
                                                                                          10纸质签署
                                                                                          r.nmgw@peurezgn.sl
                                                                                          2022-01-01
                                                                                          汇总:近期数据波动较大
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\table\\_example\\tree.tsx 1`] = `"
                                                                                          排序
                                                                                          编号
                                                                                          名称
                                                                                          签署方式
                                                                                          操作
                                                                                          0
                                                                                          申请人 0_1 号
                                                                                          电子签署
                                                                                          1
                                                                                          申请人 1_1 号
                                                                                          纸质签署
                                                                                          2
                                                                                          申请人 2_1 号
                                                                                          电子签署
                                                                                          3
                                                                                          申请人 3_1 号
                                                                                          纸质签署
                                                                                          4
                                                                                          申请人 4_1 号
                                                                                          电子签署
                                                                                          66666
                                                                                          申请人懒加载节点 66666,点我体验
                                                                                          电子签署
                                                                                          88888
                                                                                          申请人懒加载节点 88888,点我体验
                                                                                          电子签署
                                                                                          共 100 条数据
                                                                                          请选择
                                                                                          • 1
                                                                                          • 2
                                                                                          • 3
                                                                                          • 4
                                                                                          • 5
                                                                                          • 6
                                                                                          • 7
                                                                                          • 8
                                                                                          • 9
                                                                                          • 10
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\table\\_example\\tree-select.tsx 1`] = `"
                                                                                          序号
                                                                                          申请人
                                                                                          状态
                                                                                          申请事项
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\table\\_example\\virtual-scroll.tsx 1`] = `"
                                                                                          序号
                                                                                          申请人
                                                                                          申请状态
                                                                                          申请事项
                                                                                          邮箱地址
                                                                                          申请时间
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\tabs\\_example\\ban.tsx 1`] = `"
                                                                                          选项卡1
                                                                                          选项卡2
                                                                                          选项卡3
                                                                                          选项卡1内容区
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\tabs\\_example\\base.tsx 1`] = `"
                                                                                          选项卡1
                                                                                          选项卡2
                                                                                          选项卡3

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

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

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

                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\tabs\\_example\\combination.tsx 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 packages\\components\\tabs\\_example\\custom.tsx 1`] = `"
                                                                                          选项卡 1
                                                                                          选项卡 2
                                                                                          选项卡 3
                                                                                          选项卡 4
                                                                                          选项卡 5
                                                                                          选项卡 6
                                                                                          选项卡 7
                                                                                          选项卡 8
                                                                                          选项卡 9
                                                                                          选项卡 10
                                                                                          选项卡 1内容区
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\tabs\\_example\\drag-sort.tsx 1`] = `"
                                                                                          选项卡一
                                                                                          选项卡二
                                                                                          选项卡三

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

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

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

                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\tabs\\_example\\icon.tsx 1`] = `"
                                                                                          选项卡1
                                                                                          选项卡2
                                                                                          选项卡3
                                                                                          选项卡1内容区
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\tabs\\_example\\lazy-load.tsx 1`] = `"
                                                                                          选项卡1
                                                                                          选项卡2
                                                                                          选项卡3

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

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

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

                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\tabs\\_example\\operation.tsx 1`] = `"
                                                                                          选项卡1
                                                                                          选项卡1
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\tabs\\_example\\position.tsx 1`] = `"
                                                                                          选项卡1
                                                                                          选项卡2
                                                                                          选项卡3
                                                                                          选项卡1内容区
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\tabs\\_example\\size.tsx 1`] = `"
                                                                                          选项卡1
                                                                                          选项卡2
                                                                                          选项卡1内容区
                                                                                          选项卡1
                                                                                          选项卡2
                                                                                          选项卡1内容区
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\tabs\\_example\\theme.tsx 1`] = `"
                                                                                          选项卡1
                                                                                          选项卡2
                                                                                          选项卡1
                                                                                          选项卡2
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\tag\\_example\\base.tsx 1`] = `"
                                                                                          标签一
                                                                                          标签一
                                                                                          标签二
                                                                                          标签三
                                                                                          标签四
                                                                                          灰标签
                                                                                          标签一
                                                                                          标签二
                                                                                          标签三
                                                                                          标签四
                                                                                          灰标签
                                                                                          标签一
                                                                                          标签二
                                                                                          标签三
                                                                                          标签四
                                                                                          灰标签
                                                                                          标签一
                                                                                          标签二
                                                                                          标签三
                                                                                          标签四
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\tag\\_example\\check-tag-group.tsx 1`] = `"
                                                                                          标签1
                                                                                          标签2
                                                                                          标签3
                                                                                          标签4
                                                                                          标签5
                                                                                          标签6
                                                                                          标签1
                                                                                          标签2
                                                                                          标签3
                                                                                          标签4
                                                                                          标签5
                                                                                          标签6
                                                                                          标签1
                                                                                          标签2
                                                                                          标签3
                                                                                          标签4
                                                                                          标签5
                                                                                          标签6
                                                                                          TAG_A(1)
                                                                                          TAG_B(2)
                                                                                          TAG_C(3)
                                                                                          TAG_D(4)
                                                                                          TAG_E(5)
                                                                                          TAG_F(6)
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\tag\\_example\\custom-color.tsx 1`] = `"
                                                                                          #0052D9
                                                                                          default
                                                                                          light
                                                                                          outline
                                                                                          light-outline
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\tag\\_example\\delete.tsx 1`] = `"
                                                                                          可删除标签0
                                                                                          可删除标签1
                                                                                          可删除标签2
                                                                                          可添加标签
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\tag\\_example\\icon.tsx 1`] = `"
                                                                                          默认标签
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\tag\\_example\\long-text.tsx 1`] = `"
                                                                                          默认超八个字超长文本标签超长省略文本标签
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\tag\\_example\\selectable.tsx 1`] = `"
                                                                                          选中/未选态
                                                                                          选中态
                                                                                          未选态
                                                                                          选中禁用
                                                                                          未选禁用
                                                                                          选中/未选态
                                                                                          选中态
                                                                                          未选态
                                                                                          选中禁用
                                                                                          未选禁用
                                                                                          Outline Tag
                                                                                          Checked
                                                                                          Unchecked
                                                                                          Disabled
                                                                                          Disabled
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\tag\\_example\\shape.tsx 1`] = `"
                                                                                          标签一
                                                                                          标签一
                                                                                          标签一
                                                                                          标签一
                                                                                          标签一
                                                                                          标签一
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\tag\\_example\\size.tsx 1`] = `"
                                                                                          小型标签
                                                                                          默认标签
                                                                                          大型标签
                                                                                          小型标签
                                                                                          默认标签
                                                                                          大型标签
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\tag-input\\_example\\auto-width.tsx 1`] = `"
                                                                                          Vue
                                                                                          React
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\tag-input\\_example\\base.tsx 1`] = `"
                                                                                          Vue
                                                                                          React
                                                                                          Angular
                                                                                          Controlled:
                                                                                          Vue
                                                                                          React
                                                                                          UnControlled:
                                                                                          Vue
                                                                                          React
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\tag-input\\_example\\collapsed.tsx 1`] = `"
                                                                                          Vue
                                                                                          +4
                                                                                          Vue
                                                                                          React
                                                                                          Miniprogram
                                                                                          More(2)
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\tag-input\\_example\\custom-tag.tsx 1`] = `"
                                                                                          StudentA
                                                                                          StudentB
                                                                                          +1


                                                                                          StudentA
                                                                                          StudentB
                                                                                          StudentC
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\tag-input\\_example\\draggable.tsx 1`] = `"
                                                                                          Vue
                                                                                          React
                                                                                          Angular
                                                                                          Controlled:
                                                                                          Vue
                                                                                          React
                                                                                          Angular
                                                                                          Miniprogram
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\tag-input\\_example\\excess.tsx 1`] = `"
                                                                                          Scroll:
                                                                                          Vue
                                                                                          React
                                                                                          BreakLine:
                                                                                          Vue
                                                                                          React
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\tag-input\\_example\\max.tsx 1`] = `"
                                                                                          最多只能输入 3 个标签
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\tag-input\\_example\\max-row.tsx 1`] = `"

                                                                                          最大高度为2

                                                                                          小尺寸:
                                                                                          Vue
                                                                                          React
                                                                                          Angular
                                                                                          Svelte
                                                                                          Solid
                                                                                          MiniProgram
                                                                                          Flutter
                                                                                          UniApp
                                                                                          Html5
                                                                                          Css3
                                                                                          JavaScript
                                                                                          TypeScript
                                                                                          Node.js
                                                                                          Python
                                                                                          Java
                                                                                          Go
                                                                                          Rust
                                                                                          C++

                                                                                          最大高度为3

                                                                                          中等尺寸:
                                                                                          Vue
                                                                                          React
                                                                                          Angular
                                                                                          Svelte
                                                                                          Solid
                                                                                          MiniProgram
                                                                                          Flutter
                                                                                          UniApp
                                                                                          Html5
                                                                                          Css3
                                                                                          JavaScript
                                                                                          TypeScript
                                                                                          Node.js
                                                                                          Python
                                                                                          Java
                                                                                          Go
                                                                                          Rust
                                                                                          C++

                                                                                          最大高度为4

                                                                                          大尺寸:
                                                                                          Vue
                                                                                          React
                                                                                          Angular
                                                                                          Svelte
                                                                                          Solid
                                                                                          MiniProgram
                                                                                          Flutter
                                                                                          UniApp
                                                                                          Html5
                                                                                          Css3
                                                                                          JavaScript
                                                                                          TypeScript
                                                                                          Node.js
                                                                                          Python
                                                                                          Java
                                                                                          Go
                                                                                          Rust
                                                                                          C++
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\tag-input\\_example\\size.tsx 1`] = `"
                                                                                          Vue
                                                                                          React
                                                                                          Vue
                                                                                          React
                                                                                          Vue
                                                                                          React
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\tag-input\\_example\\status.tsx 1`] = `"
                                                                                          Vue
                                                                                          React
                                                                                          Miniprogram
                                                                                          Vue
                                                                                          React
                                                                                          Miniprogram
                                                                                          这是普通文本提示
                                                                                          Vue
                                                                                          React
                                                                                          Miniprogram
                                                                                          校验通过文本提示
                                                                                          Vue
                                                                                          React
                                                                                          Miniprogram
                                                                                          校验不通过文本提示
                                                                                          Vue
                                                                                          React
                                                                                          Miniprogram
                                                                                          校验存在严重问题文本提示
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\tag-input\\_example\\theme.tsx 1`] = `"
                                                                                          Vue
                                                                                          React
                                                                                          Miniprogram
                                                                                          Vue
                                                                                          React
                                                                                          Miniprogram
                                                                                          Vue
                                                                                          React
                                                                                          Miniprogram
                                                                                          Vue
                                                                                          React
                                                                                          Miniprogram
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\textarea\\_example\\base.tsx 1`] = `"
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\textarea\\_example\\events.tsx 1`] = `"
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\textarea\\_example\\maxlength.tsx 1`] = `"
                                                                                          这里可以放一些提示文字
                                                                                          0/20
                                                                                          0/20
                                                                                          0/20
                                                                                          0/20
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\textarea\\_example\\type.tsx 1`] = `"
                                                                                          正常提示
                                                                                          成功提示
                                                                                          警告提示
                                                                                          错误提示
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\time-picker\\_example\\disabled.tsx 1`] = `"

                                                                                          禁用整个选择器

                                                                                          禁用指定时间

                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\time-picker\\_example\\hide-clear-button.tsx 1`] = `"

                                                                                          禁止清空

                                                                                          允许清空

                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\time-picker\\_example\\hm.tsx 1`] = `"

                                                                                          时分选择

                                                                                          毫秒选择

                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\time-picker\\_example\\hms.tsx 1`] = `"
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\time-picker\\_example\\keyboard.tsx 1`] = `"
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\time-picker\\_example\\panel.tsx 1`] = `"
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\time-picker\\_example\\presets.tsx 1`] = `"
                                                                                          -
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\time-picker\\_example\\range.tsx 1`] = `"
                                                                                          -
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\time-picker\\_example\\show-steps.tsx 1`] = `"
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\time-picker\\_example\\twelve-hour-meridian.tsx 1`] = `"
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\timeline\\_example\\base.tsx 1`] = `"

                                                                                          时间轴方向

                                                                                          • 事件一
                                                                                            2022-01-01
                                                                                          • 事件二
                                                                                            2022-02-01
                                                                                          • 事件三
                                                                                            2022-03-01
                                                                                          • 事件四
                                                                                            2022-04-01
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\timeline\\_example\\customContent.tsx 1`] = `"
                                                                                          • 事件一
                                                                                            事件一自定义内容
                                                                                            2022-01-01
                                                                                          • 事件二
                                                                                            事件二自定义内容
                                                                                            2022-02-01
                                                                                          • 事件三
                                                                                            事件三自定义内容
                                                                                            2022-03-01
                                                                                          • 事件四
                                                                                            事件四自定义内容
                                                                                            2022-04-01
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\timeline\\_example\\customDot.tsx 1`] = `"

                                                                                          时间轴样式

                                                                                          • 事件一
                                                                                            2022-01-01
                                                                                          • 事件二
                                                                                            2022-02-01
                                                                                          • 事件三
                                                                                            2022-03-01
                                                                                          • 事件四
                                                                                            2022-04-01
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\timeline\\_example\\layout.tsx 1`] = `"

                                                                                          时间轴方向

                                                                                          对齐方式

                                                                                          label对齐方式

                                                                                          • 事件一
                                                                                            2022-01-01
                                                                                          • 事件二
                                                                                            2022-02-01
                                                                                          • 事件三
                                                                                            2022-03-01
                                                                                          • 事件四
                                                                                            2022-04-01
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\timeline\\_example\\loading.tsx 1`] = `"

                                                                                          加载中

                                                                                          • 事件一
                                                                                            2022-01-01
                                                                                          • 事件二
                                                                                            2022-02-01
                                                                                          • 事件三
                                                                                            2022-03-01
                                                                                          • 事件四
                                                                                            2022-04-01
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\timeline\\_example\\reverse.tsx 1`] = `"

                                                                                          是否倒序

                                                                                          • 事件一
                                                                                            2022-01-01
                                                                                          • 事件二
                                                                                            2022-02-01
                                                                                          • 事件三
                                                                                            2022-03-01
                                                                                          • 事件四
                                                                                            2022-04-01
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\timeline\\_example\\theme.tsx 1`] = `"
                                                                                          • 已完成的时间
                                                                                            2022-01-01
                                                                                          • 成功的时间
                                                                                            2022-02-01
                                                                                          • 危险时间
                                                                                            2022-03-01
                                                                                          • 告警事件
                                                                                            2022-04-01
                                                                                          • 默认的时间
                                                                                            2022-05-01
                                                                                          • 自定义主题色
                                                                                            2022-06-01
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\tooltip\\_example\\arrow.tsx 1`] = `""`; - -exports[`ssr snapshot test > ssr test packages\\components\\tooltip\\_example\\base.tsx 1`] = `"
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\tooltip\\_example\\duration.tsx 1`] = `""`; - -exports[`ssr snapshot test > ssr test packages\\components\\tooltip\\_example\\lite.tsx 1`] = `"
                                                                                          不可用状态下提示
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\tooltip\\_example\\mouse.tsx 1`] = `""`; - -exports[`ssr snapshot test > ssr test packages\\components\\tooltip\\_example\\no-arrow.tsx 1`] = `""`; - -exports[`ssr snapshot test > ssr test packages\\components\\tooltip\\_example\\theme.tsx 1`] = `"
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\tooltip\\_example\\trigger.tsx 1`] = `"
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\transfer\\_example\\base.tsx 1`] = `"
                                                                                          0 / 20 项
                                                                                          0 / 0 项
                                                                                          暂无数据
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\transfer\\_example\\checked.tsx 1`] = `"
                                                                                          3 / 20 项
                                                                                          0 / 0 项
                                                                                          暂无数据
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\transfer\\_example\\custom.tsx 1`] = `""`; - -exports[`ssr snapshot test > ssr test packages\\components\\transfer\\_example\\custom-render.tsx 1`] = `"
                                                                                          0 / 20 项
                                                                                          0 / 0 项
                                                                                          暂无数据
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\transfer\\_example\\empty.tsx 1`] = `"

                                                                                          默认暂无数据

                                                                                          0 / 0 项
                                                                                          暂无数据
                                                                                          0 / 0 项
                                                                                          暂无数据

                                                                                          自定义暂无数据

                                                                                          0 / 0 项
                                                                                          No Source
                                                                                          0 / 0 项
                                                                                          No Target
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\transfer\\_example\\pagination.tsx 1`] = `"
                                                                                          0 / 20 项
                                                                                          跳至
                                                                                          / 2 页
                                                                                          0 / 0 项
                                                                                          暂无数据
                                                                                          跳至
                                                                                          / 1 页
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\transfer\\_example\\search.tsx 1`] = `""`; - -exports[`ssr snapshot test > ssr test packages\\components\\transfer\\_example\\tree.tsx 1`] = `"
                                                                                          0 / 5 项
                                                                                          暂无数据
                                                                                          0 / 0 项
                                                                                          暂无数据
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\tree\\_example\\activable.tsx 1`] = `"
                                                                                          暂无数据
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\tree\\_example\\base.tsx 1`] = `"
                                                                                          暂无数据
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\tree\\_example\\checkable.tsx 1`] = `"
                                                                                          暂无数据
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\tree\\_example\\controlled.tsx 1`] = `"
                                                                                          checked:
                                                                                          expanded:
                                                                                          actived:
                                                                                          暂无数据
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\tree\\_example\\disabled.tsx 1`] = `"
                                                                                          暂无数据
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\tree\\_example\\draggable.tsx 1`] = `"
                                                                                          暂无数据
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\tree\\_example\\empty.tsx 1`] = `"
                                                                                          暂无数据
                                                                                          😊 空数据(string)
                                                                                          😊 空数据( empty props )
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\tree\\_example\\expand-all.tsx 1`] = `"
                                                                                          暂无数据
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\tree\\_example\\expand-level.tsx 1`] = `"
                                                                                          暂无数据
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\tree\\_example\\expand-mutex.tsx 1`] = `"
                                                                                          暂无数据
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\tree\\_example\\filter.tsx 1`] = `"
                                                                                          filter:
                                                                                          暂无数据
                                                                                          filter:
                                                                                          暂无数据
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\tree\\_example\\icon.tsx 1`] = `"

                                                                                          render 1:

                                                                                          暂无数据

                                                                                          render 2:

                                                                                          暂无数据
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\tree\\_example\\label.tsx 1`] = `"
                                                                                          暂无数据
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\tree\\_example\\lazy.tsx 1`] = `"
                                                                                          暂无数据
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\tree\\_example\\line.tsx 1`] = `"
                                                                                          暂无数据

                                                                                          render

                                                                                          暂无数据
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\tree\\_example\\load.tsx 1`] = `"
                                                                                          暂无数据
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\tree\\_example\\operations.tsx 1`] = `"

                                                                                          render:

                                                                                          暂无数据

                                                                                          api:

                                                                                          filter:
                                                                                          暂无数据

                                                                                          api:

                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\tree\\_example\\state.tsx 1`] = `"

                                                                                          state:

                                                                                          暂无数据

                                                                                          api:

                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\tree\\_example\\sync.tsx 1`] = `"
                                                                                          checked:
                                                                                          expanded:
                                                                                          actived:
                                                                                          暂无数据
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\tree\\_example\\vscroll.tsx 1`] = `"
                                                                                          暂无数据
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\tree-select\\_example\\base.tsx 1`] = `"
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\tree-select\\_example\\collapsed.tsx 1`] = `"
                                                                                          广州市
                                                                                          +1
                                                                                          广州市
                                                                                          更多...
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\tree-select\\_example\\filterable.tsx 1`] = `"
                                                                                          请选择
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\tree-select\\_example\\lazy.tsx 1`] = `"
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\tree-select\\_example\\multiple.tsx 1`] = `"
                                                                                          广州市
                                                                                          深圳市
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\tree-select\\_example\\panelContent.tsx 1`] = `"
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\tree-select\\_example\\prefix.tsx 1`] = `"
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\tree-select\\_example\\prefixsuffix.tsx 1`] = `"
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\tree-select\\_example\\props.tsx 1`] = `"
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\tree-select\\_example\\valuedisplay.tsx 1`] = `"
                                                                                          广州市(guangzhou)
                                                                                          广州市(guangzhou)
                                                                                          深圳市(shenzhen)
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\tree-select\\_example\\valuetype.tsx 1`] = `"
                                                                                          广州市
                                                                                          深圳市
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\typography\\_example\\base.tsx 1`] = `"

                                                                                          What is TDesign

                                                                                          TDesign is an enterprise-level design system accumulated by Tencent's various business teams.
                                                                                          TDesign features a unified design values, consistent design language, and visual style, helping users form continuous and coherent perceptions of the experience. Based on this, TDesign offers out-of-the-box UI component libraries, design guidelines, and design assets, elegantly and efficiently freeing design and development from repetitive tasks. Simultaneously, it facilitates easy extension on top of TDesign, enabling a better alignment with business requirements.

                                                                                          Comprehensive

                                                                                          TDesign Support Vue 2, Vue 3, React, components for Desktop Application and Vue 3, Wechat MiniProgram components for Mobile Application.
                                                                                          • Features
                                                                                          • Comprehensive
                                                                                            • Consistency
                                                                                            • Usability
                                                                                          • Join TDesign
                                                                                          1. Features
                                                                                          2. Comprehensive
                                                                                            1. Consistency
                                                                                            2. Usability
                                                                                          3. Join TDesign
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\typography\\_example\\copyable.tsx 1`] = `"This is a copyable text.
                                                                                          This is a copyable long text. TDesign was founded with the principles of open-source collaboration from the beginning. The collaboration scheme discussion, component design, and API design, including source code, are fully open within the company, garnering widespread attention from internal developers and designers. TDesign follows an equal, open, and strict policy, regardless of the participants' roles....

                                                                                          This is a copyable long text with custom suffix."`; - -exports[`ssr snapshot test > ssr test packages\\components\\typography\\_example\\ellipsis.tsx 1`] = `"
                                                                                          TDesign was founded with the principles of open-source collaboration from the beginning. The collaboration scheme discussion, component design, and API design, including source code, are fully open within the company, garnering widespread attention from internal developers and designers. TDesign follows an equal, open, and strict policy, regardless of the participants' roles....
                                                                                          TDesign was founded with the principles of open-source collaboration from the beginning. The collaboration scheme discussion, component design, and API design, including source code, are fully open within the company, garnering widespread attention from internal developers and designers. TDesign follows an equal, open, and strict policy, regardless of the participants' roles....
                                                                                          TDesign was founded with the principles of open-source collaboration from the beginning. The collaboration scheme discussion, component design, and API design, including source code, are fully open within the company, garnering widespread attention from internal developers and designers. TDesign follows an equal, open, and strict policy, regardless of the participants' roles....
                                                                                          TDesign was founded with the principles of open-source collaboration from the beginning. The collaboration scheme discussion, component design, and API design, including source code, are fully open within the company, garnering widespread attention from internal developers and designers. TDesign follows an equal, open, and strict policy, regardless of the participants' roles....
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\typography\\_example\\text.tsx 1`] = `"
                                                                                          TDesign (primary)
                                                                                          TDesign (secondary)
                                                                                          TDesign (disabled)
                                                                                          TDesign (success)
                                                                                          TDesign (warning)
                                                                                          TDesign (error)
                                                                                          TDesign (mark)
                                                                                          TDesign (code)
                                                                                          TDesign (keyboard)
                                                                                          TDesign (underline)
                                                                                          TDesign (delete)
                                                                                          TDesign (strong)
                                                                                          TDesign (italic)
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\typography\\_example\\title.tsx 1`] = `"

                                                                                          H1. TDesign

                                                                                          H2. TDesign

                                                                                          H3. TDesign

                                                                                          H4. TDesign

                                                                                          H5. TDesign
                                                                                          H6. TDesign
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\upload\\_example\\base.tsx 1`] = `"

                                                                                          要求文件大小在 1M 以内
                                                                                          文件上传失败示例
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\upload\\_example\\custom-drag.tsx 1`] = `"


                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\upload\\_example\\draggable.tsx 1`] = `"
                                                                                          是否自动上传:

                                                                                          点击上传  /  拖拽到此区域
                                                                                          默认文件
                                                                                          文件大小1.0 KB上传日期2022-09-25
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\upload\\_example\\file-flow-list.tsx 1`] = `"

                                                                                          支持批量上传文件,文件格式不限,最多只能上传 10 份文件
                                                                                          点击上方“选择文件”或将文件拖拽到此区域
                                                                                          取消上传
                                                                                          点击上传
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\upload\\_example\\image.tsx 1`] = `"

                                                                                          • 请选择图片

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

                                                                                          单张图片文件上传(上传失败状态演示)
                                                                                          • 点击上传图片

                                                                                          允许选择多张图片文件上传,最多只能上传 3 张图片
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\upload\\_example\\img-flow-list.tsx 1`] = `"
                                                                                          AutoUpload

                                                                                          支持批量上传图片文件
                                                                                          • demo…-1.png

                                                                                          • avatar.jpg

                                                                                          取消上传

                                                                                          Different Status Images
                                                                                          • loading.svg

                                                                                          • loading.svg

                                                                                          • 上传中 10%

                                                                                            loading.svg

                                                                                          • 上传失败

                                                                                            loading.svg

                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\upload\\_example\\request-method.tsx 1`] = `"
                                                                                          自定义上传方法需要返回成功或失败信息
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\upload\\_example\\single-custom.tsx 1`] = `"
                                                                                          上传文件大小在 1M 以内
                                                                                          "`; - -exports[`ssr snapshot test > ssr test packages\\components\\upload\\_example\\single-input.tsx 1`] = `"

                                                                                          请选择文件
                                                                                          "`;