From 78faf2e968ad12c8c414fddb87e68f2912589fca Mon Sep 17 00:00:00 2001 From: TDesign bot <93915689+tdesign-bot@users.noreply.github.com> Date: Mon, 23 Mar 2026 19:13:49 +0800 Subject: [PATCH 01/27] =?UTF-8?q?feat(ImageViewer):=20=E6=94=AF=E6=8C=81?= =?UTF-8?q?=E8=A7=86=E5=8F=A3=E4=B9=8B=E5=A4=96=E5=9B=BE=E7=89=87=E5=90=91?= =?UTF-8?q?=E4=B8=AD=E5=BF=83=E7=BC=A9=E6=94=BE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/common | 2 +- .../image-viewer/ImageViewerModal.tsx | 127 ++++++++++++++-- .../image-viewer/hooks/usePosition.ts | 12 +- .../components/image-viewer/hooks/useScale.ts | 136 +++++++++++++----- packages/tdesign-react/site/site.config.mjs | 3 +- 5 files changed, 233 insertions(+), 47 deletions(-) diff --git a/packages/common b/packages/common index 34f344aa14..d73d63dcbf 160000 --- a/packages/common +++ b/packages/common @@ -1 +1 @@ -Subproject commit 34f344aa14d6917ce0159b575754a2eef6a82ef9 +Subproject commit d73d63dcbf9202b83798ca84f09c89672e660b74 diff --git a/packages/components/image-viewer/ImageViewerModal.tsx b/packages/components/image-viewer/ImageViewerModal.tsx index 882102fd8c..9b44e27f6a 100644 --- a/packages/components/image-viewer/ImageViewerModal.tsx +++ b/packages/components/image-viewer/ImageViewerModal.tsx @@ -1,4 +1,4 @@ -import React, { useCallback, useEffect, useMemo, useRef, useState } from 'react'; +import React, { useCallback, useEffect, useImperativeHandle, useMemo, useRef, useState } from 'react'; import classNames from 'classnames'; import { isArray, isFunction } from 'lodash-es'; import { @@ -20,14 +20,45 @@ import { ImageModalMini } from './ImageViewerMini'; import useIconMap from './hooks/useIconMap'; import useIndex from './hooks/useIndex'; import useMirror from './hooks/useMirror'; -import usePosition from './hooks/usePosition'; +import usePosition, { PositionType } from './hooks/usePosition'; import useRotate from './hooks/useRotate'; -import useScale from './hooks/useScale'; +import useScale, { type UseScaleOptions } from './hooks/useScale'; import type { TNode } from '../common'; import type { ImageViewerProps } from './ImageViewer'; import type { ImageInfo, ImageScale, ImageViewerScale, TdImageViewerProps } from './type'; +/** 向中心缩放动画时长(ms) */ +const ZOOM_TO_CENTER_DURATION = 150; + +/** 检测图片是否超出视口 */ +const isImageExceedsViewport = (container: HTMLDivElement, modalBox: HTMLDivElement): boolean => { + const containerRect = container.getBoundingClientRect(); + const modalRect = modalBox.getBoundingClientRect(); + return ( + modalRect.left < containerRect.left || + modalRect.right > containerRect.right || + modalRect.top < containerRect.top || + modalRect.bottom > containerRect.bottom + ); +}; + +/** ImageModalItem 暴露给父组件的接口 */ +export interface ImageModalItemRef { + /** modal-box 容器 DOM 引用 */ + modalBoxRef: React.RefObject; + /** 当前位移 */ + position: PositionType; + /** 设置位移 */ + setPosition: React.Dispatch>; + /** 重置位移 */ + resetPosition: () => void; + /** 是否正在拖拽 */ + isDragging: boolean; + /** 设置是否正在缩放向中心动画 */ + setIsZoomingToCenter: React.Dispatch>; +} + const ImageError = ({ errorText }: { errorText: string }) => { const { classPrefix } = useConfig(); const { ImageErrorIcon } = useGlobalIcon({ ImageErrorIcon: TdImageErrorIcon }); @@ -55,7 +86,7 @@ interface ImageModalItemProps { } // 单个弹窗实例 -export const ImageModalItem: React.FC = ({ +export const ImageModalItem = React.forwardRef(({ rotateZ, scale, src, @@ -65,14 +96,17 @@ export const ImageModalItem: React.FC = ({ imageReferrerpolicy, isSvg, innerClassName, -}) => { +}, ref) => { const { classPrefix } = useConfig(); const imgRef = useRef(null); const svgRef = useRef(null); + const modalBoxRef = useRef(null); const [loaded, setLoaded] = useState(false); const [error, setError] = useState(false); + // 是否正在进行向中心缩放动画 + const [isZoomingToCenter, setIsZoomingToCenter] = useState(false); const imgStyle = { transform: `rotateZ(${rotateZ}deg) scale(${scale})`, @@ -86,9 +120,23 @@ export const ImageModalItem: React.FC = ({ if (isSvg) return svgRef; return imgRef; }, [isSvg]); - const { position } = usePosition(displayRef); + const { position, setPosition, resetPosition, isDragging } = usePosition(displayRef); const preImgStyle = { transform: `rotateZ(${rotateZ}deg) scale(${scale})`, display: !loaded ? 'block' : 'none' }; - const boxStyle = { transform: `translate(${position[0]}px, ${position[1]}px) scale(${mirror}, 1)` }; + // 只在非拖拽且正在向中心缩放时启用 transition + const boxStyle: React.CSSProperties = { + transform: `translate(${position[0]}px, ${position[1]}px) scale(${mirror}, 1)`, + ...(isZoomingToCenter && !isDragging ? { transition: `transform ${ZOOM_TO_CENTER_DURATION}ms ease-out` } : {}), + }; + + // 暴露内部状态,供父组件在缩放时读写 position + useImperativeHandle(ref, () => ({ + modalBoxRef, + position, + setPosition, + resetPosition, + isDragging, + setIsZoomingToCenter, + }), [position, resetPosition, isDragging]); const createSvgShadow = async (url: string) => { const response = await fetch(url); @@ -148,7 +196,7 @@ export const ImageModalItem: React.FC = ({ return (
-
+
{error && } {/* 预览图 */} {!error && !!preSrc && preSrcImagePreviewUrl && ( @@ -188,7 +236,9 @@ export const ImageModalItem: React.FC = ({
); -}; +}); + +ImageModalItem.displayName = 'ImageModalItem'; // 旋转角度单位 const ROTATE_COUNT = 90; @@ -442,13 +492,68 @@ export const ImageModal: React.FC = (props) => { const { next, prev } = useIndex(props, images); const { rotateZ, onResetRotate, onRotate } = useRotate(); - const { scale, onZoom, onZoomOut, onResetScale } = useScale(imageScale, visible); const { mirror, onResetMirror, onMirror } = useMirror(); + const containerRef = useRef(null); + const imageItemRef = useRef(null); + + // 自定义滚轮缩放处理:超出视口时向中心收敛 + const handleWheelZoom = useCallback>( + (e, { onZoomOut }) => { + const isZoomingOut = e.deltaY > 0; + // 仅处理缩小场景 + if (!isZoomingOut) return false; + + const container = containerRef.current; + const modalBox = imageItemRef.current?.modalBoxRef?.current; + // 图片未超出视口时,使用默认逻辑 + if (!container || !modalBox || !isImageExceedsViewport(container, modalBox)) { + return false; + } + + // 超出视口:以视口中心为基准,向中心收敛 + const currentPosition = imageItemRef.current?.position ?? [0, 0]; + const result = onZoomOut({ + mouseOffsetX: 0, + mouseOffsetY: 0, + currentTranslate: { + translateX: currentPosition[0], + translateY: currentPosition[1], + }, + }); + + if (result?.newTranslate) { + // 启用向中心缩放的 transition 动画 + imageItemRef.current?.setIsZoomingToCenter?.(true); + imageItemRef.current?.setPosition?.([result.newTranslate.translateX, result.newTranslate.translateY]); + + // 动画结束后关闭 transition(使用 once: true 自动移除监听器) + modalBox.addEventListener( + 'transitionend', + () => imageItemRef.current?.setIsZoomingToCenter?.(false), + { once: true }, + ); + + // 兜底:防止 transitionend 未触发(如动画被中断) + setTimeout(() => { + imageItemRef.current?.setIsZoomingToCenter?.(false); + }, ZOOM_TO_CENTER_DURATION + 50); + } + + return true; // 已处理,不执行默认逻辑 + }, + [], + ); + + const { scale, onZoom, onZoomOut, onResetScale } = useScale(imageScale, visible, { + onWheelZoom: handleWheelZoom, + }); + const onReset = useCallback(() => { onResetScale(); onResetRotate(); onResetMirror(); + imageItemRef.current?.resetPosition?.(); }, [onResetMirror, onResetScale, onResetRotate]); const onKeyDown = useCallback( @@ -537,6 +642,7 @@ export const ImageModal: React.FC = (props) => { return (
= (props) => { /> {closeNode} , options?: Position const { initPosition = [0, 0] } = options || {}; const [position, setPosition] = useState(initPosition); + const [isDragging, setIsDragging] = useState(false); const lastScreenPositionRef = useRef<{ x: number; y: number } | null>(null); useMouseEvent(imgRef, { onDown: (e) => { const { screenX, screenY } = e; lastScreenPositionRef.current = { x: screenX, y: screenY }; + setIsDragging(true); }, onMove: (e) => { if (!lastScreenPositionRef.current) return; @@ -30,11 +32,19 @@ const usePosition = (imgRef: React.RefObject, options?: Position }, onUp: () => { lastScreenPositionRef.current = null; + setIsDragging(false); }, }); + const resetPosition = useCallback(() => { + setPosition(initPosition); + }, [initPosition]); + return { position, + setPosition, + resetPosition, + isDragging, }; }; diff --git a/packages/components/image-viewer/hooks/useScale.ts b/packages/components/image-viewer/hooks/useScale.ts index 558f2d2b25..c9606d1a52 100644 --- a/packages/components/image-viewer/hooks/useScale.ts +++ b/packages/components/image-viewer/hooks/useScale.ts @@ -1,41 +1,106 @@ import { useCallback, useEffect, useRef, useState } from 'react'; import type { ImageScale } from '../type'; -const useScale = (imageScale: ImageScale, visible: boolean) => { +export interface ZoomOptions { + /** 缩放中心点 X 坐标(相对于预览图片容器中心的偏移量) */ + mouseOffsetX?: number; + /** 缩放中心点 Y 坐标(相对于预览图片容器中心的偏移量) */ + mouseOffsetY?: number; + /** 当前位移 */ + currentTranslate?: { translateX: number; translateY: number }; +} + +export interface ZoomResult { + /** 缩放后的新位移 */ + newTranslate?: { translateX: number; translateY: number }; +} + +export interface UseScaleOptions { + /** 自定义滚轮处理函数,返回 true 表示已处理,不执行默认逻辑 */ + onWheelZoom?: (e: WheelEvent, handlers: { onZoom: () => void; onZoomOut: (options?: ZoomOptions) => ZoomResult }) => boolean; +} + +/** + * 计算缩放后的位移补偿 + * 公式:newTranslate = scaleRatio * T + (1 - scaleRatio) * Z + * 其中 Z 为缩放中心,T 为当前位移,scaleRatio = newScale / oldScale + */ +const calculateTranslateOffset = ( + oldScale: number, + newScale: number, + options: ZoomOptions, +): { translateX: number; translateY: number } | undefined => { + const { mouseOffsetX, mouseOffsetY, currentTranslate } = options; + // 缺少缩放中心信息时,不计算位移补偿 + if (mouseOffsetX == null || mouseOffsetY == null) { + return undefined; + } + + const scaleRatio = newScale / oldScale; + const { translateX = 0, translateY = 0 } = currentTranslate ?? {}; + + return { + translateX: scaleRatio * translateX + (1 - scaleRatio) * mouseOffsetX, + translateY: scaleRatio * translateY + (1 - scaleRatio) * mouseOffsetY, + }; +}; + +const useScale = (imageScale: ImageScale, visible: boolean, options?: UseScaleOptions) => { const { max = Infinity, min = 0, step = 0.1, defaultScale = 1 } = imageScale; const calcDefaultScale = useCallback(() => Math.max(Math.min(defaultScale, max), min), [defaultScale, max, min]); const distance = useRef(0); const [scale, setScale] = useState(calcDefaultScale()); + // 用 ref 追踪最新的 scale 值,以便同步计算位移补偿 + const scaleRef = useRef(scale); + + // 复用的 clamp 函数 + const clamp = useCallback((value: number) => Math.max(min, Math.min(max, value)), [max, min]); const onZoom = useCallback(() => { - setScale((scale) => { - const newScale = scale + step; - if (newScale < min) return min; - if (newScale > max) return max; - return newScale; - }); - }, [max, min, step]); - - const onZoomOut = useCallback(() => { - setScale((scale) => { - const newScale = scale - step; - if (newScale < min) return min; - if (newScale > max) return max; - return newScale; - }); - }, [max, min, step]); + const newScale = clamp(scaleRef.current + step); + scaleRef.current = newScale; + setScale(newScale); + }, [clamp, step]); + + const onZoomOut = useCallback( + (zoomOptions?: ZoomOptions): ZoomResult => { + const currentScale = scaleRef.current; + const newScale = clamp(currentScale - step); + + // 先计算位移补偿(使用同步的 scale 值) + const result: ZoomResult = zoomOptions + ? { newTranslate: calculateTranslateOffset(currentScale, newScale, zoomOptions) } + : {}; + + // 再更新 scale + scaleRef.current = newScale; + setScale(newScale); + + return result; + }, + [clamp, step], + ); const onResetScale = useCallback(() => { - setScale(calcDefaultScale()); + const defaultVal = calcDefaultScale(); + scaleRef.current = defaultVal; + setScale(defaultVal); }, [calcDefaultScale]); // 鼠标滚轮缩放 - const onWheel = useCallback((e: WheelEvent) => { - e.preventDefault(); - e.deltaY < 0 ? onZoom() : onZoomOut(); - }, [onZoom, onZoomOut]); + const onWheel = useCallback( + (e: WheelEvent) => { + e.preventDefault(); + // 如果提供了自定义处理函数且返回 true,不执行默认逻辑 + if (options?.onWheelZoom?.(e, { onZoom, onZoomOut })) { + return; + } + e.deltaY < 0 ? onZoom() : onZoomOut(); + }, + [onZoom, onZoomOut, options], + ); // 双指缩放 const onTouchStart = useCallback((e: TouchEvent) => { @@ -45,18 +110,21 @@ const useScale = (imageScale: ImageScale, visible: boolean) => { distance.current = Math.hypot(touch2.pageX - touch1.pageX, touch2.pageY - touch1.pageY); }, []); - const onTouchMove = useCallback((e: TouchEvent) => { - if (e.touches.length !== 2) return; - e.preventDefault(); - const [touch1, touch2] = Array.from(e.touches); - const currentDistance = Math.hypot(touch2.pageX - touch1.pageX, touch2.pageY - touch1.pageY); - if (currentDistance > distance.current) { - onZoom(); - } else { - onZoomOut(); - } - distance.current = currentDistance; - }, [onZoom, onZoomOut]); + const onTouchMove = useCallback( + (e: TouchEvent) => { + if (e.touches.length !== 2) return; + e.preventDefault(); + const [touch1, touch2] = Array.from(e.touches); + const currentDistance = Math.hypot(touch2.pageX - touch1.pageX, touch2.pageY - touch1.pageY); + if (currentDistance > distance.current) { + onZoom(); + } else { + onZoomOut(); + } + distance.current = currentDistance; + }, + [onZoom, onZoomOut], + ); const onTouchEnd = useCallback(() => { distance.current = 0; diff --git a/packages/tdesign-react/site/site.config.mjs b/packages/tdesign-react/site/site.config.mjs index bb45df1ea8..baff073c06 100644 --- a/packages/tdesign-react/site/site.config.mjs +++ b/packages/tdesign-react/site/site.config.mjs @@ -41,7 +41,8 @@ export const docs = [ titleEn: 'MCP', name: 'mcp', path: '/react/mcp', - redirect: 'https://cloud.tencent.com/developer/mcp/server/11721', + component: () => import('@tdesign/common/docs/mcp.md'), + componentEn: () => import('@tdesign/common/docs/mcp.en-US.md'), }, ], }, From 51588afe689756308537e10f0b532eada86ce843 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=98=BF=E8=8F=9C=20Cai?= Date: Tue, 24 Mar 2026 16:14:50 +0800 Subject: [PATCH 02/27] fix(image-viewer): add setPosition to useImperativeHandle dependencies Fix ESLint react-hooks/exhaustive-deps warning in ImageModalItem component. --- packages/components/image-viewer/ImageViewerModal.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/components/image-viewer/ImageViewerModal.tsx b/packages/components/image-viewer/ImageViewerModal.tsx index 9b44e27f6a..f24d696e23 100644 --- a/packages/components/image-viewer/ImageViewerModal.tsx +++ b/packages/components/image-viewer/ImageViewerModal.tsx @@ -136,7 +136,7 @@ export const ImageModalItem = React.forwardRef { const response = await fetch(url); From eab2410147d84cd4a583121f582f448c48736eb2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=98=BF=E8=8F=9C=20Cai?= Date: Tue, 24 Mar 2026 18:01:13 +0800 Subject: [PATCH 03/27] =?UTF-8?q?fix(hooks):=20=E4=BF=AE=E5=A4=8D=E7=A7=BB?= =?UTF-8?q?=E9=99=A4=E4=BA=8B=E4=BB=B6=E7=9B=91=E5=90=AC=E5=99=A8=E7=9A=84?= =?UTF-8?q?=E5=8F=82=E6=95=B0=E9=94=99=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/components/hooks/useMouseEvent.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/components/hooks/useMouseEvent.ts b/packages/components/hooks/useMouseEvent.ts index 8ae321661f..9050cb3ffd 100644 --- a/packages/components/hooks/useMouseEvent.ts +++ b/packages/components/hooks/useMouseEvent.ts @@ -122,7 +122,7 @@ const useMouseEvent = (elementRef: React.RefObject, options: MouseE return () => { el.removeEventListener('mousedown', handleMouseDown); - el.removeEventListener('mouseenter', handleMouseDown); + el.removeEventListener('mouseenter', handleMouseEnter); el.removeEventListener('mouseleave', handleMouseLeave); el.removeEventListener('mousemove', handleMouseMove); el.removeEventListener('mouseup', handleMouseUp); From 200fbe2e3319444f5aae831f5453e2cc14dc618f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=98=BF=E8=8F=9C=20Cai?= Date: Wed, 25 Mar 2026 19:13:38 +0800 Subject: [PATCH 04/27] =?UTF-8?q?chore:=20=E6=A0=BC=E5=BC=8F=E5=8C=96?= =?UTF-8?q?=E4=BB=A3=E7=A0=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../image-viewer/ImageViewerModal.tsx | 363 +++++++++--------- .../components/image-viewer/hooks/useScale.ts | 5 +- 2 files changed, 181 insertions(+), 187 deletions(-) diff --git a/packages/components/image-viewer/ImageViewerModal.tsx b/packages/components/image-viewer/ImageViewerModal.tsx index f24d696e23..4cdc6b1058 100644 --- a/packages/components/image-viewer/ImageViewerModal.tsx +++ b/packages/components/image-viewer/ImageViewerModal.tsx @@ -86,157 +86,153 @@ interface ImageModalItemProps { } // 单个弹窗实例 -export const ImageModalItem = React.forwardRef(({ - rotateZ, - scale, - src, - preSrc, - mirror, - errorText, - imageReferrerpolicy, - isSvg, - innerClassName, -}, ref) => { - const { classPrefix } = useConfig(); - - const imgRef = useRef(null); - const svgRef = useRef(null); - const modalBoxRef = useRef(null); - - const [loaded, setLoaded] = useState(false); - const [error, setError] = useState(false); - // 是否正在进行向中心缩放动画 - const [isZoomingToCenter, setIsZoomingToCenter] = useState(false); - - const imgStyle = { - transform: `rotateZ(${rotateZ}deg) scale(${scale})`, - display: !preSrc || loaded ? 'block' : 'none', - }; - - const { previewUrl: preSrcImagePreviewUrl } = useImagePreviewUrl(preSrc); - const { previewUrl: mainImagePreviewUrl } = useImagePreviewUrl(src); - - const displayRef = useMemo(() => { - if (isSvg) return svgRef; - return imgRef; - }, [isSvg]); - const { position, setPosition, resetPosition, isDragging } = usePosition(displayRef); - const preImgStyle = { transform: `rotateZ(${rotateZ}deg) scale(${scale})`, display: !loaded ? 'block' : 'none' }; - // 只在非拖拽且正在向中心缩放时启用 transition - const boxStyle: React.CSSProperties = { - transform: `translate(${position[0]}px, ${position[1]}px) scale(${mirror}, 1)`, - ...(isZoomingToCenter && !isDragging ? { transition: `transform ${ZOOM_TO_CENTER_DURATION}ms ease-out` } : {}), - }; +export const ImageModalItem = React.forwardRef( + ({ rotateZ, scale, src, preSrc, mirror, errorText, imageReferrerpolicy, isSvg, innerClassName }, ref) => { + const { classPrefix } = useConfig(); + + const imgRef = useRef(null); + const svgRef = useRef(null); + const modalBoxRef = useRef(null); + + const [loaded, setLoaded] = useState(false); + const [error, setError] = useState(false); + // 是否正在进行向中心缩放动画 + const [isZoomingToCenter, setIsZoomingToCenter] = useState(false); + + const imgStyle = { + transform: `rotateZ(${rotateZ}deg) scale(${scale})`, + display: !preSrc || loaded ? 'block' : 'none', + }; + + const { previewUrl: preSrcImagePreviewUrl } = useImagePreviewUrl(preSrc); + const { previewUrl: mainImagePreviewUrl } = useImagePreviewUrl(src); + + const displayRef = useMemo(() => { + if (isSvg) return svgRef; + return imgRef; + }, [isSvg]); + const { position, setPosition, resetPosition, isDragging } = usePosition(displayRef); + const preImgStyle = { transform: `rotateZ(${rotateZ}deg) scale(${scale})`, display: !loaded ? 'block' : 'none' }; + // 只在非拖拽且正在向中心缩放时启用 transition + const boxStyle: React.CSSProperties = { + transform: `translate(${position[0]}px, ${position[1]}px) scale(${mirror}, 1)`, + ...(isZoomingToCenter && !isDragging ? { transition: `transform ${ZOOM_TO_CENTER_DURATION}ms ease-out` } : {}), + }; + + // 暴露内部状态,供父组件在缩放时读写 position + useImperativeHandle( + ref, + () => ({ + modalBoxRef, + position, + setPosition, + resetPosition, + isDragging, + setIsZoomingToCenter, + }), + [position, setPosition, resetPosition, isDragging], + ); - // 暴露内部状态,供父组件在缩放时读写 position - useImperativeHandle(ref, () => ({ - modalBoxRef, - position, - setPosition, - resetPosition, - isDragging, - setIsZoomingToCenter, - }), [position, setPosition, resetPosition, isDragging]); - - const createSvgShadow = async (url: string) => { - const response = await fetch(url); - if (!response.ok) { - setError(true); - throw new Error(`Failed to fetch SVG: ${response.statusText}`); - } + const createSvgShadow = async (url: string) => { + const response = await fetch(url); + if (!response.ok) { + setError(true); + throw new Error(`Failed to fetch SVG: ${response.statusText}`); + } - const svgText = await response.text(); - - const element = svgRef.current; - element.innerHTML = ''; - element.classList?.add(`${classPrefix}-image-viewer__modal-image-svg`); - const shadowRoot = element.attachShadow({ mode: 'closed' }); - - const container = document.createElement('div'); - container.style.background = 'transparent'; - container.innerHTML = svgText; - shadowRoot.appendChild(container); - - const svgElement = container.querySelector('svg'); - if (svgElement) { - const svgViewBox = svgElement.getAttribute('viewBox'); - if (svgViewBox) { - const viewBoxValues = svgViewBox - .split(/[\s,]/) - .filter((v) => v) - .map(parseFloat); - - // svg viewbox x(0) and y(1) offset, width(2) and height(3),eg - const svgViewBoxWidth = viewBoxValues[2]; - const svgViewBoxHeight = viewBoxValues[3]; - container.style.width = `${svgViewBoxWidth}px`; - container.style.height = `${svgViewBoxHeight}px`; - } else { - const bbox = svgElement.getBBox(); - const calculatedViewBox = `${bbox.x} ${bbox.y} ${bbox.width} ${bbox.height}`; - svgElement.setAttribute('viewBox', calculatedViewBox); - - container.style.width = `${bbox.width}px`; - container.style.height = `${bbox.height}px`; + const svgText = await response.text(); + + const element = svgRef.current; + element.innerHTML = ''; + element.classList?.add(`${classPrefix}-image-viewer__modal-image-svg`); + const shadowRoot = element.attachShadow({ mode: 'closed' }); + + const container = document.createElement('div'); + container.style.background = 'transparent'; + container.innerHTML = svgText; + shadowRoot.appendChild(container); + + const svgElement = container.querySelector('svg'); + if (svgElement) { + const svgViewBox = svgElement.getAttribute('viewBox'); + if (svgViewBox) { + const viewBoxValues = svgViewBox + .split(/[\s,]/) + .filter((v) => v) + .map(parseFloat); + + // svg viewbox x(0) and y(1) offset, width(2) and height(3),eg + const svgViewBoxWidth = viewBoxValues[2]; + const svgViewBoxHeight = viewBoxValues[3]; + container.style.width = `${svgViewBoxWidth}px`; + container.style.height = `${svgViewBoxHeight}px`; + } else { + const bbox = svgElement.getBBox(); + const calculatedViewBox = `${bbox.x} ${bbox.y} ${bbox.width} ${bbox.height}`; + svgElement.setAttribute('viewBox', calculatedViewBox); + + container.style.width = `${bbox.width}px`; + container.style.height = `${bbox.height}px`; + } } - } - setLoaded(true); - }; + setLoaded(true); + }; - useEffect(() => { - setError(false); - }, [preSrcImagePreviewUrl, mainImagePreviewUrl]); + useEffect(() => { + setError(false); + }, [preSrcImagePreviewUrl, mainImagePreviewUrl]); - useEffect(() => { - if (isSvg && mainImagePreviewUrl) { - createSvgShadow(mainImagePreviewUrl); - } - // eslint-disable-next-line react-hooks/exhaustive-deps - }, [mainImagePreviewUrl]); + useEffect(() => { + if (isSvg && mainImagePreviewUrl) { + createSvgShadow(mainImagePreviewUrl); + } + // eslint-disable-next-line react-hooks/exhaustive-deps + }, [mainImagePreviewUrl]); - return ( -
-
- {error && } - {/* 预览图 */} - {!error && !!preSrc && preSrcImagePreviewUrl && ( - image - )} - {/* 普通主图 */} - {!error && mainImagePreviewUrl && !isSvg && ( - setLoaded(true)} - onError={() => setError(true)} - referrerPolicy={imageReferrerpolicy} - alt="image" - draggable="false" - /> - )} - {/* SVG 主图 */} - {!error && !!mainImagePreviewUrl && isSvg && ( -
- )} + return ( +
+
+ {error && } + {/* 预览图 */} + {!error && !!preSrc && preSrcImagePreviewUrl && ( + image + )} + {/* 普通主图 */} + {!error && mainImagePreviewUrl && !isSvg && ( + setLoaded(true)} + onError={() => setError(true)} + referrerPolicy={imageReferrerpolicy} + alt="image" + draggable="false" + /> + )} + {/* SVG 主图 */} + {!error && !!mainImagePreviewUrl && isSvg && ( +
+ )} +
-
- ); -}); + ); + }, +); ImageModalItem.displayName = 'ImageModalItem'; @@ -498,52 +494,47 @@ export const ImageModal: React.FC = (props) => { const imageItemRef = useRef(null); // 自定义滚轮缩放处理:超出视口时向中心收敛 - const handleWheelZoom = useCallback>( - (e, { onZoomOut }) => { - const isZoomingOut = e.deltaY > 0; - // 仅处理缩小场景 - if (!isZoomingOut) return false; - - const container = containerRef.current; - const modalBox = imageItemRef.current?.modalBoxRef?.current; - // 图片未超出视口时,使用默认逻辑 - if (!container || !modalBox || !isImageExceedsViewport(container, modalBox)) { - return false; - } + const handleWheelZoom = useCallback>((e, { onZoomOut }) => { + const isZoomingOut = e.deltaY > 0; + // 仅处理缩小场景 + if (!isZoomingOut) return false; + + const container = containerRef.current; + const modalBox = imageItemRef.current?.modalBoxRef?.current; + // 图片未超出视口时,使用默认逻辑 + if (!container || !modalBox || !isImageExceedsViewport(container, modalBox)) { + return false; + } - // 超出视口:以视口中心为基准,向中心收敛 - const currentPosition = imageItemRef.current?.position ?? [0, 0]; - const result = onZoomOut({ - mouseOffsetX: 0, - mouseOffsetY: 0, - currentTranslate: { - translateX: currentPosition[0], - translateY: currentPosition[1], - }, + // 超出视口:以视口中心为基准,向中心收敛 + const currentPosition = imageItemRef.current?.position ?? [0, 0]; + const result = onZoomOut({ + mouseOffsetX: 0, + mouseOffsetY: 0, + currentTranslate: { + translateX: currentPosition[0], + translateY: currentPosition[1], + }, + }); + + if (result?.newTranslate) { + // 启用向中心缩放的 transition 动画 + imageItemRef.current?.setIsZoomingToCenter?.(true); + imageItemRef.current?.setPosition?.([result.newTranslate.translateX, result.newTranslate.translateY]); + + // 动画结束后关闭 transition(使用 once: true 自动移除监听器) + modalBox.addEventListener('transitionend', () => imageItemRef.current?.setIsZoomingToCenter?.(false), { + once: true, }); - if (result?.newTranslate) { - // 启用向中心缩放的 transition 动画 - imageItemRef.current?.setIsZoomingToCenter?.(true); - imageItemRef.current?.setPosition?.([result.newTranslate.translateX, result.newTranslate.translateY]); - - // 动画结束后关闭 transition(使用 once: true 自动移除监听器) - modalBox.addEventListener( - 'transitionend', - () => imageItemRef.current?.setIsZoomingToCenter?.(false), - { once: true }, - ); - - // 兜底:防止 transitionend 未触发(如动画被中断) - setTimeout(() => { - imageItemRef.current?.setIsZoomingToCenter?.(false); - }, ZOOM_TO_CENTER_DURATION + 50); - } + // 兜底:防止 transitionend 未触发(如动画被中断) + setTimeout(() => { + imageItemRef.current?.setIsZoomingToCenter?.(false); + }, ZOOM_TO_CENTER_DURATION + 50); + } - return true; // 已处理,不执行默认逻辑 - }, - [], - ); + return true; // 已处理,不执行默认逻辑 + }, []); const { scale, onZoom, onZoomOut, onResetScale } = useScale(imageScale, visible, { onWheelZoom: handleWheelZoom, diff --git a/packages/components/image-viewer/hooks/useScale.ts b/packages/components/image-viewer/hooks/useScale.ts index c9606d1a52..ca20f9ddf8 100644 --- a/packages/components/image-viewer/hooks/useScale.ts +++ b/packages/components/image-viewer/hooks/useScale.ts @@ -17,7 +17,10 @@ export interface ZoomResult { export interface UseScaleOptions { /** 自定义滚轮处理函数,返回 true 表示已处理,不执行默认逻辑 */ - onWheelZoom?: (e: WheelEvent, handlers: { onZoom: () => void; onZoomOut: (options?: ZoomOptions) => ZoomResult }) => boolean; + onWheelZoom?: ( + e: WheelEvent, + handlers: { onZoom: () => void; onZoomOut: (options?: ZoomOptions) => ZoomResult }, + ) => boolean; } /** From d8ea865090bac696e84c4e70a3216bb23eb8e873 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=98=BF=E8=8F=9C=20Cai?= Date: Wed, 25 Mar 2026 19:43:01 +0800 Subject: [PATCH 05/27] =?UTF-8?q?fix(image-viewer):=20=E4=BC=98=E5=8C=96?= =?UTF-8?q?=E5=90=91=E4=B8=AD=E5=BF=83=E7=BC=A9=E6=94=BE=E5=8A=A8=E7=94=BB?= =?UTF-8?q?=E5=AE=9E=E7=8E=B0=EF=BC=8C=E4=BD=BF=E7=94=A8=20CSS=20=E7=B1=BB?= =?UTF-8?q?=E5=90=8D=E9=A9=B1=E5=8A=A8=20transition?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/common | 2 +- .../image-viewer/ImageViewerModal.tsx | 64 ++++++++++++------- 2 files changed, 42 insertions(+), 24 deletions(-) diff --git a/packages/common b/packages/common index d73d63dcbf..076233fffc 160000 --- a/packages/common +++ b/packages/common @@ -1 +1 @@ -Subproject commit d73d63dcbf9202b83798ca84f09c89672e660b74 +Subproject commit 076233fffcb0ab24d10831c668c07b5ade3bc1ae diff --git a/packages/components/image-viewer/ImageViewerModal.tsx b/packages/components/image-viewer/ImageViewerModal.tsx index 4cdc6b1058..40a4d3a369 100644 --- a/packages/components/image-viewer/ImageViewerModal.tsx +++ b/packages/components/image-viewer/ImageViewerModal.tsx @@ -28,9 +28,6 @@ import type { TNode } from '../common'; import type { ImageViewerProps } from './ImageViewer'; import type { ImageInfo, ImageScale, ImageViewerScale, TdImageViewerProps } from './type'; -/** 向中心缩放动画时长(ms) */ -const ZOOM_TO_CENTER_DURATION = 150; - /** 检测图片是否超出视口 */ const isImageExceedsViewport = (container: HTMLDivElement, modalBox: HTMLDivElement): boolean => { const containerRect = container.getBoundingClientRect(); @@ -55,8 +52,8 @@ export interface ImageModalItemRef { resetPosition: () => void; /** 是否正在拖拽 */ isDragging: boolean; - /** 设置是否正在缩放向中心动画 */ - setIsZoomingToCenter: React.Dispatch>; + /** 启用向中心缩放动画(CSS 类名驱动) */ + enableTransition: () => void; } const ImageError = ({ errorText }: { errorText: string }) => { @@ -96,8 +93,6 @@ export const ImageModalItem = React.forwardRef void) | null>(null); + + // 清理监听器和类名 + const cleanupTransition = useCallback(() => { + const modalBox = modalBoxRef.current; + if (transitionEndHandlerRef.current && modalBox) { + modalBox.removeEventListener('transitionend', transitionEndHandlerRef.current); + } + transitionEndHandlerRef.current = null; + modalBox?.classList.remove(transitioningClass); + }, [transitioningClass]); + + // 启用向中心缩放动画:先加 CSS 类名启用 transition,再更新 transform 触发动画 + const enableTransition = useCallback(() => { + const modalBox = modalBoxRef.current; + if (!modalBox) return; + + cleanupTransition(); + // 读取 offsetHeight 强制重绘,确保类名移除后再添加能触发新动画 + const { offsetHeight } = modalBox; + if (offsetHeight < 0) return; // 永不执行,仅消除 unused 警告 + modalBox.classList.add(transitioningClass); + + const handleTransitionEnd = (e: TransitionEvent) => { + if (e.propertyName !== 'transform') return; + cleanupTransition(); + }; + transitionEndHandlerRef.current = handleTransitionEnd; + modalBox.addEventListener('transitionend', handleTransitionEnd); + }, [transitioningClass, cleanupTransition]); + + useEffect(() => cleanupTransition, [cleanupTransition]); + // 暴露内部状态,供父组件在缩放时读写 position useImperativeHandle( ref, @@ -128,9 +156,9 @@ export const ImageModalItem = React.forwardRef { @@ -518,19 +546,9 @@ export const ImageModal: React.FC = (props) => { }); if (result?.newTranslate) { - // 启用向中心缩放的 transition 动画 - imageItemRef.current?.setIsZoomingToCenter?.(true); + // 启用向中心缩放的 transition 动画(CSS 类名驱动) + imageItemRef.current?.enableTransition?.(); imageItemRef.current?.setPosition?.([result.newTranslate.translateX, result.newTranslate.translateY]); - - // 动画结束后关闭 transition(使用 once: true 自动移除监听器) - modalBox.addEventListener('transitionend', () => imageItemRef.current?.setIsZoomingToCenter?.(false), { - once: true, - }); - - // 兜底:防止 transitionend 未触发(如动画被中断) - setTimeout(() => { - imageItemRef.current?.setIsZoomingToCenter?.(false); - }, ZOOM_TO_CENTER_DURATION + 50); } return true; // 已处理,不执行默认逻辑 From 5bef6fa061eb31df3b46e0f778ca297fb2b5a65b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Tue, 31 Mar 2026 03:09:29 +0000 Subject: [PATCH 06/27] chore: update common --- packages/common | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/common b/packages/common index 076233fffc..6fd64785d6 160000 --- a/packages/common +++ b/packages/common @@ -1 +1 @@ -Subproject commit 076233fffcb0ab24d10831c668c07b5ade3bc1ae +Subproject commit 6fd64785d61885e65b526bed1caafe0367771a72 From 7e401552b0f815759640b59a1a22bb9c114c6441 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=98=BF=E8=8F=9C=20Cai?= Date: Tue, 31 Mar 2026 12:33:06 +0800 Subject: [PATCH 07/27] feat(ImageViewer): refactor zoom/rotate/mirror utils to common package --- packages/common | 2 +- .../image-viewer/ImageViewerMini.tsx | 2 +- .../image-viewer/ImageViewerModal.tsx | 139 +++++++++------- .../image-viewer/hooks/constants.ts | 9 ++ .../image-viewer/hooks/useImageScale.ts | 8 +- .../image-viewer/hooks/useMirror.ts | 7 +- .../image-viewer/hooks/useRotate.ts | 23 ++- .../components/image-viewer/hooks/useScale.ts | 150 +++++++----------- 8 files changed, 164 insertions(+), 176 deletions(-) create mode 100644 packages/components/image-viewer/hooks/constants.ts diff --git a/packages/common b/packages/common index 6fd64785d6..c3623809a5 160000 --- a/packages/common +++ b/packages/common @@ -1 +1 @@ -Subproject commit 6fd64785d61885e65b526bed1caafe0367771a72 +Subproject commit c3623809a53c0eb7ba4c422bba1de6515c985e13 diff --git a/packages/components/image-viewer/ImageViewerMini.tsx b/packages/components/image-viewer/ImageViewerMini.tsx index cc46e61d8e..f7a3de148f 100644 --- a/packages/components/image-viewer/ImageViewerMini.tsx +++ b/packages/components/image-viewer/ImageViewerMini.tsx @@ -34,7 +34,7 @@ export interface ImageModalMiniProps { onZoom: () => void; onZoomOut: () => void; onReset: () => void; - onRotate: (red: number) => void; + onRotate: () => void; onClose: (context: { trigger: 'close-btn' | 'overlay' | 'esc'; e: MouseEvent | KeyboardEvent }) => void; innerClassName: TdImageViewerProps['innerClassName']; } diff --git a/packages/components/image-viewer/ImageViewerModal.tsx b/packages/components/image-viewer/ImageViewerModal.tsx index 40a4d3a369..6ccfd9fa45 100644 --- a/packages/components/image-viewer/ImageViewerModal.tsx +++ b/packages/components/image-viewer/ImageViewerModal.tsx @@ -9,6 +9,7 @@ import { } from 'tdesign-icons-react'; import { downloadImage } from '@tdesign/common-js/image-viewer/utils'; +import { isImageExceedsViewport } from '@tdesign/common-js/image-viewer/transform'; import { largeNumberToFixed } from '@tdesign/common-js/input-number/large-number'; import useConfig from '../hooks/useConfig'; import useGlobalIcon from '../hooks/useGlobalIcon'; @@ -22,30 +23,18 @@ import useIndex from './hooks/useIndex'; import useMirror from './hooks/useMirror'; import usePosition, { PositionType } from './hooks/usePosition'; import useRotate from './hooks/useRotate'; -import useScale, { type UseScaleOptions } from './hooks/useScale'; +import useScale from './hooks/useScale'; import type { TNode } from '../common'; import type { ImageViewerProps } from './ImageViewer'; import type { ImageInfo, ImageScale, ImageViewerScale, TdImageViewerProps } from './type'; -/** 检测图片是否超出视口 */ -const isImageExceedsViewport = (container: HTMLDivElement, modalBox: HTMLDivElement): boolean => { - const containerRect = container.getBoundingClientRect(); - const modalRect = modalBox.getBoundingClientRect(); - return ( - modalRect.left < containerRect.left || - modalRect.right > containerRect.right || - modalRect.top < containerRect.top || - modalRect.bottom > containerRect.bottom - ); -}; - /** ImageModalItem 暴露给父组件的接口 */ export interface ImageModalItemRef { /** modal-box 容器 DOM 引用 */ modalBoxRef: React.RefObject; - /** 当前位移 */ - position: PositionType; + /** 当前位移(ref,始终最新) */ + positionRef: React.RefObject; /** 设置位移 */ setPosition: React.Dispatch>; /** 重置位移 */ @@ -94,7 +83,11 @@ export const ImageModalItem = React.forwardRef ({ modalBoxRef, - position, + positionRef, setPosition, resetPosition, isDragging, enableTransition, }), - [position, setPosition, resetPosition, isDragging, enableTransition], + [setPosition, resetPosition, isDragging, enableTransition], ); const createSvgShadow = async (url: string) => { @@ -264,8 +265,6 @@ export const ImageModalItem = React.forwardRef void; - onRotate: (ROTATE_COUNT: number) => void; + onRotate: () => void; onZoom: () => void; onZoomOut: () => void; onReset: () => void; @@ -351,7 +350,7 @@ export const ImageViewerUtils: React.FC = ({ showShadow={false} zIndex={zIndex} > -
onRotate(-ROTATE_COUNT)}> +
onRotate()}>
@@ -521,42 +520,68 @@ export const ImageModal: React.FC = (props) => { const containerRef = useRef(null); const imageItemRef = useRef(null); - // 自定义滚轮缩放处理:超出视口时向中心收敛 - const handleWheelZoom = useCallback>((e, { onZoomOut }) => { - const isZoomingOut = e.deltaY > 0; - // 仅处理缩小场景 - if (!isZoomingOut) return false; + const { scale, onZoom, onZoomOut, onResetScale, onTouchStart, onTouchMove, onTouchEnd } = useScale( + imageScale, + visible, + ); + + // 容器级滚轮缩放处理(原生事件版) + // ⚠️ 不能用 React 的 onWheel —— React 17+ 将 wheel 注册为 passive: true, + // 导致 e.preventDefault() 无效,无法阻止页面滚动。 + // 必须用原生 addEventListener + { passive: false } 绕过。 + const handleWheel = useCallback( + (e: WheelEvent) => { + e.preventDefault(); + + const isZoomOut = e.deltaY > 0; + const container = containerRef.current; + const modalBox = imageItemRef.current?.modalBoxRef?.current; + + // 无视口信息时,直接缩放 + if (!container || !modalBox) { + isZoomOut ? onZoomOut() : onZoom(); + return; + } + + // 缩小且图片超出视口:以视口中心为基准,向视口中心收敛 + if (isZoomOut && isImageExceedsViewport(container, modalBox)) { + const currentPosition = imageItemRef.current?.positionRef?.current ?? [0, 0]; + + const result = onZoomOut({ + mouseOffsetX: 0, + mouseOffsetY: 0, + currentTranslate: { + translateX: currentPosition[0], + translateY: currentPosition[1], + }, + }); + if (result?.newTranslate) { + imageItemRef.current?.enableTransition?.(); + imageItemRef.current?.setPosition?.([result.newTranslate.translateX, result.newTranslate.translateY]); + } + } else { + isZoomOut ? onZoomOut() : onZoom(); + } + }, + [onZoom, onZoomOut], + ); + // 容器级 wheel + 触摸缩放事件绑定 + // wheel 必须用原生绑定 { passive: false } 才能 preventDefault + useEffect(() => { + if (!visible) return; const container = containerRef.current; - const modalBox = imageItemRef.current?.modalBoxRef?.current; - // 图片未超出视口时,使用默认逻辑 - if (!container || !modalBox || !isImageExceedsViewport(container, modalBox)) { - return false; - } - - // 超出视口:以视口中心为基准,向中心收敛 - const currentPosition = imageItemRef.current?.position ?? [0, 0]; - const result = onZoomOut({ - mouseOffsetX: 0, - mouseOffsetY: 0, - currentTranslate: { - translateX: currentPosition[0], - translateY: currentPosition[1], - }, - }); - - if (result?.newTranslate) { - // 启用向中心缩放的 transition 动画(CSS 类名驱动) - imageItemRef.current?.enableTransition?.(); - imageItemRef.current?.setPosition?.([result.newTranslate.translateX, result.newTranslate.translateY]); - } - - return true; // 已处理,不执行默认逻辑 - }, []); - - const { scale, onZoom, onZoomOut, onResetScale } = useScale(imageScale, visible, { - onWheelZoom: handleWheelZoom, - }); + container?.addEventListener('wheel', handleWheel, { passive: false }); + document.addEventListener('touchstart', onTouchStart, { passive: false }); + document.addEventListener('touchmove', onTouchMove, { passive: false }); + document.addEventListener('touchend', onTouchEnd); + return () => { + container?.removeEventListener('wheel', handleWheel); + document.removeEventListener('touchstart', onTouchStart); + document.removeEventListener('touchmove', onTouchMove); + document.removeEventListener('touchend', onTouchEnd); + }; + }, [visible, handleWheel, onTouchStart, onTouchMove, onTouchEnd]); const onReset = useCallback(() => { onResetScale(); diff --git a/packages/components/image-viewer/hooks/constants.ts b/packages/components/image-viewer/hooks/constants.ts new file mode 100644 index 0000000000..364c490375 --- /dev/null +++ b/packages/components/image-viewer/hooks/constants.ts @@ -0,0 +1,9 @@ +import type { ImageScale } from '../type'; + +/** ImageScale 的默认值,所有使用处应引用此常量,避免多处声明不一致 */ +export const DEFAULT_IMAGE_SCALE: ImageScale = { + max: 2, + min: 0.5, + step: 0.5, + defaultScale: 1, +}; diff --git a/packages/components/image-viewer/hooks/useImageScale.ts b/packages/components/image-viewer/hooks/useImageScale.ts index 01d53defe7..3da44033f5 100644 --- a/packages/components/image-viewer/hooks/useImageScale.ts +++ b/packages/components/image-viewer/hooks/useImageScale.ts @@ -1,11 +1,11 @@ import { ImageScale } from '../type'; +import { DEFAULT_IMAGE_SCALE } from './constants'; const useImageScale = (imageScale?: Partial) => { + // 合并默认值和用户设置 const result: ImageScale = { - max: imageScale?.max ?? 2, - min: imageScale?.min ?? 0.5, - step: imageScale?.step ?? 0.5, - defaultScale: imageScale?.defaultScale, + ...DEFAULT_IMAGE_SCALE, + ...imageScale, }; // defaultScale 不能超出本身设置的最大和最小值 if (imageScale?.defaultScale !== undefined) { diff --git a/packages/components/image-viewer/hooks/useMirror.ts b/packages/components/image-viewer/hooks/useMirror.ts index 1939577f4e..a251b548e1 100644 --- a/packages/components/image-viewer/hooks/useMirror.ts +++ b/packages/components/image-viewer/hooks/useMirror.ts @@ -1,14 +1,15 @@ // 镜像控制 import { useCallback, useState } from 'react'; +import { toggleMirror, MIRROR_DEFAULT } from '@tdesign/common-js/image-viewer/transform'; const useMirror = () => { - const [mirror, setMirror] = useState(1); + const [mirror, setMirror] = useState(MIRROR_DEFAULT); const onMirror = useCallback(() => { - setMirror((mirror) => (mirror > 0 ? -1 : 1)); + setMirror((current) => toggleMirror(current)); }, []); - const onResetMirror = useCallback(() => setMirror(1), []); + const onResetMirror = useCallback(() => setMirror(MIRROR_DEFAULT), []); return { mirror, diff --git a/packages/components/image-viewer/hooks/useRotate.ts b/packages/components/image-viewer/hooks/useRotate.ts index f8e9fb5800..39f13380bb 100644 --- a/packages/components/image-viewer/hooks/useRotate.ts +++ b/packages/components/image-viewer/hooks/useRotate.ts @@ -1,28 +1,25 @@ // 旋转控制 import { useCallback, useRef, useState } from 'react'; +import { ROTATE_DEG, calcResetRotation } from '@tdesign/common-js/image-viewer/transform'; const useRotate = () => { // There is an useEffect in the line 472 of ImageViewerModal.tsx, so we need to use a ref to store the rotateZ value. const rotRef = useRef(0); const [rotateZ, setRotateZ] = useState(0); - const onRotate = useCallback((ROTATE_COUNT: number) => { - setRotateZ((rotateZ) => { - rotRef.current = rotateZ + ROTATE_COUNT; - return rotateZ + ROTATE_COUNT; + const onRotate = useCallback(() => { + setRotateZ((prev) => { + rotRef.current = prev + ROTATE_DEG; + return prev + ROTATE_DEG; }); }, []); const onResetRotate = useCallback(() => { - let degreeToRotate = rotRef.current % 360; - // make sure we always rotate to the shortest direction - if (Math.abs(degreeToRotate) > 180) { - degreeToRotate = (degreeToRotate + 360) % 360; - } - if (degreeToRotate !== 0) { - setRotateZ((rotateZ) => { - rotRef.current = rotateZ - degreeToRotate; - return rotateZ - degreeToRotate; + const adjusted = calcResetRotation(rotRef.current); + if (adjusted !== 0) { + setRotateZ((prev) => { + rotRef.current = prev - adjusted; + return prev - adjusted; }); } }, []); diff --git a/packages/components/image-viewer/hooks/useScale.ts b/packages/components/image-viewer/hooks/useScale.ts index ca20f9ddf8..207dd4477d 100644 --- a/packages/components/image-viewer/hooks/useScale.ts +++ b/packages/components/image-viewer/hooks/useScale.ts @@ -1,89 +1,69 @@ -import { useCallback, useEffect, useRef, useState } from 'react'; +import { useCallback, useRef, useState } from 'react'; +import { throttle } from 'lodash-es'; +import { zoomIn, zoomOut, clampScale } from '@tdesign/common-js/image-viewer/transform'; +import type { ZoomOptions, ZoomResult, TranslateOffset } from '@tdesign/common-js/image-viewer/types'; import type { ImageScale } from '../type'; +import { DEFAULT_IMAGE_SCALE } from './constants'; -export interface ZoomOptions { - /** 缩放中心点 X 坐标(相对于预览图片容器中心的偏移量) */ - mouseOffsetX?: number; - /** 缩放中心点 Y 坐标(相对于预览图片容器中心的偏移量) */ - mouseOffsetY?: number; - /** 当前位移 */ - currentTranslate?: { translateX: number; translateY: number }; -} +// 从 common 包重新导出类型,保持向后兼容 +export type { ZoomOptions, ZoomResult, TranslateOffset }; -export interface ZoomResult { - /** 缩放后的新位移 */ - newTranslate?: { translateX: number; translateY: number }; -} +const useScale = (imageScale: ImageScale, _visible: boolean) => { + const { max, min, step, defaultScale } = { ...DEFAULT_IMAGE_SCALE, ...imageScale }; -export interface UseScaleOptions { - /** 自定义滚轮处理函数,返回 true 表示已处理,不执行默认逻辑 */ - onWheelZoom?: ( - e: WheelEvent, - handlers: { onZoom: () => void; onZoomOut: (options?: ZoomOptions) => ZoomResult }, - ) => boolean; -} - -/** - * 计算缩放后的位移补偿 - * 公式:newTranslate = scaleRatio * T + (1 - scaleRatio) * Z - * 其中 Z 为缩放中心,T 为当前位移,scaleRatio = newScale / oldScale - */ -const calculateTranslateOffset = ( - oldScale: number, - newScale: number, - options: ZoomOptions, -): { translateX: number; translateY: number } | undefined => { - const { mouseOffsetX, mouseOffsetY, currentTranslate } = options; - // 缺少缩放中心信息时,不计算位移补偿 - if (mouseOffsetX == null || mouseOffsetY == null) { - return undefined; - } - - const scaleRatio = newScale / oldScale; - const { translateX = 0, translateY = 0 } = currentTranslate ?? {}; - - return { - translateX: scaleRatio * translateX + (1 - scaleRatio) * mouseOffsetX, - translateY: scaleRatio * translateY + (1 - scaleRatio) * mouseOffsetY, - }; -}; - -const useScale = (imageScale: ImageScale, visible: boolean, options?: UseScaleOptions) => { - const { max = Infinity, min = 0, step = 0.1, defaultScale = 1 } = imageScale; - - const calcDefaultScale = useCallback(() => Math.max(Math.min(defaultScale, max), min), [defaultScale, max, min]); + const calcDefaultScale = useCallback(() => clampScale(defaultScale, min, max), [defaultScale, max, min]); const distance = useRef(0); const [scale, setScale] = useState(calcDefaultScale()); // 用 ref 追踪最新的 scale 值,以便同步计算位移补偿 const scaleRef = useRef(scale); - // 复用的 clamp 函数 - const clamp = useCallback((value: number) => Math.max(min, Math.min(max, value)), [max, min]); + // 存储上一次缩放的结果,供节流后同步返回 + const lastZoomResultRef = useRef({}); + + // 节流内部实现(50ms 间隔),与 Vue 版本保持一致 + const doZoomRef = useRef( + throttle( + (scaleRefObj: React.MutableRefObject, stepVal: number, minVal: number, maxVal: number) => { + const { newScale, zoomResult } = zoomIn(scaleRefObj.current, stepVal, minVal, maxVal); + lastZoomResultRef.current = zoomResult; + scaleRefObj.current = newScale; + setScale(newScale); + }, + 50, + { leading: true, trailing: false }, + ), + ); + + const doZoomOutRef = useRef( + throttle( + ( + scaleRefObj: React.MutableRefObject, + stepVal: number, + minVal: number, + maxVal: number, + zoomOptions?: ZoomOptions, + ) => { + const { newScale, zoomResult } = zoomOut(scaleRefObj.current, stepVal, minVal, maxVal, zoomOptions); + lastZoomResultRef.current = zoomResult; + scaleRefObj.current = newScale; + setScale(newScale); + }, + 50, + { leading: true, trailing: false }, + ), + ); const onZoom = useCallback(() => { - const newScale = clamp(scaleRef.current + step); - scaleRef.current = newScale; - setScale(newScale); - }, [clamp, step]); + doZoomRef.current(scaleRef, step, min, max); + }, [step, min, max]); const onZoomOut = useCallback( (zoomOptions?: ZoomOptions): ZoomResult => { - const currentScale = scaleRef.current; - const newScale = clamp(currentScale - step); - - // 先计算位移补偿(使用同步的 scale 值) - const result: ZoomResult = zoomOptions - ? { newTranslate: calculateTranslateOffset(currentScale, newScale, zoomOptions) } - : {}; - - // 再更新 scale - scaleRef.current = newScale; - setScale(newScale); - - return result; + doZoomOutRef.current(scaleRef, step, min, max, zoomOptions); + return lastZoomResultRef.current; }, - [clamp, step], + [step, min, max], ); const onResetScale = useCallback(() => { @@ -92,19 +72,6 @@ const useScale = (imageScale: ImageScale, visible: boolean, options?: UseScaleOp setScale(defaultVal); }, [calcDefaultScale]); - // 鼠标滚轮缩放 - const onWheel = useCallback( - (e: WheelEvent) => { - e.preventDefault(); - // 如果提供了自定义处理函数且返回 true,不执行默认逻辑 - if (options?.onWheelZoom?.(e, { onZoom, onZoomOut })) { - return; - } - e.deltaY < 0 ? onZoom() : onZoomOut(); - }, - [onZoom, onZoomOut, options], - ); - // 双指缩放 const onTouchStart = useCallback((e: TouchEvent) => { if (e.touches.length !== 2) return; @@ -133,25 +100,14 @@ const useScale = (imageScale: ImageScale, visible: boolean, options?: UseScaleOp distance.current = 0; }, []); - useEffect(() => { - if (!visible) return; - document.addEventListener('wheel', onWheel, { passive: false }); - document.addEventListener('touchstart', onTouchStart, { passive: false }); - document.addEventListener('touchmove', onTouchMove, { passive: false }); - document.addEventListener('touchend', onTouchEnd); - return () => { - document.removeEventListener('wheel', onWheel); - document.removeEventListener('touchstart', onTouchStart); - document.removeEventListener('touchmove', onTouchMove); - document.removeEventListener('touchend', onTouchEnd); - }; - }, [visible, onWheel, onTouchStart, onTouchMove, onTouchEnd]); - return { scale, onZoom, onZoomOut, onResetScale, + onTouchStart, + onTouchMove, + onTouchEnd, }; }; From a9e90a0fffc673b489f200bb553e4e698db863b6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=98=BF=E8=8F=9C=20Cai?= Date: Tue, 31 Mar 2026 17:34:05 +0800 Subject: [PATCH 08/27] =?UTF-8?q?refactor(image-viewer):=20=E4=BC=98?= =?UTF-8?q?=E5=8C=96=20useScale=20=E9=97=AD=E5=8C=85=E4=B8=8E=E5=8F=82?= =?UTF-8?q?=E6=95=B0=E4=BC=A0=E9=80=92=E9=80=BB=E8=BE=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/common | 2 +- .../image-viewer/ImageViewerModal.tsx | 6 +-- .../components/image-viewer/hooks/useScale.ts | 46 +++++++++---------- 3 files changed, 25 insertions(+), 29 deletions(-) diff --git a/packages/common b/packages/common index c3623809a5..cd427319f1 160000 --- a/packages/common +++ b/packages/common @@ -1 +1 @@ -Subproject commit c3623809a53c0eb7ba4c422bba1de6515c985e13 +Subproject commit cd427319f1e93923487ab454e368151c322565b1 diff --git a/packages/components/image-viewer/ImageViewerModal.tsx b/packages/components/image-viewer/ImageViewerModal.tsx index 6ccfd9fa45..64b6c160d3 100644 --- a/packages/components/image-viewer/ImageViewerModal.tsx +++ b/packages/components/image-viewer/ImageViewerModal.tsx @@ -265,7 +265,6 @@ export const ImageModalItem = React.forwardRef = (props) => { const containerRef = useRef(null); const imageItemRef = useRef(null); - const { scale, onZoom, onZoomOut, onResetScale, onTouchStart, onTouchMove, onTouchEnd } = useScale( - imageScale, - visible, - ); + const { scale, onZoom, onZoomOut, onResetScale, onTouchStart, onTouchMove, onTouchEnd } = useScale(imageScale); // 容器级滚轮缩放处理(原生事件版) // ⚠️ 不能用 React 的 onWheel —— React 17+ 将 wheel 注册为 passive: true, diff --git a/packages/components/image-viewer/hooks/useScale.ts b/packages/components/image-viewer/hooks/useScale.ts index 207dd4477d..469392d2bf 100644 --- a/packages/components/image-viewer/hooks/useScale.ts +++ b/packages/components/image-viewer/hooks/useScale.ts @@ -1,14 +1,14 @@ import { useCallback, useRef, useState } from 'react'; import { throttle } from 'lodash-es'; import { zoomIn, zoomOut, clampScale } from '@tdesign/common-js/image-viewer/transform'; -import type { ZoomOptions, ZoomResult, TranslateOffset } from '@tdesign/common-js/image-viewer/types'; +import type { ZoomOptions, ZoomResult, TranslateOffset } from '@tdesign/common-js/image-viewer/transform'; import type { ImageScale } from '../type'; import { DEFAULT_IMAGE_SCALE } from './constants'; // 从 common 包重新导出类型,保持向后兼容 export type { ZoomOptions, ZoomResult, TranslateOffset }; -const useScale = (imageScale: ImageScale, _visible: boolean) => { +const useScale = (imageScale: ImageScale) => { const { max, min, step, defaultScale } = { ...DEFAULT_IMAGE_SCALE, ...imageScale }; const calcDefaultScale = useCallback(() => clampScale(defaultScale, min, max), [defaultScale, max, min]); @@ -21,13 +21,19 @@ const useScale = (imageScale: ImageScale, _visible: boolean) => { // 存储上一次缩放的结果,供节流后同步返回 const lastZoomResultRef = useRef({}); + // 用 ref 追踪最新的 imageScale 参数,供 throttle 闭包读取 + const paramsRef = useRef({ step, min, max }); + paramsRef.current = { step, min, max }; + // 节流内部实现(50ms 间隔),与 Vue 版本保持一致 + // 通过闭包直接引用 scaleRef / paramsRef,避免作为参数传入触发 no-param-reassign const doZoomRef = useRef( throttle( - (scaleRefObj: React.MutableRefObject, stepVal: number, minVal: number, maxVal: number) => { - const { newScale, zoomResult } = zoomIn(scaleRefObj.current, stepVal, minVal, maxVal); + () => { + const { step: s, min: mi, max: ma } = paramsRef.current; + const { newScale, zoomResult } = zoomIn(scaleRef.current, s, mi, ma); lastZoomResultRef.current = zoomResult; - scaleRefObj.current = newScale; + scaleRef.current = newScale; setScale(newScale); }, 50, @@ -35,18 +41,14 @@ const useScale = (imageScale: ImageScale, _visible: boolean) => { ), ); + const zoomOptionsRef = useRef(); const doZoomOutRef = useRef( throttle( - ( - scaleRefObj: React.MutableRefObject, - stepVal: number, - minVal: number, - maxVal: number, - zoomOptions?: ZoomOptions, - ) => { - const { newScale, zoomResult } = zoomOut(scaleRefObj.current, stepVal, minVal, maxVal, zoomOptions); + () => { + const { step: s, min: mi, max: ma } = paramsRef.current; + const { newScale, zoomResult } = zoomOut(scaleRef.current, s, mi, ma, zoomOptionsRef.current); lastZoomResultRef.current = zoomResult; - scaleRefObj.current = newScale; + scaleRef.current = newScale; setScale(newScale); }, 50, @@ -55,16 +57,14 @@ const useScale = (imageScale: ImageScale, _visible: boolean) => { ); const onZoom = useCallback(() => { - doZoomRef.current(scaleRef, step, min, max); - }, [step, min, max]); + doZoomRef.current(); + }, []); - const onZoomOut = useCallback( - (zoomOptions?: ZoomOptions): ZoomResult => { - doZoomOutRef.current(scaleRef, step, min, max, zoomOptions); - return lastZoomResultRef.current; - }, - [step, min, max], - ); + const onZoomOut = useCallback((zoomOptions?: ZoomOptions): ZoomResult => { + zoomOptionsRef.current = zoomOptions; + doZoomOutRef.current(); + return lastZoomResultRef.current; + }, []); const onResetScale = useCallback(() => { const defaultVal = calcDefaultScale(); From 0043f3726d8bb269416302f3e80dd33ccaa36768 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=98=BF=E8=8F=9C=20Cai?= Date: Tue, 31 Mar 2026 22:45:45 +0800 Subject: [PATCH 09/27] =?UTF-8?q?fix(image-viewer):=20=E4=BF=AE=E5=A4=8D?= =?UTF-8?q?=E7=BC=A9=E6=94=BE=E9=87=8D=E7=BD=AE=E4=B8=8E=E5=88=86=E7=A6=BB?= =?UTF-8?q?zoomOptions=E5=BC=95=E7=94=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../components/image-viewer/ImageViewerModal.tsx | 10 ++++++++++ packages/components/image-viewer/hooks/useScale.ts | 14 +++++++++----- 2 files changed, 19 insertions(+), 5 deletions(-) diff --git a/packages/components/image-viewer/ImageViewerModal.tsx b/packages/components/image-viewer/ImageViewerModal.tsx index 64b6c160d3..2f3846773f 100644 --- a/packages/components/image-viewer/ImageViewerModal.tsx +++ b/packages/components/image-viewer/ImageViewerModal.tsx @@ -521,6 +521,16 @@ export const ImageModal: React.FC = (props) => { const { scale, onZoom, onZoomOut, onResetScale, onTouchStart, onTouchMove, onTouchEnd } = useScale(imageScale); + // imageScale 动态变化时重置缩放 + const isFirstRender = useRef(true); + useEffect(() => { + if (isFirstRender.current) { + isFirstRender.current = false; + return; + } + onResetScale(); + }, [imageScale, onResetScale]); + // 容器级滚轮缩放处理(原生事件版) // ⚠️ 不能用 React 的 onWheel —— React 17+ 将 wheel 注册为 passive: true, // 导致 e.preventDefault() 无效,无法阻止页面滚动。 diff --git a/packages/components/image-viewer/hooks/useScale.ts b/packages/components/image-viewer/hooks/useScale.ts index 469392d2bf..f7dfc3709d 100644 --- a/packages/components/image-viewer/hooks/useScale.ts +++ b/packages/components/image-viewer/hooks/useScale.ts @@ -27,11 +27,13 @@ const useScale = (imageScale: ImageScale) => { // 节流内部实现(50ms 间隔),与 Vue 版本保持一致 // 通过闭包直接引用 scaleRef / paramsRef,避免作为参数传入触发 no-param-reassign + const zoomOptionsRef = useRef(); + const doZoomRef = useRef( throttle( () => { const { step: s, min: mi, max: ma } = paramsRef.current; - const { newScale, zoomResult } = zoomIn(scaleRef.current, s, mi, ma); + const { newScale, zoomResult } = zoomIn(scaleRef.current, s, mi, ma, zoomOptionsRef.current); lastZoomResultRef.current = zoomResult; scaleRef.current = newScale; setScale(newScale); @@ -41,12 +43,12 @@ const useScale = (imageScale: ImageScale) => { ), ); - const zoomOptionsRef = useRef(); + const zoomOutOptionsRef = useRef(); const doZoomOutRef = useRef( throttle( () => { const { step: s, min: mi, max: ma } = paramsRef.current; - const { newScale, zoomResult } = zoomOut(scaleRef.current, s, mi, ma, zoomOptionsRef.current); + const { newScale, zoomResult } = zoomOut(scaleRef.current, s, mi, ma, zoomOutOptionsRef.current); lastZoomResultRef.current = zoomResult; scaleRef.current = newScale; setScale(newScale); @@ -56,12 +58,14 @@ const useScale = (imageScale: ImageScale) => { ), ); - const onZoom = useCallback(() => { + const onZoom = useCallback((zoomOptions?: ZoomOptions): ZoomResult => { + zoomOptionsRef.current = zoomOptions; doZoomRef.current(); + return lastZoomResultRef.current; }, []); const onZoomOut = useCallback((zoomOptions?: ZoomOptions): ZoomResult => { - zoomOptionsRef.current = zoomOptions; + zoomOutOptionsRef.current = zoomOptions; doZoomOutRef.current(); return lastZoomResultRef.current; }, []); From 3c0569b2c8813d0dac228b2c433a814ff70a0075 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=98=BF=E8=8F=9C=20Cai?= Date: Wed, 1 Apr 2026 22:35:52 +0800 Subject: [PATCH 10/27] fix(ImageViewer): adjust default step from 0.5 to 0.2 for smoother zoom experience --- .../components/image-viewer/hooks/constants.ts | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/packages/components/image-viewer/hooks/constants.ts b/packages/components/image-viewer/hooks/constants.ts index 364c490375..954319f2bf 100644 --- a/packages/components/image-viewer/hooks/constants.ts +++ b/packages/components/image-viewer/hooks/constants.ts @@ -1,9 +1,9 @@ -import type { ImageScale } from '../type'; - -/** ImageScale 的默认值,所有使用处应引用此常量,避免多处声明不一致 */ -export const DEFAULT_IMAGE_SCALE: ImageScale = { - max: 2, - min: 0.5, - step: 0.5, - defaultScale: 1, -}; +import type { ImageScale } from '../type'; + +/** ImageScale 的默认值,所有使用处应引用此常量,避免多处声明不一致 */ +export const DEFAULT_IMAGE_SCALE: ImageScale = { + max: 2, + min: 0.5, + step: 0.2, + defaultScale: 1, +}; From 2f7bc7ed04b9a276cbb0fe294c72cad284a5c51d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=98=BF=E8=8F=9C=20Cai?= Date: Thu, 2 Apr 2026 01:12:00 +0800 Subject: [PATCH 11/27] =?UTF-8?q?chore:=20=E6=81=A2=E5=A4=8D=E9=BB=98?= =?UTF-8?q?=E8=AE=A4=E7=BC=A9=E6=94=BE=E6=AD=A5=E9=95=BF=E5=B9=B6=E4=B8=94?= =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E6=B5=8B=E8=AF=95=E9=94=99=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../components/image-viewer/__tests__/image-viewer.test.tsx | 2 +- packages/components/image-viewer/hooks/constants.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/components/image-viewer/__tests__/image-viewer.test.tsx b/packages/components/image-viewer/__tests__/image-viewer.test.tsx index e32db91f41..7554a8c928 100644 --- a/packages/components/image-viewer/__tests__/image-viewer.test.tsx +++ b/packages/components/image-viewer/__tests__/image-viewer.test.tsx @@ -209,7 +209,7 @@ describe('ImageViewerModal', () => { test('closeBtn', async () => { const BasicImageViewer = () => { const trigger = ({ open }) => open()}>{triggerText}; - return closeBtn} />; + return closeBtn} />; }; const { getByText } = render(); diff --git a/packages/components/image-viewer/hooks/constants.ts b/packages/components/image-viewer/hooks/constants.ts index 954319f2bf..f1a0569b10 100644 --- a/packages/components/image-viewer/hooks/constants.ts +++ b/packages/components/image-viewer/hooks/constants.ts @@ -4,6 +4,6 @@ import type { ImageScale } from '../type'; export const DEFAULT_IMAGE_SCALE: ImageScale = { max: 2, min: 0.5, - step: 0.2, + step: 0.5, defaultScale: 1, }; From dd4f4a79d10651ca873428463184d7e4f1b0fee8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=98=BF=E8=8F=9C=20Cai?= Date: Fri, 3 Apr 2026 01:42:27 +0800 Subject: [PATCH 12/27] =?UTF-8?q?refactor(image-viewer):=20=E9=87=8D?= =?UTF-8?q?=E5=91=BD=E5=90=8D=20onZoom=20=E4=B8=BA=20onZoomIn=20=E5=B9=B6?= =?UTF-8?q?=E4=BC=98=E5=8C=96=E5=8A=A8=E7=94=BB=E9=80=BB=E8=BE=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/common | 2 +- .../image-viewer/ImageViewerMini.tsx | 6 ++--- .../image-viewer/ImageViewerModal.tsx | 27 +++++++++---------- .../__tests__/image-viewer.test.tsx | 2 +- .../image-viewer/hooks/constants.ts | 9 ------- .../image-viewer/hooks/useImageScale.ts | 2 +- .../components/image-viewer/hooks/useScale.ts | 11 ++++---- 7 files changed, 24 insertions(+), 35 deletions(-) delete mode 100644 packages/components/image-viewer/hooks/constants.ts diff --git a/packages/common b/packages/common index cd427319f1..c698a0ef12 160000 --- a/packages/common +++ b/packages/common @@ -1 +1 @@ -Subproject commit cd427319f1e93923487ab454e368151c322565b1 +Subproject commit c698a0ef12b8712130586d3ed0bc39c652d16571 diff --git a/packages/components/image-viewer/ImageViewerMini.tsx b/packages/components/image-viewer/ImageViewerMini.tsx index f7a3de148f..ac213c9725 100644 --- a/packages/components/image-viewer/ImageViewerMini.tsx +++ b/packages/components/image-viewer/ImageViewerMini.tsx @@ -31,7 +31,7 @@ export interface ImageModalMiniProps { prev: () => void; next: () => void; onMirror: () => void; - onZoom: () => void; + onZoomIn: () => void; onZoomOut: () => void; onReset: () => void; onRotate: () => void; @@ -70,7 +70,7 @@ export const ImageModalMini: React.FC = (props) => { className, style, onZoomOut, - onZoom, + onZoomIn, onClose, onRotate, onMirror, @@ -87,7 +87,7 @@ export const ImageModalMini: React.FC = (props) => { tipText={tipText} currentImage={currentImage} zIndex={props.zIndex + 1} - onZoom={onZoom} + onZoomIn={onZoomIn} onZoomOut={onZoomOut} onRotate={onRotate} onMirror={onMirror} diff --git a/packages/components/image-viewer/ImageViewerModal.tsx b/packages/components/image-viewer/ImageViewerModal.tsx index 2f3846773f..24760c2280 100644 --- a/packages/components/image-viewer/ImageViewerModal.tsx +++ b/packages/components/image-viewer/ImageViewerModal.tsx @@ -133,9 +133,8 @@ export const ImageModalItem = React.forwardRef { @@ -305,7 +304,7 @@ interface ImageViewerUtilsProps { zIndex: number; onMirror: () => void; onRotate: () => void; - onZoom: () => void; + onZoomIn: () => void; onZoomOut: () => void; onReset: () => void; onDownload?: TdImageViewerProps['onDownload']; @@ -318,7 +317,7 @@ export const ImageViewerUtils: React.FC = ({ zIndex, onMirror, onRotate, - onZoom, + onZoomIn, onZoomOut, onReset, onDownload, @@ -359,7 +358,7 @@ export const ImageViewerUtils: React.FC = ({ size="medium" label={`${largeNumberToFixed(String(scale * 100))}%`} /> - + = (props) => { const containerRef = useRef(null); const imageItemRef = useRef(null); - const { scale, onZoom, onZoomOut, onResetScale, onTouchStart, onTouchMove, onTouchEnd } = useScale(imageScale); + const { scale, onZoomIn, onZoomOut, onResetScale, onTouchStart, onTouchMove, onTouchEnd } = useScale(imageScale); // imageScale 动态变化时重置缩放 const isFirstRender = useRef(true); @@ -545,7 +544,7 @@ export const ImageModal: React.FC = (props) => { // 无视口信息时,直接缩放 if (!container || !modalBox) { - isZoomOut ? onZoomOut() : onZoom(); + isZoomOut ? onZoomOut() : onZoomIn(); return; } @@ -566,10 +565,10 @@ export const ImageModal: React.FC = (props) => { imageItemRef.current?.setPosition?.([result.newTranslate.translateX, result.newTranslate.translateY]); } } else { - isZoomOut ? onZoomOut() : onZoom(); + isZoomOut ? onZoomOut() : onZoomIn(); } }, - [onZoom, onZoomOut], + [onZoomIn, onZoomOut], ); // 容器级 wheel + 触摸缩放事件绑定 @@ -604,14 +603,14 @@ export const ImageModal: React.FC = (props) => { case 'ArrowLeft': return prev(); case 'ArrowUp': - return onZoom(); + return onZoomIn(); case 'ArrowDown': return onZoomOut(); case 'Escape': return closeOnEscKeydown && onClose?.({ trigger: 'esc', e: event }); } }, - [next, onClose, prev, onZoom, onZoomOut, closeOnEscKeydown], + [next, onClose, prev, onZoomIn, onZoomOut, closeOnEscKeydown], ); useEffect(() => { @@ -659,7 +658,7 @@ export const ImageModal: React.FC = (props) => { next={next} onMirror={onMirror} onRotate={onRotate} - onZoom={onZoom} + onZoomIn={onZoomIn} onZoomOut={onZoomOut} onReset={onReset} onClose={onClose} @@ -731,7 +730,7 @@ export const ImageModal: React.FC = (props) => { tipText={tipText} currentImage={currentImage} zIndex={zIndex + 1} - onZoom={onZoom} + onZoomIn={onZoomIn} onZoomOut={onZoomOut} onDownload={onDownload} onRotate={onRotate} diff --git a/packages/components/image-viewer/__tests__/image-viewer.test.tsx b/packages/components/image-viewer/__tests__/image-viewer.test.tsx index 7554a8c928..29dbb0a038 100644 --- a/packages/components/image-viewer/__tests__/image-viewer.test.tsx +++ b/packages/components/image-viewer/__tests__/image-viewer.test.tsx @@ -186,7 +186,7 @@ describe('ImageViewerModal', () => { expect(getComputedStyle(img).transform).toBe('rotateZ(0deg) scale(1)'); await user.type(document.body, '{ArrowUp}'); - expect(getComputedStyle(img).transform).toBe('rotateZ(0deg) scale(1.5)'); + expect(getComputedStyle(img).transform).toBe('rotateZ(0deg) scale(1.2)'); await user.type(document.body, '{ArrowDown}'); expect(getComputedStyle(img).transform).toBe('rotateZ(0deg) scale(1)'); diff --git a/packages/components/image-viewer/hooks/constants.ts b/packages/components/image-viewer/hooks/constants.ts deleted file mode 100644 index f1a0569b10..0000000000 --- a/packages/components/image-viewer/hooks/constants.ts +++ /dev/null @@ -1,9 +0,0 @@ -import type { ImageScale } from '../type'; - -/** ImageScale 的默认值,所有使用处应引用此常量,避免多处声明不一致 */ -export const DEFAULT_IMAGE_SCALE: ImageScale = { - max: 2, - min: 0.5, - step: 0.5, - defaultScale: 1, -}; diff --git a/packages/components/image-viewer/hooks/useImageScale.ts b/packages/components/image-viewer/hooks/useImageScale.ts index 3da44033f5..b5c02ac52a 100644 --- a/packages/components/image-viewer/hooks/useImageScale.ts +++ b/packages/components/image-viewer/hooks/useImageScale.ts @@ -1,5 +1,5 @@ +import { DEFAULT_IMAGE_SCALE } from '@tdesign/common-js/image-viewer/transform'; import { ImageScale } from '../type'; -import { DEFAULT_IMAGE_SCALE } from './constants'; const useImageScale = (imageScale?: Partial) => { // 合并默认值和用户设置 diff --git a/packages/components/image-viewer/hooks/useScale.ts b/packages/components/image-viewer/hooks/useScale.ts index f7dfc3709d..d1fdbf7889 100644 --- a/packages/components/image-viewer/hooks/useScale.ts +++ b/packages/components/image-viewer/hooks/useScale.ts @@ -1,9 +1,8 @@ import { useCallback, useRef, useState } from 'react'; import { throttle } from 'lodash-es'; -import { zoomIn, zoomOut, clampScale } from '@tdesign/common-js/image-viewer/transform'; +import { zoomIn, zoomOut, clampScale, DEFAULT_IMAGE_SCALE } from '@tdesign/common-js/image-viewer/transform'; import type { ZoomOptions, ZoomResult, TranslateOffset } from '@tdesign/common-js/image-viewer/transform'; import type { ImageScale } from '../type'; -import { DEFAULT_IMAGE_SCALE } from './constants'; // 从 common 包重新导出类型,保持向后兼容 export type { ZoomOptions, ZoomResult, TranslateOffset }; @@ -58,7 +57,7 @@ const useScale = (imageScale: ImageScale) => { ), ); - const onZoom = useCallback((zoomOptions?: ZoomOptions): ZoomResult => { + const onZoomIn = useCallback((zoomOptions?: ZoomOptions): ZoomResult => { zoomOptionsRef.current = zoomOptions; doZoomRef.current(); return lastZoomResultRef.current; @@ -91,13 +90,13 @@ const useScale = (imageScale: ImageScale) => { const [touch1, touch2] = Array.from(e.touches); const currentDistance = Math.hypot(touch2.pageX - touch1.pageX, touch2.pageY - touch1.pageY); if (currentDistance > distance.current) { - onZoom(); + onZoomIn(); } else { onZoomOut(); } distance.current = currentDistance; }, - [onZoom, onZoomOut], + [onZoomIn, onZoomOut], ); const onTouchEnd = useCallback(() => { @@ -106,7 +105,7 @@ const useScale = (imageScale: ImageScale) => { return { scale, - onZoom, + onZoomIn, onZoomOut, onResetScale, onTouchStart, From 621cd0b818591d5db54d7cf45bfb7288ad5588f3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=98=BF=E8=8F=9C=20Cai?= Date: Wed, 8 Apr 2026 14:28:09 +0800 Subject: [PATCH 13/27] =?UTF-8?q?fix(image-viewer):=20=E4=BF=AE=E5=A4=8D?= =?UTF-8?q?=E9=94=AE=E7=9B=98=E4=BA=8B=E4=BB=B6=E5=A4=84=E7=90=86=E9=97=AD?= =?UTF-8?q?=E5=8C=85=E9=99=B7=E9=98=B1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../image-viewer/ImageViewerModal.tsx | 36 +- .../__tests__/image-viewer.test.tsx | 41 +- test/snap/__snapshots__/csr.test.jsx.snap | 154849 ++++++++++++++- test/snap/__snapshots__/ssr.test.jsx.snap | 1276 + 4 files changed, 155541 insertions(+), 661 deletions(-) diff --git a/packages/components/image-viewer/ImageViewerModal.tsx b/packages/components/image-viewer/ImageViewerModal.tsx index 24760c2280..7ae5c7fd8c 100644 --- a/packages/components/image-viewer/ImageViewerModal.tsx +++ b/packages/components/image-viewer/ImageViewerModal.tsx @@ -595,28 +595,28 @@ export const ImageModal: React.FC = (props) => { imageItemRef.current?.resetPosition?.(); }, [onResetMirror, onResetScale, onResetRotate]); - const onKeyDown = useCallback( - (event) => { - switch (event.key) { - case 'ArrowRight': - return next(); - case 'ArrowLeft': - return prev(); - case 'ArrowUp': - return onZoomIn(); - case 'ArrowDown': - return onZoomOut(); - case 'Escape': - return closeOnEscKeydown && onClose?.({ trigger: 'esc', e: event }); - } - }, - [next, onClose, prev, onZoomIn, onZoomOut, closeOnEscKeydown], - ); + // 用 ref 保存最新的 handlers,避免 keydown listener 因闭包 stale 而丢失事件 + const keyHandlersRef = useRef({ next, prev, onZoomIn, onZoomOut, onClose, closeOnEscKeydown }); + keyHandlersRef.current = { next, prev, onZoomIn, onZoomOut, onClose, closeOnEscKeydown }; + + const onKeyDown = useCallback((event: KeyboardEvent) => { + const handlers = keyHandlersRef.current; + const keyActionMap: Partial void>> = { + ArrowRight: () => handlers.next(), + ArrowLeft: () => handlers.prev(), + ArrowUp: () => handlers.onZoomIn(), + ArrowDown: () => handlers.onZoomOut(), + Escape: () => handlers.closeOnEscKeydown && handlers.onClose?.({ trigger: 'esc', e: event as any }), + }; + keyActionMap[event.key]?.(); + }, []); + // 弹窗可见时绑定键盘事件,关闭后解绑 useEffect(() => { + if (!visible) return; document.addEventListener('keydown', onKeyDown); return () => document.removeEventListener('keydown', onKeyDown); - }, [onKeyDown]); + }, [visible, onKeyDown]); useEffect(() => { onReset(); diff --git a/packages/components/image-viewer/__tests__/image-viewer.test.tsx b/packages/components/image-viewer/__tests__/image-viewer.test.tsx index 29dbb0a038..e07d5c6c38 100644 --- a/packages/components/image-viewer/__tests__/image-viewer.test.tsx +++ b/packages/components/image-viewer/__tests__/image-viewer.test.tsx @@ -146,22 +146,26 @@ describe('ImageViewerModal', () => { }; const { getByText } = render(); - // 模拟鼠标点击 + // 打开弹窗 act(() => { fireEvent.click(getByText(triggerText)); }); - // 模拟键盘事件 - await user.type(document.body, '{Escape}'); - expect(onClose).toHaveBeenCalledTimes(1); - + // 键盘切图 await user.type(document.body, '{ArrowRight}'); expect(onIndexChange).toHaveBeenCalledTimes(1); await user.type(document.body, '{ArrowLeft}'); expect(onIndexChange).toHaveBeenCalledTimes(2); - // 鼠标点击遮罩 + // ESC 关闭 + await user.type(document.body, '{Escape}'); + expect(onClose).toHaveBeenCalledTimes(1); + + // 重新打开,点遮罩关闭 + act(() => { + fireEvent.click(getByText(triggerText)); + }); const mask = await waitFor(() => document.querySelector('.t-image-viewer__modal-mask')); act(() => { fireEvent.click(mask); @@ -169,6 +173,31 @@ describe('ImageViewerModal', () => { expect(onClose).toHaveBeenCalledTimes(2); }); + test('keyboard events are disabled after modal closes', async () => { + const user = userEvent.setup(); + const onIndexChange = vi.fn(); + const BasicImageViewer = () => { + const trigger = ({ open }) => open()}>{triggerText}; + return ; + }; + const { getByText } = render(); + + // 打开弹窗,按方向键切图 + act(() => { + fireEvent.click(getByText(triggerText)); + }); + await user.type(document.body, '{ArrowRight}'); + expect(onIndexChange).toHaveBeenCalledTimes(1); + + // ESC 关闭弹窗 + await user.type(document.body, '{Escape}'); + + // 关闭后键盘操作不应再触发 onIndexChange + await user.type(document.body, '{ArrowRight}'); + await user.type(document.body, '{ArrowLeft}'); + expect(onIndexChange).toHaveBeenCalledTimes(1); + }); + test('single', async () => { const user = userEvent.setup(); const BasicImageViewer = () => { diff --git a/test/snap/__snapshots__/csr.test.jsx.snap b/test/snap/__snapshots__/csr.test.jsx.snap index 46f2720573..e64772c567 100644 --- a/test/snap/__snapshots__/csr.test.jsx.snap +++ b/test/snap/__snapshots__/csr.test.jsx.snap @@ -152299,1278 +152299,154853 @@ 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`] = ` +
+
+
+ +
+
+
+
+
+
+ + 严格模式 + +
+
+ +
+
+
+
+
+
+ + 允许多个节点同时高亮 + +
+
+ +
+
+
+
+
+
+ + 插入节点使用高亮节点 + +
+
+ +
+
+
+
+
+
+ + 子节点展开触发父节点展开 + +
+
+ +
+
+
+
+
+
+
+
+
+ + + filter: + + +
+
+ +
+
+
+
+
+
+
+
+ 暂无数据 +
+
+
+
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+
+
+
+
+ + * 相关信息通过控制台输出 + +
+
+
+
+
+`; + +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`] = `"
    onlyLeaf
    请选择
    parentFirst
    请选择
    all
    请选择
    "`; + +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`] = `"
    写法一:使用 options
    选中值: 广州
    写法二:使用插槽
    选中值: 上海
    "`; + +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
              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
              "`; + +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/range.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`] = `"
              "`; + +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/size.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`] = `"
              preview
              图片加载中
              预览
              "`; + +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`] = `"
              preview
              图片加载中
              预览
              "`; + +exports[`ssr snapshot test > ssr test packages/components/image-viewer/_example/block.tsx 1`] = `"
              preview
              图片加载中
              预览
              preview
              图片加载中
              预览
              "`; + +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`] = `"
              preview
              图片加载中
              预览
              preview
              图片加载中
              预览
              preview
              图片加载中
              预览
              preview
              图片加载中
              预览
              "`; + +exports[`ssr snapshot test > ssr test packages/components/image-viewer/_example/modeless.tsx 1`] = `"
              preview
              图片加载中
              预览
              "`; + +exports[`ssr snapshot test > ssr test packages/components/image-viewer/_example/multiple.tsx 1`] = `"
              preview
              图片加载中
              预览
              preview
              图片加载中
              预览
              preview
              图片加载中
              预览
              "`; + +exports[`ssr snapshot test > ssr test packages/components/image-viewer/_example/svg.tsx 1`] = `"
              preview
              图片加载中
              预览
              "`; + +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`] = `"
                  Hover me
                  "`; + +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`] = `"
                  默认
                  默认样式
                  10%
                  不显示数字
                  自定义内容
                  10day
                  进度状态完成
                  进度状态发生重大错误
                  进度状态被中断
                  默认不同尺寸
                  小尺寸
                  30%
                  默认尺寸
                  30%
                  大尺寸
                  75%
                  "`; + +exports[`ssr snapshot test > ssr test packages/components/progress/_example/line.tsx 1`] = `"

                  动态更新示例

                  进度正常更新
                  10%
                  不显示数字
                  自定义内容
                  自定义文本

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

                  默认样式
                  30%
                  100%
                  进度状态完成
                  进度状态发生重大错误
                  进度状态被中断
                  渐变色
                  60%

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

                  默认样式
                  30%
                  进度条内部宽度不足以展示其内容时,该内容会自动显示在进度条右侧
                  当前进度为:10%
                  "`; + +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`] = `"
                  卡片缩放比例
                  Default
                  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`] = `"
                  onlyLeaf
                  请选择
                  parentFirst
                  请选择
                  all
                  请选择
                  "`; +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`] = `"
                  写法一:使用 options
                  选中值: 广州
                  写法二:使用插槽
                  选中值: 上海
                  "`; +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
                  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/color-picker/_example/trigger.tsx 1`] = `"
                            #0052d9
                            "`; +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`] = `"
                            严格模式
                            允许多个节点同时高亮
                            插入节点使用高亮节点
                            子节点展开触发父节点展开
                            filter:
                            暂无数据
                            * 相关信息通过控制台输出
                            "`; + +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`] = `"
                            onlyLeaf
                            请选择
                            parentFirst
                            请选择
                            all
                            请选择
                            "`; + +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`] = `"
                            写法一:使用 options
                            选中值: 广州
                            写法二:使用插槽
                            选中值: 上海
                            "`; + +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\\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
                                      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
                                      "`; +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
                                      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
                                      "`; -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/range.tsx 1`] = `"
                                      -
                                      -
                                      -
                                      -
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\date-picker\\_example\\range.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`] = `"
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\dialog\\_example\\modal.tsx 1`] = `"
                                      "`; -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/size.tsx 1`] = `"

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

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

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

                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\divider\\_example\\size.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`] = `"
                                      preview
                                      图片加载中
                                      预览
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\image-viewer\\_example\\album.tsx 1`] = `"
                                      preview
                                      图片加载中
                                      预览
                                      "`; -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`] = `"
                                      preview
                                      图片加载中
                                      预览
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\image-viewer\\_example\\base.tsx 1`] = `"
                                      preview
                                      图片加载中
                                      预览
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/image-viewer/_example/block.tsx 1`] = `"
                                      preview
                                      图片加载中
                                      预览
                                      preview
                                      图片加载中
                                      预览
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\image-viewer\\_example\\block.tsx 1`] = `"
                                      preview
                                      图片加载中
                                      预览
                                      preview
                                      图片加载中
                                      预览
                                      "`; -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`] = `"
                                      preview
                                      图片加载中
                                      预览
                                      preview
                                      图片加载中
                                      预览
                                      preview
                                      图片加载中
                                      预览
                                      preview
                                      图片加载中
                                      预览
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\image-viewer\\_example\\error.tsx 1`] = `"
                                      preview
                                      图片加载中
                                      预览
                                      preview
                                      图片加载中
                                      预览
                                      preview
                                      图片加载中
                                      预览
                                      preview
                                      图片加载中
                                      预览
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/image-viewer/_example/modeless.tsx 1`] = `"
                                      preview
                                      图片加载中
                                      预览
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\image-viewer\\_example\\modeless.tsx 1`] = `"
                                      preview
                                      图片加载中
                                      预览
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/image-viewer/_example/multiple.tsx 1`] = `"
                                      preview
                                      图片加载中
                                      预览
                                      preview
                                      图片加载中
                                      预览
                                      preview
                                      图片加载中
                                      预览
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\image-viewer\\_example\\multiple.tsx 1`] = `"
                                      preview
                                      图片加载中
                                      预览
                                      preview
                                      图片加载中
                                      预览
                                      preview
                                      图片加载中
                                      预览
                                      "`; -exports[`ssr snapshot test > ssr test packages/components/image-viewer/_example/svg.tsx 1`] = `"
                                      preview
                                      图片加载中
                                      预览
                                      "`; +exports[`ssr snapshot test > ssr test packages\\components\\image-viewer\\_example\\svg.tsx 1`] = `"
                                      preview
                                      图片加载中
                                      预览
                                      "`; -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`] = `"
                                              Hover me
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\popup\\_example\\base.tsx 1`] = `"
                                              Hover me
                                              "`; -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`] = `"
                                              默认
                                              默认样式
                                              10%
                                              不显示数字
                                              自定义内容
                                              10day
                                              进度状态完成
                                              进度状态发生重大错误
                                              进度状态被中断
                                              默认不同尺寸
                                              小尺寸
                                              30%
                                              默认尺寸
                                              30%
                                              大尺寸
                                              75%
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\progress\\_example\\circle.tsx 1`] = `"
                                              默认
                                              默认样式
                                              10%
                                              不显示数字
                                              自定义内容
                                              10day
                                              进度状态完成
                                              进度状态发生重大错误
                                              进度状态被中断
                                              默认不同尺寸
                                              小尺寸
                                              30%
                                              默认尺寸
                                              30%
                                              大尺寸
                                              75%
                                              "`; -exports[`ssr snapshot test > ssr test packages/components/progress/_example/line.tsx 1`] = `"

                                              动态更新示例

                                              进度正常更新
                                              10%
                                              不显示数字
                                              自定义内容
                                              自定义文本

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

                                              默认样式
                                              30%
                                              100%
                                              进度状态完成
                                              进度状态发生重大错误
                                              进度状态被中断
                                              渐变色
                                              60%

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

                                              默认样式
                                              30%
                                              进度条内部宽度不足以展示其内容时,该内容会自动显示在进度条右侧
                                              当前进度为:10%
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\progress\\_example\\line.tsx 1`] = `"

                                              动态更新示例

                                              进度正常更新
                                              10%
                                              不显示数字
                                              自定义内容
                                              自定义文本

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

                                              默认样式
                                              30%
                                              100%
                                              进度状态完成
                                              进度状态发生重大错误
                                              进度状态被中断
                                              渐变色
                                              60%

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

                                              默认样式
                                              30%
                                              进度条内部宽度不足以展示其内容时,该内容会自动显示在进度条右侧
                                              当前进度为:10%
                                              "`; -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`] = `"
                                              卡片缩放比例
                                              Default
                                              1
                                              2
                                              3
                                              4
                                              5
                                              6
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\swiper\\_example\\card.tsx 1`] = `"
                                              卡片缩放比例
                                              Default
                                              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
                                              0/20
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\textarea\\_example\\maxlength.tsx 1`] = `"
                                              这里可以放一些提示文字
                                              0/20
                                              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`] = `"
                                              严格模式
                                              允许多个节点同时高亮
                                              插入节点使用高亮节点
                                              子节点展开触发父节点展开
                                              filter:
                                              暂无数据
                                              * 相关信息通过控制台输出
                                              "`; +exports[`ssr snapshot test > ssr test packages\\components\\tree\\_example\\operations.tsx 1`] = `"
                                              严格模式
                                              允许多个节点同时高亮
                                              插入节点使用高亮节点
                                              子节点展开触发父节点展开
                                              filter:
                                              暂无数据
                                              * 相关信息通过控制台输出
                                              "`; -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 c443d09028..c03a6f3750 100644 --- a/test/snap/__snapshots__/ssr.test.jsx.snap +++ b/test/snap/__snapshots__/ssr.test.jsx.snap @@ -1275,3 +1275,1279 @@ 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`] = `"
                                              onlyLeaf
                                              请选择
                                              parentFirst
                                              请选择
                                              all
                                              请选择
                                              "`; + +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`] = `"
                                              写法一:使用 options
                                              选中值: 广州
                                              写法二:使用插槽
                                              选中值: 上海
                                              "`; + +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
                                                        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
                                                        "`; + +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\\range.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`] = `"
                                                        "`; + +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\\size.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`] = `"
                                                        preview
                                                        图片加载中
                                                        预览
                                                        "`; + +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`] = `"
                                                        preview
                                                        图片加载中
                                                        预览
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\image-viewer\\_example\\block.tsx 1`] = `"
                                                        preview
                                                        图片加载中
                                                        预览
                                                        preview
                                                        图片加载中
                                                        预览
                                                        "`; + +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`] = `"
                                                        preview
                                                        图片加载中
                                                        预览
                                                        preview
                                                        图片加载中
                                                        预览
                                                        preview
                                                        图片加载中
                                                        预览
                                                        preview
                                                        图片加载中
                                                        预览
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\image-viewer\\_example\\modeless.tsx 1`] = `"
                                                        preview
                                                        图片加载中
                                                        预览
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\image-viewer\\_example\\multiple.tsx 1`] = `"
                                                        preview
                                                        图片加载中
                                                        预览
                                                        preview
                                                        图片加载中
                                                        预览
                                                        preview
                                                        图片加载中
                                                        预览
                                                        "`; + +exports[`ssr snapshot test > ssr test packages\\components\\image-viewer\\_example\\svg.tsx 1`] = `"
                                                        preview
                                                        图片加载中
                                                        预览
                                                        "`; + +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`] = `"
                                                            Hover me
                                                            "`; + +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`] = `"
                                                            默认
                                                            默认样式
                                                            10%
                                                            不显示数字
                                                            自定义内容
                                                            10day
                                                            进度状态完成
                                                            进度状态发生重大错误
                                                            进度状态被中断
                                                            默认不同尺寸
                                                            小尺寸
                                                            30%
                                                            默认尺寸
                                                            30%
                                                            大尺寸
                                                            75%
                                                            "`; + +exports[`ssr snapshot test > ssr test packages\\components\\progress\\_example\\line.tsx 1`] = `"

                                                            动态更新示例

                                                            进度正常更新
                                                            10%
                                                            不显示数字
                                                            自定义内容
                                                            自定义文本

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

                                                            默认样式
                                                            30%
                                                            100%
                                                            进度状态完成
                                                            进度状态发生重大错误
                                                            进度状态被中断
                                                            渐变色
                                                            60%

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

                                                            默认样式
                                                            30%
                                                            进度条内部宽度不足以展示其内容时,该内容会自动显示在进度条右侧
                                                            当前进度为:10%
                                                            "`; + +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`] = `"
                                                            卡片缩放比例
                                                            Default
                                                            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
                                                            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`] = `"
                                                            严格模式
                                                            允许多个节点同时高亮
                                                            插入节点使用高亮节点
                                                            子节点展开触发父节点展开
                                                            filter:
                                                            暂无数据
                                                            * 相关信息通过控制台输出
                                                            "`; + +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 d4f7dca3a5b591a518dbe6eaccb25eb85713a77e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=98=BF=E8=8F=9C=20Cai?= Date: Mon, 13 Apr 2026 14:41:53 +0800 Subject: [PATCH 14/27] =?UTF-8?q?fix(image-viewer):=20=E4=BC=98=E5=8C=96?= =?UTF-8?q?=E6=8B=96=E6=8B=BD=E7=8A=B6=E6=80=81=E8=BF=BD=E8=B8=AA=E4=B8=8E?= =?UTF-8?q?=E7=BC=A9=E6=94=BE=E9=80=BB=E8=BE=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../image-viewer/ImageViewerModal.tsx | 17 +++++++++++++---- .../components/image-viewer/hooks/useScale.ts | 13 +++++++------ 2 files changed, 20 insertions(+), 10 deletions(-) diff --git a/packages/components/image-viewer/ImageViewerModal.tsx b/packages/components/image-viewer/ImageViewerModal.tsx index 7ae5c7fd8c..44d77df4e1 100644 --- a/packages/components/image-viewer/ImageViewerModal.tsx +++ b/packages/components/image-viewer/ImageViewerModal.tsx @@ -39,8 +39,8 @@ export interface ImageModalItemRef { setPosition: React.Dispatch>; /** 重置位移 */ resetPosition: () => void; - /** 是否正在拖拽 */ - isDragging: boolean; + /** 是否正在拖拽(ref,始终最新) */ + isDraggingRef: React.RefObject; /** 启用向中心缩放动画(CSS 类名驱动) */ enableTransition: () => void; } @@ -103,6 +103,9 @@ export const ImageModalItem = React.forwardRef void) | null>(null); + const fallbackTimerRef = useRef>(); // 清理监听器和类名 const cleanupTransition = useCallback(() => { @@ -124,6 +128,7 @@ export const ImageModalItem = React.forwardRef { if (e.propertyName !== 'transform') return; cleanupTransition(); @@ -155,10 +164,10 @@ export const ImageModalItem = React.forwardRef { diff --git a/packages/components/image-viewer/hooks/useScale.ts b/packages/components/image-viewer/hooks/useScale.ts index d1fdbf7889..465333cbd0 100644 --- a/packages/components/image-viewer/hooks/useScale.ts +++ b/packages/components/image-viewer/hooks/useScale.ts @@ -14,18 +14,13 @@ const useScale = (imageScale: ImageScale) => { const distance = useRef(0); const [scale, setScale] = useState(calcDefaultScale()); - // 用 ref 追踪最新的 scale 值,以便同步计算位移补偿 const scaleRef = useRef(scale); - - // 存储上一次缩放的结果,供节流后同步返回 const lastZoomResultRef = useRef({}); - // 用 ref 追踪最新的 imageScale 参数,供 throttle 闭包读取 const paramsRef = useRef({ step, min, max }); paramsRef.current = { step, min, max }; - // 节流内部实现(50ms 间隔),与 Vue 版本保持一致 - // 通过闭包直接引用 scaleRef / paramsRef,避免作为参数传入触发 no-param-reassign + // --- 节流(50ms,leading-only):防止高频滚轮/触摸过度触发 --- const zoomOptionsRef = useRef(); const doZoomRef = useRef( @@ -59,13 +54,19 @@ const useScale = (imageScale: ImageScale) => { const onZoomIn = useCallback((zoomOptions?: ZoomOptions): ZoomResult => { zoomOptionsRef.current = zoomOptions; + const prevScale = scaleRef.current; doZoomRef.current(); + // 被节流丢弃或已达边界 → 返回空结果,避免调用方使用过期的位移数据 + if (scaleRef.current === prevScale) return {}; return lastZoomResultRef.current; }, []); const onZoomOut = useCallback((zoomOptions?: ZoomOptions): ZoomResult => { zoomOutOptionsRef.current = zoomOptions; + const prevScale = scaleRef.current; doZoomOutRef.current(); + // 被节流丢弃或已达边界 → 返回空结果,避免调用方使用过期的位移数据 + if (scaleRef.current === prevScale) return {}; return lastZoomResultRef.current; }, []); From e843a00c2d5cb1a0e25f8426018ecfc6b7a18be6 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Wed, 13 May 2026 08:26:47 +0000 Subject: [PATCH 15/27] chore: update common --- packages/common | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/common b/packages/common index c698a0ef12..1aedcceec7 160000 --- a/packages/common +++ b/packages/common @@ -1 +1 @@ -Subproject commit c698a0ef12b8712130586d3ed0bc39c652d16571 +Subproject commit 1aedcceec7610f868a8e19694cd287c24747fd29 From 26c7d485ba6f23ea99c0ffe2e5cde2f912e2c7aa Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Wed, 13 May 2026 09:09:21 +0000 Subject: [PATCH 16/27] chore: update snapshot --- test/snap/__snapshots__/csr.test.jsx.snap | 154853 +------------------ test/snap/__snapshots__/ssr.test.jsx.snap | 1276 - 2 files changed, 639 insertions(+), 155490 deletions(-) diff --git a/test/snap/__snapshots__/csr.test.jsx.snap b/test/snap/__snapshots__/csr.test.jsx.snap index ae33abd0fd..c6093addf3 100644 --- a/test/snap/__snapshots__/csr.test.jsx.snap +++ b/test/snap/__snapshots__/csr.test.jsx.snap @@ -152705,154855 +152705,1280 @@ 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`] = ` -
                                                            -
                                                            -
                                                            - -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - - 严格模式 - -
                                                            -
                                                            - -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - - 允许多个节点同时高亮 - -
                                                            -
                                                            - -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - - 插入节点使用高亮节点 - -
                                                            -
                                                            - -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - - 子节点展开触发父节点展开 - -
                                                            -
                                                            - -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - - - filter: - - -
                                                            -
                                                            - -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - 暂无数据 -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - -
                                                            -
                                                            - -
                                                            -
                                                            - -
                                                            -
                                                            - -
                                                            -
                                                            - -
                                                            -
                                                            - -
                                                            -
                                                            - -
                                                            -
                                                            - -
                                                            -
                                                            - -
                                                            -
                                                            - -
                                                            -
                                                            - -
                                                            -
                                                            - -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            - - * 相关信息通过控制台输出 - -
                                                            -
                                                            -
                                                            -
                                                            -
                                                            -`; - -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/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`] = `"
                                                              onlyLeaf
                                                              请选择
                                                              parentFirst
                                                              请选择
                                                              all
                                                              请选择
                                                              "`; - -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`] = `"
                                                              写法一:使用 options
                                                              选中值: 广州
                                                              写法二:使用插槽
                                                              选中值: 上海
                                                              "`; - -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-cell.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
                                                                        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
                                                                        "`; - -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/range.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`] = `"
                                                                        "`; - -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/size.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`] = `"
                                                                        preview
                                                                        图片加载中
                                                                        预览
                                                                        "`; - -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`] = `"
                                                                        preview
                                                                        图片加载中
                                                                        预览
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages/components/image-viewer/_example/block.tsx 1`] = `"
                                                                        preview
                                                                        图片加载中
                                                                        预览
                                                                        preview
                                                                        图片加载中
                                                                        预览
                                                                        "`; - -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`] = `"
                                                                        preview
                                                                        图片加载中
                                                                        预览
                                                                        preview
                                                                        图片加载中
                                                                        预览
                                                                        preview
                                                                        图片加载中
                                                                        预览
                                                                        preview
                                                                        图片加载中
                                                                        预览
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages/components/image-viewer/_example/modeless.tsx 1`] = `"
                                                                        preview
                                                                        图片加载中
                                                                        预览
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages/components/image-viewer/_example/multiple.tsx 1`] = `"
                                                                        preview
                                                                        图片加载中
                                                                        预览
                                                                        preview
                                                                        图片加载中
                                                                        预览
                                                                        preview
                                                                        图片加载中
                                                                        预览
                                                                        "`; - -exports[`ssr snapshot test > ssr test packages/components/image-viewer/_example/svg.tsx 1`] = `"
                                                                        preview
                                                                        图片加载中
                                                                        预览
                                                                        "`; - -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`] = `"
                                                                            Hover me
                                                                            "`; - -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`] = `"
                                                                            默认
                                                                            默认样式
                                                                            10%
                                                                            不显示数字
                                                                            自定义内容
                                                                            10day
                                                                            进度状态完成
                                                                            进度状态发生重大错误
                                                                            进度状态被中断
                                                                            默认不同尺寸
                                                                            小尺寸
                                                                            30%
                                                                            默认尺寸
                                                                            30%
                                                                            大尺寸
                                                                            75%
                                                                            "`; - -exports[`ssr snapshot test > ssr test packages/components/progress/_example/line.tsx 1`] = `"

                                                                            动态更新示例

                                                                            进度正常更新
                                                                            10%
                                                                            不显示数字
                                                                            自定义内容
                                                                            自定义文本

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

                                                                            默认样式
                                                                            30%
                                                                            100%
                                                                            进度状态完成
                                                                            进度状态发生重大错误
                                                                            进度状态被中断
                                                                            渐变色
                                                                            60%

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

                                                                            默认样式
                                                                            30%
                                                                            进度条内部宽度不足以展示其内容时,该内容会自动显示在进度条右侧
                                                                            当前进度为:10%
                                                                            "`; - -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`] = `"
                                                                            卡片缩放比例
                                                                            Default
                                                                            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
                                                                            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`] = `"
                                                                            严格模式
                                                                            允许多个节点同时高亮
                                                                            插入节点使用高亮节点
                                                                            子节点展开触发父节点展开
                                                                            filter:
                                                                            暂无数据
                                                                            * 相关信息通过控制台输出
                                                                            "`; - -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\\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\\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\\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\\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\\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\\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\\swiper.tsx 1`] = `"
                                                                            这是一条成功的消息提示
                                                                            这是一条普通的消息提示
                                                                            这是一条警示消息
                                                                            高危操作/出错信息提示
                                                                            "`; +exports[`ssr snapshot test > ssr test packages/components/alert/_example/title.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\\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\\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\\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\\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\\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\\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\\small.tsx 1`] = `""`; +exports[`ssr snapshot test > ssr test packages/components/anchor/_example/target.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\\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\\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\\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\\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\\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\\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\\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\\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.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-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\\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\\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\\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\\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\\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\\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\\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\\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\\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\\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\\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\\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\\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\\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\\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\\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\\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.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
                                                                            "`; -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\\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\\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\\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\\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\\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\\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\\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\\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\\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\\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`] = `"
                                                                            "`; -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\\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\\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.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\\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\\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\\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\\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\\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\\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\\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\\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\\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\\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\\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\\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.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\\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\\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.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-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.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\\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.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-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-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-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-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.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\\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\\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\\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\\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\\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\\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\\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\\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\\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\\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\\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\\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\\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\\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\\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\\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-display.tsx 1`] = `"
                                                                            单选:
                                                                            (2.2)
                                                                            多选:
                                                                            请选择
                                                                            "`; +exports[`ssr snapshot test > ssr test packages/components/cascader/_example/value-mode.tsx 1`] = `"
                                                                            onlyLeaf
                                                                            请选择
                                                                            parentFirst
                                                                            请选择
                                                                            all
                                                                            请选择
                                                                            "`; -exports[`ssr snapshot test > ssr test packages\\components\\cascader\\_example\\value-mode.tsx 1`] = `"
                                                                            onlyLeaf
                                                                            请选择
                                                                            parentFirst
                                                                            请选择
                                                                            all
                                                                            请选择
                                                                            "`; +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\\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\\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\\controlled.tsx 1`] = `"
                                                                            "`; +exports[`ssr snapshot test > ssr test packages/components/checkbox/_example/group.tsx 1`] = `"
                                                                            写法一:使用 options
                                                                            选中值: 广州
                                                                            写法二:使用插槽
                                                                            选中值: 上海
                                                                            "`; -exports[`ssr snapshot test > ssr test packages\\components\\checkbox\\_example\\group.tsx 1`] = `"
                                                                            写法一:使用 options
                                                                            选中值: 广州
                                                                            写法二:使用插槽
                                                                            选中值: 上海
                                                                            "`; +exports[`ssr snapshot test > ssr test packages/components/checkbox/_example/link.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\\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\\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\\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\\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\\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\\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\\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\\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\\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\\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-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\\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\\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-cell.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
                                                                                                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
                                                                                                "`; +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
                                                                                                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
                                                                                                "`; -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\\range.tsx 1`] = `"
                                                                                                -
                                                                                                -
                                                                                                -
                                                                                                -
                                                                                                "`; +exports[`ssr snapshot test > ssr test packages/components/date-picker/_example/range.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`] = `"
                                                                                                "`; +exports[`ssr snapshot test > ssr test packages/components/dialog/_example/modal.tsx 1`] = `"
                                                                                                "`; -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\\size.tsx 1`] = `"

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

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

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

                                                                                                "`; +exports[`ssr snapshot test > ssr test packages/components/divider/_example/size.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`] = `"
                                                                                                preview
                                                                                                图片加载中
                                                                                                预览
                                                                                                "`; +exports[`ssr snapshot test > ssr test packages/components/image-viewer/_example/album.tsx 1`] = `"
                                                                                                preview
                                                                                                图片加载中
                                                                                                预览
                                                                                                "`; -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`] = `"
                                                                                                preview
                                                                                                图片加载中
                                                                                                预览
                                                                                                "`; +exports[`ssr snapshot test > ssr test packages/components/image-viewer/_example/base.tsx 1`] = `"
                                                                                                preview
                                                                                                图片加载中
                                                                                                预览
                                                                                                "`; -exports[`ssr snapshot test > ssr test packages\\components\\image-viewer\\_example\\block.tsx 1`] = `"
                                                                                                preview
                                                                                                图片加载中
                                                                                                预览
                                                                                                preview
                                                                                                图片加载中
                                                                                                预览
                                                                                                "`; +exports[`ssr snapshot test > ssr test packages/components/image-viewer/_example/block.tsx 1`] = `"
                                                                                                preview
                                                                                                图片加载中
                                                                                                预览
                                                                                                preview
                                                                                                图片加载中
                                                                                                预览
                                                                                                "`; -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`] = `"
                                                                                                preview
                                                                                                图片加载中
                                                                                                预览
                                                                                                preview
                                                                                                图片加载中
                                                                                                预览
                                                                                                preview
                                                                                                图片加载中
                                                                                                预览
                                                                                                preview
                                                                                                图片加载中
                                                                                                预览
                                                                                                "`; +exports[`ssr snapshot test > ssr test packages/components/image-viewer/_example/error.tsx 1`] = `"
                                                                                                preview
                                                                                                图片加载中
                                                                                                预览
                                                                                                preview
                                                                                                图片加载中
                                                                                                预览
                                                                                                preview
                                                                                                图片加载中
                                                                                                预览
                                                                                                preview
                                                                                                图片加载中
                                                                                                预览
                                                                                                "`; -exports[`ssr snapshot test > ssr test packages\\components\\image-viewer\\_example\\modeless.tsx 1`] = `"
                                                                                                preview
                                                                                                图片加载中
                                                                                                预览
                                                                                                "`; +exports[`ssr snapshot test > ssr test packages/components/image-viewer/_example/modeless.tsx 1`] = `"
                                                                                                preview
                                                                                                图片加载中
                                                                                                预览
                                                                                                "`; -exports[`ssr snapshot test > ssr test packages\\components\\image-viewer\\_example\\multiple.tsx 1`] = `"
                                                                                                preview
                                                                                                图片加载中
                                                                                                预览
                                                                                                preview
                                                                                                图片加载中
                                                                                                预览
                                                                                                preview
                                                                                                图片加载中
                                                                                                预览
                                                                                                "`; +exports[`ssr snapshot test > ssr test packages/components/image-viewer/_example/multiple.tsx 1`] = `"
                                                                                                preview
                                                                                                图片加载中
                                                                                                预览
                                                                                                preview
                                                                                                图片加载中
                                                                                                预览
                                                                                                preview
                                                                                                图片加载中
                                                                                                预览
                                                                                                "`; -exports[`ssr snapshot test > ssr test packages\\components\\image-viewer\\_example\\svg.tsx 1`] = `"
                                                                                                preview
                                                                                                图片加载中
                                                                                                预览
                                                                                                "`; +exports[`ssr snapshot test > ssr test packages/components/image-viewer/_example/svg.tsx 1`] = `"
                                                                                                preview
                                                                                                图片加载中
                                                                                                预览
                                                                                                "`; -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`] = `"
                                                                                                        Hover me
                                                                                                        "`; +exports[`ssr snapshot test > ssr test packages/components/popup/_example/base.tsx 1`] = `"
                                                                                                        Hover me
                                                                                                        "`; -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`] = `"
                                                                                                        默认
                                                                                                        默认样式
                                                                                                        10%
                                                                                                        不显示数字
                                                                                                        自定义内容
                                                                                                        10day
                                                                                                        进度状态完成
                                                                                                        进度状态发生重大错误
                                                                                                        进度状态被中断
                                                                                                        默认不同尺寸
                                                                                                        小尺寸
                                                                                                        30%
                                                                                                        默认尺寸
                                                                                                        30%
                                                                                                        大尺寸
                                                                                                        75%
                                                                                                        "`; +exports[`ssr snapshot test > ssr test packages/components/progress/_example/circle.tsx 1`] = `"
                                                                                                        默认
                                                                                                        默认样式
                                                                                                        10%
                                                                                                        不显示数字
                                                                                                        自定义内容
                                                                                                        10day
                                                                                                        进度状态完成
                                                                                                        进度状态发生重大错误
                                                                                                        进度状态被中断
                                                                                                        默认不同尺寸
                                                                                                        小尺寸
                                                                                                        30%
                                                                                                        默认尺寸
                                                                                                        30%
                                                                                                        大尺寸
                                                                                                        75%
                                                                                                        "`; -exports[`ssr snapshot test > ssr test packages\\components\\progress\\_example\\line.tsx 1`] = `"

                                                                                                        动态更新示例

                                                                                                        进度正常更新
                                                                                                        10%
                                                                                                        不显示数字
                                                                                                        自定义内容
                                                                                                        自定义文本

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

                                                                                                        默认样式
                                                                                                        30%
                                                                                                        100%
                                                                                                        进度状态完成
                                                                                                        进度状态发生重大错误
                                                                                                        进度状态被中断
                                                                                                        渐变色
                                                                                                        60%

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

                                                                                                        默认样式
                                                                                                        30%
                                                                                                        进度条内部宽度不足以展示其内容时,该内容会自动显示在进度条右侧
                                                                                                        当前进度为:10%
                                                                                                        "`; +exports[`ssr snapshot test > ssr test packages/components/progress/_example/line.tsx 1`] = `"

                                                                                                        动态更新示例

                                                                                                        进度正常更新
                                                                                                        10%
                                                                                                        不显示数字
                                                                                                        自定义内容
                                                                                                        自定义文本

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

                                                                                                        默认样式
                                                                                                        30%
                                                                                                        100%
                                                                                                        进度状态完成
                                                                                                        进度状态发生重大错误
                                                                                                        进度状态被中断
                                                                                                        渐变色
                                                                                                        60%

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

                                                                                                        默认样式
                                                                                                        30%
                                                                                                        进度条内部宽度不足以展示其内容时,该内容会自动显示在进度条右侧
                                                                                                        当前进度为:10%
                                                                                                        "`; -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`] = `"
                                                                                                        卡片缩放比例
                                                                                                        Default
                                                                                                        1
                                                                                                        2
                                                                                                        3
                                                                                                        4
                                                                                                        5
                                                                                                        6
                                                                                                        "`; +exports[`ssr snapshot test > ssr test packages/components/swiper/_example/card.tsx 1`] = `"
                                                                                                        卡片缩放比例
                                                                                                        Default
                                                                                                        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
                                                                                                        0/20
                                                                                                        "`; +exports[`ssr snapshot test > ssr test packages/components/textarea/_example/maxlength.tsx 1`] = `"
                                                                                                        这里可以放一些提示文字
                                                                                                        0/20
                                                                                                        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`] = `"
                                                                                                        严格模式
                                                                                                        允许多个节点同时高亮
                                                                                                        插入节点使用高亮节点
                                                                                                        子节点展开触发父节点展开
                                                                                                        filter:
                                                                                                        暂无数据
                                                                                                        * 相关信息通过控制台输出
                                                                                                        "`; +exports[`ssr snapshot test > ssr test packages/components/tree/_example/operations.tsx 1`] = `"
                                                                                                        严格模式
                                                                                                        允许多个节点同时高亮
                                                                                                        插入节点使用高亮节点
                                                                                                        子节点展开触发父节点展开
                                                                                                        filter:
                                                                                                        暂无数据
                                                                                                        * 相关信息通过控制台输出
                                                                                                        "`; -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 4c0e873ed5..117fa12532 100644 --- a/test/snap/__snapshots__/ssr.test.jsx.snap +++ b/test/snap/__snapshots__/ssr.test.jsx.snap @@ -1277,1279 +1277,3 @@ 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`] = `"
                                                                                                        onlyLeaf
                                                                                                        请选择
                                                                                                        parentFirst
                                                                                                        请选择
                                                                                                        all
                                                                                                        请选择
                                                                                                        "`; - -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`] = `"
                                                                                                        写法一:使用 options
                                                                                                        选中值: 广州
                                                                                                        写法二:使用插槽
                                                                                                        选中值: 上海
                                                                                                        "`; - -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
                                                                                                                  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
                                                                                                                  "`; - -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\\range.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`] = `"
                                                                                                                  "`; - -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\\size.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`] = `"
                                                                                                                  preview
                                                                                                                  图片加载中
                                                                                                                  预览
                                                                                                                  "`; - -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`] = `"
                                                                                                                  preview
                                                                                                                  图片加载中
                                                                                                                  预览
                                                                                                                  "`; - -exports[`ssr snapshot test > ssr test packages\\components\\image-viewer\\_example\\block.tsx 1`] = `"
                                                                                                                  preview
                                                                                                                  图片加载中
                                                                                                                  预览
                                                                                                                  preview
                                                                                                                  图片加载中
                                                                                                                  预览
                                                                                                                  "`; - -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`] = `"
                                                                                                                  preview
                                                                                                                  图片加载中
                                                                                                                  预览
                                                                                                                  preview
                                                                                                                  图片加载中
                                                                                                                  预览
                                                                                                                  preview
                                                                                                                  图片加载中
                                                                                                                  预览
                                                                                                                  preview
                                                                                                                  图片加载中
                                                                                                                  预览
                                                                                                                  "`; - -exports[`ssr snapshot test > ssr test packages\\components\\image-viewer\\_example\\modeless.tsx 1`] = `"
                                                                                                                  preview
                                                                                                                  图片加载中
                                                                                                                  预览
                                                                                                                  "`; - -exports[`ssr snapshot test > ssr test packages\\components\\image-viewer\\_example\\multiple.tsx 1`] = `"
                                                                                                                  preview
                                                                                                                  图片加载中
                                                                                                                  预览
                                                                                                                  preview
                                                                                                                  图片加载中
                                                                                                                  预览
                                                                                                                  preview
                                                                                                                  图片加载中
                                                                                                                  预览
                                                                                                                  "`; - -exports[`ssr snapshot test > ssr test packages\\components\\image-viewer\\_example\\svg.tsx 1`] = `"
                                                                                                                  preview
                                                                                                                  图片加载中
                                                                                                                  预览
                                                                                                                  "`; - -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`] = `"
                                                                                                                      Hover me
                                                                                                                      "`; - -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`] = `"
                                                                                                                      默认
                                                                                                                      默认样式
                                                                                                                      10%
                                                                                                                      不显示数字
                                                                                                                      自定义内容
                                                                                                                      10day
                                                                                                                      进度状态完成
                                                                                                                      进度状态发生重大错误
                                                                                                                      进度状态被中断
                                                                                                                      默认不同尺寸
                                                                                                                      小尺寸
                                                                                                                      30%
                                                                                                                      默认尺寸
                                                                                                                      30%
                                                                                                                      大尺寸
                                                                                                                      75%
                                                                                                                      "`; - -exports[`ssr snapshot test > ssr test packages\\components\\progress\\_example\\line.tsx 1`] = `"

                                                                                                                      动态更新示例

                                                                                                                      进度正常更新
                                                                                                                      10%
                                                                                                                      不显示数字
                                                                                                                      自定义内容
                                                                                                                      自定义文本

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

                                                                                                                      默认样式
                                                                                                                      30%
                                                                                                                      100%
                                                                                                                      进度状态完成
                                                                                                                      进度状态发生重大错误
                                                                                                                      进度状态被中断
                                                                                                                      渐变色
                                                                                                                      60%

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

                                                                                                                      默认样式
                                                                                                                      30%
                                                                                                                      进度条内部宽度不足以展示其内容时,该内容会自动显示在进度条右侧
                                                                                                                      当前进度为:10%
                                                                                                                      "`; - -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`] = `"
                                                                                                                      卡片缩放比例
                                                                                                                      Default
                                                                                                                      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
                                                                                                                      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`] = `"
                                                                                                                      严格模式
                                                                                                                      允许多个节点同时高亮
                                                                                                                      插入节点使用高亮节点
                                                                                                                      子节点展开触发父节点展开
                                                                                                                      filter:
                                                                                                                      暂无数据
                                                                                                                      * 相关信息通过控制台输出
                                                                                                                      "`; - -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 a7df10ece11b08f41559e84ec95ba8492230e194 Mon Sep 17 00:00:00 2001 From: tdesign-bot Date: Wed, 13 May 2026 14:00:44 +0000 Subject: [PATCH 17/27] chore: stash changelog [ci skip] --- packages/tdesign-react/.changelog/pr-4184.md | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 packages/tdesign-react/.changelog/pr-4184.md diff --git a/packages/tdesign-react/.changelog/pr-4184.md b/packages/tdesign-react/.changelog/pr-4184.md new file mode 100644 index 0000000000..adb888e0a4 --- /dev/null +++ b/packages/tdesign-react/.changelog/pr-4184.md @@ -0,0 +1,6 @@ +--- +pr_number: 4184 +contributor: RSS1102 +--- + +- feat(ImageViewer): 优化 ImageViewer 的行为,支持视口之外的图片向中心缩放 @RSS1102 ([#4184](https://github.com/Tencent/tdesign-react/pull/4184)) From 4f3611d1cd601cee390316822d54ad2b81b9a63e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=98=BF=E8=8F=9C=20Cai?= Date: Wed, 13 May 2026 23:36:18 +0800 Subject: [PATCH 18/27] =?UTF-8?q?test(image-viewer):=20=E6=B7=BB=E5=8A=A0?= =?UTF-8?q?=E6=B5=8B=E8=AF=95=E5=BF=AB=E7=85=A7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../__snapshots__/hooks.test.tsx.snap | 27 + .../__snapshots__/image-viewer.test.tsx.snap | 7225 +++++++++++++++++ .../__snapshots__/utils.test.ts.snap | 54 + .../image-viewer/__tests__/hooks.test.tsx | 784 ++ .../__tests__/image-viewer.test.tsx | 317 + .../image-viewer/__tests__/transform.test.ts | 385 + .../image-viewer/__tests__/utils.test.ts | 295 + 7 files changed, 9087 insertions(+) create mode 100644 packages/components/image-viewer/__tests__/__snapshots__/hooks.test.tsx.snap create mode 100644 packages/components/image-viewer/__tests__/__snapshots__/image-viewer.test.tsx.snap create mode 100644 packages/components/image-viewer/__tests__/__snapshots__/utils.test.ts.snap create mode 100644 packages/components/image-viewer/__tests__/hooks.test.tsx create mode 100644 packages/components/image-viewer/__tests__/transform.test.ts create mode 100644 packages/components/image-viewer/__tests__/utils.test.ts diff --git a/packages/components/image-viewer/__tests__/__snapshots__/hooks.test.tsx.snap b/packages/components/image-viewer/__tests__/__snapshots__/hooks.test.tsx.snap new file mode 100644 index 0000000000..95729bf084 --- /dev/null +++ b/packages/components/image-viewer/__tests__/__snapshots__/hooks.test.tsx.snap @@ -0,0 +1,27 @@ +// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html + +exports[`usePosition > snapshot: default state > usePosition-default-state 1`] = ` +{ + "isDragging": false, + "position": [ + 0, + 0, + ], + "resetPosition": [Function], + "setPosition": [Function], +} +`; + +exports[`useViewerScale > snapshot: custom config > useViewerScale-custom 1`] = ` +{ + "minHeight": 480, + "minWidth": 600, +} +`; + +exports[`useViewerScale > snapshot: default config > useViewerScale-default 1`] = ` +{ + "minHeight": 1000, + "minWidth": 1000, +} +`; diff --git a/packages/components/image-viewer/__tests__/__snapshots__/image-viewer.test.tsx.snap b/packages/components/image-viewer/__tests__/__snapshots__/image-viewer.test.tsx.snap new file mode 100644 index 0000000000..85a8263240 --- /dev/null +++ b/packages/components/image-viewer/__tests__/__snapshots__/image-viewer.test.tsx.snap @@ -0,0 +1,7225 @@ +// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html + +exports[`ImageViewer snapshots > DefaultTrigger 多张图片默认触发器渲染快照 > image-viewer-default-trigger-multi 1`] = ` +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + preview +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + + + + + + +
                                                                                                                      +
                                                                                                                      + 图片加载中 +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + + + + + + + + 预览 + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +`; + +exports[`ImageViewer snapshots > DefaultTrigger 默认触发器渲染快照 > image-viewer-default-trigger 1`] = ` +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + preview +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + + + + + + +
                                                                                                                      +
                                                                                                                      + 图片加载中 +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + + + + + + + + 预览 + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +`; + +exports[`ImageViewer snapshots > attach 到指定容器 > image-viewer-attach-custom-container 1`] = ` +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + + + + + + + + + + + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + + + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + + + + + +
                                                                                                                      +
                                                                                                                      + + 100% + +
                                                                                                                      +
                                                                                                                      + + + + + + + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + + + + + + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + + + + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + + + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + image + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +`; + +exports[`ImageViewer snapshots > modeless 模式 > image-viewer-modeless 1`] = ` + +
                                                                                                                      + + 预览单张图片 + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + +
                                                                                                                      + + + + + + + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + image + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + +`; + +exports[`ImageViewer snapshots > modeless 模式 - 第二张图片 > image-viewer-modeless-second-image 1`] = ` + +
                                                                                                                      + + 预览单张图片 + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + +
                                                                                                                      + + + + + + + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + image + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + +`; + +exports[`ImageViewer snapshots > 不可拖拽 > image-viewer-not-draggable 1`] = ` + +
                                                                                                                      + + 预览单张图片 + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + + + + + + + + + + + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + + + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + + + + + +
                                                                                                                      +
                                                                                                                      + + 100% + +
                                                                                                                      +
                                                                                                                      + + + + + + + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + + + + + + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + + + + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + + + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + image + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + +`; + +exports[`ImageViewer snapshots > 关闭按钮为 false > image-viewer-close-btn-disabled 1`] = ` + +
                                                                                                                      + + 预览单张图片 + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + + + + + + + + + + + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + + + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + + + + + +
                                                                                                                      +
                                                                                                                      + + 100% + +
                                                                                                                      +
                                                                                                                      + + + + + + + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + + + + + + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + + + + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + image + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + +`; + +exports[`ImageViewer snapshots > 单张图片默认状态 > image-viewer-single-image-default 1`] = ` + +
                                                                                                                      + + 预览单张图片 + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + + + + + + + + + + + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + + + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + + + + + +
                                                                                                                      +
                                                                                                                      + + 100% + +
                                                                                                                      +
                                                                                                                      + + + + + + + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + + + + + + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + + + + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + + + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + image + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + +`; + +exports[`ImageViewer snapshots > 多张图片默认状态 > image-viewer-multi-image-default 1`] = ` + +
                                                                                                                      + + 预览单张图片 + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + + + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + + + + + + +
                                                                                                                      +
                                                                                                                      + 图片加载中 +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + + + + + + +
                                                                                                                      +
                                                                                                                      + 图片加载中 +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + + + + + + +
                                                                                                                      +
                                                                                                                      + 图片加载中 +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + 1/3 +
                                                                                                                      +
                                                                                                                      + + + + + +
                                                                                                                      +
                                                                                                                      + + + + + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + + + + + + + + + + + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + + + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + + + + + +
                                                                                                                      +
                                                                                                                      + + 100% + +
                                                                                                                      +
                                                                                                                      + + + + + + + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + + + + + + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + + + + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + + + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + image + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + +`; + +exports[`ImageViewer snapshots > 无遮罩层 > image-viewer-no-overlay 1`] = ` + +
                                                                                                                      + + 预览单张图片 + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + + + + + + + + + + + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + + + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + + + + + +
                                                                                                                      +
                                                                                                                      + + 100% + +
                                                                                                                      +
                                                                                                                      + + + + + + + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + + + + + + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + + + + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + + + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + image + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + +`; + +exports[`ImageViewer snapshots > 自定义 imageScale 配置 > image-viewer-custom-scale-config 1`] = ` + +
                                                                                                                      + + 预览单张图片 + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + + + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + + + + + + +
                                                                                                                      +
                                                                                                                      + 图片加载中 +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + + + + + + +
                                                                                                                      +
                                                                                                                      + 图片加载中 +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + 1/2 +
                                                                                                                      +
                                                                                                                      + + + + + +
                                                                                                                      +
                                                                                                                      + + + + + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + + + + + + + + + + + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + + + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + + + + + +
                                                                                                                      +
                                                                                                                      + + 200% + +
                                                                                                                      +
                                                                                                                      + + + + + + + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + + + + + + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + + + + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + + + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + image + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + +`; + +exports[`ImageViewer snapshots > 自定义 title > image-viewer-custom-title 1`] = ` + +
                                                                                                                      + + 预览单张图片 + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + + + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + + + + + + +
                                                                                                                      +
                                                                                                                      + 图片加载中 +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + + + + + + +
                                                                                                                      +
                                                                                                                      + 图片加载中 +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + 1/2 +
                                                                                                                      +
                                                                                                                      + + + + + +
                                                                                                                      +
                                                                                                                      + + + + + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + + + + + + + + + + + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + + + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + + + + + +
                                                                                                                      +
                                                                                                                      + + 100% + +
                                                                                                                      +
                                                                                                                      + + + + + + + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + + + + + + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + + + + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + + + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + image + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + +`; + +exports[`ImageViewer snapshots > 自定义关闭按钮 > image-viewer-custom-close-btn 1`] = ` + +
                                                                                                                      + + 预览单张图片 + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + + + + + + + + + + + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + + + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + + + + + +
                                                                                                                      +
                                                                                                                      + + 100% + +
                                                                                                                      +
                                                                                                                      + + + + + + + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + + + + + + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + + + + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + ✕ + +
                                                                                                                      +
                                                                                                                      + image + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + +`; + +exports[`ImageViewer toolbar event snapshots > 多图导航:上一张/下一张按钮快照 > toolbar-navigate-next 1`] = ` + +
                                                                                                                      + + 工具栏测试 + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + + + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + + + + + + +
                                                                                                                      +
                                                                                                                      + 图片加载中 +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + + + + + + +
                                                                                                                      +
                                                                                                                      + 图片加载中 +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + + + + + + +
                                                                                                                      +
                                                                                                                      + 图片加载中 +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + 2/3 +
                                                                                                                      +
                                                                                                                      + + + + + +
                                                                                                                      +
                                                                                                                      + + + + + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + + + + + + + + + + + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + + + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + + + + + +
                                                                                                                      +
                                                                                                                      + + 100% + +
                                                                                                                      +
                                                                                                                      + + + + + + + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + + + + + + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + + + + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + + + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + image + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + +`; + +exports[`ImageViewer toolbar event snapshots > 多图导航:上一张/下一张按钮快照 > toolbar-navigate-prev 1`] = ` + +
                                                                                                                      + + 工具栏测试 + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + + + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + + + + + + +
                                                                                                                      +
                                                                                                                      + 图片加载中 +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + + + + + + +
                                                                                                                      +
                                                                                                                      + 图片加载中 +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + + + + + + +
                                                                                                                      +
                                                                                                                      + 图片加载中 +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + 2/3 +
                                                                                                                      +
                                                                                                                      + + + + + +
                                                                                                                      +
                                                                                                                      + + + + + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + + + + + + + + + + + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + + + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + + + + + +
                                                                                                                      +
                                                                                                                      + + 100% + +
                                                                                                                      +
                                                                                                                      + + + + + + + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + + + + + + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + + + + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + + + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + image + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + +`; + +exports[`ImageViewer toolbar event snapshots > 点击原始大小按钮后快照 > toolbar-after-reset 1`] = ` + +
                                                                                                                      + + 工具栏测试 + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + + + + + + + + + + + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + + + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + + + + + +
                                                                                                                      +
                                                                                                                      + + 100% + +
                                                                                                                      +
                                                                                                                      + + + + + + + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + + + + + + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + + + + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + + + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + image + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + +`; + +exports[`ImageViewer toolbar event snapshots > 点击放大按钮后快照 > toolbar-after-zoom-in 1`] = ` + +
                                                                                                                      + + 工具栏测试 + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + + + + + + + + + + + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + + + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + + + + + +
                                                                                                                      +
                                                                                                                      + + 100% + +
                                                                                                                      +
                                                                                                                      + + + + + + + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + + + + + + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + + + + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + + + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + image + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + +`; + +exports[`ImageViewer toolbar event snapshots > 点击旋转按钮后快照 > toolbar-after-rotate 1`] = ` + +
                                                                                                                      + + 工具栏测试 + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + + + + + + + + + + + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + + + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + + + + + +
                                                                                                                      +
                                                                                                                      + + 100% + +
                                                                                                                      +
                                                                                                                      + + + + + + + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + + + + + + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + + + + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + + + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + image + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + +`; + +exports[`ImageViewer toolbar event snapshots > 点击缩小按钮后快照 > toolbar-after-zoom-out 1`] = ` + +
                                                                                                                      + + 工具栏测试 + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + + + + + + + + + + + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + + + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + + + + + +
                                                                                                                      +
                                                                                                                      + + 100% + +
                                                                                                                      +
                                                                                                                      + + + + + + + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + + + + + + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + + + + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + + + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + image + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + +`; + +exports[`ImageViewer toolbar event snapshots > 点击镜像按钮后快照 > toolbar-after-mirror 1`] = ` + +
                                                                                                                      + + 工具栏测试 + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + + + + + + + + + + + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + + + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + + + + + +
                                                                                                                      +
                                                                                                                      + + 100% + +
                                                                                                                      +
                                                                                                                      + + + + + + + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + + + + + + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + + + + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + + + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + image + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + +`; diff --git a/packages/components/image-viewer/__tests__/__snapshots__/utils.test.ts.snap b/packages/components/image-viewer/__tests__/__snapshots__/utils.test.ts.snap new file mode 100644 index 0000000000..04a35d5f2c --- /dev/null +++ b/packages/components/image-viewer/__tests__/__snapshots__/utils.test.ts.snap @@ -0,0 +1,54 @@ +// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html + +exports[`formatImages snapshots > ImageInfo objects snapshot > formatImages-image-info-array 1`] = ` +[ + { + "download": true, + "mainImage": "main1.jpg", + "thumbnail": "thumb1.jpg", + }, + { + "download": false, + "isSvg": true, + "mainImage": "main2.jpg", + "thumbnail": "main2.jpg", + }, +] +`; + +exports[`formatImages snapshots > empty array snapshot > formatImages-empty 1`] = `[]`; + +exports[`formatImages snapshots > mixed array snapshot > formatImages-mixed-array 1`] = ` +[ + { + "download": true, + "mainImage": "simple.jpg", + "thumbnail": "simple.jpg", + }, + { + "download": true, + "mainImage": "complex.jpg", + "thumbnail": "complex-thumb.jpg", + }, +] +`; + +exports[`formatImages snapshots > string images snapshot > formatImages-string-array 1`] = ` +[ + { + "download": true, + "mainImage": "img1.jpg", + "thumbnail": "img1.jpg", + }, + { + "download": true, + "mainImage": "img2.png", + "thumbnail": "img2.png", + }, + { + "download": true, + "mainImage": "img3.gif", + "thumbnail": "img3.gif", + }, +] +`; diff --git a/packages/components/image-viewer/__tests__/hooks.test.tsx b/packages/components/image-viewer/__tests__/hooks.test.tsx new file mode 100644 index 0000000000..2f0e196956 --- /dev/null +++ b/packages/components/image-viewer/__tests__/hooks.test.tsx @@ -0,0 +1,784 @@ +/** + * hooks.test.tsx — ImageViewer hooks 单元测试 + * + * 测试以下 hooks: + * - useScale(含 ZoomOptions 中心缩放、节流、双指缩放) + * - useMirror + * - useRotate + * - useImageScale + * - usePosition(拖拽位移) + * - useViewerScale(弹窗尺寸配置) + * - useIndex(图片切换下标) + */ +import React from 'react'; +import { renderHook, act, vi } from '@test/utils'; + +import { DEFAULT_IMAGE_SCALE } from '@tdesign/common-js/image-viewer/transform'; +import useScale from '../hooks/useScale'; +import useMirror from '../hooks/useMirror'; +import useRotate from '../hooks/useRotate'; +import useImageScale from '../hooks/useImageScale'; +import usePosition from '../hooks/usePosition'; +import useViewerScale from '../hooks/useViewerScale'; + +// ─── useMirror ─────────────────────────────────────────────────────────── +describe('useMirror', () => { + it('initial value is 1', () => { + const { result } = renderHook(() => useMirror()); + expect(result.current.mirror).toBe(1); + }); + + it('toggles between 1 and -1', () => { + const { result } = renderHook(() => useMirror()); + + act(() => result.current.onMirror()); + expect(result.current.mirror).toBe(-1); + + act(() => result.current.onMirror()); + expect(result.current.mirror).toBe(1); + + act(() => result.current.onMirror()); + expect(result.current.mirror).toBe(-1); + }); + + it('resetMirror restores to 1', () => { + const { result } = renderHook(() => useMirror()); + + act(() => result.current.onMirror()); + act(() => result.current.onMirror()); + act(() => result.current.onMirror()); + expect(result.current.mirror).toBe(-1); + + act(() => result.current.onResetMirror()); + expect(result.current.mirror).toBe(1); + }); + + it('rapid toggles (10 times) return to 1', () => { + const { result } = renderHook(() => useMirror()); + + act(() => { + for (let i = 0; i < 10; i++) { + result.current.onMirror(); + } + }); + expect(result.current.mirror).toBe(1); + }); + + it('multiple resets are idempotent', () => { + const { result } = renderHook(() => useMirror()); + + act(() => result.current.onMirror()); + act(() => result.current.onResetMirror()); + act(() => result.current.onResetMirror()); + act(() => result.current.onResetMirror()); + expect(result.current.mirror).toBe(1); + }); +}); + +// ─── useRotate ─────────────────────────────────────────────────────────── +describe('useRotate', () => { + it('initial value is 0', () => { + const { result } = renderHook(() => useRotate()); + expect(result.current.rotateZ).toBe(0); + }); + + it('rotates by -90° each time', () => { + const { result } = renderHook(() => useRotate()); + + act(() => result.current.onRotate()); + expect(result.current.rotateZ).toBe(-90); + + act(() => result.current.onRotate()); + expect(result.current.rotateZ).toBe(-180); + + act(() => result.current.onRotate()); + expect(result.current.rotateZ).toBe(-270); + + act(() => result.current.onRotate()); + expect(result.current.rotateZ).toBe(-360); + }); + + it('continues beyond 360°', () => { + const { result } = renderHook(() => useRotate()); + + act(() => { + for (let i = 0; i < 5; i++) { + result.current.onRotate(); + } + }); + expect(result.current.rotateZ).toBe(-450); + }); + + it('multiple full rotations', () => { + const { result } = renderHook(() => useRotate()); + + act(() => { + for (let i = 0; i < 8; i++) { + result.current.onRotate(); + } + }); + expect(result.current.rotateZ).toBe(-720); + }); + + it('resetRotate from -270° (shortest path to 0°)', () => { + const { result } = renderHook(() => useRotate()); + + // Rotate to -270° + act(() => { + for (let i = 0; i < 3; i++) { + result.current.onRotate(); + } + }); + expect(result.current.rotateZ).toBe(-270); + + // -270 % 360 = -270, |-270| > 180 → adjusted = (-270+360)%360 = 90 + // newRotateZ = -270 - 90 = -360 ≡ 0° + act(() => result.current.onResetRotate()); + expect(result.current.rotateZ).toBe(-360); + }); + + it('resetRotate from -180° (boundary)', () => { + const { result } = renderHook(() => useRotate()); + + act(() => { + result.current.onRotate(); + result.current.onRotate(); + }); + expect(result.current.rotateZ).toBe(-180); + + // -180 % 360 = -180, |-180| ≤ 180 → adjusted = -180 + // newRotateZ = -180 - (-180) = 0 + act(() => result.current.onResetRotate()); + expect(result.current.rotateZ).toBe(0); + }); + + it('resetRotate from 0° does nothing', () => { + const { result } = renderHook(() => useRotate()); + + act(() => result.current.onResetRotate()); + expect(result.current.rotateZ).toBe(0); + }); + + it('reset during rotation sequence', () => { + const { result } = renderHook(() => useRotate()); + + act(() => { + result.current.onRotate(); // -90 + result.current.onRotate(); // -180 + }); + expect(result.current.rotateZ).toBe(-180); + + act(() => result.current.onResetRotate()); // → 0 + + act(() => result.current.onRotate()); // -90 + expect(result.current.rotateZ).toBe(-90); + }); +}); + +// ─── useImageScale ─────────────────────────────────────────────────────── +describe('useImageScale', () => { + it('returns defaults when no config provided', () => { + const result = useImageScale(); + expect(result).toEqual(DEFAULT_IMAGE_SCALE); + }); + + it('merges partial config with defaults', () => { + const result = useImageScale({ max: 5 }); + expect(result).toEqual({ ...DEFAULT_IMAGE_SCALE, max: 5 }); + }); + + it('clamps defaultScale to max', () => { + const result = useImageScale({ max: 3, defaultScale: 5 }); + expect(result.defaultScale).toBe(3); + }); + + it('clamps defaultScale to min', () => { + const result = useImageScale({ min: 2, defaultScale: 1 }); + expect(result.defaultScale).toBe(2); + }); + + it('custom imageScale config fully overrides', () => { + const config = { max: 5, min: 0.1, step: 0.5, defaultScale: 2 }; + const result = useImageScale(config); + expect(result).toEqual(config); + }); + + it('defaultScale undefined uses DEFAULT_IMAGE_SCALE.defaultScale', () => { + const result = useImageScale({ max: 3, min: 0.5, step: 0.1 }); + expect(result.defaultScale).toBe(DEFAULT_IMAGE_SCALE.defaultScale); + }); +}); + +// ─── useScale ──────────────────────────────────────────────────────────── +describe('useScale', () => { + beforeEach(() => { + vi.useFakeTimers(); + }); + + afterEach(() => { + vi.useRealTimers(); + }); + + it('default scale value is 1', () => { + const { result } = renderHook(() => useScale({ max: 2, min: 0.5, step: 0.2, defaultScale: 1 })); + expect(result.current.scale).toBe(1); + }); + + it('custom defaultScale', () => { + const { result } = renderHook(() => useScale({ max: 3, min: 0.5, step: 0.1, defaultScale: 1.5 })); + expect(result.current.scale).toBe(1.5); + }); + + it('defaultScale clamped to max', () => { + const { result } = renderHook(() => useScale({ max: 2, min: 0.5, step: 0.2, defaultScale: 5 })); + expect(result.current.scale).toBe(2); + }); + + it('defaultScale clamped to min', () => { + const { result } = renderHook(() => useScale({ max: 2, min: 1.5, step: 0.2, defaultScale: 0.5 })); + expect(result.current.scale).toBe(1.5); + }); + + it('onZoomIn increases scale', () => { + const { result } = renderHook(() => useScale({ max: 2, min: 0.5, step: 0.2, defaultScale: 1 })); + + act(() => { + result.current.onZoomIn(); + }); + expect(result.current.scale).toBeCloseTo(1.2); + }); + + it('onZoomOut decreases scale', () => { + const { result } = renderHook(() => useScale({ max: 2, min: 0.5, step: 0.2, defaultScale: 1 })); + + act(() => { + result.current.onZoomOut(); + }); + expect(result.current.scale).toBeCloseTo(0.8); + }); + + it('max scale boundary', () => { + const { result } = renderHook(() => useScale({ max: 1.5, min: 0.5, step: 0.5, defaultScale: 1 })); + + act(() => { + result.current.onZoomIn(); + vi.advanceTimersByTime(100); + }); + expect(result.current.scale).toBe(1.5); + + act(() => { + result.current.onZoomIn(); + vi.advanceTimersByTime(100); + }); + expect(result.current.scale).toBe(1.5); // 不超过 max + }); + + it('min scale boundary', () => { + const { result } = renderHook(() => useScale({ max: 2, min: 0.5, step: 0.3, defaultScale: 0.6 })); + + act(() => { + result.current.onZoomOut(); + vi.advanceTimersByTime(100); + }); + expect(result.current.scale).toBe(0.5); + }); + + it('onResetScale restores defaultScale', () => { + const { result } = renderHook(() => useScale({ max: 2, min: 0.5, step: 0.2, defaultScale: 1 })); + + act(() => { + result.current.onZoomIn(); + vi.advanceTimersByTime(100); + result.current.onZoomIn(); + vi.advanceTimersByTime(100); + }); + expect(result.current.scale).toBeCloseTo(1.4); + + act(() => result.current.onResetScale()); + expect(result.current.scale).toBe(1); + }); + + it('small step values', () => { + const { result } = renderHook(() => useScale({ max: 2, min: 0.5, step: 0.05, defaultScale: 1 })); + + act(() => { + result.current.onZoomIn(); + vi.advanceTimersByTime(100); + }); + expect(result.current.scale).toBeCloseTo(1.05); + }); + + it('large scale values', () => { + const { result } = renderHook(() => useScale({ max: 10, min: 0.1, step: 1, defaultScale: 5 })); + expect(result.current.scale).toBe(5); + + act(() => { + result.current.onZoomIn(); + vi.advanceTimersByTime(100); + }); + expect(result.current.scale).toBe(6); + + act(() => { + result.current.onZoomOut(); + vi.advanceTimersByTime(100); + }); + expect(result.current.scale).toBe(5); + }); + + // ─── ZoomOptions(中心缩放)────────────────────────────────────────── + describe('ZoomOptions (center zoom)', () => { + it('onZoomIn with center zoom (mouseOffset = 0)', () => { + const { result } = renderHook(() => useScale({ max: 2, min: 0.5, step: 0.2, defaultScale: 1 })); + + let zoomResult; + act(() => { + zoomResult = result.current.onZoomIn({ + mouseOffsetX: 0, + mouseOffsetY: 0, + currentTranslate: { translateX: 100, translateY: 50 }, + }); + }); + + expect(result.current.scale).toBeCloseTo(1.2); + // scaleRatio = 1.2/1 = 1.2 + // newTx = 1.2 * 100 + (1 - 1.2) * 0 = 120 + // newTy = 1.2 * 50 + (1 - 1.2) * 0 = 60 + expect(zoomResult.newTranslate).toEqual({ translateX: 120, translateY: 60 }); + }); + + it('onZoomIn with non-zero mouse offset', () => { + const { result } = renderHook(() => useScale({ max: 2, min: 0.5, step: 0.2, defaultScale: 1 })); + + let zoomResult; + act(() => { + zoomResult = result.current.onZoomIn({ + mouseOffsetX: 100, + mouseOffsetY: 50, + currentTranslate: { translateX: 0, translateY: 0 }, + }); + }); + + expect(result.current.scale).toBeCloseTo(1.2); + // newTx = 1.2 * 0 + (1 - 1.2) * 100 = -20 + // newTy = 1.2 * 0 + (1 - 1.2) * 50 = -10 + expect(zoomResult.newTranslate.translateX).toBeCloseTo(-20); + expect(zoomResult.newTranslate.translateY).toBeCloseTo(-10); + }); + + it('onZoomOut with ZoomOptions preserves translate during zoom out', () => { + const { result } = renderHook(() => useScale({ max: 2, min: 0.5, step: 0.2, defaultScale: 1 })); + + let zoomResult; + act(() => { + zoomResult = result.current.onZoomOut({ + mouseOffsetX: 100, + mouseOffsetY: 100, + currentTranslate: { translateX: 50, translateY: 50 }, + }); + }); + + expect(result.current.scale).toBeCloseTo(0.8); + // scaleRatio = 0.8/1 = 0.8 + // newTx = 0.8 * 50 + (1 - 0.8) * 100 = 40 + 20 = 60 + // newTy = 0.8 * 50 + (1 - 0.8) * 100 = 40 + 20 = 60 + expect(zoomResult.newTranslate).toEqual({ translateX: 60, translateY: 60 }); + }); + + it('missing mouseOffset returns empty result', () => { + const { result } = renderHook(() => useScale({ max: 2, min: 0.5, step: 0.2, defaultScale: 1 })); + + let zoomResult; + act(() => { + // 缺少 mouseOffsetX + zoomResult = result.current.onZoomIn({ + mouseOffsetY: 50, + currentTranslate: { translateX: 0, translateY: 0 }, + }); + }); + expect(zoomResult.newTranslate).toBeUndefined(); + }); + + it('at max boundary, zoom in returns empty result', () => { + const { result } = renderHook(() => useScale({ max: 1.2, min: 0.5, step: 0.2, defaultScale: 1 })); + + // 先放大到 max + act(() => { + result.current.onZoomIn(); + vi.advanceTimersByTime(100); + }); + expect(result.current.scale).toBe(1.2); + + // 再次放大已达边界 + let zoomResult; + act(() => { + zoomResult = result.current.onZoomIn({ + mouseOffsetX: 100, + mouseOffsetY: 100, + currentTranslate: { translateX: 0, translateY: 0 }, + }); + }); + // 已达边界,prevScale === newScale,返回空 {} + expect(zoomResult).toEqual({}); + }); + + it('zoom with existing translate and non-zero offset', () => { + const { result } = renderHook(() => useScale({ max: 2, min: 0.5, step: 0.2, defaultScale: 1 })); + + let zoomResult; + act(() => { + // scale: 1 → 1.2, scaleRatio = 1.2 + // newTx = 1.2 * 100 + (1 - 1.2) * 200 = 120 - 40 = 80 + // newTy = 1.2 * 50 + (1 - 1.2) * 100 = 60 - 20 = 40 + zoomResult = result.current.onZoomIn({ + mouseOffsetX: 200, + mouseOffsetY: 100, + currentTranslate: { translateX: 100, translateY: 50 }, + }); + }); + + expect(zoomResult.newTranslate.translateX).toBeCloseTo(80); + expect(zoomResult.newTranslate.translateY).toBeCloseTo(40); + }); + }); + + // ─── 节流行为 ────────────────────────────────────────────────────────── + describe('throttle behavior', () => { + it('throttles rapid onZoomIn calls (50ms, leading-only)', () => { + const { result } = renderHook(() => useScale({ max: 5, min: 0.5, step: 0.2, defaultScale: 1 })); + + act(() => { + // 连续快速调用 — 只有第一次生效(leading) + result.current.onZoomIn(); + result.current.onZoomIn(); + result.current.onZoomIn(); + }); + // 节流期间只执行了一次 + expect(result.current.scale).toBeCloseTo(1.2); + + // 等待节流间隔过去 + act(() => { + vi.advanceTimersByTime(100); + result.current.onZoomIn(); + }); + expect(result.current.scale).toBeCloseTo(1.4); + }); + + it('throttles rapid onZoomOut calls', () => { + const { result } = renderHook(() => useScale({ max: 5, min: 0.1, step: 0.2, defaultScale: 1 })); + + act(() => { + result.current.onZoomOut(); + result.current.onZoomOut(); + result.current.onZoomOut(); + }); + expect(result.current.scale).toBeCloseTo(0.8); + }); + }); +}); + +// ─── usePosition ───────────────────────────────────────────────────────── +describe('usePosition', () => { + // 辅助:创建一个挂载了 usePosition 的测试组件,返回 ref 和 hook 结果 + const createHook = (initPosition?: [number, number]) => { + const ref = { current: document.createElement('div') }; + return renderHook(() => usePosition(ref as React.RefObject, { initPosition })); + }; + + it('initial position defaults to [0, 0]', () => { + const { result } = createHook(); + expect(result.current.position).toEqual([0, 0]); + expect(result.current.isDragging).toBe(false); + }); + + it('custom initPosition', () => { + const { result } = createHook([100, 200]); + expect(result.current.position).toEqual([100, 200]); + }); + + it('resetPosition restores to initPosition', () => { + const { result } = createHook([50, 80]); + + act(() => { + result.current.setPosition([300, 400]); + }); + expect(result.current.position).toEqual([300, 400]); + + act(() => { + result.current.resetPosition(); + }); + expect(result.current.position).toEqual([50, 80]); + }); + + it('resetPosition with default [0,0]', () => { + const { result } = createHook(); + + act(() => { + result.current.setPosition([123, 456]); + }); + act(() => { + result.current.resetPosition(); + }); + expect(result.current.position).toEqual([0, 0]); + }); + + it('setPosition works directly', () => { + const { result } = createHook(); + + act(() => { + result.current.setPosition([42, 99]); + }); + expect(result.current.position).toEqual([42, 99]); + }); + + it('mousedown sets isDragging to true', () => { + const divEl = document.createElement('div'); + document.body.appendChild(divEl); + const ref = { current: divEl }; + const { result } = renderHook(() => usePosition(ref as React.RefObject)); + + act(() => { + divEl.dispatchEvent(new MouseEvent('mousedown', { bubbles: true, screenX: 10, screenY: 20, button: 0 })); + }); + expect(result.current.isDragging).toBe(true); + document.body.removeChild(divEl); + }); + + it('mouseup resets isDragging to false', () => { + const divEl = document.createElement('div'); + document.body.appendChild(divEl); + const ref = { current: divEl }; + const { result } = renderHook(() => usePosition(ref as React.RefObject)); + + act(() => { + divEl.dispatchEvent(new MouseEvent('mousedown', { bubbles: true, screenX: 0, screenY: 0, button: 0 })); + }); + expect(result.current.isDragging).toBe(true); + + act(() => { + document.dispatchEvent(new MouseEvent('mouseup', { bubbles: true })); + }); + expect(result.current.isDragging).toBe(false); + document.body.removeChild(divEl); + }); + + it('drag moves position by delta', () => { + const divEl = document.createElement('div'); + document.body.appendChild(divEl); + const ref = { current: divEl }; + const { result } = renderHook(() => usePosition(ref as React.RefObject)); + + act(() => { + divEl.dispatchEvent(new MouseEvent('mousedown', { bubbles: true, screenX: 100, screenY: 100, button: 0 })); + }); + act(() => { + document.dispatchEvent(new MouseEvent('mousemove', { bubbles: true, screenX: 150, screenY: 130 })); + }); + + expect(result.current.position[0]).toBe(50); // 150 - 100 + expect(result.current.position[1]).toBe(30); // 130 - 100 + document.body.removeChild(divEl); + }); + + it('snapshot: default state', () => { + const { result } = createHook(); + expect(result.current).toMatchSnapshot('usePosition-default-state'); + }); +}); + +// ─── useViewerScale ─────────────────────────────────────────────────────── +describe('useViewerScale', () => { + it('returns defaults when no config provided', () => { + const result = useViewerScale(undefined); + expect(result).toEqual({ minWidth: 1000, minHeight: 1000 }); + }); + + it('returns defaults when empty object provided', () => { + const result = useViewerScale({}); + expect(result).toEqual({ minWidth: 1000, minHeight: 1000 }); + }); + + it('overrides minWidth only', () => { + const result = useViewerScale({ minWidth: 800 }); + expect(result).toEqual({ minWidth: 800, minHeight: 1000 }); + }); + + it('overrides minHeight only', () => { + const result = useViewerScale({ minHeight: 600 }); + expect(result).toEqual({ minWidth: 1000, minHeight: 600 }); + }); + + it('overrides both minWidth and minHeight', () => { + const result = useViewerScale({ minWidth: 500, minHeight: 400 }); + expect(result).toEqual({ minWidth: 500, minHeight: 400 }); + }); + + it('zero values are accepted', () => { + const result = useViewerScale({ minWidth: 0, minHeight: 0 }); + expect(result).toEqual({ minWidth: 0, minHeight: 0 }); + }); + + it('snapshot: default config', () => { + expect(useViewerScale(undefined)).toMatchSnapshot('useViewerScale-default'); + }); + + it('snapshot: custom config', () => { + expect(useViewerScale({ minWidth: 600, minHeight: 480 })).toMatchSnapshot('useViewerScale-custom'); + }); +}); + +// ─── useScale: 双指缩放 ──────────────────────────────────────────────────── +describe('useScale: touch events', () => { + beforeEach(() => { + vi.useFakeTimers(); + }); + afterEach(() => { + vi.useRealTimers(); + }); + + const createTouchEvent = (x1: number, y1: number, x2: number, y2: number, type: string) => { + const t1 = { pageX: x1, pageY: y1 } as Touch; + const t2 = { pageX: x2, pageY: y2 } as Touch; + return new TouchEvent(type, { touches: [t1, t2], cancelable: true }); + }; + + it('onTouchStart with 2 fingers records initial distance', () => { + const { result } = renderHook(() => useScale({ max: 3, min: 0.5, step: 0.2, defaultScale: 1 })); + const touchStart = createTouchEvent(0, 0, 100, 0, 'touchstart'); + act(() => { + result.current.onTouchStart(touchStart); + }); + // 初始 distance = 100,不触发缩放,scale 不变 + expect(result.current.scale).toBe(1); + }); + + it('onTouchStart with 1 finger does nothing', () => { + const { result } = renderHook(() => useScale({ max: 3, min: 0.5, step: 0.2, defaultScale: 1 })); + const touchStart = new TouchEvent('touchstart', { + touches: [{ pageX: 0, pageY: 0 } as Touch], + cancelable: true, + }); + act(() => { + result.current.onTouchStart(touchStart); + }); + expect(result.current.scale).toBe(1); + }); + + it('onTouchMove pinch out (spread fingers) zooms in', () => { + const { result } = renderHook(() => useScale({ max: 3, min: 0.5, step: 0.2, defaultScale: 1 })); + + // 初始距离 100 + act(() => { + result.current.onTouchStart(createTouchEvent(0, 0, 100, 0, 'touchstart')); + }); + + // 手指扩大到 200(spread)→ zoom in + act(() => { + result.current.onTouchMove(createTouchEvent(0, 0, 200, 0, 'touchmove')); + }); + + expect(result.current.scale).toBeCloseTo(1.2); + }); + + it('onTouchMove pinch in (shrink fingers) zooms out', () => { + const { result } = renderHook(() => useScale({ max: 3, min: 0.5, step: 0.2, defaultScale: 1 })); + + // 初始距离 200 + act(() => { + result.current.onTouchStart(createTouchEvent(0, 0, 200, 0, 'touchstart')); + }); + + // 手指缩小到 100(pinch)→ zoom out + act(() => { + result.current.onTouchMove(createTouchEvent(0, 0, 100, 0, 'touchmove')); + }); + + expect(result.current.scale).toBeCloseTo(0.8); + }); + + it('onTouchMove with 1 finger does nothing', () => { + const { result } = renderHook(() => useScale({ max: 3, min: 0.5, step: 0.2, defaultScale: 1 })); + const touchMove = new TouchEvent('touchmove', { + touches: [{ pageX: 100, pageY: 0 } as Touch], + cancelable: true, + }); + act(() => { + result.current.onTouchMove(touchMove); + }); + expect(result.current.scale).toBe(1); + }); + + it('onTouchEnd resets distance to 0', () => { + const { result } = renderHook(() => useScale({ max: 3, min: 0.5, step: 0.2, defaultScale: 1 })); + + act(() => { + result.current.onTouchStart(createTouchEvent(0, 0, 100, 0, 'touchstart')); + }); + act(() => { + result.current.onTouchEnd(); + }); + // 再次 touchmove 时没有有效 distance,依然可以缩放 + act(() => { + result.current.onTouchMove(createTouchEvent(0, 0, 200, 0, 'touchmove')); + }); + // distance.current was 0 before this move; 200 > 0 → zoomIn + expect(result.current.scale).toBeCloseTo(1.2); + }); +}); + +// ─── Hooks 组合 ────────────────────────────────────────────────────────── +describe('hooks combination', () => { + it('all hooks work together for image transformations', () => { + vi.useFakeTimers(); + + const { result: mirrorResult } = renderHook(() => useMirror()); + const { result: rotateResult } = renderHook(() => useRotate()); + const { result: scaleResult } = renderHook(() => useScale({ max: 2, min: 0.5, step: 0.2, defaultScale: 1 })); + + act(() => { + mirrorResult.current.onMirror(); + rotateResult.current.onRotate(); + rotateResult.current.onRotate(); + scaleResult.current.onZoomIn(); + }); + + expect(mirrorResult.current.mirror).toBe(-1); + expect(rotateResult.current.rotateZ).toBe(-180); + expect(scaleResult.current.scale).toBeCloseTo(1.2); + + // 重置全部 + act(() => { + mirrorResult.current.onResetMirror(); + rotateResult.current.onResetRotate(); + scaleResult.current.onResetScale(); + }); + + expect(mirrorResult.current.mirror).toBe(1); + expect(rotateResult.current.rotateZ).toBe(0); + expect(scaleResult.current.scale).toBe(1); + + vi.useRealTimers(); + }); + + it('rapid operations across all hooks', () => { + vi.useFakeTimers(); + + const { result: scaleResult } = renderHook(() => useScale({ max: 3, min: 0.5, step: 0.1, defaultScale: 1 })); + const { result: mirrorResult } = renderHook(() => useMirror()); + const { result: rotateResult } = renderHook(() => useRotate()); + + act(() => { + for (let i = 0; i < 5; i++) { + scaleResult.current.onZoomIn(); + vi.advanceTimersByTime(60); + mirrorResult.current.onMirror(); + rotateResult.current.onRotate(); + } + }); + + expect(scaleResult.current.scale).toBeCloseTo(1.5); + expect(mirrorResult.current.mirror).toBe(-1); + expect(rotateResult.current.rotateZ).toBe(-450); + + vi.useRealTimers(); + }); +}); diff --git a/packages/components/image-viewer/__tests__/image-viewer.test.tsx b/packages/components/image-viewer/__tests__/image-viewer.test.tsx index e07d5c6c38..a316e6335b 100644 --- a/packages/components/image-viewer/__tests__/image-viewer.test.tsx +++ b/packages/components/image-viewer/__tests__/image-viewer.test.tsx @@ -6,6 +6,7 @@ import { ImageViewer } from '../index'; const imgUrl = 'https://tdesign.gtimg.com/demo/demo-image-1.png'; const imgUrl2 = 'https://tdesign.gtimg.com/demo/demo-image-2.png'; +const imgUrl3 = 'https://tdesign.gtimg.com/demo/demo-image-3.png'; // const errorImgUrl = 'https://tdesixxxxxxxxgn.gtimg.com/demo/demo-image-1.png'; describe('ImageViewer', () => { @@ -412,3 +413,319 @@ describe('ImageViewerModal', () => { expect(document.querySelector('.t-image-viewer__modal-image')?.getAttribute('referrerpolicy')).toBe(referrerPolicy); }); }); + +// ─── 快照测试 ───────────────────────────────────────────────────────────────── +describe('ImageViewer snapshots', () => { + const triggerText = '预览单张图片'; + + test('单张图片默认状态', async () => { + const BasicImageViewer = () => { + const trigger = ({ open }) => open()}>{triggerText}; + return ; + }; + const { getByText } = render(); + + act(() => { + fireEvent.click(getByText(triggerText)); + }); + + await mockDelay(); + expect(document.body).toMatchSnapshot('image-viewer-single-image-default'); + }); + + test('多张图片默认状态', async () => { + const BasicImageViewer = () => { + const trigger = ({ open }) => open()}>{triggerText}; + return ; + }; + const { getByText } = render(); + + act(() => { + fireEvent.click(getByText(triggerText)); + }); + + await mockDelay(); + expect(document.body).toMatchSnapshot('image-viewer-multi-image-default'); + }); + + test('自定义关闭按钮', async () => { + const BasicImageViewer = () => { + const trigger = ({ open }) => open()}>{triggerText}; + return ✕} />; + }; + const { getByText } = render(); + + act(() => { + fireEvent.click(getByText(triggerText)); + }); + + await mockDelay(); + expect(document.body).toMatchSnapshot('image-viewer-custom-close-btn'); + }); + + test('关闭按钮为 false', async () => { + const BasicImageViewer = () => { + const trigger = ({ open }) => open()}>{triggerText}; + return ; + }; + const { getByText } = render(); + + act(() => { + fireEvent.click(getByText(triggerText)); + }); + + await mockDelay(); + expect(document.body).toMatchSnapshot('image-viewer-close-btn-disabled'); + }); + + test('无遮罩层', async () => { + const BasicImageViewer = () => { + const trigger = ({ open }) => open()}>{triggerText}; + return ; + }; + const { getByText } = render(); + + act(() => { + fireEvent.click(getByText(triggerText)); + }); + + await mockDelay(); + expect(document.body).toMatchSnapshot('image-viewer-no-overlay'); + }); + + test('不可拖拽', async () => { + const BasicImageViewer = () => { + const trigger = ({ open }) => open()}>{triggerText}; + return ; + }; + const { getByText } = render(); + + act(() => { + fireEvent.click(getByText(triggerText)); + }); + + await mockDelay(); + expect(document.body).toMatchSnapshot('image-viewer-not-draggable'); + }); + + test('自定义 imageScale 配置', async () => { + const BasicImageViewer = () => { + const trigger = ({ open }) => open()}>{triggerText}; + return ( + + ); + }; + const { getByText } = render(); + + act(() => { + fireEvent.click(getByText(triggerText)); + }); + + await mockDelay(); + expect(document.body).toMatchSnapshot('image-viewer-custom-scale-config'); + }); + + test('modeless 模式', async () => { + const BasicImageViewer = () => { + const trigger = ({ open }) => open()}>{triggerText}; + return ; + }; + const { getByText } = render(); + + act(() => { + fireEvent.click(getByText(triggerText)); + }); + + await mockDelay(); + expect(document.body).toMatchSnapshot('image-viewer-modeless'); + }); + + test('modeless 模式 - 第二张图片', async () => { + const BasicImageViewer = () => { + const trigger = ({ open }) => open()}>{triggerText}; + return ; + }; + const { getByText } = render(); + + act(() => { + fireEvent.click(getByText(triggerText)); + }); + + // 切换到第二张 + const user = userEvent.setup(); + await user.type(document.body, '{ArrowRight}'); + await mockDelay(); + + expect(document.body).toMatchSnapshot('image-viewer-modeless-second-image'); + }); + + test('自定义 title', async () => { + const BasicImageViewer = () => { + const trigger = ({ open }) => open()}>{triggerText}; + return ; + }; + const { getByText } = render(); + + act(() => { + fireEvent.click(getByText(triggerText)); + }); + + await mockDelay(); + expect(document.body).toMatchSnapshot('image-viewer-custom-title'); + }); + + test('attach 到指定容器', async () => { + const customContainer = document.createElement('div'); + customContainer.id = 'custom-attach-container'; + document.body.appendChild(customContainer); + + const BasicImageViewer = () => { + const trigger = ({ open }) => open()}>{triggerText}; + return customContainer} />; + }; + const { getByText } = render(); + + act(() => { + fireEvent.click(getByText(triggerText)); + }); + + await mockDelay(); + expect(customContainer).toMatchSnapshot('image-viewer-attach-custom-container'); + + // 清理 + document.body.removeChild(customContainer); + }); + + test('DefaultTrigger 默认触发器渲染快照', async () => { + // 不传 trigger,使用默认触发器 + const { container } = render(); + await mockDelay(); + expect(container).toMatchSnapshot('image-viewer-default-trigger'); + }); + + test('DefaultTrigger 多张图片默认触发器渲染快照', async () => { + const { container } = render(); + await mockDelay(); + expect(container).toMatchSnapshot('image-viewer-default-trigger-multi'); + }); +}); + +// ─── 工具栏事件快照测试 ──────────────────────────────────────────────────────── +describe('ImageViewer toolbar event snapshots', () => { + const triggerText = '工具栏测试'; + + const openViewer = async (images = [imgUrl]) => { + const BasicImageViewer = () => { + const trigger = ({ open }) => open()}>{triggerText}; + return ; + }; + const { getByText } = render(); + act(() => { + fireEvent.click(getByText(triggerText)); + }); + await mockDelay(); + return { getByText }; + }; + + test('点击旋转按钮后快照', async () => { + await openViewer(); + const rotateBtn = document.querySelector('.t-image-viewer__modal-rotate-RR'); + if (rotateBtn) { + act(() => { + fireEvent.click(rotateBtn); + }); + await mockDelay(); + } + expect(document.body).toMatchSnapshot('toolbar-after-rotate'); + }); + + test('点击放大按钮后快照', async () => { + await openViewer(); + const zoomInBtn = document.querySelector('.t-image-viewer__modal-zoomIn'); + if (zoomInBtn) { + act(() => { + fireEvent.click(zoomInBtn); + }); + await mockDelay(); + } + expect(document.body).toMatchSnapshot('toolbar-after-zoom-in'); + }); + + test('点击缩小按钮后快照', async () => { + await openViewer(); + const zoomOutBtn = document.querySelector('.t-image-viewer__modal-zoomOut'); + if (zoomOutBtn) { + act(() => { + fireEvent.click(zoomOutBtn); + }); + await mockDelay(); + } + expect(document.body).toMatchSnapshot('toolbar-after-zoom-out'); + }); + + test('点击镜像按钮后快照', async () => { + await openViewer(); + const mirrorBtn = document.querySelector('.t-image-viewer__modal-mirrorX'); + if (mirrorBtn) { + act(() => { + fireEvent.click(mirrorBtn); + }); + await mockDelay(); + } + expect(document.body).toMatchSnapshot('toolbar-after-mirror'); + }); + + test('点击原始大小按钮后快照', async () => { + await openViewer(); + const resetBtn = document.querySelector('.t-image-viewer__modal-original'); + if (resetBtn) { + act(() => { + fireEvent.click(resetBtn); + }); + await mockDelay(); + } + expect(document.body).toMatchSnapshot('toolbar-after-reset'); + }); + + test('多图导航:上一张/下一张按钮快照', async () => { + await openViewer([imgUrl, imgUrl2, imgUrl3]); + + // 点击下一张 + const nextBtn = document.querySelector('.t-image-viewer__modal-next-bt'); + if (nextBtn) { + act(() => { + fireEvent.click(nextBtn); + }); + await mockDelay(); + } + expect(document.body).toMatchSnapshot('toolbar-navigate-next'); + + // 再次点击下一张 + const nextBtn2 = document.querySelector('.t-image-viewer__modal-next-bt'); + if (nextBtn2) { + act(() => { + fireEvent.click(nextBtn2); + }); + await mockDelay(); + } + + // 点击上一张 + const prevBtn = document.querySelector('.t-image-viewer__modal-prev-bt'); + if (prevBtn) { + act(() => { + fireEvent.click(prevBtn); + }); + await mockDelay(); + } + expect(document.body).toMatchSnapshot('toolbar-navigate-prev'); + }); +}); diff --git a/packages/components/image-viewer/__tests__/transform.test.ts b/packages/components/image-viewer/__tests__/transform.test.ts new file mode 100644 index 0000000000..c93165c99b --- /dev/null +++ b/packages/components/image-viewer/__tests__/transform.test.ts @@ -0,0 +1,385 @@ +/** + * transform.test.ts — 纯函数测试 + * + * 测试 @tdesign/common-js/image-viewer/transform 中的所有导出函数: + * - toggleMirror / MIRROR_DEFAULT + * - calcResetRotation / ROTATE_DEG + * - clampScale / calcZoomInScale / calcZoomOutScale + * - calculateTranslateOffset + * - zoomIn / zoomOut + * - isImageExceedsViewport + * - DEFAULT_IMAGE_SCALE + */ +import { describe, it, expect } from 'vitest'; +import { + DEFAULT_IMAGE_SCALE, + MIRROR_DEFAULT, + ROTATE_DEG, + toggleMirror, + calcResetRotation, + clampScale, + calcZoomInScale, + calcZoomOutScale, + calculateTranslateOffset, + zoomIn, + zoomOut, + isImageExceedsViewport, +} from '@tdesign/common-js/image-viewer/transform'; + +// ─── 常量 ──────────────────────────────────────────────────────────────── +describe('constants', () => { + it('DEFAULT_IMAGE_SCALE', () => { + expect(DEFAULT_IMAGE_SCALE).toEqual({ + max: 2, + min: 0.5, + step: 0.2, + defaultScale: 1, + }); + }); + + it('MIRROR_DEFAULT = 1', () => { + expect(MIRROR_DEFAULT).toBe(1); + }); + + it('ROTATE_DEG = -90', () => { + expect(ROTATE_DEG).toBe(-90); + }); +}); + +// ─── toggleMirror ──────────────────────────────────────────────────────── +describe('toggleMirror', () => { + it('toggles from default(1) to -1', () => { + expect(toggleMirror(1)).toBe(-1); + }); + + it('toggles from -1 back to 1', () => { + expect(toggleMirror(-1)).toBe(1); + }); + + it('rapid toggles (10 times) return to 1', () => { + let mirror = MIRROR_DEFAULT; + for (let i = 0; i < 10; i++) { + mirror = toggleMirror(mirror); + } + expect(mirror).toBe(1); + }); + + it('odd number of toggles gives -1', () => { + let mirror = MIRROR_DEFAULT; + for (let i = 0; i < 5; i++) { + mirror = toggleMirror(mirror); + } + expect(mirror).toBe(-1); + }); +}); + +// ─── calcResetRotation ────────────────────────────────────────────────── +describe('calcResetRotation', () => { + it('0° → no adjustment', () => { + expect(calcResetRotation(0)).toBe(0); + }); + + it('-90° → -90 (|deg| ≤ 180, same value)', () => { + expect(calcResetRotation(-90)).toBe(-90); + }); + + it('-180° → -180 (boundary, |deg| = 180)', () => { + expect(calcResetRotation(-180)).toBe(-180); + }); + + it('-270° → 90 (|deg| > 180, shortest path via +90)', () => { + expect(calcResetRotation(-270)).toBe(90); + }); + + it('-360° → no adjustment (full rotation)', () => { + expect(calcResetRotation(-360)).toBe(0); + }); + + it('-450° → -90 (-450 % 360 = -90)', () => { + expect(calcResetRotation(-450)).toBe(-90); + }); + + it('-720° → no adjustment (two full rotations)', () => { + expect(calcResetRotation(-720)).toBe(0); + }); + + it('positive 90° → 90', () => { + expect(calcResetRotation(90)).toBe(90); + }); + + it('positive 270° → shortest path', () => { + // 270 % 360 = 270, |270| > 180 → (270 + 360) % 360 = 270 + expect(calcResetRotation(270)).toBe(270); + }); +}); + +// ─── clampScale ────────────────────────────────────────────────────────── +describe('clampScale', () => { + it('within range returns same value', () => { + expect(clampScale(1, 0.5, 2)).toBe(1); + }); + + it('below min returns min', () => { + expect(clampScale(0.1, 0.5, 2)).toBe(0.5); + }); + + it('above max returns max', () => { + expect(clampScale(5, 0.5, 2)).toBe(2); + }); + + it('equal to min', () => { + expect(clampScale(0.5, 0.5, 2)).toBe(0.5); + }); + + it('equal to max', () => { + expect(clampScale(2, 0.5, 2)).toBe(2); + }); + + it('zero', () => { + expect(clampScale(0, 0.5, 2)).toBe(0.5); + }); + + it('negative value', () => { + expect(clampScale(-1, 0.5, 2)).toBe(0.5); + }); +}); + +// ─── calcZoomInScale / calcZoomOutScale ────────────────────────────────── +describe('calcZoomInScale', () => { + it('basic zoom in', () => { + expect(calcZoomInScale(1, 0.2, 0.5, 2)).toBeCloseTo(1.2); + }); + + it('clamps at max', () => { + expect(calcZoomInScale(1.9, 0.2, 0.5, 2)).toBe(2); + }); + + it('already at max returns max', () => { + expect(calcZoomInScale(2, 0.2, 0.5, 2)).toBe(2); + }); + + it('large step', () => { + expect(calcZoomInScale(1, 1, 0.5, 2)).toBe(2); + }); + + it('small step', () => { + expect(calcZoomInScale(1, 0.05, 0.5, 2)).toBeCloseTo(1.05); + }); +}); + +describe('calcZoomOutScale', () => { + it('basic zoom out', () => { + expect(calcZoomOutScale(1, 0.2, 0.5, 2)).toBeCloseTo(0.8); + }); + + it('clamps at min', () => { + expect(calcZoomOutScale(0.6, 0.2, 0.5, 2)).toBe(0.5); + }); + + it('already at min returns min', () => { + expect(calcZoomOutScale(0.5, 0.2, 0.5, 2)).toBe(0.5); + }); + + it('large step', () => { + expect(calcZoomOutScale(1, 1, 0.5, 2)).toBe(0.5); + }); +}); + +// ─── calculateTranslateOffset ──────────────────────────────────────────── +describe('calculateTranslateOffset', () => { + it('returns undefined when mouseOffsetX is missing', () => { + const result = calculateTranslateOffset(1, 1.2, { + mouseOffsetY: 50, + currentTranslate: { translateX: 0, translateY: 0 }, + }); + expect(result).toBeUndefined(); + }); + + it('returns undefined when mouseOffsetY is missing', () => { + const result = calculateTranslateOffset(1, 1.2, { + mouseOffsetX: 50, + currentTranslate: { translateX: 0, translateY: 0 }, + }); + expect(result).toBeUndefined(); + }); + + it('returns undefined when both offsets missing', () => { + const result = calculateTranslateOffset(1, 1.2, { + currentTranslate: { translateX: 0, translateY: 0 }, + }); + expect(result).toBeUndefined(); + }); + + it('returns undefined when options is undefined', () => { + expect(calculateTranslateOffset(1, 1.2)).toBeUndefined(); + }); + + it('center zoom (mouseOffset = 0): newT = scaleRatio * T', () => { + // scaleRatio = 1.2/1 = 1.2, T = {100, 50} + // newTx = 1.2 * 100 + (1 - 1.2) * 0 = 120 + // newTy = 1.2 * 50 + (1 - 1.2) * 0 = 60 + const result = calculateTranslateOffset(1, 1.2, { + mouseOffsetX: 0, + mouseOffsetY: 0, + currentTranslate: { translateX: 100, translateY: 50 }, + }); + expect(result).toEqual({ translateX: 120, translateY: 60 }); + }); + + it('non-center zoom: formula verification', () => { + // scaleRatio = 1.2/1 = 1.2 + // newTx = 1.2 * 0 + (1 - 1.2) * 100 = -20 + // newTy = 1.2 * 0 + (1 - 1.2) * 50 = -10 + const result = calculateTranslateOffset(1, 1.2, { + mouseOffsetX: 100, + mouseOffsetY: 50, + currentTranslate: { translateX: 0, translateY: 0 }, + }); + expect(result.translateX).toBeCloseTo(-20); + expect(result.translateY).toBeCloseTo(-10); + }); + + it('zoom out with existing translate', () => { + // scaleRatio = 0.8/1 = 0.8 + // newTx = 0.8 * 50 + (1 - 0.8) * 100 = 40 + 20 = 60 + // newTy = 0.8 * 50 + (1 - 0.8) * 100 = 40 + 20 = 60 + const result = calculateTranslateOffset(1, 0.8, { + mouseOffsetX: 100, + mouseOffsetY: 100, + currentTranslate: { translateX: 50, translateY: 50 }, + }); + expect(result).toEqual({ translateX: 60, translateY: 60 }); + }); + + it('same scale (ratio = 1) returns same translate', () => { + const result = calculateTranslateOffset(1, 1, { + mouseOffsetX: 200, + mouseOffsetY: 200, + currentTranslate: { translateX: 50, translateY: 50 }, + }); + expect(result).toEqual({ translateX: 50, translateY: 50 }); + }); + + it('missing currentTranslate defaults to {0, 0}', () => { + // scaleRatio = 1.2/1 = 1.2 + // newTx = 1.2 * 0 + (1 - 1.2) * 100 = -20 + const result = calculateTranslateOffset(1, 1.2, { + mouseOffsetX: 100, + mouseOffsetY: 100, + }); + expect(result.translateX).toBeCloseTo(-20); + expect(result.translateY).toBeCloseTo(-20); + }); +}); + +// ─── zoomIn / zoomOut (组合函数) ───────────────────────────────────────── +describe('zoomIn', () => { + it('basic zoom in without options', () => { + const { newScale, zoomResult } = zoomIn(1, 0.2, 0.5, 2); + expect(newScale).toBeCloseTo(1.2); + expect(zoomResult.newTranslate).toBeUndefined(); + }); + + it('zoom in with ZoomOptions', () => { + const { newScale, zoomResult } = zoomIn(1, 0.2, 0.5, 2, { + mouseOffsetX: 0, + mouseOffsetY: 0, + currentTranslate: { translateX: 100, translateY: 50 }, + }); + expect(newScale).toBeCloseTo(1.2); + expect(zoomResult.newTranslate).toEqual({ translateX: 120, translateY: 60 }); + }); + + it('zoom in at max boundary', () => { + const { newScale, zoomResult } = zoomIn(2, 0.2, 0.5, 2); + expect(newScale).toBe(2); + expect(zoomResult.newTranslate).toBeUndefined(); + }); +}); + +describe('zoomOut', () => { + it('basic zoom out without options', () => { + const { newScale, zoomResult } = zoomOut(1, 0.2, 0.5, 2); + expect(newScale).toBeCloseTo(0.8); + expect(zoomResult.newTranslate).toBeUndefined(); + }); + + it('zoom out with ZoomOptions', () => { + const { newScale, zoomResult } = zoomOut(1, 0.2, 0.5, 2, { + mouseOffsetX: 100, + mouseOffsetY: 100, + currentTranslate: { translateX: 50, translateY: 50 }, + }); + expect(newScale).toBeCloseTo(0.8); + expect(zoomResult.newTranslate).toEqual({ translateX: 60, translateY: 60 }); + }); + + it('zoom out at min boundary', () => { + const { newScale, zoomResult } = zoomOut(0.5, 0.2, 0.5, 2); + expect(newScale).toBe(0.5); + expect(zoomResult.newTranslate).toBeUndefined(); + }); +}); + +// ─── isImageExceedsViewport ────────────────────────────────────────────── +describe('isImageExceedsViewport', () => { + const createMockElement = (rect: Partial) => { + const el = document.createElement('div'); + el.getBoundingClientRect = () => ({ + top: 0, + left: 0, + right: 800, + bottom: 600, + width: 800, + height: 600, + x: 0, + y: 0, + // eslint-disable-next-line @typescript-eslint/no-empty-function + toJSON: () => {}, + ...rect, + }); + return el; + }; + + it('image within viewport', () => { + const container = createMockElement({ left: 0, right: 800, top: 0, bottom: 600 }); + const modalBox = createMockElement({ left: 100, right: 700, top: 50, bottom: 550 }); + expect(isImageExceedsViewport(container, modalBox)).toBe(false); + }); + + it('image exceeds left', () => { + const container = createMockElement({ left: 0, right: 800, top: 0, bottom: 600 }); + const modalBox = createMockElement({ left: -50, right: 700, top: 50, bottom: 550 }); + expect(isImageExceedsViewport(container, modalBox)).toBe(true); + }); + + it('image exceeds right', () => { + const container = createMockElement({ left: 0, right: 800, top: 0, bottom: 600 }); + const modalBox = createMockElement({ left: 100, right: 900, top: 50, bottom: 550 }); + expect(isImageExceedsViewport(container, modalBox)).toBe(true); + }); + + it('image exceeds top', () => { + const container = createMockElement({ left: 0, right: 800, top: 0, bottom: 600 }); + const modalBox = createMockElement({ left: 100, right: 700, top: -10, bottom: 550 }); + expect(isImageExceedsViewport(container, modalBox)).toBe(true); + }); + + it('image exceeds bottom', () => { + const container = createMockElement({ left: 0, right: 800, top: 0, bottom: 600 }); + const modalBox = createMockElement({ left: 100, right: 700, top: 50, bottom: 650 }); + expect(isImageExceedsViewport(container, modalBox)).toBe(true); + }); + + it('image exceeds all sides', () => { + const container = createMockElement({ left: 0, right: 800, top: 0, bottom: 600 }); + const modalBox = createMockElement({ left: -100, right: 900, top: -100, bottom: 700 }); + expect(isImageExceedsViewport(container, modalBox)).toBe(true); + }); + + it('image matches viewport exactly', () => { + const container = createMockElement({ left: 0, right: 800, top: 0, bottom: 600 }); + const modalBox = createMockElement({ left: 0, right: 800, top: 0, bottom: 600 }); + expect(isImageExceedsViewport(container, modalBox)).toBe(false); + }); +}); diff --git a/packages/components/image-viewer/__tests__/utils.test.ts b/packages/components/image-viewer/__tests__/utils.test.ts new file mode 100644 index 0000000000..a1a7e526c0 --- /dev/null +++ b/packages/components/image-viewer/__tests__/utils.test.ts @@ -0,0 +1,295 @@ +/** + * utils.test.ts — 工具函数测试 + * + * 测试 @tdesign/common-js/image-viewer/utils 中的导出函数: + * - formatImages + * - downloadImage(含跨域 canvasDownload 路径) + */ +import { describe, it, expect, vi, beforeEach, afterEach } from 'vitest'; +import { act } from '@test/utils'; +import { formatImages, downloadImage } from '@tdesign/common-js/image-viewer/utils'; + +// ─── formatImages ──────────────────────────────────────────────────────── +describe('formatImages', () => { + it('non-array input returns empty array', () => { + expect(formatImages(null)).toEqual([]); + expect(formatImages(undefined)).toEqual([]); + // @ts-expect-error testing invalid input + expect(formatImages('string')).toEqual([]); + // @ts-expect-error testing invalid input + expect(formatImages(123)).toEqual([]); + }); + + it('empty array', () => { + expect(formatImages([])).toEqual([]); + }); + + it('string images with default properties', () => { + const images = ['image1.jpg', 'image2.png']; + const result = formatImages(images); + + expect(result).toEqual([ + { mainImage: 'image1.jpg', thumbnail: 'image1.jpg', download: true }, + { mainImage: 'image2.png', thumbnail: 'image2.png', download: true }, + ]); + }); + + it('ImageInfo objects with defaults', () => { + const images = [{ mainImage: 'main1.jpg' }, { mainImage: 'main2.jpg', thumbnail: 'thumb2.jpg' }]; + const result = formatImages(images); + + expect(result[0]).toEqual({ mainImage: 'main1.jpg', thumbnail: 'main1.jpg', download: true }); + expect(result[1]).toEqual({ mainImage: 'main2.jpg', thumbnail: 'thumb2.jpg', download: true }); + }); + + it('custom download setting preserved', () => { + const images = [{ mainImage: 'main.jpg', download: false }]; + const result = formatImages(images); + expect(result[0].download).toBeFalsy(); + }); + + it('mixed string and ImageInfo array', () => { + const images = ['string-image.jpg', { mainImage: 'object-main.jpg', thumbnail: 'object-thumb.jpg' }]; + const result = formatImages(images); + + expect(result).toEqual([ + { mainImage: 'string-image.jpg', thumbnail: 'string-image.jpg', download: true }, + { mainImage: 'object-main.jpg', thumbnail: 'object-thumb.jpg', download: true }, + ]); + }); + + it('File objects in images', () => { + const file = new File(['test'], 'test.png', { type: 'image/png' }); + const result = formatImages([file]); + + expect(result[0].mainImage).toBe(file); + expect(result[0].thumbnail).toBe(file); + expect(result[0].download).toBeTruthy(); + }); + + it('ImageInfo with all properties', () => { + const images = [{ mainImage: 'main.jpg', thumbnail: 'thumb.jpg', download: true, isSvg: true }]; + const result = formatImages(images); + expect(result[0]).toEqual({ mainImage: 'main.jpg', thumbnail: 'thumb.jpg', download: true, isSvg: true }); + }); + + it('thumbnail defaults to mainImage', () => { + const images = [{ mainImage: 'only-main.jpg' }]; + const result = formatImages(images); + expect(result[0].thumbnail).toBe('only-main.jpg'); + }); + + it('large array of images', () => { + const images = Array.from({ length: 100 }, (_, i) => `image-${i}.jpg`); + const result = formatImages(images); + expect(result).toHaveLength(100); + result.forEach((item, i) => { + expect(item.mainImage).toBe(`image-${i}.jpg`); + expect(item.thumbnail).toBe(`image-${i}.jpg`); + expect(item.download).toBe(true); + }); + }); +}); + +// ─── downloadImage ─────────────────────────────────────────────────────── +describe('downloadImage', () => { + let mockCreateObjectURL: ReturnType; + let mockRevokeObjectURL: ReturnType; + let mockCreateElement: typeof document.createElement; + + beforeEach(() => { + vi.clearAllMocks(); + mockCreateObjectURL = vi.fn().mockReturnValue('blob:test'); + mockRevokeObjectURL = vi.fn(); + window.URL.createObjectURL = mockCreateObjectURL; + window.URL.revokeObjectURL = mockRevokeObjectURL; + mockCreateElement = document.createElement.bind(document); + }); + + afterEach(() => { + vi.restoreAllMocks(); + }); + + it('File input uses URL.createObjectURL', () => { + const mockClick = vi.fn(); + const mockRemove = vi.fn(); + const mockAnchor = { href: '', download: '', click: mockClick, remove: mockRemove }; + + vi.spyOn(document, 'createElement').mockImplementation((tag) => { + if (tag === 'a') return mockAnchor as unknown as HTMLAnchorElement; + return mockCreateElement(tag); + }); + + const file = new File(['test'], 'test-image.png', { type: 'image/png' }); + downloadImage(file); + + expect(mockCreateObjectURL).toHaveBeenCalledWith(file); + expect(mockAnchor.download).toBe('test-image.png'); + expect(mockClick).toHaveBeenCalled(); + }); + + it('same-origin URL direct download', () => { + const mockClick = vi.fn(); + const mockRemove = vi.fn(); + const mockAnchor = { href: '', download: '', click: mockClick, remove: mockRemove }; + + vi.spyOn(document, 'createElement').mockImplementation((tag) => { + if (tag === 'a') return mockAnchor as unknown as HTMLAnchorElement; + return mockCreateElement(tag); + }); + + const sameOriginUrl = `${window.location.origin}/test-image.png`; + downloadImage(sameOriginUrl); + + expect(mockAnchor.href).toBe(sameOriginUrl); + expect(mockAnchor.download).toBe('test-image.png'); + expect(mockClick).toHaveBeenCalled(); + }); + + it('extracts filename from URL with query parameters', () => { + const mockClick = vi.fn(); + const mockRemove = vi.fn(); + const mockAnchor = { href: '', download: '', click: mockClick, remove: mockRemove }; + + vi.spyOn(document, 'createElement').mockImplementation((tag) => { + if (tag === 'a') return mockAnchor as unknown as HTMLAnchorElement; + return mockCreateElement(tag); + }); + + const urlWithParams = `${window.location.origin}/path/image.png?sign=xxx&token=yyy`; + downloadImage(urlWithParams); + expect(mockAnchor.download).toBe('image.png'); + }); + + it('extracts filename from URL with hash', () => { + const mockClick = vi.fn(); + const mockRemove = vi.fn(); + const mockAnchor = { href: '', download: '', click: mockClick, remove: mockRemove }; + + vi.spyOn(document, 'createElement').mockImplementation((tag) => { + if (tag === 'a') return mockAnchor as unknown as HTMLAnchorElement; + return mockCreateElement(tag); + }); + + const urlWithHash = `${window.location.origin}/path/image.jpg#section`; + downloadImage(urlWithHash); + expect(mockAnchor.download).toBe('image.jpg'); + }); + + it('cross-origin URL triggers canvasDownload (Image load path)', () => { + // 跨域 URL 进入 canvasDownload 分支,创建 Image 元素 + const crossOriginUrl = 'https://cross-origin.example.com/photo.jpg'; + + const setAttribute = vi.fn(); + const mockImage: Partial = { setAttribute }; + const ImageSpy = vi.fn().mockImplementation(() => mockImage); + (global as any).Image = ImageSpy; + + const mockClick = vi.fn(); + const mockRemove = vi.fn(); + const mockAnchor = { href: '', download: '', click: mockClick, remove: mockRemove }; + vi.spyOn(document, 'createElement').mockImplementation((tag) => { + if (tag === 'a') return mockAnchor as unknown as HTMLAnchorElement; + return mockCreateElement(tag); + }); + + downloadImage(crossOriginUrl); + + // 应该新建 Image 并通过 setAttribute 设置 crossOrigin + expect(setAttribute).toHaveBeenCalledWith('crossOrigin', 'anonymous'); + expect(mockImage.src).toBe(crossOriginUrl); + // click 不会被触发(图片还未 onload) + expect(mockClick).not.toHaveBeenCalled(); + }); + + it('cross-origin image onload triggers canvas download', () => { + const crossOriginUrl = 'https://cross-origin.example.com/photo.png'; + + const mockCanvas = { + width: 0, + height: 0, + getContext: vi.fn().mockReturnValue({ drawImage: vi.fn() }), + toBlob: vi.fn().mockImplementation((cb) => cb(new Blob())), + }; + + let onloadFn: (() => void) | null = null; + const mockImage: Partial & { width: number; height: number } = { + setAttribute: vi.fn(), + width: 100, + height: 80, + }; + Object.defineProperty(mockImage, 'onload', { + set(fn) { + onloadFn = fn; + }, + }); + + const ImageSpy = vi.fn().mockImplementation(() => mockImage); + (global as any).Image = ImageSpy; + + vi.spyOn(document, 'createElement').mockImplementation((tag) => { + if (tag === 'canvas') return mockCanvas as unknown as HTMLCanvasElement; + return mockCreateElement(tag); + }); + + const mockBlobClick = vi.fn(); + const mockBlobAnchor = { href: '', download: '', click: mockBlobClick, remove: vi.fn() }; + vi.spyOn(document, 'createElement').mockImplementation((tag) => { + if (tag === 'canvas') return mockCanvas as unknown as HTMLCanvasElement; + if (tag === 'a') return mockBlobAnchor as unknown as HTMLAnchorElement; + return mockCreateElement(tag); + }); + + downloadImage(crossOriginUrl); + + // 触发 onload + expect(onloadFn).toBeTruthy(); + act(() => { + onloadFn?.(); + }); + + expect(mockCanvas.getContext).toHaveBeenCalledWith('2d'); + expect(mockCanvas.toBlob).toHaveBeenCalled(); + }); + + it('random name when URL has no filename', () => { + const mockClick = vi.fn(); + const mockRemove = vi.fn(); + const mockAnchor = { href: '', download: '', click: mockClick, remove: mockRemove }; + + vi.spyOn(document, 'createElement').mockImplementation((tag) => { + if (tag === 'a') return mockAnchor as unknown as HTMLAnchorElement; + return mockCreateElement(tag); + }); + + const urlNoFilename = `${window.location.origin}/`; + downloadImage(urlNoFilename); + expect(mockAnchor.download).toBeTruthy(); + expect(mockClick).toHaveBeenCalled(); + }); +}); + +// ─── 快照测试 ──────────────────────────────────────────────────────────── +describe('formatImages snapshots', () => { + it('string images snapshot', () => { + const result = formatImages(['img1.jpg', 'img2.png', 'img3.gif']); + expect(result).toMatchSnapshot('formatImages-string-array'); + }); + + it('ImageInfo objects snapshot', () => { + const result = formatImages([ + { mainImage: 'main1.jpg', thumbnail: 'thumb1.jpg', download: true }, + { mainImage: 'main2.jpg', download: false, isSvg: true }, + ]); + expect(result).toMatchSnapshot('formatImages-image-info-array'); + }); + + it('mixed array snapshot', () => { + const result = formatImages(['simple.jpg', { mainImage: 'complex.jpg', thumbnail: 'complex-thumb.jpg' }]); + expect(result).toMatchSnapshot('formatImages-mixed-array'); + }); + + it('empty array snapshot', () => { + expect(formatImages([])).toMatchSnapshot('formatImages-empty'); + }); +}); From cbd9ff45d5f70fb827a383d3ad530e5106bb9820 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=98=BF=E8=8F=9C=20Cai?= Date: Thu, 14 May 2026 09:43:02 +0800 Subject: [PATCH 19/27] =?UTF-8?q?test(image-viewer):=20=E6=9B=B4=E6=96=B0?= =?UTF-8?q?=E8=87=AA=E5=AE=9A=E4=B9=89=E6=A0=87=E9=A2=98=E5=BF=AB=E7=85=A7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../__tests__/__snapshots__/image-viewer.test.tsx.snap | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/packages/components/image-viewer/__tests__/__snapshots__/image-viewer.test.tsx.snap b/packages/components/image-viewer/__tests__/__snapshots__/image-viewer.test.tsx.snap index 85a8263240..04e27ef1fa 100644 --- a/packages/components/image-viewer/__tests__/__snapshots__/image-viewer.test.tsx.snap +++ b/packages/components/image-viewer/__tests__/__snapshots__/image-viewer.test.tsx.snap @@ -3813,7 +3813,9 @@ exports[`ImageViewer snapshots > 自定义 title > image-viewer-custom-title 1`]
                                                                                                                      - + + 自定义标题 + 1/2
                                                                                                                      Date: Thu, 14 May 2026 17:28:20 +0800 Subject: [PATCH 20/27] =?UTF-8?q?fix(image-viewer):=20=E4=BF=AE=E5=A4=8D?= =?UTF-8?q?=E7=BC=A9=E6=94=BE=E5=8A=A8=E7=94=BB=E9=97=AA=E7=83=81=E5=8F=8A?= =?UTF-8?q?=E7=B1=BB=E5=90=8D=E6=AE=8B=E7=95=99=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../image-viewer/ImageViewerModal.tsx | 14 +++-- .../components/image-viewer/hooks/useScale.ts | 60 +++++-------------- 2 files changed, 23 insertions(+), 51 deletions(-) diff --git a/packages/components/image-viewer/ImageViewerModal.tsx b/packages/components/image-viewer/ImageViewerModal.tsx index 44d77df4e1..de8ffc5234 100644 --- a/packages/components/image-viewer/ImageViewerModal.tsx +++ b/packages/components/image-viewer/ImageViewerModal.tsx @@ -132,24 +132,26 @@ export const ImageModalItem = React.forwardRef { const modalBox = modalBoxRef.current; if (!modalBox) return; - cleanupTransition(); - // 强制浏览器 reflow,确保类名移除生效后再添加能触发新的 transition 动画 - modalBox.getBoundingClientRect(); modalBox.classList.add(transitioningClass); // fallback 超时:transitionend 可能因 DOM 移除/动画合并等原因不触发, // 350ms(略大于 CSS transition duration)后自动清理,避免类名残留导致拖拽粘滞 + clearTimeout(fallbackTimerRef.current); fallbackTimerRef.current = setTimeout(cleanupTransition, 350); const handleTransitionEnd = (e: TransitionEvent) => { if (e.propertyName !== 'transform') return; cleanupTransition(); }; + if (transitionEndHandlerRef.current) { + modalBox.removeEventListener('transitionend', transitionEndHandlerRef.current); + } transitionEndHandlerRef.current = handleTransitionEnd; modalBox.addEventListener('transitionend', handleTransitionEnd); }, [transitioningClass, cleanupTransition]); @@ -560,7 +562,6 @@ export const ImageModal: React.FC = (props) => { // 缩小且图片超出视口:以视口中心为基准,向视口中心收敛 if (isZoomOut && isImageExceedsViewport(container, modalBox)) { const currentPosition = imageItemRef.current?.positionRef?.current ?? [0, 0]; - const result = onZoomOut({ mouseOffsetX: 0, mouseOffsetY: 0, @@ -569,6 +570,9 @@ export const ImageModal: React.FC = (props) => { translateY: currentPosition[1], }, }); + // 先加 transition 类(DOM 还在旧位置),再触发 position 变化 + // 浏览器对这次变化做平滑过渡,避免 getBoundingClientRect reflow 导致 scale 提前闪现 + // scale 到边界时 newTranslate 为空,不加 transition 类避免类名残留 if (result?.newTranslate) { imageItemRef.current?.enableTransition?.(); imageItemRef.current?.setPosition?.([result.newTranslate.translateX, result.newTranslate.translateY]); diff --git a/packages/components/image-viewer/hooks/useScale.ts b/packages/components/image-viewer/hooks/useScale.ts index 465333cbd0..5ac405bcbe 100644 --- a/packages/components/image-viewer/hooks/useScale.ts +++ b/packages/components/image-viewer/hooks/useScale.ts @@ -1,5 +1,4 @@ import { useCallback, useRef, useState } from 'react'; -import { throttle } from 'lodash-es'; import { zoomIn, zoomOut, clampScale, DEFAULT_IMAGE_SCALE } from '@tdesign/common-js/image-viewer/transform'; import type { ZoomOptions, ZoomResult, TranslateOffset } from '@tdesign/common-js/image-viewer/transform'; import type { ImageScale } from '../type'; @@ -15,59 +14,28 @@ const useScale = (imageScale: ImageScale) => { const distance = useRef(0); const [scale, setScale] = useState(calcDefaultScale()); const scaleRef = useRef(scale); - const lastZoomResultRef = useRef({}); const paramsRef = useRef({ step, min, max }); paramsRef.current = { step, min, max }; - // --- 节流(50ms,leading-only):防止高频滚轮/触摸过度触发 --- - const zoomOptionsRef = useRef(); - - const doZoomRef = useRef( - throttle( - () => { - const { step: s, min: mi, max: ma } = paramsRef.current; - const { newScale, zoomResult } = zoomIn(scaleRef.current, s, mi, ma, zoomOptionsRef.current); - lastZoomResultRef.current = zoomResult; - scaleRef.current = newScale; - setScale(newScale); - }, - 50, - { leading: true, trailing: false }, - ), - ); - - const zoomOutOptionsRef = useRef(); - const doZoomOutRef = useRef( - throttle( - () => { - const { step: s, min: mi, max: ma } = paramsRef.current; - const { newScale, zoomResult } = zoomOut(scaleRef.current, s, mi, ma, zoomOutOptionsRef.current); - lastZoomResultRef.current = zoomResult; - scaleRef.current = newScale; - setScale(newScale); - }, - 50, - { leading: true, trailing: false }, - ), - ); - const onZoomIn = useCallback((zoomOptions?: ZoomOptions): ZoomResult => { - zoomOptionsRef.current = zoomOptions; - const prevScale = scaleRef.current; - doZoomRef.current(); - // 被节流丢弃或已达边界 → 返回空结果,避免调用方使用过期的位移数据 - if (scaleRef.current === prevScale) return {}; - return lastZoomResultRef.current; + const { step: s, min: mi, max: ma } = paramsRef.current; + const { newScale, zoomResult } = zoomIn(scaleRef.current, s, mi, ma, zoomOptions); + // 已达边界,无变化 + if (newScale === scaleRef.current) return {}; + scaleRef.current = newScale; + setScale(newScale); + return zoomResult; }, []); const onZoomOut = useCallback((zoomOptions?: ZoomOptions): ZoomResult => { - zoomOutOptionsRef.current = zoomOptions; - const prevScale = scaleRef.current; - doZoomOutRef.current(); - // 被节流丢弃或已达边界 → 返回空结果,避免调用方使用过期的位移数据 - if (scaleRef.current === prevScale) return {}; - return lastZoomResultRef.current; + const { step: s, min: mi, max: ma } = paramsRef.current; + const { newScale, zoomResult } = zoomOut(scaleRef.current, s, mi, ma, zoomOptions); + // 已达边界,无变化 + if (newScale === scaleRef.current) return {}; + scaleRef.current = newScale; + setScale(newScale); + return zoomResult; }, []); const onResetScale = useCallback(() => { From 0181570ab2f4ec0b15c35cd38d91e8037fd764b7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=98=BF=E8=8F=9C=20Cai?= Date: Thu, 14 May 2026 19:00:37 +0800 Subject: [PATCH 21/27] =?UTF-8?q?refactor(image-viewer):=20=E8=BF=81?= =?UTF-8?q?=E7=A7=BB=E7=BC=A9=E6=94=BE=E4=BA=8B=E4=BB=B6=E5=A4=84=E7=90=86?= =?UTF-8?q?=E9=80=BB=E8=BE=91=E8=87=B3=20useScale=20hook?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../image-viewer/ImageViewerModal.tsx | 67 ++++--------------- .../components/image-viewer/hooks/useScale.ts | 30 +++++++-- 2 files changed, 37 insertions(+), 60 deletions(-) diff --git a/packages/components/image-viewer/ImageViewerModal.tsx b/packages/components/image-viewer/ImageViewerModal.tsx index de8ffc5234..788d351b3e 100644 --- a/packages/components/image-viewer/ImageViewerModal.tsx +++ b/packages/components/image-viewer/ImageViewerModal.tsx @@ -83,10 +83,6 @@ export const ImageModalItem = React.forwardRef void) | null>(null); const fallbackTimerRef = useRef>(); - // 清理监听器和类名 const cleanupTransition = useCallback(() => { const modalBox = modalBoxRef.current; if (transitionEndHandlerRef.current && modalBox) { @@ -132,16 +123,12 @@ export const ImageModalItem = React.forwardRef { const modalBox = modalBoxRef.current; if (!modalBox) return; modalBox.classList.add(transitioningClass); - // fallback 超时:transitionend 可能因 DOM 移除/动画合并等原因不触发, - // 350ms(略大于 CSS transition duration)后自动清理,避免类名残留导致拖拽粘滞 clearTimeout(fallbackTimerRef.current); fallbackTimerRef.current = setTimeout(cleanupTransition, 350); @@ -158,7 +145,6 @@ export const ImageModalItem = React.forwardRef cleanupTransition, [cleanupTransition]); - // 暴露内部状态,供父组件在缩放时读写 position useImperativeHandle( ref, () => ({ @@ -529,23 +515,15 @@ export const ImageModal: React.FC = (props) => { const containerRef = useRef(null); const imageItemRef = useRef(null); - const { scale, onZoomIn, onZoomOut, onResetScale, onTouchStart, onTouchMove, onTouchEnd } = useScale(imageScale); + // handleWheel 先用 ref 占位,useScale 之后再赋值,避免循环依赖 + const handleWheelRef = useRef<(e: WheelEvent) => void>(null); + const stableHandleWheel = useCallback((e: WheelEvent) => handleWheelRef.current?.(e), []); - // imageScale 动态变化时重置缩放 - const isFirstRender = useRef(true); - useEffect(() => { - if (isFirstRender.current) { - isFirstRender.current = false; - return; - } - onResetScale(); - }, [imageScale, onResetScale]); + const { scale, onZoomIn, onZoomOut, onResetScale } = useScale(imageScale, visible, stableHandleWheel); - // 容器级滚轮缩放处理(原生事件版) // ⚠️ 不能用 React 的 onWheel —— React 17+ 将 wheel 注册为 passive: true, // 导致 e.preventDefault() 无效,无法阻止页面滚动。 - // 必须用原生 addEventListener + { passive: false } 绕过。 - const handleWheel = useCallback( + handleWheelRef.current = useCallback( (e: WheelEvent) => { e.preventDefault(); @@ -553,14 +531,7 @@ export const ImageModal: React.FC = (props) => { const container = containerRef.current; const modalBox = imageItemRef.current?.modalBoxRef?.current; - // 无视口信息时,直接缩放 - if (!container || !modalBox) { - isZoomOut ? onZoomOut() : onZoomIn(); - return; - } - - // 缩小且图片超出视口:以视口中心为基准,向视口中心收敛 - if (isZoomOut && isImageExceedsViewport(container, modalBox)) { + if (isZoomOut && container && modalBox && isImageExceedsViewport(container, modalBox)) { const currentPosition = imageItemRef.current?.positionRef?.current ?? [0, 0]; const result = onZoomOut({ mouseOffsetX: 0, @@ -570,9 +541,6 @@ export const ImageModal: React.FC = (props) => { translateY: currentPosition[1], }, }); - // 先加 transition 类(DOM 还在旧位置),再触发 position 变化 - // 浏览器对这次变化做平滑过渡,避免 getBoundingClientRect reflow 导致 scale 提前闪现 - // scale 到边界时 newTranslate 为空,不加 transition 类避免类名残留 if (result?.newTranslate) { imageItemRef.current?.enableTransition?.(); imageItemRef.current?.setPosition?.([result.newTranslate.translateX, result.newTranslate.translateY]); @@ -584,22 +552,15 @@ export const ImageModal: React.FC = (props) => { [onZoomIn, onZoomOut], ); - // 容器级 wheel + 触摸缩放事件绑定 - // wheel 必须用原生绑定 { passive: false } 才能 preventDefault + // imageScale 动态变化时重置缩放 + const isFirstRender = useRef(true); useEffect(() => { - if (!visible) return; - const container = containerRef.current; - container?.addEventListener('wheel', handleWheel, { passive: false }); - document.addEventListener('touchstart', onTouchStart, { passive: false }); - document.addEventListener('touchmove', onTouchMove, { passive: false }); - document.addEventListener('touchend', onTouchEnd); - return () => { - container?.removeEventListener('wheel', handleWheel); - document.removeEventListener('touchstart', onTouchStart); - document.removeEventListener('touchmove', onTouchMove); - document.removeEventListener('touchend', onTouchEnd); - }; - }, [visible, handleWheel, onTouchStart, onTouchMove, onTouchEnd]); + if (isFirstRender.current) { + isFirstRender.current = false; + return; + } + onResetScale(); + }, [imageScale, onResetScale]); const onReset = useCallback(() => { onResetScale(); diff --git a/packages/components/image-viewer/hooks/useScale.ts b/packages/components/image-viewer/hooks/useScale.ts index 5ac405bcbe..1a8281f359 100644 --- a/packages/components/image-viewer/hooks/useScale.ts +++ b/packages/components/image-viewer/hooks/useScale.ts @@ -1,4 +1,4 @@ -import { useCallback, useRef, useState } from 'react'; +import { useCallback, useEffect, useRef, useState } from 'react'; import { zoomIn, zoomOut, clampScale, DEFAULT_IMAGE_SCALE } from '@tdesign/common-js/image-viewer/transform'; import type { ZoomOptions, ZoomResult, TranslateOffset } from '@tdesign/common-js/image-viewer/transform'; import type { ImageScale } from '../type'; @@ -6,7 +6,7 @@ import type { ImageScale } from '../type'; // 从 common 包重新导出类型,保持向后兼容 export type { ZoomOptions, ZoomResult, TranslateOffset }; -const useScale = (imageScale: ImageScale) => { +const useScale = (imageScale: ImageScale, visible: boolean, onWheel?: (e: WheelEvent) => void) => { const { max, min, step, defaultScale } = { ...DEFAULT_IMAGE_SCALE, ...imageScale }; const calcDefaultScale = useCallback(() => clampScale(defaultScale, min, max), [defaultScale, max, min]); @@ -21,7 +21,6 @@ const useScale = (imageScale: ImageScale) => { const onZoomIn = useCallback((zoomOptions?: ZoomOptions): ZoomResult => { const { step: s, min: mi, max: ma } = paramsRef.current; const { newScale, zoomResult } = zoomIn(scaleRef.current, s, mi, ma, zoomOptions); - // 已达边界,无变化 if (newScale === scaleRef.current) return {}; scaleRef.current = newScale; setScale(newScale); @@ -31,7 +30,6 @@ const useScale = (imageScale: ImageScale) => { const onZoomOut = useCallback((zoomOptions?: ZoomOptions): ZoomResult => { const { step: s, min: mi, max: ma } = paramsRef.current; const { newScale, zoomResult } = zoomOut(scaleRef.current, s, mi, ma, zoomOptions); - // 已达边界,无变化 if (newScale === scaleRef.current) return {}; scaleRef.current = newScale; setScale(newScale); @@ -72,14 +70,32 @@ const useScale = (imageScale: ImageScale) => { distance.current = 0; }, []); + const onWheelRef = useRef(onWheel); + onWheelRef.current = onWheel; + + const stableOnWheel = useCallback((e: WheelEvent) => { + onWheelRef.current?.(e); + }, []); + + useEffect(() => { + if (!visible) return; + document.addEventListener('wheel', stableOnWheel, { passive: false }); + document.addEventListener('touchstart', onTouchStart, { passive: false }); + document.addEventListener('touchmove', onTouchMove, { passive: false }); + document.addEventListener('touchend', onTouchEnd); + return () => { + document.removeEventListener('wheel', stableOnWheel); + document.removeEventListener('touchstart', onTouchStart); + document.removeEventListener('touchmove', onTouchMove); + document.removeEventListener('touchend', onTouchEnd); + }; + }, [visible, stableOnWheel, onTouchStart, onTouchMove, onTouchEnd]); + return { scale, onZoomIn, onZoomOut, onResetScale, - onTouchStart, - onTouchMove, - onTouchEnd, }; }; From 1297a3d112c5362ef2f4964cff21bd6ac510f65e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=98=BF=E8=8F=9C=20Cai?= Date: Thu, 14 May 2026 19:20:29 +0800 Subject: [PATCH 22/27] test(image-viewer): update useScale tests and remove throttle behavior --- .../image-viewer/__tests__/hooks.test.tsx | 73 ++++++++----------- .../components/image-viewer/hooks/useScale.ts | 8 +- 2 files changed, 36 insertions(+), 45 deletions(-) diff --git a/packages/components/image-viewer/__tests__/hooks.test.tsx b/packages/components/image-viewer/__tests__/hooks.test.tsx index 2f0e196956..a2e7983c2c 100644 --- a/packages/components/image-viewer/__tests__/hooks.test.tsx +++ b/packages/components/image-viewer/__tests__/hooks.test.tsx @@ -220,27 +220,27 @@ describe('useScale', () => { }); it('default scale value is 1', () => { - const { result } = renderHook(() => useScale({ max: 2, min: 0.5, step: 0.2, defaultScale: 1 })); + const { result } = renderHook(() => useScale({ max: 2, min: 0.5, step: 0.2, defaultScale: 1 }, true)); expect(result.current.scale).toBe(1); }); it('custom defaultScale', () => { - const { result } = renderHook(() => useScale({ max: 3, min: 0.5, step: 0.1, defaultScale: 1.5 })); + const { result } = renderHook(() => useScale({ max: 3, min: 0.5, step: 0.1, defaultScale: 1.5 }, true)); expect(result.current.scale).toBe(1.5); }); it('defaultScale clamped to max', () => { - const { result } = renderHook(() => useScale({ max: 2, min: 0.5, step: 0.2, defaultScale: 5 })); + const { result } = renderHook(() => useScale({ max: 2, min: 0.5, step: 0.2, defaultScale: 5 }, true)); expect(result.current.scale).toBe(2); }); it('defaultScale clamped to min', () => { - const { result } = renderHook(() => useScale({ max: 2, min: 1.5, step: 0.2, defaultScale: 0.5 })); + const { result } = renderHook(() => useScale({ max: 2, min: 1.5, step: 0.2, defaultScale: 0.5 }, true)); expect(result.current.scale).toBe(1.5); }); it('onZoomIn increases scale', () => { - const { result } = renderHook(() => useScale({ max: 2, min: 0.5, step: 0.2, defaultScale: 1 })); + const { result } = renderHook(() => useScale({ max: 2, min: 0.5, step: 0.2, defaultScale: 1 }, true)); act(() => { result.current.onZoomIn(); @@ -249,7 +249,7 @@ describe('useScale', () => { }); it('onZoomOut decreases scale', () => { - const { result } = renderHook(() => useScale({ max: 2, min: 0.5, step: 0.2, defaultScale: 1 })); + const { result } = renderHook(() => useScale({ max: 2, min: 0.5, step: 0.2, defaultScale: 1 }, true)); act(() => { result.current.onZoomOut(); @@ -258,7 +258,7 @@ describe('useScale', () => { }); it('max scale boundary', () => { - const { result } = renderHook(() => useScale({ max: 1.5, min: 0.5, step: 0.5, defaultScale: 1 })); + const { result } = renderHook(() => useScale({ max: 1.5, min: 0.5, step: 0.5, defaultScale: 1 }, true)); act(() => { result.current.onZoomIn(); @@ -274,7 +274,7 @@ describe('useScale', () => { }); it('min scale boundary', () => { - const { result } = renderHook(() => useScale({ max: 2, min: 0.5, step: 0.3, defaultScale: 0.6 })); + const { result } = renderHook(() => useScale({ max: 2, min: 0.5, step: 0.3, defaultScale: 0.6 }, true)); act(() => { result.current.onZoomOut(); @@ -284,7 +284,7 @@ describe('useScale', () => { }); it('onResetScale restores defaultScale', () => { - const { result } = renderHook(() => useScale({ max: 2, min: 0.5, step: 0.2, defaultScale: 1 })); + const { result } = renderHook(() => useScale({ max: 2, min: 0.5, step: 0.2, defaultScale: 1 }, true)); act(() => { result.current.onZoomIn(); @@ -299,7 +299,7 @@ describe('useScale', () => { }); it('small step values', () => { - const { result } = renderHook(() => useScale({ max: 2, min: 0.5, step: 0.05, defaultScale: 1 })); + const { result } = renderHook(() => useScale({ max: 2, min: 0.5, step: 0.05, defaultScale: 1 }, true)); act(() => { result.current.onZoomIn(); @@ -309,7 +309,7 @@ describe('useScale', () => { }); it('large scale values', () => { - const { result } = renderHook(() => useScale({ max: 10, min: 0.1, step: 1, defaultScale: 5 })); + const { result } = renderHook(() => useScale({ max: 10, min: 0.1, step: 1, defaultScale: 5 }, true)); expect(result.current.scale).toBe(5); act(() => { @@ -328,7 +328,7 @@ describe('useScale', () => { // ─── ZoomOptions(中心缩放)────────────────────────────────────────── describe('ZoomOptions (center zoom)', () => { it('onZoomIn with center zoom (mouseOffset = 0)', () => { - const { result } = renderHook(() => useScale({ max: 2, min: 0.5, step: 0.2, defaultScale: 1 })); + const { result } = renderHook(() => useScale({ max: 2, min: 0.5, step: 0.2, defaultScale: 1 }, true)); let zoomResult; act(() => { @@ -347,7 +347,7 @@ describe('useScale', () => { }); it('onZoomIn with non-zero mouse offset', () => { - const { result } = renderHook(() => useScale({ max: 2, min: 0.5, step: 0.2, defaultScale: 1 })); + const { result } = renderHook(() => useScale({ max: 2, min: 0.5, step: 0.2, defaultScale: 1 }, true)); let zoomResult; act(() => { @@ -366,7 +366,7 @@ describe('useScale', () => { }); it('onZoomOut with ZoomOptions preserves translate during zoom out', () => { - const { result } = renderHook(() => useScale({ max: 2, min: 0.5, step: 0.2, defaultScale: 1 })); + const { result } = renderHook(() => useScale({ max: 2, min: 0.5, step: 0.2, defaultScale: 1 }, true)); let zoomResult; act(() => { @@ -385,7 +385,7 @@ describe('useScale', () => { }); it('missing mouseOffset returns empty result', () => { - const { result } = renderHook(() => useScale({ max: 2, min: 0.5, step: 0.2, defaultScale: 1 })); + const { result } = renderHook(() => useScale({ max: 2, min: 0.5, step: 0.2, defaultScale: 1 }, true)); let zoomResult; act(() => { @@ -399,7 +399,7 @@ describe('useScale', () => { }); it('at max boundary, zoom in returns empty result', () => { - const { result } = renderHook(() => useScale({ max: 1.2, min: 0.5, step: 0.2, defaultScale: 1 })); + const { result } = renderHook(() => useScale({ max: 1.2, min: 0.5, step: 0.2, defaultScale: 1 }, true)); // 先放大到 max act(() => { @@ -422,7 +422,7 @@ describe('useScale', () => { }); it('zoom with existing translate and non-zero offset', () => { - const { result } = renderHook(() => useScale({ max: 2, min: 0.5, step: 0.2, defaultScale: 1 })); + const { result } = renderHook(() => useScale({ max: 2, min: 0.5, step: 0.2, defaultScale: 1 }, true)); let zoomResult; act(() => { @@ -441,37 +441,28 @@ describe('useScale', () => { }); }); - // ─── 节流行为 ────────────────────────────────────────────────────────── + // throttle 已移除,每次调用都直接生效 describe('throttle behavior', () => { - it('throttles rapid onZoomIn calls (50ms, leading-only)', () => { - const { result } = renderHook(() => useScale({ max: 5, min: 0.5, step: 0.2, defaultScale: 1 })); + it('rapid onZoomIn calls all take effect', () => { + const { result } = renderHook(() => useScale({ max: 5, min: 0.5, step: 0.2, defaultScale: 1 }, true)); act(() => { - // 连续快速调用 — 只有第一次生效(leading) result.current.onZoomIn(); result.current.onZoomIn(); result.current.onZoomIn(); }); - // 节流期间只执行了一次 - expect(result.current.scale).toBeCloseTo(1.2); - - // 等待节流间隔过去 - act(() => { - vi.advanceTimersByTime(100); - result.current.onZoomIn(); - }); - expect(result.current.scale).toBeCloseTo(1.4); + expect(result.current.scale).toBeCloseTo(1.6); }); - it('throttles rapid onZoomOut calls', () => { - const { result } = renderHook(() => useScale({ max: 5, min: 0.1, step: 0.2, defaultScale: 1 })); + it('rapid onZoomOut calls all take effect', () => { + const { result } = renderHook(() => useScale({ max: 5, min: 0.1, step: 0.2, defaultScale: 1 }, true)); act(() => { result.current.onZoomOut(); result.current.onZoomOut(); result.current.onZoomOut(); }); - expect(result.current.scale).toBeCloseTo(0.8); + expect(result.current.scale).toBeCloseTo(0.4); }); }); }); @@ -642,7 +633,7 @@ describe('useScale: touch events', () => { }; it('onTouchStart with 2 fingers records initial distance', () => { - const { result } = renderHook(() => useScale({ max: 3, min: 0.5, step: 0.2, defaultScale: 1 })); + const { result } = renderHook(() => useScale({ max: 3, min: 0.5, step: 0.2, defaultScale: 1 }, true)); const touchStart = createTouchEvent(0, 0, 100, 0, 'touchstart'); act(() => { result.current.onTouchStart(touchStart); @@ -652,7 +643,7 @@ describe('useScale: touch events', () => { }); it('onTouchStart with 1 finger does nothing', () => { - const { result } = renderHook(() => useScale({ max: 3, min: 0.5, step: 0.2, defaultScale: 1 })); + const { result } = renderHook(() => useScale({ max: 3, min: 0.5, step: 0.2, defaultScale: 1 }, true)); const touchStart = new TouchEvent('touchstart', { touches: [{ pageX: 0, pageY: 0 } as Touch], cancelable: true, @@ -664,7 +655,7 @@ describe('useScale: touch events', () => { }); it('onTouchMove pinch out (spread fingers) zooms in', () => { - const { result } = renderHook(() => useScale({ max: 3, min: 0.5, step: 0.2, defaultScale: 1 })); + const { result } = renderHook(() => useScale({ max: 3, min: 0.5, step: 0.2, defaultScale: 1 }, true)); // 初始距离 100 act(() => { @@ -680,7 +671,7 @@ describe('useScale: touch events', () => { }); it('onTouchMove pinch in (shrink fingers) zooms out', () => { - const { result } = renderHook(() => useScale({ max: 3, min: 0.5, step: 0.2, defaultScale: 1 })); + const { result } = renderHook(() => useScale({ max: 3, min: 0.5, step: 0.2, defaultScale: 1 }, true)); // 初始距离 200 act(() => { @@ -696,7 +687,7 @@ describe('useScale: touch events', () => { }); it('onTouchMove with 1 finger does nothing', () => { - const { result } = renderHook(() => useScale({ max: 3, min: 0.5, step: 0.2, defaultScale: 1 })); + const { result } = renderHook(() => useScale({ max: 3, min: 0.5, step: 0.2, defaultScale: 1 }, true)); const touchMove = new TouchEvent('touchmove', { touches: [{ pageX: 100, pageY: 0 } as Touch], cancelable: true, @@ -708,7 +699,7 @@ describe('useScale: touch events', () => { }); it('onTouchEnd resets distance to 0', () => { - const { result } = renderHook(() => useScale({ max: 3, min: 0.5, step: 0.2, defaultScale: 1 })); + const { result } = renderHook(() => useScale({ max: 3, min: 0.5, step: 0.2, defaultScale: 1 }, true)); act(() => { result.current.onTouchStart(createTouchEvent(0, 0, 100, 0, 'touchstart')); @@ -732,7 +723,7 @@ describe('hooks combination', () => { const { result: mirrorResult } = renderHook(() => useMirror()); const { result: rotateResult } = renderHook(() => useRotate()); - const { result: scaleResult } = renderHook(() => useScale({ max: 2, min: 0.5, step: 0.2, defaultScale: 1 })); + const { result: scaleResult } = renderHook(() => useScale({ max: 2, min: 0.5, step: 0.2, defaultScale: 1 }, true)); act(() => { mirrorResult.current.onMirror(); @@ -762,7 +753,7 @@ describe('hooks combination', () => { it('rapid operations across all hooks', () => { vi.useFakeTimers(); - const { result: scaleResult } = renderHook(() => useScale({ max: 3, min: 0.5, step: 0.1, defaultScale: 1 })); + const { result: scaleResult } = renderHook(() => useScale({ max: 3, min: 0.5, step: 0.1, defaultScale: 1 }, true)); const { result: mirrorResult } = renderHook(() => useMirror()); const { result: rotateResult } = renderHook(() => useRotate()); diff --git a/packages/components/image-viewer/hooks/useScale.ts b/packages/components/image-viewer/hooks/useScale.ts index 1a8281f359..1d51b4443b 100644 --- a/packages/components/image-viewer/hooks/useScale.ts +++ b/packages/components/image-viewer/hooks/useScale.ts @@ -1,11 +1,8 @@ import { useCallback, useEffect, useRef, useState } from 'react'; import { zoomIn, zoomOut, clampScale, DEFAULT_IMAGE_SCALE } from '@tdesign/common-js/image-viewer/transform'; -import type { ZoomOptions, ZoomResult, TranslateOffset } from '@tdesign/common-js/image-viewer/transform'; +import type { ZoomOptions, ZoomResult } from '@tdesign/common-js/image-viewer/transform'; import type { ImageScale } from '../type'; -// 从 common 包重新导出类型,保持向后兼容 -export type { ZoomOptions, ZoomResult, TranslateOffset }; - const useScale = (imageScale: ImageScale, visible: boolean, onWheel?: (e: WheelEvent) => void) => { const { max, min, step, defaultScale } = { ...DEFAULT_IMAGE_SCALE, ...imageScale }; @@ -96,6 +93,9 @@ const useScale = (imageScale: ImageScale, visible: boolean, onWheel?: (e: WheelE onZoomIn, onZoomOut, onResetScale, + onTouchStart, + onTouchMove, + onTouchEnd, }; }; From eb50c25ed7ec62d2138ac62ea8a91539cc3aa395 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=98=BF=E8=8F=9C=20Cai?= Date: Wed, 20 May 2026 01:14:47 +0800 Subject: [PATCH 23/27] =?UTF-8?q?chore(deps):=20=E6=9B=B4=E6=96=B0=20commo?= =?UTF-8?q?n=20=E5=AD=90=E9=A1=B9=E7=9B=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/common | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/common b/packages/common index 1aedcceec7..6cb4b3674b 160000 --- a/packages/common +++ b/packages/common @@ -1 +1 @@ -Subproject commit 1aedcceec7610f868a8e19694cd287c24747fd29 +Subproject commit 6cb4b3674b305663b75b8898d1a1a868bea24f08 From b4070f457af88f180481503fd49cd5b86aa9bd18 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=98=BF=E8=8F=9C=20Cai?= Date: Wed, 20 May 2026 04:26:38 +0800 Subject: [PATCH 24/27] =?UTF-8?q?test(image-viewer):=20=E6=9B=B4=E6=96=B0?= =?UTF-8?q?=E5=B7=A5=E5=85=B7=E6=A0=8F=E6=93=8D=E4=BD=9C=E5=BF=AB=E7=85=A7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../__snapshots__/hooks.test.tsx.snap | 27 - .../__snapshots__/image-viewer.test.tsx.snap | 5112 ++++++++--------- .../__snapshots__/utils.test.ts.snap | 36 +- .../image-viewer/__tests__/hooks.test.tsx | 572 +- .../__tests__/image-viewer.test.tsx | 1034 +++- .../image-viewer/__tests__/transform.test.ts | 182 +- .../image-viewer/__tests__/utils.test.ts | 141 +- .../components/image-viewer/hooks/useIndex.ts | 5 +- 8 files changed, 4115 insertions(+), 2994 deletions(-) delete mode 100644 packages/components/image-viewer/__tests__/__snapshots__/hooks.test.tsx.snap diff --git a/packages/components/image-viewer/__tests__/__snapshots__/hooks.test.tsx.snap b/packages/components/image-viewer/__tests__/__snapshots__/hooks.test.tsx.snap deleted file mode 100644 index 95729bf084..0000000000 --- a/packages/components/image-viewer/__tests__/__snapshots__/hooks.test.tsx.snap +++ /dev/null @@ -1,27 +0,0 @@ -// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html - -exports[`usePosition > snapshot: default state > usePosition-default-state 1`] = ` -{ - "isDragging": false, - "position": [ - 0, - 0, - ], - "resetPosition": [Function], - "setPosition": [Function], -} -`; - -exports[`useViewerScale > snapshot: custom config > useViewerScale-custom 1`] = ` -{ - "minHeight": 480, - "minWidth": 600, -} -`; - -exports[`useViewerScale > snapshot: default config > useViewerScale-default 1`] = ` -{ - "minHeight": 1000, - "minWidth": 1000, -} -`; diff --git a/packages/components/image-viewer/__tests__/__snapshots__/image-viewer.test.tsx.snap b/packages/components/image-viewer/__tests__/__snapshots__/image-viewer.test.tsx.snap index 04e27ef1fa..6cc5dac5a7 100644 --- a/packages/components/image-viewer/__tests__/__snapshots__/image-viewer.test.tsx.snap +++ b/packages/components/image-viewer/__tests__/__snapshots__/image-viewer.test.tsx.snap @@ -1,255 +1,319 @@ // Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html -exports[`ImageViewer snapshots > DefaultTrigger 多张图片默认触发器渲染快照 > image-viewer-default-trigger-multi 1`] = ` -
                                                                                                                      +exports[`ImageViewer 工具栏操作快照 > 多图导航:上一张/下一张按钮快照 > toolbar-navigate-next 1`] = ` + +
                                                                                                                      + + 工具栏测试 + +
                                                                                                                      +
                                                                                                                      - preview
                                                                                                                      -
                                                                                                                      -
                                                                                                                      - - - - - - - - -
                                                                                                                      -
                                                                                                                      - 图片加载中 -
                                                                                                                      -
                                                                                                                      -
                                                                                                                      -
                                                                                                                      -
                                                                                                                      - - - - - 预览 - -
                                                                                                                      -
                                                                                                                      -
                                                                                                                      -`; - -exports[`ImageViewer snapshots > DefaultTrigger 默认触发器渲染快照 > image-viewer-default-trigger 1`] = ` -
                                                                                                                      -
                                                                                                                      -
                                                                                                                      - preview +
                                                                                                                      - - +
                                                                                                                      - - - - - - +
                                                                                                                      +
                                                                                                                      + + + + + + + + +
                                                                                                                      +
                                                                                                                      + 图片加载中 +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      - 图片加载中 -
                                                                                                                      -
                                                                                                                      -
                                                                                                                      -
                                                                                                                      -
                                                                                                                      - - - + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + + + + + + +
                                                                                                                      +
                                                                                                                      + 图片加载中 +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      - - - - - - - 预览 - +
                                                                                                                      + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + + + + + + +
                                                                                                                      +
                                                                                                                      + 图片加载中 +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      -
                                                                                                                      -
                                                                                                                      -`; - -exports[`ImageViewer snapshots > attach 到指定容器 > image-viewer-attach-custom-container 1`] = ` -
                                                                                                                      -
                                                                                                                      + class="t-image-viewer__modal-index" + > + + 2/3 +
                                                                                                                      +
                                                                                                                      + + + + + +
                                                                                                                      +
                                                                                                                      + + + + + +
                                                                                                                      @@ -531,364 +595,274 @@ exports[`ImageViewer snapshots > attach 到指定容器 > image-viewer-attach-cu alt="image" class="t-image-viewer__modal-image" draggable="false" - src="https://tdesign.gtimg.com/demo/demo-image-1.png" + src="https://tdesign.gtimg.com/demo/demo-image-2.png" style="transform: rotateZ(0deg) scale(1); display: block;" />
                                                                                                                      -
                                                                                                                      + `; -exports[`ImageViewer snapshots > modeless 模式 > image-viewer-modeless 1`] = ` +exports[`ImageViewer 工具栏操作快照 > 多图导航:上一张/下一张按钮快照 > toolbar-navigate-prev 1`] = `
                                                                                                                      - 预览单张图片 + 工具栏测试
                                                                                                                      +
                                                                                                                      -
                                                                                                                      -
                                                                                                                      + + + + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      - -
                                                                                                                      - - - - - - - + + + + + + + + +
                                                                                                                      +
                                                                                                                      + 图片加载中 +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      - image - + + + + + + + + +
                                                                                                                      +
                                                                                                                      + 图片加载中
                                                                                                                      +
                                                                                                                      +
                                                                                                                      -
                                                                                                                      - -`; - -exports[`ImageViewer snapshots > modeless 模式 - 第二张图片 > image-viewer-modeless-second-image 1`] = ` - -
                                                                                                                      - - 预览单张图片 - -
                                                                                                                      -
                                                                                                                      -
                                                                                                                      -
                                                                                                                      + 2/3 +
                                                                                                                      +
                                                                                                                      + + + + + +
                                                                                                                      +
                                                                                                                      + + + + + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      -
                                                                                                                      -
                                                                                                                      - + + + + -
                                                                                                                      - - - - - - - -
                                                                                                                      -
                                                                                                                      + + + + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + -
                                                                                                                      -
                                                                                                                      -
                                                                                                                      - image - -
                                                                                                                      -
                                                                                                                      -
                                                                                                                      -
                                                                                                                      - -
                                                                                                                      -
                                                                                                                      -
                                                                                                                      -
                                                                                                                      -
                                                                                                                      - -`; - -exports[`ImageViewer snapshots > 不可拖拽 > image-viewer-not-draggable 1`] = ` - -
                                                                                                                      - - 预览单张图片 - -
                                                                                                                      -
                                                                                                                      -
                                                                                                                      -
                                                                                                                      -
                                                                                                                      -
                                                                                                                      -
                                                                                                                      - - - - - - - - - - - - - -
                                                                                                                      -
                                                                                                                      -
                                                                                                                      -
                                                                                                                      - - - - - -
                                                                                                                      -
                                                                                                                      -
                                                                                                                      - - + + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + 不可拖拽 > image-viewer-not-draggable 1`] = alt="image" class="t-image-viewer__modal-image" draggable="false" - src="https://tdesign.gtimg.com/demo/demo-image-1.png" + src="https://tdesign.gtimg.com/demo/demo-image-2.png" style="transform: rotateZ(0deg) scale(1); display: block;" />
                                                                                                                      @@ -1565,11 +1222,11 @@ exports[`ImageViewer snapshots > 不可拖拽 > image-viewer-not-draggable 1`] = `; -exports[`ImageViewer snapshots > 关闭按钮为 false > image-viewer-close-btn-disabled 1`] = ` +exports[`ImageViewer 工具栏操作快照 > 点击原始大小按钮后快照 > toolbar-after-reset 1`] = `
                                                                                                                      - 预览单张图片 + 工具栏测试
                                                                                                                      关闭按钮为 false > image-viewer-close-btn-
                                                                                                                      +
                                                                                                                      + + + + + +
                                                                                                                      @@ -1851,11 +1532,11 @@ exports[`ImageViewer snapshots > 关闭按钮为 false > image-viewer-close-btn- `; -exports[`ImageViewer snapshots > 单张图片默认状态 > image-viewer-single-image-default 1`] = ` +exports[`ImageViewer 工具栏操作快照 > 点击放大按钮后快照 > toolbar-after-zoom-in 1`] = `
                                                                                                                      - 预览单张图片 + 工具栏测试
                                                                                                                      单张图片默认状态 > image-viewer-single- - 100% + 120%
                                                                                                                      单张图片默认状态 > image-viewer-single- class="t-image-viewer__modal-image" draggable="false" src="https://tdesign.gtimg.com/demo/demo-image-1.png" - style="transform: rotateZ(0deg) scale(1); display: block;" + style="transform: rotateZ(0deg) scale(1.2); display: block;" />
                                                                                                                      @@ -2161,11 +1842,11 @@ exports[`ImageViewer snapshots > 单张图片默认状态 > image-viewer-single- `; -exports[`ImageViewer snapshots > 多张图片默认状态 > image-viewer-multi-image-default 1`] = ` +exports[`ImageViewer 工具栏操作快照 > 点击旋转按钮后快照 > toolbar-after-rotate 1`] = `
                                                                                                                      - 预览单张图片 + 工具栏测试
                                                                                                                      多张图片默认状态 > image-viewer-multi-i class="t-image-viewer__modal-mask" />
                                                                                                                      - +
                                                                                                                      + + + + + + + + + + + + + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + + + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      - - - - -
                                                                                                                      -
                                                                                                                      + + + + + + +
                                                                                                                      -
                                                                                                                      -
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + - -
                                                                                                                      -
                                                                                                                      -
                                                                                                                      - - - - - - - - -
                                                                                                                      -
                                                                                                                      - 图片加载中 -
                                                                                                                      -
                                                                                                                      -
                                                                                                                      -
                                                                                                                      -
                                                                                                                      + + + + +
                                                                                                                      +
                                                                                                                      -
                                                                                                                      - -
                                                                                                                      -
                                                                                                                      -
                                                                                                                      - - - - - - - - -
                                                                                                                      -
                                                                                                                      - 图片加载中 -
                                                                                                                      -
                                                                                                                      -
                                                                                                                      -
                                                                                                                      + + + + + +
                                                                                                                      -
                                                                                                                      +
                                                                                                                      + -
                                                                                                                      - -
                                                                                                                      -
                                                                                                                      -
                                                                                                                      - - - - - - - - -
                                                                                                                      -
                                                                                                                      - 图片加载中 -
                                                                                                                      -
                                                                                                                      -
                                                                                                                      -
                                                                                                                      -
                                                                                                                      + + +
                                                                                                                      - - 1/3 -
                                                                                                                      -
                                                                                                                      多张图片默认状态 > image-viewer-multi-i width="1em" > 多张图片默认状态 > image-viewer-multi-i
                                                                                                                      - - - - - + image + +
                                                                                                                      +
                                                                                                                      + +`; + +exports[`ImageViewer 工具栏操作快照 > 点击缩小按钮后快照 > toolbar-after-zoom-out 1`] = ` + +
                                                                                                                      + + 工具栏测试 + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      @@ -2603,7 +2293,7 @@ exports[`ImageViewer snapshots > 多张图片默认状态 > image-viewer-multi-i - 100% + 80%
                                                                                                                      多张图片默认状态 > image-viewer-multi-i class="t-image-viewer__modal-image" draggable="false" src="https://tdesign.gtimg.com/demo/demo-image-1.png" - style="transform: rotateZ(0deg) scale(1); display: block;" + style="transform: rotateZ(0deg) scale(0.8); display: block;" />
                                                                                                                      @@ -2772,16 +2462,19 @@ exports[`ImageViewer snapshots > 多张图片默认状态 > image-viewer-multi-i `; -exports[`ImageViewer snapshots > 无遮罩层 > image-viewer-no-overlay 1`] = ` +exports[`ImageViewer 工具栏操作快照 > 点击镜像按钮后快照 > toolbar-after-mirror 1`] = `
                                                                                                                      - 预览单张图片 + 工具栏测试
                                                                                                                      +
                                                                                                                      @@ -3057,7 +2750,7 @@ exports[`ImageViewer snapshots > 无遮罩层 > image-viewer-no-overlay 1`] = ` >
                                                                                                                      image 无遮罩层 > image-viewer-no-overlay 1`] = ` `; -exports[`ImageViewer snapshots > 自定义 imageScale 配置 > image-viewer-custom-scale-config 1`] = ` - -
                                                                                                                      - - 预览单张图片 - -
                                                                                                                      +exports[`ImageViewer 快照测试 > DefaultTrigger 多张图片默认触发器 > image-viewer-default-trigger-multi 1`] = ` +
                                                                                                                      -
                                                                                                                      + preview
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + + + + + + +
                                                                                                                      +
                                                                                                                      + 图片加载中 +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + + -
                                                                                                                      + 预览 + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +`; + +exports[`ImageViewer 快照测试 > DefaultTrigger 默认触发器 > image-viewer-default-trigger 1`] = ` +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + preview
                                                                                                                      -
                                                                                                                      - -
                                                                                                                      -
                                                                                                                      -
                                                                                                                      - - - - - - - - -
                                                                                                                      -
                                                                                                                      - 图片加载中 -
                                                                                                                      -
                                                                                                                      -
                                                                                                                      -
                                                                                                                      + + + + + +
                                                                                                                      -
                                                                                                                      - -
                                                                                                                      -
                                                                                                                      -
                                                                                                                      - - - - - - - - -
                                                                                                                      -
                                                                                                                      - 图片加载中 -
                                                                                                                      -
                                                                                                                      -
                                                                                                                      -
                                                                                                                      + 图片加载中
                                                                                                                      - - 1/2 -
                                                                                                                      -
                                                                                                                      - - - - - -
                                                                                                                      -
                                                                                                                      - - + - - - + + + + + + + + 预览 +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +`; + +exports[`ImageViewer 快照测试 > attach 到指定容器 > image-viewer-attach-custom-container 1`] = ` +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      @@ -3451,7 +3150,7 @@ exports[`ImageViewer snapshots > 自定义 imageScale 配置 > image-viewer-cust - 200% + 100%
                                                                                                                      自定义 imageScale 配置 > image-viewer-cust viewBox="0 0 24 24" width="1em" > - + + + + + + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + + + + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + + + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + image + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +`; + +exports[`ImageViewer 快照测试 > modeless 模式 > image-viewer-modeless 1`] = ` + +
                                                                                                                      + + 预览单张图片 + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + +
                                                                                                                      + + + + + + + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + image + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      -
                                                                                                                      - - - - - - -
                                                                                                                      -
                                                                                                                      -
                                                                                                                      -
                                                                                                                      - - - - - -
                                                                                                                      -
                                                                                                                      -
                                                                                                                      - image -
                                                                                                                      `; -exports[`ImageViewer snapshots > 自定义 title > image-viewer-custom-title 1`] = ` +exports[`ImageViewer 快照测试 > modeless 模式切换图片 > image-viewer-modeless-second-image 1`] = `
                                                                                                                      @@ -3628,180 +3681,340 @@ exports[`ImageViewer snapshots > 自定义 title > image-viewer-custom-title 1`]
                                                                                                                      -
                                                                                                                      - - - - - -
                                                                                                                      -
                                                                                                                      -
                                                                                                                      -
                                                                                                                      +
                                                                                                                      + + -
                                                                                                                      - - - - - - - - -
                                                                                                                      + + + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      - 图片加载中 + image +
                                                                                                                      -
                                                                                                                      -
                                                                                                                      -
                                                                                                                      - +
                                                                                                                      + + + + + + + + + + + + + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + + + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + + + + + +
                                                                                                                      +
                                                                                                                      + + 100% + +
                                                                                                                      +
                                                                                                                      + + + + + + + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + + + + + + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      - - - - - - - -
                                                                                                                      -
                                                                                                                      - 图片加载中 + + + + + +
                                                                                                                      @@ -3810,62 +4023,23 @@ exports[`ImageViewer snapshots > 自定义 title > image-viewer-custom-title 1`]
                                                                                                                      +
                                                                                                                      + +`; + +exports[`ImageViewer 快照测试 > 不可拖拽 > image-viewer-not-draggable 1`] = ` + +
                                                                                                                      + + 预览单张图片 + +
                                                                                                                      +
                                                                                                                      - - 自定义标题 - - 1/2 -
                                                                                                                      -
                                                                                                                      - - - - - -
                                                                                                                      -
                                                                                                                      - - - - - -
                                                                                                                      + class="t-image-viewer__modal-mask" + />
                                                                                                                      @@ -4163,7 +4337,7 @@ exports[`ImageViewer snapshots > 自定义 title > image-viewer-custom-title 1`] `; -exports[`ImageViewer snapshots > 自定义关闭按钮 > image-viewer-custom-close-btn 1`] = ` +exports[`ImageViewer 快照测试 > 关闭按钮为 false > image-viewer-close-btn-disabled 1`] = `
                                                                                                                      @@ -4252,137 +4426,10 @@ exports[`ImageViewer snapshots > 自定义关闭按钮 > image-viewer-custom-clo id="rotation" > - - -
                                                                                                                      -
                                                                                                                      -
                                                                                                                      - - - - - - - -
                                                                                                                      -
                                                                                                                      - - 100% - -
                                                                                                                      -
                                                                                                                      - - - - - - - -
                                                                                                                      -
                                                                                                                      -
                                                                                                                      - - - - - - @@ -4393,7 +4440,7 @@ exports[`ImageViewer snapshots > 自定义关闭按钮 > image-viewer-custom-clo class="t-image-viewer__modal-icon" > 自定义关闭按钮 > image-viewer-custom-clo width="1em" > + 自定义关闭按钮 > image-viewer-custom-clo
                                                                                                                      -
                                                                                                                      -
                                                                                                                      - - ✕ - -
                                                                                                                      -
                                                                                                                      - image - -
                                                                                                                      -
                                                                                                                      -
                                                                                                                      - -`; - -exports[`ImageViewer toolbar event snapshots > 多图导航:上一张/下一张按钮快照 > toolbar-navigate-next 1`] = ` - -
                                                                                                                      - - 工具栏测试 - -
                                                                                                                      -
                                                                                                                      -
                                                                                                                      -
                                                                                                                      -
                                                                                                                      - - - - - -
                                                                                                                      -
                                                                                                                      + 100% + +
                                                                                                                      -
                                                                                                                      -
                                                                                                                      - -
                                                                                                                      -
                                                                                                                      -
                                                                                                                      - - - - - - - - -
                                                                                                                      -
                                                                                                                      - 图片加载中 -
                                                                                                                      -
                                                                                                                      -
                                                                                                                      -
                                                                                                                      -
                                                                                                                      -
                                                                                                                      -
                                                                                                                      - -
                                                                                                                      -
                                                                                                                      -
                                                                                                                      - - - - - - - - -
                                                                                                                      -
                                                                                                                      - 图片加载中 -
                                                                                                                      -
                                                                                                                      -
                                                                                                                      -
                                                                                                                      -
                                                                                                                      -
                                                                                                                      -
                                                                                                                      - -
                                                                                                                      + + + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + -
                                                                                                                      -
                                                                                                                      - - - - - - - - -
                                                                                                                      -
                                                                                                                      - 图片加载中 -
                                                                                                                      -
                                                                                                                      -
                                                                                                                      -
                                                                                                                      + + + + + +
                                                                                                                      +
                                                                                                                      + + + + + + +
                                                                                                                      - - 2/3 -
                                                                                                                      -
                                                                                                                      - - - - - + image + +
                                                                                                                      +
                                                                                                                      + +`; + +exports[`ImageViewer 快照测试 > 单张图片默认状态 > image-viewer-single-image-default 1`] = ` + +
                                                                                                                      + + 预览单张图片 + +
                                                                                                                      +
                                                                                                                      - - - - - -
                                                                                                                      + class="t-image-viewer__modal-mask" + />
                                                                                                                      @@ -5049,14 +4917,14 @@ exports[`ImageViewer toolbar event snapshots > 多图导航:上一张/下一 alt="image" class="t-image-viewer__modal-image" draggable="false" - src="https://tdesign.gtimg.com/demo/demo-image-2.png" + src="https://tdesign.gtimg.com/demo/demo-image-1.png" style="transform: rotateZ(0deg) scale(1); display: block;" />
                                                                                                                      @@ -5065,11 +4933,11 @@ exports[`ImageViewer toolbar event snapshots > 多图导航:上一张/下一 `; -exports[`ImageViewer toolbar event snapshots > 多图导航:上一张/下一张按钮快照 > toolbar-navigate-prev 1`] = ` +exports[`ImageViewer 快照测试 > 多张图片默认状态 > image-viewer-multi-image-default 1`] = `
                                                                                                                      - 工具栏测试 + 预览单张图片
                                                                                                                      多图导航:上一张/下一 >
                                                                                                                      多图导航:上一张/下一
                                                                                                                      多图导航:上一张/下一 class="t-image-viewer__modal-index" > - 2/3 + 1/3
                                                                                                                      多图导航:上一张/下一 alt="image" class="t-image-viewer__modal-image" draggable="false" - src="https://tdesign.gtimg.com/demo/demo-image-2.png" + src="https://tdesign.gtimg.com/demo/demo-image-1.png" style="transform: rotateZ(0deg) scale(1); display: block;" />
                                                                                                                      @@ -5676,19 +5544,16 @@ exports[`ImageViewer toolbar event snapshots > 多图导航:上一张/下一 `; -exports[`ImageViewer toolbar event snapshots > 点击原始大小按钮后快照 > toolbar-after-reset 1`] = ` +exports[`ImageViewer 快照测试 > 无遮罩层 > image-viewer-no-overlay 1`] = `
                                                                                                                      - 工具栏测试 + 预览单张图片
                                                                                                                      -
                                                                                                                      @@ -5982,23 +5847,254 @@ exports[`ImageViewer toolbar event snapshots > 点击原始大小按钮后快照 />
                                                                                                                      -
                                                                                                                      - -`; - -exports[`ImageViewer toolbar event snapshots > 点击放大按钮后快照 > toolbar-after-zoom-in 1`] = ` - -
                                                                                                                      - - 工具栏测试 - -
                                                                                                                      -
                                                                                                                      -
                                                                                                                      +
                                                                                                                      + +`; + +exports[`ImageViewer 快照测试 > 自定义 imageScale 配置 > image-viewer-custom-scale-config 1`] = ` + +
                                                                                                                      + + 预览单张图片 + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + + + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + + + + + + +
                                                                                                                      +
                                                                                                                      + 图片加载中 +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + + + + + + +
                                                                                                                      +
                                                                                                                      + 图片加载中 +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + 1/2 +
                                                                                                                      +
                                                                                                                      + + + + + +
                                                                                                                      +
                                                                                                                      + + + + + +
                                                                                                                      @@ -6127,7 +6223,7 @@ exports[`ImageViewer toolbar event snapshots > 点击放大按钮后快照 > too - 100% + 200%
                                                                                                                      点击放大按钮后快照 > too class="t-image-viewer__modal-image" draggable="false" src="https://tdesign.gtimg.com/demo/demo-image-1.png" - style="transform: rotateZ(0deg) scale(1); display: block;" + style="transform: rotateZ(0deg) scale(2); display: block;" />
                                                                                                                      @@ -6296,11 +6392,11 @@ exports[`ImageViewer toolbar event snapshots > 点击放大按钮后快照 > too `; -exports[`ImageViewer toolbar event snapshots > 点击旋转按钮后快照 > toolbar-after-rotate 1`] = ` +exports[`ImageViewer 快照测试 > 自定义 title > image-viewer-custom-title 1`] = `
                                                                                                                      - 工具栏测试 + 预览单张图片
                                                                                                                      点击旋转按钮后快照 > too class="t-image-viewer__modal-mask" />
                                                                                                                      -
                                                                                                                      -
                                                                                                                      - - - - - - - - - - - - - -
                                                                                                                      -
                                                                                                                      -
                                                                                                                      -
                                                                                                                      - - - - - -
                                                                                                                      -
                                                                                                                      -
                                                                                                                      - - - - - - - -
                                                                                                                      -
                                                                                                                      - - 100% - -
                                                                                                                      + + + +
                                                                                                                      +
                                                                                                                      - - - - - - - -
                                                                                                                      -
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + + + + + + +
                                                                                                                      +
                                                                                                                      + 图片加载中 +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      - - +
                                                                                                                      - - - - - - +
                                                                                                                      +
                                                                                                                      + + + + + + + + +
                                                                                                                      +
                                                                                                                      + 图片加载中 +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      -
                                                                                                                      - - - - - - -
                                                                                                                      + + 自定义标题 + + 1/2 +
                                                                                                                      +
                                                                                                                      点击旋转按钮后快照 > too width="1em" > 点击旋转按钮后快照 > too
                                                                                                                      -
                                                                                                                      - image - -
                                                                                                                      + + + +
                                                                                                                      -
                                                                                                                      - -`; - -exports[`ImageViewer toolbar event snapshots > 点击缩小按钮后快照 > toolbar-after-zoom-out 1`] = ` - -
                                                                                                                      - - 工具栏测试 - -
                                                                                                                      -
                                                                                                                      -
                                                                                                                      @@ -6916,11 +6935,11 @@ exports[`ImageViewer toolbar event snapshots > 点击缩小按钮后快照 > too `; -exports[`ImageViewer toolbar event snapshots > 点击镜像按钮后快照 > toolbar-after-mirror 1`] = ` +exports[`ImageViewer 快照测试 > 自定义关闭按钮 > image-viewer-custom-close-btn 1`] = `
                                                                                                                      - 工具栏测试 + 预览单张图片
                                                                                                                      点击镜像按钮后快照 > too
                                                                                                                      -
                                                                                                                      - - - - - -
                                                                                                                      + ✕ +
                                                                                                                      diff --git a/packages/components/image-viewer/__tests__/__snapshots__/utils.test.ts.snap b/packages/components/image-viewer/__tests__/__snapshots__/utils.test.ts.snap index 04a35d5f2c..45eb55245a 100644 --- a/packages/components/image-viewer/__tests__/__snapshots__/utils.test.ts.snap +++ b/packages/components/image-viewer/__tests__/__snapshots__/utils.test.ts.snap @@ -1,6 +1,6 @@ // Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html -exports[`formatImages snapshots > ImageInfo objects snapshot > formatImages-image-info-array 1`] = ` +exports[`formatImages 快照 > ImageInfo 对象数组快照 > formatImages-image-info-array 1`] = ` [ { "download": true, @@ -16,39 +16,39 @@ exports[`formatImages snapshots > ImageInfo objects snapshot > formatImages-imag ] `; -exports[`formatImages snapshots > empty array snapshot > formatImages-empty 1`] = `[]`; - -exports[`formatImages snapshots > mixed array snapshot > formatImages-mixed-array 1`] = ` +exports[`formatImages 快照 > 字符串数组快照 > formatImages-string-array 1`] = ` [ { "download": true, - "mainImage": "simple.jpg", - "thumbnail": "simple.jpg", + "mainImage": "img1.jpg", + "thumbnail": "img1.jpg", }, { "download": true, - "mainImage": "complex.jpg", - "thumbnail": "complex-thumb.jpg", + "mainImage": "img2.png", + "thumbnail": "img2.png", + }, + { + "download": true, + "mainImage": "img3.gif", + "thumbnail": "img3.gif", }, ] `; -exports[`formatImages snapshots > string images snapshot > formatImages-string-array 1`] = ` +exports[`formatImages 快照 > 混合数组快照 > formatImages-mixed-array 1`] = ` [ { "download": true, - "mainImage": "img1.jpg", - "thumbnail": "img1.jpg", - }, - { - "download": true, - "mainImage": "img2.png", - "thumbnail": "img2.png", + "mainImage": "simple.jpg", + "thumbnail": "simple.jpg", }, { "download": true, - "mainImage": "img3.gif", - "thumbnail": "img3.gif", + "mainImage": "complex.jpg", + "thumbnail": "complex-thumb.jpg", }, ] `; + +exports[`formatImages 快照 > 空数组快照 > formatImages-empty 1`] = `[]`; diff --git a/packages/components/image-viewer/__tests__/hooks.test.tsx b/packages/components/image-viewer/__tests__/hooks.test.tsx index 202f096578..71575eda32 100644 --- a/packages/components/image-viewer/__tests__/hooks.test.tsx +++ b/packages/components/image-viewer/__tests__/hooks.test.tsx @@ -14,6 +14,7 @@ import { DEFAULT_IMAGE_SCALE } from '@tdesign/common-js/image-viewer/transform'; import { act, renderHook, vi } from '@test/utils'; import useImageScale from '../hooks/useImageScale'; +import useIndex from '../hooks/useIndex'; import useMirror from '../hooks/useMirror'; import usePosition from '../hooks/usePosition'; import useRotate from '../hooks/useRotate'; @@ -23,13 +24,13 @@ import useViewerScale from '../hooks/useViewerScale'; import type React from 'react'; // ─── useMirror ─────────────────────────────────────────────────────────── -describe('useMirror', () => { - it('initial value is 1', () => { +describe('useMirror 镜像', () => { + test('初始值为 1', () => { const { result } = renderHook(() => useMirror()); expect(result.current.mirror).toBe(1); }); - it('toggles between 1 and -1', () => { + test('在 1 和 -1 之间切换', () => { const { result } = renderHook(() => useMirror()); act(() => result.current.onMirror()); @@ -42,7 +43,7 @@ describe('useMirror', () => { expect(result.current.mirror).toBe(-1); }); - it('resetMirror restores to 1', () => { + test('resetMirror 恢复为 1', () => { const { result } = renderHook(() => useMirror()); act(() => result.current.onMirror()); @@ -54,7 +55,7 @@ describe('useMirror', () => { expect(result.current.mirror).toBe(1); }); - it('rapid toggles (10 times) return to 1', () => { + test('连续切换 10 次回到 1', () => { const { result } = renderHook(() => useMirror()); act(() => { @@ -65,7 +66,7 @@ describe('useMirror', () => { expect(result.current.mirror).toBe(1); }); - it('multiple resets are idempotent', () => { + test('多次 resetMirror 幂等', () => { const { result } = renderHook(() => useMirror()); act(() => result.current.onMirror()); @@ -77,13 +78,13 @@ describe('useMirror', () => { }); // ─── useRotate ─────────────────────────────────────────────────────────── -describe('useRotate', () => { - it('initial value is 0', () => { +describe('useRotate 旋转', () => { + test('初始值为 0', () => { const { result } = renderHook(() => useRotate()); expect(result.current.rotateZ).toBe(0); }); - it('rotates by -90° each time', () => { + test('每次旋转 -90°', () => { const { result } = renderHook(() => useRotate()); act(() => result.current.onRotate()); @@ -99,7 +100,7 @@ describe('useRotate', () => { expect(result.current.rotateZ).toBe(-360); }); - it('continues beyond 360°', () => { + test('超过 360° 继续累加(5 次 = -450°)', () => { const { result } = renderHook(() => useRotate()); act(() => { @@ -110,21 +111,9 @@ describe('useRotate', () => { expect(result.current.rotateZ).toBe(-450); }); - it('multiple full rotations', () => { + test('从 -270° resetRotate(最短路径到 0°)', () => { const { result } = renderHook(() => useRotate()); - act(() => { - for (let i = 0; i < 8; i++) { - result.current.onRotate(); - } - }); - expect(result.current.rotateZ).toBe(-720); - }); - - it('resetRotate from -270° (shortest path to 0°)', () => { - const { result } = renderHook(() => useRotate()); - - // Rotate to -270° act(() => { for (let i = 0; i < 3; i++) { result.current.onRotate(); @@ -132,13 +121,11 @@ describe('useRotate', () => { }); expect(result.current.rotateZ).toBe(-270); - // -270 % 360 = -270, |-270| > 180 → adjusted = (-270+360)%360 = 90 - // newRotateZ = -270 - 90 = -360 ≡ 0° act(() => result.current.onResetRotate()); expect(result.current.rotateZ).toBe(-360); }); - it('resetRotate from -180° (boundary)', () => { + test('从 -180° resetRotate(边界值)', () => { const { result } = renderHook(() => useRotate()); act(() => { @@ -147,20 +134,18 @@ describe('useRotate', () => { }); expect(result.current.rotateZ).toBe(-180); - // -180 % 360 = -180, |-180| ≤ 180 → adjusted = -180 - // newRotateZ = -180 - (-180) = 0 act(() => result.current.onResetRotate()); expect(result.current.rotateZ).toBe(0); }); - it('resetRotate from 0° does nothing', () => { + test('从 0° resetRotate 无变化', () => { const { result } = renderHook(() => useRotate()); act(() => result.current.onResetRotate()); expect(result.current.rotateZ).toBe(0); }); - it('reset during rotation sequence', () => { + test('旋转过程中重置', () => { const { result } = renderHook(() => useRotate()); act(() => { @@ -177,41 +162,56 @@ describe('useRotate', () => { }); // ─── useImageScale ─────────────────────────────────────────────────────── -describe('useImageScale', () => { - it('returns defaults when no config provided', () => { - const result = useImageScale(); - expect(result).toEqual(DEFAULT_IMAGE_SCALE); +describe('useImageScale 缩放配置', () => { + test('无配置:返回 DEFAULT_IMAGE_SCALE 的所有字段', () => { + const { result } = renderHook(() => useImageScale()); + expect(result.current.max).toBe(DEFAULT_IMAGE_SCALE.max); + expect(result.current.min).toBe(DEFAULT_IMAGE_SCALE.min); + expect(result.current.step).toBe(DEFAULT_IMAGE_SCALE.step); + expect(result.current.defaultScale).toBe(DEFAULT_IMAGE_SCALE.defaultScale); + }); + + test('部分配置:仅覆盖指定字段', () => { + const { result } = renderHook(() => useImageScale({ max: 5 })); + expect(result.current.max).toBe(5); + expect(result.current.min).toBe(DEFAULT_IMAGE_SCALE.min); + expect(result.current.step).toBe(DEFAULT_IMAGE_SCALE.step); + expect(result.current.defaultScale).toBe(DEFAULT_IMAGE_SCALE.defaultScale); }); - it('merges partial config with defaults', () => { - const result = useImageScale({ max: 5 }); - expect(result).toEqual({ ...DEFAULT_IMAGE_SCALE, max: 5 }); + test('defaultScale 大于 max 时截断为 max', () => { + const { result } = renderHook(() => useImageScale({ max: 3, defaultScale: 5 })); + expect(result.current.defaultScale).toBe(3); }); - it('clamps defaultScale to max', () => { - const result = useImageScale({ max: 3, defaultScale: 5 }); - expect(result.defaultScale).toBe(3); + test('defaultScale 小于 min 时截断为 min', () => { + const { result } = renderHook(() => useImageScale({ min: 2, defaultScale: 1 })); + expect(result.current.defaultScale).toBe(2); }); - it('clamps defaultScale to min', () => { - const result = useImageScale({ min: 2, defaultScale: 1 }); - expect(result.defaultScale).toBe(2); + test('defaultScale 在范围内不被截断', () => { + const { result } = renderHook(() => useImageScale({ max: 5, min: 0.1, step: 0.5, defaultScale: 2 })); + expect(result.current.defaultScale).toBe(2); }); - it('custom imageScale config fully overrides', () => { - const config = { max: 5, min: 0.1, step: 0.5, defaultScale: 2 }; - const result = useImageScale(config); - expect(result).toEqual(config); + test('未传 defaultScale:使用默认值', () => { + const { result } = renderHook(() => useImageScale({ max: 3, min: 0.5, step: 0.1 })); + expect(result.current.defaultScale).toBe(DEFAULT_IMAGE_SCALE.defaultScale); }); - it('defaultScale undefined uses DEFAULT_IMAGE_SCALE.defaultScale', () => { - const result = useImageScale({ max: 3, min: 0.5, step: 0.1 }); - expect(result.defaultScale).toBe(DEFAULT_IMAGE_SCALE.defaultScale); + test('defaultScale 恰好等于 max 不截断', () => { + const { result } = renderHook(() => useImageScale({ max: 2, defaultScale: 2 })); + expect(result.current.defaultScale).toBe(2); + }); + + test('defaultScale 恰好等于 min 不截断', () => { + const { result } = renderHook(() => useImageScale({ min: 0.5, defaultScale: 0.5 })); + expect(result.current.defaultScale).toBe(0.5); }); }); // ─── useScale ──────────────────────────────────────────────────────────── -describe('useScale', () => { +describe('useScale 缩放', () => { beforeEach(() => { vi.useFakeTimers(); }); @@ -220,27 +220,27 @@ describe('useScale', () => { vi.useRealTimers(); }); - it('default scale value is 1', () => { + test('默认缩放值为 1', () => { const { result } = renderHook(() => useScale({ max: 2, min: 0.5, step: 0.2, defaultScale: 1 }, true)); expect(result.current.scale).toBe(1); }); - it('custom defaultScale', () => { + test('自定义 defaultScale', () => { const { result } = renderHook(() => useScale({ max: 3, min: 0.5, step: 0.1, defaultScale: 1.5 }, true)); expect(result.current.scale).toBe(1.5); }); - it('defaultScale clamped to max', () => { + test('defaultScale 超过 max 被截断', () => { const { result } = renderHook(() => useScale({ max: 2, min: 0.5, step: 0.2, defaultScale: 5 }, true)); expect(result.current.scale).toBe(2); }); - it('defaultScale clamped to min', () => { + test('defaultScale 低于 min 被截断', () => { const { result } = renderHook(() => useScale({ max: 2, min: 1.5, step: 0.2, defaultScale: 0.5 }, true)); expect(result.current.scale).toBe(1.5); }); - it('onZoomIn increases scale', () => { + test('onZoomIn 放大', () => { const { result } = renderHook(() => useScale({ max: 2, min: 0.5, step: 0.2, defaultScale: 1 }, true)); act(() => { @@ -249,7 +249,7 @@ describe('useScale', () => { expect(result.current.scale).toBeCloseTo(1.2); }); - it('onZoomOut decreases scale', () => { + test('onZoomOut 缩小', () => { const { result } = renderHook(() => useScale({ max: 2, min: 0.5, step: 0.2, defaultScale: 1 }, true)); act(() => { @@ -258,7 +258,7 @@ describe('useScale', () => { expect(result.current.scale).toBeCloseTo(0.8); }); - it('max scale boundary', () => { + test('放大不超过最大值', () => { const { result } = renderHook(() => useScale({ max: 1.5, min: 0.5, step: 0.5, defaultScale: 1 }, true)); act(() => { @@ -271,10 +271,10 @@ describe('useScale', () => { result.current.onZoomIn(); vi.advanceTimersByTime(100); }); - expect(result.current.scale).toBe(1.5); // 不超过 max + expect(result.current.scale).toBe(1.5); }); - it('min scale boundary', () => { + test('缩小不低于最小值', () => { const { result } = renderHook(() => useScale({ max: 2, min: 0.5, step: 0.3, defaultScale: 0.6 }, true)); act(() => { @@ -284,7 +284,7 @@ describe('useScale', () => { expect(result.current.scale).toBe(0.5); }); - it('onResetScale restores defaultScale', () => { + test('onResetScale 恢复默认缩放值', () => { const { result } = renderHook(() => useScale({ max: 2, min: 0.5, step: 0.2, defaultScale: 1 }, true)); act(() => { @@ -299,7 +299,7 @@ describe('useScale', () => { expect(result.current.scale).toBe(1); }); - it('small step values', () => { + test('小步长缩放', () => { const { result } = renderHook(() => useScale({ max: 2, min: 0.5, step: 0.05, defaultScale: 1 }, true)); act(() => { @@ -309,7 +309,7 @@ describe('useScale', () => { expect(result.current.scale).toBeCloseTo(1.05); }); - it('large scale values', () => { + test('大范围缩放值', () => { const { result } = renderHook(() => useScale({ max: 10, min: 0.1, step: 1, defaultScale: 5 }, true)); expect(result.current.scale).toBe(5); @@ -327,8 +327,8 @@ describe('useScale', () => { }); // ─── ZoomOptions(中心缩放)────────────────────────────────────────── - describe('ZoomOptions (center zoom)', () => { - it('onZoomIn with center zoom (mouseOffset = 0)', () => { + describe('ZoomOptions 中心缩放', () => { + test('onZoomIn 中心缩放(偏移为 0)', () => { const { result } = renderHook(() => useScale({ max: 2, min: 0.5, step: 0.2, defaultScale: 1 }, true)); let zoomResult; @@ -341,13 +341,10 @@ describe('useScale', () => { }); expect(result.current.scale).toBeCloseTo(1.2); - // scaleRatio = 1.2/1 = 1.2 - // newTx = 1.2 * 100 + (1 - 1.2) * 0 = 120 - // newTy = 1.2 * 50 + (1 - 1.2) * 0 = 60 expect(zoomResult.newTranslate).toEqual({ translateX: 120, translateY: 60 }); }); - it('onZoomIn with non-zero mouse offset', () => { + test('onZoomIn 非中心偏移缩放', () => { const { result } = renderHook(() => useScale({ max: 2, min: 0.5, step: 0.2, defaultScale: 1 }, true)); let zoomResult; @@ -360,13 +357,11 @@ describe('useScale', () => { }); expect(result.current.scale).toBeCloseTo(1.2); - // newTx = 1.2 * 0 + (1 - 1.2) * 100 = -20 - // newTy = 1.2 * 0 + (1 - 1.2) * 50 = -10 expect(zoomResult.newTranslate.translateX).toBeCloseTo(-20); expect(zoomResult.newTranslate.translateY).toBeCloseTo(-10); }); - it('onZoomOut with ZoomOptions preserves translate during zoom out', () => { + test('onZoomOut 带位移时保持缩放位移', () => { const { result } = renderHook(() => useScale({ max: 2, min: 0.5, step: 0.2, defaultScale: 1 }, true)); let zoomResult; @@ -379,18 +374,14 @@ describe('useScale', () => { }); expect(result.current.scale).toBeCloseTo(0.8); - // scaleRatio = 0.8/1 = 0.8 - // newTx = 0.8 * 50 + (1 - 0.8) * 100 = 40 + 20 = 60 - // newTy = 0.8 * 50 + (1 - 0.8) * 100 = 40 + 20 = 60 expect(zoomResult.newTranslate).toEqual({ translateX: 60, translateY: 60 }); }); - it('missing mouseOffset returns empty result', () => { + test('缺少 mouseOffset 返回空结果', () => { const { result } = renderHook(() => useScale({ max: 2, min: 0.5, step: 0.2, defaultScale: 1 }, true)); let zoomResult; act(() => { - // 缺少 mouseOffsetX zoomResult = result.current.onZoomIn({ mouseOffsetY: 50, currentTranslate: { translateX: 0, translateY: 0 }, @@ -399,17 +390,15 @@ describe('useScale', () => { expect(zoomResult.newTranslate).toBeUndefined(); }); - it('at max boundary, zoom in returns empty result', () => { + test('已达最大值时 ZoomIn 返回空结果', () => { const { result } = renderHook(() => useScale({ max: 1.2, min: 0.5, step: 0.2, defaultScale: 1 }, true)); - // 先放大到 max act(() => { result.current.onZoomIn(); vi.advanceTimersByTime(100); }); expect(result.current.scale).toBe(1.2); - // 再次放大已达边界 let zoomResult; act(() => { zoomResult = result.current.onZoomIn({ @@ -418,18 +407,14 @@ describe('useScale', () => { currentTranslate: { translateX: 0, translateY: 0 }, }); }); - // 已达边界,prevScale === newScale,返回空 {} expect(zoomResult).toEqual({}); }); - it('zoom with existing translate and non-zero offset', () => { + test('带已有位移和非零偏移的缩放', () => { const { result } = renderHook(() => useScale({ max: 2, min: 0.5, step: 0.2, defaultScale: 1 }, true)); let zoomResult; act(() => { - // scale: 1 → 1.2, scaleRatio = 1.2 - // newTx = 1.2 * 100 + (1 - 1.2) * 200 = 120 - 40 = 80 - // newTy = 1.2 * 50 + (1 - 1.2) * 100 = 60 - 20 = 40 zoomResult = result.current.onZoomIn({ mouseOffsetX: 200, mouseOffsetY: 100, @@ -440,11 +425,61 @@ describe('useScale', () => { expect(zoomResult.newTranslate.translateX).toBeCloseTo(80); expect(zoomResult.newTranslate.translateY).toBeCloseTo(40); }); + + test('放大到最大 → 拖出视口 → 缩小向中心收敛', () => { + const { result } = renderHook(() => useScale({ max: 2, min: 0.5, step: 0.5, defaultScale: 1 }, true)); + + act(() => { + result.current.onZoomIn(); + result.current.onZoomIn(); + }); + expect(result.current.scale).toBe(2); + + let zoomResult: any; + act(() => { + zoomResult = result.current.onZoomOut({ + mouseOffsetX: 0, + mouseOffsetY: 0, + currentTranslate: { translateX: 500, translateY: 400 }, + }); + }); + + expect(result.current.scale).toBe(1.5); + expect(zoomResult.newTranslate.translateX).toBeCloseTo(375); + expect(zoomResult.newTranslate.translateY).toBeCloseTo(300); + }); + + test('放大到最大 → 拖出视口 → 多次缩小持续向中心收敛', () => { + const { result } = renderHook(() => useScale({ max: 2, min: 0.5, step: 0.5, defaultScale: 1 }, true)); + + act(() => { + result.current.onZoomIn(); + result.current.onZoomIn(); + }); + expect(result.current.scale).toBe(2); + + let translate = { translateX: 600, translateY: 400 }; + act(() => { + const r = result.current.onZoomOut({ mouseOffsetX: 0, mouseOffsetY: 0, currentTranslate: translate }); + translate = r.newTranslate; + }); + expect(result.current.scale).toBe(1.5); + expect(translate.translateX).toBeCloseTo(450); + expect(translate.translateY).toBeCloseTo(300); + + act(() => { + const r = result.current.onZoomOut({ mouseOffsetX: 0, mouseOffsetY: 0, currentTranslate: translate }); + translate = r.newTranslate; + }); + expect(result.current.scale).toBe(1); + expect(translate.translateX).toBeCloseTo(300); + expect(translate.translateY).toBeCloseTo(200); + }); }); - // throttle 已移除,每次调用都直接生效 - describe('throttle behavior', () => { - it('rapid onZoomIn calls all take effect', () => { + // 无节流,每次调用都直接生效 + describe('快速连续缩放(无节流)', () => { + test('快速连续 onZoomIn 都生效', () => { const { result } = renderHook(() => useScale({ max: 5, min: 0.5, step: 0.2, defaultScale: 1 }, true)); act(() => { @@ -455,7 +490,7 @@ describe('useScale', () => { expect(result.current.scale).toBeCloseTo(1.6); }); - it('rapid onZoomOut calls all take effect', () => { + test('快速连续 onZoomOut 都生效', () => { const { result } = renderHook(() => useScale({ max: 5, min: 0.1, step: 0.2, defaultScale: 1 }, true)); act(() => { @@ -466,28 +501,60 @@ describe('useScale', () => { expect(result.current.scale).toBeCloseTo(0.4); }); }); + + describe('visible=false 时不注册事件监听', () => { + test('visible=false 时 wheel 事件不触发缩放', () => { + const { result } = renderHook(() => useScale({ max: 2, min: 0.5, step: 0.2, defaultScale: 1 }, false)); + + const wheelEvent = new WheelEvent('wheel', { deltaY: -120, bubbles: true, cancelable: true }); + act(() => { + document.dispatchEvent(wheelEvent); + }); + + expect(result.current.scale).toBe(1); + }); + + test('visible=true 时 wheel 事件触发回调', () => { + const onWheel = vi.fn(); + const { rerender } = renderHook( + ({ visible }) => useScale({ max: 2, min: 0.5, step: 0.2, defaultScale: 1 }, visible, onWheel), + { initialProps: { visible: false } }, + ); + + const wheelEvent = new WheelEvent('wheel', { deltaY: -120, bubbles: true, cancelable: true }); + act(() => { + document.dispatchEvent(wheelEvent); + }); + expect(onWheel).not.toHaveBeenCalled(); + + rerender({ visible: true }); + act(() => { + document.dispatchEvent(wheelEvent); + }); + expect(onWheel).toHaveBeenCalledTimes(1); + }); + }); }); // ─── usePosition ───────────────────────────────────────────────────────── -describe('usePosition', () => { - // 辅助:创建一个挂载了 usePosition 的测试组件,返回 ref 和 hook 结果 +describe('usePosition 拖拽位移', () => { const createHook = (initPosition?: [number, number]) => { const ref = { current: document.createElement('div') }; return renderHook(() => usePosition(ref as React.RefObject, { initPosition })); }; - it('initial position defaults to [0, 0]', () => { + test('默认位置为 [0, 0]', () => { const { result } = createHook(); expect(result.current.position).toEqual([0, 0]); expect(result.current.isDragging).toBe(false); }); - it('custom initPosition', () => { + test('自定义 initPosition', () => { const { result } = createHook([100, 200]); expect(result.current.position).toEqual([100, 200]); }); - it('resetPosition restores to initPosition', () => { + test('resetPosition 恢复到 initPosition', () => { const { result } = createHook([50, 80]); act(() => { @@ -501,7 +568,7 @@ describe('usePosition', () => { expect(result.current.position).toEqual([50, 80]); }); - it('resetPosition with default [0,0]', () => { + test('默认 [0,0] 的 resetPosition', () => { const { result } = createHook(); act(() => { @@ -513,7 +580,7 @@ describe('usePosition', () => { expect(result.current.position).toEqual([0, 0]); }); - it('setPosition works directly', () => { + test('setPosition 直接设置位置', () => { const { result } = createHook(); act(() => { @@ -522,7 +589,7 @@ describe('usePosition', () => { expect(result.current.position).toEqual([42, 99]); }); - it('mousedown sets isDragging to true', () => { + test('mousedown 设置 isDragging 为 true', () => { const divEl = document.createElement('div'); document.body.appendChild(divEl); const ref = { current: divEl }; @@ -535,7 +602,7 @@ describe('usePosition', () => { document.body.removeChild(divEl); }); - it('mouseup resets isDragging to false', () => { + test('mouseup 重置 isDragging 为 false', () => { const divEl = document.createElement('div'); document.body.appendChild(divEl); const ref = { current: divEl }; @@ -553,7 +620,7 @@ describe('usePosition', () => { document.body.removeChild(divEl); }); - it('drag moves position by delta', () => { + test('拖拽移动位置', () => { const divEl = document.createElement('div'); document.body.appendChild(divEl); const ref = { current: divEl }; @@ -566,60 +633,77 @@ describe('usePosition', () => { document.dispatchEvent(new MouseEvent('mousemove', { bubbles: true, screenX: 150, screenY: 130 })); }); - expect(result.current.position[0]).toBe(50); // 150 - 100 - expect(result.current.position[1]).toBe(30); // 130 - 100 + expect(result.current.position[0]).toBe(50); + expect(result.current.position[1]).toBe(30); document.body.removeChild(divEl); }); - it('snapshot: default state', () => { - const { result } = createHook(); - expect(result.current).toMatchSnapshot('usePosition-default-state'); - }); -}); + test('连续拖拽累积位移', () => { + const divEl = document.createElement('div'); + document.body.appendChild(divEl); + const ref = { current: divEl }; + const { result } = renderHook(() => usePosition(ref as React.RefObject)); -// ─── useViewerScale ─────────────────────────────────────────────────────── -describe('useViewerScale', () => { - it('returns defaults when no config provided', () => { - const result = useViewerScale(undefined); - expect(result).toEqual({ minWidth: 1000, minHeight: 1000 }); - }); + act(() => { + divEl.dispatchEvent(new MouseEvent('mousedown', { bubbles: true, screenX: 0, screenY: 0, button: 0 })); + }); + act(() => { + document.dispatchEvent(new MouseEvent('mousemove', { bubbles: true, screenX: 100, screenY: 50 })); + }); + act(() => { + document.dispatchEvent(new MouseEvent('mouseup', { bubbles: true })); + }); + expect(result.current.position).toEqual([100, 50]); - it('returns defaults when empty object provided', () => { - const result = useViewerScale({}); - expect(result).toEqual({ minWidth: 1000, minHeight: 1000 }); + act(() => { + divEl.dispatchEvent(new MouseEvent('mousedown', { bubbles: true, screenX: 200, screenY: 200, button: 0 })); + }); + act(() => { + document.dispatchEvent(new MouseEvent('mousemove', { bubbles: true, screenX: 250, screenY: 230 })); + }); + act(() => { + document.dispatchEvent(new MouseEvent('mouseup', { bubbles: true })); + }); + expect(result.current.position).toEqual([150, 80]); + document.body.removeChild(divEl); }); +}); - it('overrides minWidth only', () => { - const result = useViewerScale({ minWidth: 800 }); - expect(result).toEqual({ minWidth: 800, minHeight: 1000 }); +// ─── useViewerScale ─────────────────────────────────────────────────────── +describe('useViewerScale 弹窗尺寸', () => { + test('无配置返回默认值', () => { + const { result } = renderHook(() => useViewerScale(undefined)); + expect(result.current).toEqual({ minWidth: 1000, minHeight: 1000 }); }); - it('overrides minHeight only', () => { - const result = useViewerScale({ minHeight: 600 }); - expect(result).toEqual({ minWidth: 1000, minHeight: 600 }); + test('空对象返回默认值', () => { + const { result } = renderHook(() => useViewerScale({})); + expect(result.current).toEqual({ minWidth: 1000, minHeight: 1000 }); }); - it('overrides both minWidth and minHeight', () => { - const result = useViewerScale({ minWidth: 500, minHeight: 400 }); - expect(result).toEqual({ minWidth: 500, minHeight: 400 }); + test('仅覆盖 minWidth', () => { + const { result } = renderHook(() => useViewerScale({ minWidth: 800 })); + expect(result.current).toEqual({ minWidth: 800, minHeight: 1000 }); }); - it('zero values are accepted', () => { - const result = useViewerScale({ minWidth: 0, minHeight: 0 }); - expect(result).toEqual({ minWidth: 0, minHeight: 0 }); + test('仅覆盖 minHeight', () => { + const { result } = renderHook(() => useViewerScale({ minHeight: 600 })); + expect(result.current).toEqual({ minWidth: 1000, minHeight: 600 }); }); - it('snapshot: default config', () => { - expect(useViewerScale(undefined)).toMatchSnapshot('useViewerScale-default'); + test('同时覆盖 minWidth 和 minHeight', () => { + const { result } = renderHook(() => useViewerScale({ minWidth: 500, minHeight: 400 })); + expect(result.current).toEqual({ minWidth: 500, minHeight: 400 }); }); - it('snapshot: custom config', () => { - expect(useViewerScale({ minWidth: 600, minHeight: 480 })).toMatchSnapshot('useViewerScale-custom'); + test('零值可接受', () => { + const { result } = renderHook(() => useViewerScale({ minWidth: 0, minHeight: 0 })); + expect(result.current).toEqual({ minWidth: 0, minHeight: 0 }); }); }); // ─── useScale: 双指缩放 ──────────────────────────────────────────────────── -describe('useScale: touch events', () => { +describe('useScale 触摸事件', () => { beforeEach(() => { vi.useFakeTimers(); }); @@ -633,93 +717,190 @@ describe('useScale: touch events', () => { return new TouchEvent(type, { touches: [t1, t2], cancelable: true }); }; - it('onTouchStart with 2 fingers records initial distance', () => { + test('双指触摸记录初始距离', () => { const { result } = renderHook(() => useScale({ max: 3, min: 0.5, step: 0.2, defaultScale: 1 }, true)); - const touchStart = createTouchEvent(0, 0, 100, 0, 'touchstart'); act(() => { - result.current.onTouchStart(touchStart); + document.dispatchEvent(createTouchEvent(0, 0, 100, 0, 'touchstart')); }); - // 初始 distance = 100,不触发缩放,scale 不变 expect(result.current.scale).toBe(1); }); - it('onTouchStart with 1 finger does nothing', () => { + test('单指触摸不触发缩放', () => { const { result } = renderHook(() => useScale({ max: 3, min: 0.5, step: 0.2, defaultScale: 1 }, true)); const touchStart = new TouchEvent('touchstart', { touches: [{ pageX: 0, pageY: 0 } as Touch], cancelable: true, }); act(() => { - result.current.onTouchStart(touchStart); + document.dispatchEvent(touchStart); }); expect(result.current.scale).toBe(1); }); - it('onTouchMove pinch out (spread fingers) zooms in', () => { + test('双指外扩(pinch out)放大', () => { const { result } = renderHook(() => useScale({ max: 3, min: 0.5, step: 0.2, defaultScale: 1 }, true)); - // 初始距离 100 act(() => { - result.current.onTouchStart(createTouchEvent(0, 0, 100, 0, 'touchstart')); + document.dispatchEvent(createTouchEvent(0, 0, 100, 0, 'touchstart')); }); - // 手指扩大到 200(spread)→ zoom in act(() => { - result.current.onTouchMove(createTouchEvent(0, 0, 200, 0, 'touchmove')); + document.dispatchEvent(createTouchEvent(0, 0, 200, 0, 'touchmove')); }); expect(result.current.scale).toBeCloseTo(1.2); }); - it('onTouchMove pinch in (shrink fingers) zooms out', () => { + test('双指内收(pinch in)缩小', () => { const { result } = renderHook(() => useScale({ max: 3, min: 0.5, step: 0.2, defaultScale: 1 }, true)); - // 初始距离 200 act(() => { - result.current.onTouchStart(createTouchEvent(0, 0, 200, 0, 'touchstart')); + document.dispatchEvent(createTouchEvent(0, 0, 200, 0, 'touchstart')); }); - // 手指缩小到 100(pinch)→ zoom out act(() => { - result.current.onTouchMove(createTouchEvent(0, 0, 100, 0, 'touchmove')); + document.dispatchEvent(createTouchEvent(0, 0, 100, 0, 'touchmove')); }); expect(result.current.scale).toBeCloseTo(0.8); }); - it('onTouchMove with 1 finger does nothing', () => { + test('单指移动不触发缩放', () => { const { result } = renderHook(() => useScale({ max: 3, min: 0.5, step: 0.2, defaultScale: 1 }, true)); const touchMove = new TouchEvent('touchmove', { touches: [{ pageX: 100, pageY: 0 } as Touch], cancelable: true, }); act(() => { - result.current.onTouchMove(touchMove); + document.dispatchEvent(touchMove); }); expect(result.current.scale).toBe(1); }); - it('onTouchEnd resets distance to 0', () => { + test('touchEnd 重置距离后,新 touchMove 重新计算缩放', () => { const { result } = renderHook(() => useScale({ max: 3, min: 0.5, step: 0.2, defaultScale: 1 }, true)); act(() => { - result.current.onTouchStart(createTouchEvent(0, 0, 100, 0, 'touchstart')); + document.dispatchEvent(createTouchEvent(0, 0, 100, 0, 'touchstart')); }); act(() => { - result.current.onTouchEnd(); + document.dispatchEvent(new TouchEvent('touchend', { cancelable: true })); }); - // 再次 touchmove 时没有有效 distance,依然可以缩放 act(() => { - result.current.onTouchMove(createTouchEvent(0, 0, 200, 0, 'touchmove')); + document.dispatchEvent(createTouchEvent(0, 0, 200, 0, 'touchmove')); }); - // distance.current was 0 before this move; 200 > 0 → zoomIn expect(result.current.scale).toBeCloseTo(1.2); }); }); +// ─── useIndex ──────────────────────────────────────────────────────────── +describe('useIndex 图片切换下标', () => { + const createImages = (count: number) => Array.from({ length: count }, (_, i) => `img-${i}.jpg`); + + test('默认 index 为 0', () => { + const { result } = renderHook(() => useIndex({ defaultIndex: 0 }, createImages(3))); + expect(result.current.index).toBe(0); + }); + + test('defaultIndex 设置初始下标', () => { + const { result } = renderHook(() => useIndex({ defaultIndex: 2 }, createImages(5))); + expect(result.current.index).toBe(2); + }); + + test('next 递增 index', () => { + const { result } = renderHook(() => useIndex({ defaultIndex: 0 }, createImages(5))); + act(() => result.current.next()); + expect(result.current.index).toBe(1); + act(() => result.current.next()); + expect(result.current.index).toBe(2); + }); + + test('prev 递减 index', () => { + const { result } = renderHook(() => useIndex({ defaultIndex: 2 }, createImages(5))); + act(() => result.current.prev()); + expect(result.current.index).toBe(1); + act(() => result.current.prev()); + expect(result.current.index).toBe(0); + }); + + test('next 到最后一张不再递增', () => { + const { result } = renderHook(() => useIndex({ defaultIndex: 2 }, createImages(3))); + act(() => result.current.next()); + expect(result.current.index).toBe(2); + }); + + test('prev 到第一张不再递减', () => { + const { result } = renderHook(() => useIndex({ defaultIndex: 0 }, createImages(3))); + act(() => result.current.prev()); + expect(result.current.index).toBe(0); + }); + + test('prev 在 index=0 时不触发 onIndexChange', () => { + const onIndexChange = vi.fn(); + const { result } = renderHook(() => useIndex({ defaultIndex: 0, onIndexChange }, createImages(3))); + act(() => result.current.prev()); + expect(result.current.index).toBe(0); + expect(onIndexChange).not.toHaveBeenCalled(); + }); + + test('next 在最后一帧时不触发 onIndexChange', () => { + const onIndexChange = vi.fn(); + const { result } = renderHook(() => useIndex({ defaultIndex: 2, onIndexChange }, createImages(3))); + act(() => result.current.next()); + expect(result.current.index).toBe(2); + expect(onIndexChange).not.toHaveBeenCalled(); + }); + + test('setIndex 直接设置下标', () => { + const onIndexChange = vi.fn(); + const { result } = renderHook(() => useIndex({ defaultIndex: 0, onIndexChange }, createImages(5))); + act(() => result.current.setIndex(3, { trigger: 'current' })); + expect(result.current.index).toBe(3); + }); + + test('onIndexChange 回调在 next 时携带 trigger: next', () => { + const onIndexChange = vi.fn(); + const { result } = renderHook(() => useIndex({ defaultIndex: 0, onIndexChange }, createImages(3))); + act(() => result.current.next()); + expect(onIndexChange).toHaveBeenCalledWith(1, { trigger: 'next' }); + }); + + test('onIndexChange 回调在 prev 时携带 trigger: prev', () => { + const onIndexChange = vi.fn(); + const { result } = renderHook(() => useIndex({ defaultIndex: 2, onIndexChange }, createImages(3))); + act(() => result.current.prev()); + expect(onIndexChange).toHaveBeenCalledWith(1, { trigger: 'prev' }); + }); + + test('onIndexChange 回调在 setIndex 时携带 trigger: current', () => { + const onIndexChange = vi.fn(); + const { result } = renderHook(() => useIndex({ defaultIndex: 0, onIndexChange }, createImages(5))); + act(() => result.current.setIndex(3, { trigger: 'current' })); + expect(onIndexChange).toHaveBeenCalledWith(3, { trigger: 'current' }); + }); + + test('受控 index 模式', () => { + const { result, rerender } = renderHook( + ({ index }) => useIndex({ index, onIndexChange: vi.fn() }, createImages(5)), + { initialProps: { index: 0 } }, + ); + expect(result.current.index).toBe(0); + rerender({ index: 3 }); + expect(result.current.index).toBe(3); + }); + + test('单图列表:next/prev 不越界', () => { + const { result } = renderHook(() => useIndex({ defaultIndex: 0 }, createImages(1))); + act(() => result.current.next()); + expect(result.current.index).toBe(0); + act(() => result.current.prev()); + expect(result.current.index).toBe(0); + }); +}); + // ─── Hooks 组合 ────────────────────────────────────────────────────────── -describe('hooks combination', () => { - it('all hooks work together for image transformations', () => { +describe('Hooks 组合使用', () => { + test('所有 hooks 协同完成图片变换', () => { vi.useFakeTimers(); const { result: mirrorResult } = renderHook(() => useMirror()); @@ -737,7 +918,6 @@ describe('hooks combination', () => { expect(rotateResult.current.rotateZ).toBe(-180); expect(scaleResult.current.scale).toBeCloseTo(1.2); - // 重置全部 act(() => { mirrorResult.current.onResetMirror(); rotateResult.current.onResetRotate(); @@ -751,7 +931,7 @@ describe('hooks combination', () => { vi.useRealTimers(); }); - it('rapid operations across all hooks', () => { + test('跨 hooks 快速连续操作', () => { vi.useFakeTimers(); const { result: scaleResult } = renderHook(() => useScale({ max: 3, min: 0.5, step: 0.1, defaultScale: 1 }, true)); @@ -774,3 +954,75 @@ describe('hooks combination', () => { vi.useRealTimers(); }); }); + +// ─── usePosition 右键和非左键不触发拖拽 ────────────────────────────────── +describe('usePosition 右键和非左键', () => { + test('右键不触发拖拽', () => { + const divEl = document.createElement('div'); + document.body.appendChild(divEl); + const ref = { current: divEl }; + const { result } = renderHook(() => usePosition(ref as React.RefObject)); + + act(() => { + divEl.dispatchEvent(new MouseEvent('mousedown', { bubbles: true, screenX: 10, screenY: 20, button: 2 })); + }); + expect(result.current.isDragging).toBe(false); + document.body.removeChild(divEl); + }); +}); + +// ─── useScale 已达极限值时返回空 ────────────────────────────────────────── +describe('useScale 极限值', () => { + beforeEach(() => { + vi.useFakeTimers(); + }); + afterEach(() => { + vi.useRealTimers(); + }); + + test('已达最小值时 onZoomOut 返回空', () => { + const { result } = renderHook(() => useScale({ max: 2, min: 0.5, step: 0.2, defaultScale: 0.5 }, true)); + const ret = result.current.onZoomOut(); + expect(ret).toEqual({}); + expect(result.current.scale).toBe(0.5); + }); + + test('已达最大值时 onZoomIn 不带 options 返回空', () => { + const { result } = renderHook(() => useScale({ max: 1.2, min: 0.5, step: 0.2, defaultScale: 1.2 }, true)); + const ret = result.current.onZoomIn(); + expect(ret).toEqual({}); + expect(result.current.scale).toBe(1.2); + }); +}); + +// ─── useScale onWheel 回调 ───────────────────────────────────────────── +describe('useScale onWheel 回调', () => { + beforeEach(() => { + vi.useFakeTimers(); + }); + afterEach(() => { + vi.useRealTimers(); + }); + + test('visible=true 时 wheel 事件调用 onWheel 回调', () => { + const onWheel = vi.fn(); + renderHook(() => useScale({ max: 2, min: 0.5, step: 0.2, defaultScale: 1 }, true, onWheel)); + + const wheelEvent = new WheelEvent('wheel', { deltaY: -120, bubbles: true, cancelable: true }); + act(() => { + document.dispatchEvent(wheelEvent); + }); + expect(onWheel).toHaveBeenCalledTimes(1); + }); + + test('visible=false 时 wheel 事件不调用 onWheel', () => { + const onWheel = vi.fn(); + renderHook(() => useScale({ max: 2, min: 0.5, step: 0.2, defaultScale: 1 }, false, onWheel)); + + const wheelEvent = new WheelEvent('wheel', { deltaY: -120, bubbles: true, cancelable: true }); + act(() => { + document.dispatchEvent(wheelEvent); + }); + expect(onWheel).not.toHaveBeenCalled(); + }); +}); diff --git a/packages/components/image-viewer/__tests__/image-viewer.test.tsx b/packages/components/image-viewer/__tests__/image-viewer.test.tsx index 0b25bdea47..3752a9476a 100644 --- a/packages/components/image-viewer/__tests__/image-viewer.test.tsx +++ b/packages/components/image-viewer/__tests__/image-viewer.test.tsx @@ -7,12 +7,11 @@ import { ImageViewer } from '../index'; const imgUrl = 'https://tdesign.gtimg.com/demo/demo-image-1.png'; const imgUrl2 = 'https://tdesign.gtimg.com/demo/demo-image-2.png'; const imgUrl3 = 'https://tdesign.gtimg.com/demo/demo-image-3.png'; -// const errorImgUrl = 'https://tdesixxxxxxxxgn.gtimg.com/demo/demo-image-1.png'; -describe('ImageViewer', () => { +describe('ImageViewer 组件测试', () => { const triggerText = '预览单张图片'; - test('base', async () => { + test('基本渲染和关闭', async () => { const onClose = vi.fn(); const BasicImageViewer = () => { const trigger = ({ open }) => open()}>{triggerText}; @@ -20,31 +19,26 @@ describe('ImageViewer', () => { }; const { getByText } = render(); - // 点击前,没有元素存在 const imgContainer = document.querySelector('.t-image-viewer-preview-image'); expect(imgContainer).toBeNull(); - // 模拟鼠标点击 act(() => { fireEvent.click(getByText(triggerText)); }); - // 鼠标点击后,有元素 expect(onClose).toHaveBeenCalledTimes(0); const imgModal = document.querySelector('.t-image-viewer__modal-pic'); expect(imgModal).toBeTruthy(); - // 模拟鼠标点击关闭 const closeBtn = document.querySelector('.t-image-viewer__modal-close-bt'); act(() => { fireEvent.click(closeBtn); }); - // 点击后,没有元素存在 expect(onClose).toHaveBeenCalledTimes(1); await mockTimeout(() => expect(document.querySelector('.t-image-viewer-preview-image')).toBeNull()); }); - test('base:trigger is not Fn', async () => { + test('trigger 为非函数', async () => { const BasicImageViewer = () => { const trigger = {triggerText}; return ; @@ -53,55 +47,49 @@ describe('ImageViewer', () => { expect(getByText(triggerText)).toBeTruthy(); }); - test('base:attach is default=body', async () => { + test('attach 默认为 body', async () => { const BasicImageViewer = () => { const trigger = ({ open }) => open()}>{triggerText}; return ; }; const { getByText } = render(); - // 点击前,没有元素存在 const imgContainer = document.body.querySelector('.t-image-viewer-preview-image'); expect(imgContainer).toBeNull(); - // 模拟鼠标点击 act(() => { fireEvent.click(getByText(triggerText)); }); - // 鼠标点击后,有元素 const imgModal = document.body.querySelector('.t-image-viewer__modal-pic'); expect(imgModal).toBeTruthy(); }); - test('base:attach is function', async () => { + test('attach 为函数', async () => { const BasicImageViewer = () => { const trigger = ({ open }) => open()}>{triggerText}; return document.body} />; }; const { getByText } = render(); - // 点击前,没有元素存在 const imgContainer = document.body.querySelector('.t-image-viewer-preview-image'); expect(imgContainer).toBeNull(); - // 模拟鼠标点击 act(() => { fireEvent.click(getByText(triggerText)); }); act(() => { - // 鼠标点击后,有元素 const imgModal = document.body.querySelector('.t-image-viewer__modal-pic'); expect(imgModal).toBeTruthy(); }); }); }); -describe('ImageViewerMini', () => { +describe('ImageViewerMini 组件测试', () => { const triggerText = '预览单张图片'; - test('modeless', async () => { + test('modeless 模式', async () => { const onClose = vi.fn(); const BasicImageViewer = () => { const trigger = ({ open }) => open()}>{triggerText}; @@ -109,16 +97,13 @@ describe('ImageViewerMini', () => { }; const { getByText } = render(); - // 模拟鼠标点击 act(() => { fireEvent.click(getByText(triggerText)); }); - // 鼠标点击后,有 mini 元素 const miniFooter = await waitFor(() => document.querySelector('.t-image-viewer-mini__footer')); expect(miniFooter).toBeTruthy(); - // 模拟鼠标点击关闭 const closeBtn = await waitFor(() => document.querySelector('.t-icon-close')); act(() => { fireEvent.click(closeBtn); @@ -127,9 +112,10 @@ describe('ImageViewerMini', () => { }); }); -describe('ImageViewerModal', () => { +describe('ImageViewerModal 组件测试', () => { const triggerText = '预览单张图片'; - test('base', async () => { + + test('键盘操作和遮罩关闭', async () => { const user = userEvent.setup(); const onClose = vi.fn(); const onIndexChange = vi.fn(); @@ -147,23 +133,19 @@ describe('ImageViewerModal', () => { }; const { getByText } = render(); - // 打开弹窗 act(() => { fireEvent.click(getByText(triggerText)); }); - // 键盘切图 await user.type(document.body, '{ArrowRight}'); expect(onIndexChange).toHaveBeenCalledTimes(1); await user.type(document.body, '{ArrowLeft}'); expect(onIndexChange).toHaveBeenCalledTimes(2); - // ESC 关闭 await user.type(document.body, '{Escape}'); expect(onClose).toHaveBeenCalledTimes(1); - // 重新打开,点遮罩关闭 act(() => { fireEvent.click(getByText(triggerText)); }); @@ -174,7 +156,7 @@ describe('ImageViewerModal', () => { expect(onClose).toHaveBeenCalledTimes(2); }); - test('keyboard events are disabled after modal closes', async () => { + test('弹窗关闭后键盘事件失效', async () => { const user = userEvent.setup(); const onIndexChange = vi.fn(); const BasicImageViewer = () => { @@ -183,23 +165,20 @@ describe('ImageViewerModal', () => { }; const { getByText } = render(); - // 打开弹窗,按方向键切图 act(() => { fireEvent.click(getByText(triggerText)); }); await user.type(document.body, '{ArrowRight}'); expect(onIndexChange).toHaveBeenCalledTimes(1); - // ESC 关闭弹窗 await user.type(document.body, '{Escape}'); - // 关闭后键盘操作不应再触发 onIndexChange await user.type(document.body, '{ArrowRight}'); await user.type(document.body, '{ArrowLeft}'); expect(onIndexChange).toHaveBeenCalledTimes(1); }); - test('single', async () => { + test('单图操作(缩放/旋转/重置)', async () => { const user = userEvent.setup(); const BasicImageViewer = () => { const trigger = ({ open }) => open()}>{triggerText}; @@ -207,7 +186,6 @@ describe('ImageViewerModal', () => { }; const { getByText } = render(); - // 模拟鼠标点击 act(() => { fireEvent.click(getByText(triggerText)); }); @@ -222,35 +200,32 @@ describe('ImageViewerModal', () => { expect(getComputedStyle(img).transform).toBe('rotateZ(0deg) scale(1)'); const rotateIcon = await waitFor(() => document.querySelector('.t-icon-rotation')); - // 模拟鼠标点击 act(() => { fireEvent.click(rotateIcon); }); expect(getComputedStyle(img).transform).toBe('rotateZ(-90deg) scale(1)'); const resetIcon = await waitFor(() => document.querySelector('.t-icon-image')); - // 模拟鼠标点击 act(() => { fireEvent.click(resetIcon); }); expect(getComputedStyle(img).transform).toBe('rotateZ(0deg) scale(1)'); }); - test('closeBtn', async () => { + test('自定义关闭按钮', async () => { const BasicImageViewer = () => { const trigger = ({ open }) => open()}>{triggerText}; return closeBtn} />; }; const { getByText } = render(); - // 模拟鼠标点击 act(() => { fireEvent.click(getByText(triggerText)); }); expect(getByText('closeBtn')).toBeTruthy(); }); - test('closeOnEscKeydown is false', async () => { + test('closeOnEscKeydown 为 false', async () => { const user = userEvent.setup(); const BasicImageViewer = () => { const trigger = ({ open }) => open()}>{triggerText}; @@ -258,19 +233,17 @@ describe('ImageViewerModal', () => { }; const { getByText } = render(); - // 模拟鼠标点击 act(() => { fireEvent.click(getByText(triggerText)); }); expect(document.querySelector('.t-image-viewer-preview-image')).toBeInTheDocument(); - // 模拟键盘事件 await user.type(document.body, '{Escape}'); await mockDelay(300); expect(document.querySelector('.t-image-viewer-preview-image')).toBeInTheDocument(); }); - test('imageScale defaultScale', async () => { + test('imageScale defaultScale 正常范围', async () => { const BasicImageViewer = () => { const trigger = ({ open }) => open()}>{triggerText}; return ( @@ -288,7 +261,6 @@ describe('ImageViewerModal', () => { }; const { getByText } = render(); - // 模拟鼠标点击 act(() => { fireEvent.click(getByText(triggerText)); }); @@ -301,7 +273,7 @@ describe('ImageViewerModal', () => { }); }); - test('imageScale defaultScale is larger than max', async () => { + test('imageScale defaultScale 超过 max 被截断', async () => { const BasicImageViewer = () => { const trigger = ({ open }) => open()}>{triggerText}; return ( @@ -319,7 +291,6 @@ describe('ImageViewerModal', () => { }; const { getByText } = render(); - // 模拟鼠标点击 act(() => { fireEvent.click(getByText(triggerText)); }); @@ -332,7 +303,7 @@ describe('ImageViewerModal', () => { }); }); - test('imageScale defaultScale is smaller than min', async () => { + test('imageScale defaultScale 低于 min 被截断', async () => { const BasicImageViewer = () => { const trigger = ({ open }) => open()}>{triggerText}; return ( @@ -350,7 +321,6 @@ describe('ImageViewerModal', () => { }; const { getByText } = render(); - // 模拟鼠标点击 act(() => { fireEvent.click(getByText(triggerText)); }); @@ -363,7 +333,7 @@ describe('ImageViewerModal', () => { }); }); - test('imageScale max is unexpectedly smaller than min', async () => { + test('imageScale max 意外小于 min 时使用 min', async () => { const BasicImageViewer = () => { const trigger = ({ open }) => open()}>{triggerText}; return ( @@ -381,7 +351,6 @@ describe('ImageViewerModal', () => { }; const { getByText } = render(); - // 模拟鼠标点击 act(() => { fireEvent.click(getByText(triggerText)); }); @@ -394,7 +363,7 @@ describe('ImageViewerModal', () => { }); }); - test('imageReferrerpolicy', async () => { + test('imageReferrerpolicy 属性', async () => { const referrerPolicy = 'strict-origin-when-cross-origin'; const BasicImageViewer = () => { @@ -403,7 +372,6 @@ describe('ImageViewerModal', () => { }; const { getByText } = render(); - // 模拟鼠标点击 act(() => { fireEvent.click(getByText(triggerText)); }); @@ -415,7 +383,7 @@ describe('ImageViewerModal', () => { }); // ─── 快照测试 ───────────────────────────────────────────────────────────────── -describe('ImageViewer snapshots', () => { +describe('ImageViewer 快照测试', () => { const triggerText = '预览单张图片'; test('单张图片默认状态', async () => { @@ -549,7 +517,7 @@ describe('ImageViewer snapshots', () => { expect(document.body).toMatchSnapshot('image-viewer-modeless'); }); - test('modeless 模式 - 第二张图片', async () => { + test('modeless 模式切换图片', async () => { const BasicImageViewer = () => { const trigger = ({ open }) => open()}>{triggerText}; return ; @@ -560,7 +528,6 @@ describe('ImageViewer snapshots', () => { fireEvent.click(getByText(triggerText)); }); - // 切换到第二张 const user = userEvent.setup(); await user.type(document.body, '{ArrowRight}'); await mockDelay(); @@ -601,26 +568,332 @@ describe('ImageViewer snapshots', () => { await mockDelay(); expect(customContainer).toMatchSnapshot('image-viewer-attach-custom-container'); - // 清理 document.body.removeChild(customContainer); }); - test('DefaultTrigger 默认触发器渲染快照', async () => { - // 不传 trigger,使用默认触发器 + test('DefaultTrigger 默认触发器', async () => { const { container } = render(); await mockDelay(); expect(container).toMatchSnapshot('image-viewer-default-trigger'); }); - test('DefaultTrigger 多张图片默认触发器渲染快照', async () => { + test('DefaultTrigger 多张图片默认触发器', async () => { const { container } = render(); await mockDelay(); expect(container).toMatchSnapshot('image-viewer-default-trigger-multi'); }); }); -// ─── 工具栏事件快照测试 ──────────────────────────────────────────────────────── -describe('ImageViewer toolbar event snapshots', () => { +describe('ImageViewerModal 滚轮向中心缩放', () => { + const fireWheelEvent = (deltaY: number) => { + act(() => { + document.dispatchEvent(new WheelEvent('wheel', { deltaY, bubbles: true, cancelable: true })); + }); + }; + + const parseTranslate = (style: string) => { + const match = style.match(/translate\(([-\d.]+)px,\s*([-\d.]+)px\)/); + return match ? { x: parseFloat(match[1]), y: parseFloat(match[2]) } : { x: 0, y: 0 }; + }; + + test('图片超出视口时缩小触发向中心路径', async () => { + const transformModule = await import('@tdesign/common-js/image-viewer/transform'); + const exceedsSpy = vi.spyOn(transformModule, 'isImageExceedsViewport').mockReturnValue(false); + + const triggerText = '预览图片'; + const BasicImageViewer = () => { + const trigger = ({ open }) => open()}>{triggerText}; + return ; + }; + const { getByText } = render(); + + act(() => { + fireEvent.click(getByText(triggerText)); + }); + await mockDelay(); + + const modalBox = document.querySelector('.t-image-viewer__modal-box') as HTMLElement; + expect(modalBox).toBeTruthy(); + + fireWheelEvent(-120); + fireWheelEvent(-120); + await mockDelay(); + + const scaleText = document.querySelector('.t-image-viewer__utils-scale')?.textContent; + expect(scaleText).toBe('200%'); + + exceedsSpy.mockReturnValue(true); + exceedsSpy.mockClear(); + + fireWheelEvent(120); + await mockDelay(); + + expect(exceedsSpy).toHaveBeenCalled(); + + const scaleTextAfter = document.querySelector('.t-image-viewer__utils-scale')?.textContent; + expect(scaleTextAfter).toBe('150%'); + + const translateAfter = parseTranslate(modalBox.style.transform); + expect(translateAfter).toEqual({ x: 0, y: 0 }); + + exceedsSpy.mockRestore(); + }); + + test('图片在视口内时缩小走普通路径', async () => { + const transformModule = await import('@tdesign/common-js/image-viewer/transform'); + const exceedsSpy = vi.spyOn(transformModule, 'isImageExceedsViewport').mockReturnValue(false); + + const triggerText = '预览图片2'; + const BasicImageViewer = () => { + const trigger = ({ open }) => open()}>{triggerText}; + return ; + }; + const { getByText } = render(); + + act(() => { + fireEvent.click(getByText(triggerText)); + }); + await mockDelay(); + + const modalBox = document.querySelector('.t-image-viewer__modal-box') as HTMLElement; + const translateBefore = parseTranslate(modalBox.style.transform); + + exceedsSpy.mockClear(); + + fireWheelEvent(120); + await mockDelay(); + + expect(exceedsSpy).toHaveBeenCalled(); + + const translateAfter = parseTranslate(modalBox.style.transform); + expect(translateAfter).toEqual(translateBefore); + + exceedsSpy.mockRestore(); + }); + + test('滚轮放大时走 onZoomIn 普通路径', async () => { + const triggerText = '放大路径测试'; + const BasicImageViewer = () => { + const trigger = ({ open }) => open()}>{triggerText}; + return ; + }; + const { getByText } = render(); + + act(() => { + fireEvent.click(getByText(triggerText)); + }); + await mockDelay(); + + const scaleText = document.querySelector('.t-image-viewer__utils-scale')?.textContent; + expect(scaleText).toBe('100%'); + + fireWheelEvent(-120); + await mockDelay(); + + const scaleTextAfter = document.querySelector('.t-image-viewer__utils-scale')?.textContent; + expect(scaleTextAfter).toBe('150%'); + }); + + test('滚轮事件调用 preventDefault', async () => { + const triggerText = 'preventDefault测试'; + const BasicImageViewer = () => { + const trigger = ({ open }) => open()}>{triggerText}; + return ; + }; + const { getByText } = render(); + + act(() => { + fireEvent.click(getByText(triggerText)); + }); + await mockDelay(); + + const wheelEvent = new WheelEvent('wheel', { deltaY: -120, bubbles: true, cancelable: true }); + const preventDefaultSpy = vi.spyOn(wheelEvent, 'preventDefault'); + + act(() => { + document.dispatchEvent(wheelEvent); + }); + + expect(preventDefaultSpy).toHaveBeenCalled(); + + preventDefaultSpy.mockRestore(); + }); +}); + +describe('ImageViewerModal 向中心缩放动画', () => { + const fireWheelEvent = (deltaY: number) => { + act(() => { + document.dispatchEvent(new WheelEvent('wheel', { deltaY, bubbles: true, cancelable: true })); + }); + }; + + const TRANSITIONING_CLASS = 't-image-viewer__modal-box--transitioning'; + + test('向中心缩放时添加 transitioning class', async () => { + const transformModule = await import('@tdesign/common-js/image-viewer/transform'); + const exceedsSpy = vi.spyOn(transformModule, 'isImageExceedsViewport').mockReturnValue(false); + + const triggerText = '动画测试1'; + render( + open()}>{triggerText}} + images={[imgUrl]} + imageScale={{ max: 2, min: 0.5, step: 0.5 }} + />, + ); + + act(() => { + fireEvent.click(document.querySelector('span')); + }); + await mockDelay(); + + fireWheelEvent(-120); + fireWheelEvent(-120); + await mockDelay(); + + exceedsSpy.mockReturnValue(true); + + fireWheelEvent(120); + + const box = document.querySelector('.t-image-viewer__modal-box') as HTMLElement; + expect(box.classList.contains(TRANSITIONING_CLASS)).toBe(true); + + exceedsSpy.mockRestore(); + }); + + test('transitionend 后移除 transitioning class', async () => { + const transformModule = await import('@tdesign/common-js/image-viewer/transform'); + const exceedsSpy = vi.spyOn(transformModule, 'isImageExceedsViewport').mockReturnValue(false); + + render( + open()}>动画测试2} + images={[imgUrl]} + imageScale={{ max: 2, min: 0.5, step: 0.5 }} + />, + ); + + act(() => { + fireEvent.click(document.querySelector('span')); + }); + await mockDelay(); + + fireWheelEvent(-120); + fireWheelEvent(-120); + await mockDelay(); + + exceedsSpy.mockReturnValue(true); + fireWheelEvent(120); + + const box = document.querySelector('.t-image-viewer__modal-box') as HTMLElement; + expect(box.classList.contains(TRANSITIONING_CLASS)).toBe(true); + + act(() => { + const e = new Event('transitionend', { bubbles: true }); + Object.defineProperty(e, 'propertyName', { value: 'transform' }); + box.dispatchEvent(e); + }); + + expect(box.classList.contains(TRANSITIONING_CLASS)).toBe(false); + + exceedsSpy.mockRestore(); + }); + + test('fallback timer(350ms)超时后自动移除 transitioning class', async () => { + vi.useFakeTimers(); + + const transformModule = await import('@tdesign/common-js/image-viewer/transform'); + const exceedsSpy = vi.spyOn(transformModule, 'isImageExceedsViewport').mockReturnValue(false); + + render( + open()}>动画测试3} + images={[imgUrl]} + imageScale={{ max: 2, min: 0.5, step: 0.5 }} + />, + ); + + act(() => { + fireEvent.click(document.querySelector('span')); + }); + + act(() => { + fireWheelEvent(-120); + fireWheelEvent(-120); + }); + + exceedsSpy.mockReturnValue(true); + act(() => { + fireWheelEvent(120); + }); + + const box = document.querySelector('.t-image-viewer__modal-box') as HTMLElement; + expect(box.classList.contains(TRANSITIONING_CLASS)).toBe(true); + + act(() => { + vi.advanceTimersByTime(400); + }); + expect(box.classList.contains(TRANSITIONING_CLASS)).toBe(false); + + vi.useRealTimers(); + exceedsSpy.mockRestore(); + }); + + test('连续快速缩放:fallback timer 重置', async () => { + vi.useFakeTimers(); + + const transformModule = await import('@tdesign/common-js/image-viewer/transform'); + const exceedsSpy = vi.spyOn(transformModule, 'isImageExceedsViewport').mockReturnValue(false); + + render( + open()}>动画测试4} + images={[imgUrl]} + imageScale={{ max: 2, min: 0.5, step: 0.5 }} + />, + ); + + act(() => { + fireEvent.click(document.querySelector('span')); + }); + + act(() => { + fireWheelEvent(-120); + fireWheelEvent(-120); + }); + + exceedsSpy.mockReturnValue(true); + + act(() => { + fireWheelEvent(120); + }); + const box = document.querySelector('.t-image-viewer__modal-box') as HTMLElement; + expect(box.classList.contains(TRANSITIONING_CLASS)).toBe(true); + + act(() => { + vi.advanceTimersByTime(200); + }); + act(() => { + fireWheelEvent(120); + }); + expect(box.classList.contains(TRANSITIONING_CLASS)).toBe(true); + + act(() => { + vi.advanceTimersByTime(200); + }); + expect(box.classList.contains(TRANSITIONING_CLASS)).toBe(true); + + act(() => { + vi.advanceTimersByTime(200); + }); + expect(box.classList.contains(TRANSITIONING_CLASS)).toBe(false); + + vi.useRealTimers(); + exceedsSpy.mockRestore(); + }); +}); + +describe('ImageViewer 工具栏操作快照', () => { const triggerText = '工具栏测试'; const openViewer = async (images = [imgUrl]) => { @@ -638,94 +911,617 @@ describe('ImageViewer toolbar event snapshots', () => { test('点击旋转按钮后快照', async () => { await openViewer(); - const rotateBtn = document.querySelector('.t-image-viewer__modal-rotate-RR'); - if (rotateBtn) { - act(() => { - fireEvent.click(rotateBtn); - }); - await mockDelay(); - } + const rotateBtn = document.querySelector('.t-icon-rotation')?.closest('.t-image-viewer__modal-icon'); + expect(rotateBtn).toBeTruthy(); + act(() => { + fireEvent.click(rotateBtn); + }); + await mockDelay(); expect(document.body).toMatchSnapshot('toolbar-after-rotate'); }); test('点击放大按钮后快照', async () => { await openViewer(); - const zoomInBtn = document.querySelector('.t-image-viewer__modal-zoomIn'); - if (zoomInBtn) { - act(() => { - fireEvent.click(zoomInBtn); - }); - await mockDelay(); - } + const zoomInBtn = document.querySelector('.t-icon-zoom-in')?.closest('.t-image-viewer__modal-icon'); + expect(zoomInBtn).toBeTruthy(); + act(() => { + fireEvent.click(zoomInBtn); + }); + await mockDelay(); expect(document.body).toMatchSnapshot('toolbar-after-zoom-in'); }); test('点击缩小按钮后快照', async () => { await openViewer(); - const zoomOutBtn = document.querySelector('.t-image-viewer__modal-zoomOut'); - if (zoomOutBtn) { - act(() => { - fireEvent.click(zoomOutBtn); - }); - await mockDelay(); - } + const zoomOutBtn = document.querySelector('.t-icon-zoom-out')?.closest('.t-image-viewer__modal-icon'); + expect(zoomOutBtn).toBeTruthy(); + act(() => { + fireEvent.click(zoomOutBtn); + }); + await mockDelay(); expect(document.body).toMatchSnapshot('toolbar-after-zoom-out'); }); test('点击镜像按钮后快照', async () => { await openViewer(); - const mirrorBtn = document.querySelector('.t-image-viewer__modal-mirrorX'); - if (mirrorBtn) { - act(() => { - fireEvent.click(mirrorBtn); - }); - await mockDelay(); - } + const mirrorBtn = document.querySelector('.t-icon-mirror')?.closest('.t-image-viewer__modal-icon'); + expect(mirrorBtn).toBeTruthy(); + act(() => { + fireEvent.click(mirrorBtn); + }); + await mockDelay(); expect(document.body).toMatchSnapshot('toolbar-after-mirror'); }); test('点击原始大小按钮后快照', async () => { await openViewer(); - const resetBtn = document.querySelector('.t-image-viewer__modal-original'); - if (resetBtn) { - act(() => { - fireEvent.click(resetBtn); - }); - await mockDelay(); - } + const resetBtn = document.querySelector('.t-icon-image')?.closest('.t-image-viewer__modal-icon'); + expect(resetBtn).toBeTruthy(); + act(() => { + fireEvent.click(resetBtn); + }); + await mockDelay(); expect(document.body).toMatchSnapshot('toolbar-after-reset'); }); test('多图导航:上一张/下一张按钮快照', async () => { await openViewer([imgUrl, imgUrl2, imgUrl3]); - // 点击下一张 - const nextBtn = document.querySelector('.t-image-viewer__modal-next-bt'); - if (nextBtn) { - act(() => { - fireEvent.click(nextBtn); - }); - await mockDelay(); - } + const nextBtn = document.querySelector('.t-icon-chevron-right')?.closest('.t-image-viewer__modal-icon'); + expect(nextBtn).toBeTruthy(); + act(() => { + fireEvent.click(nextBtn); + }); + await mockDelay(); expect(document.body).toMatchSnapshot('toolbar-navigate-next'); - // 再次点击下一张 - const nextBtn2 = document.querySelector('.t-image-viewer__modal-next-bt'); - if (nextBtn2) { - act(() => { - fireEvent.click(nextBtn2); - }); - await mockDelay(); - } + const nextBtn2 = document.querySelector('.t-icon-chevron-right')?.closest('.t-image-viewer__modal-icon'); + expect(nextBtn2).toBeTruthy(); + act(() => { + fireEvent.click(nextBtn2); + }); + await mockDelay(); - // 点击上一张 - const prevBtn = document.querySelector('.t-image-viewer__modal-prev-bt'); - if (prevBtn) { - act(() => { - fireEvent.click(prevBtn); - }); - await mockDelay(); - } + const prevBtn = document.querySelector('.t-icon-chevron-left')?.closest('.t-image-viewer__modal-icon'); + expect(prevBtn).toBeTruthy(); + act(() => { + fireEvent.click(prevBtn); + }); + await mockDelay(); expect(document.body).toMatchSnapshot('toolbar-navigate-prev'); }); }); + +// ─── onClose trigger 来源验证 ─────────────────────────────────────────── +describe('onClose trigger 来源', () => { + const triggerText = '关闭来源测试'; + + test('点击关闭按钮时 trigger 为 close-btn', async () => { + const onClose = vi.fn(); + const BasicImageViewer = () => { + const trigger = ({ open }) => open()}>{triggerText}; + return ; + }; + render(); + + act(() => { + fireEvent.click(document.querySelector('span')); + }); + await mockDelay(); + + const closeBtn = document.querySelector('.t-image-viewer__modal-close-bt'); + expect(closeBtn).toBeTruthy(); + act(() => { + fireEvent.click(closeBtn); + }); + expect(onClose).toHaveBeenCalledWith({ trigger: 'close-btn', e: expect.any(Object) }); + }); + + test('点击遮罩时 trigger 为 overlay', async () => { + const onClose = vi.fn(); + const BasicImageViewer = () => { + const trigger = ({ open }) => open()}>{triggerText}; + return ; + }; + render(); + + act(() => { + fireEvent.click(document.querySelector('span')); + }); + await mockDelay(); + + const mask = document.querySelector('.t-image-viewer__modal-mask'); + expect(mask).toBeTruthy(); + act(() => { + fireEvent.click(mask); + }); + expect(onClose).toHaveBeenCalledWith({ trigger: 'overlay', e: expect.any(Object) }); + }); + + test('ESC 关闭时 trigger 为 esc', async () => { + const user = userEvent.setup(); + const onClose = vi.fn(); + const BasicImageViewer = () => { + const trigger = ({ open }) => open()}>{triggerText}; + return ; + }; + render(); + + act(() => { + fireEvent.click(document.querySelector('span')); + }); + await mockDelay(); + + await user.type(document.body, '{Escape}'); + expect(onClose).toHaveBeenCalledWith({ trigger: 'esc', e: expect.any(Object) }); + }); +}); + +// ─── onDownload 回调 ──────────────────────────────────────────────────── +describe('onDownload 下载回调', () => { + const triggerText = '下载测试'; + + test('自定义 onDownload 时被调用', async () => { + const onDownload = vi.fn(); + const BasicImageViewer = () => { + const trigger = ({ open }) => open()}>{triggerText}; + return ; + }; + render(); + + act(() => { + fireEvent.click(document.querySelector('span')); + }); + await mockDelay(); + + const downloadBtn = + document + .querySelector('.t-image-viewer__modal-icon [data-td-icon="download"]') + ?.closest('.t-image-viewer__modal-icon') ?? + document.querySelector('.t-icon-download')?.closest('.t-image-viewer__modal-icon'); + expect(downloadBtn).toBeTruthy(); + act(() => { + fireEvent.click(downloadBtn); + }); + expect(onDownload).toHaveBeenCalledWith(imgUrl); + }); + + test('currentImage.download 为 false 时不显示下载按钮', async () => { + const BasicImageViewer = () => { + const trigger = ({ open }) => open()}>{triggerText}; + return ; + }; + render(); + + act(() => { + fireEvent.click(document.querySelector('span')); + }); + await mockDelay(); + + const downloadIcon = document.querySelector('.t-icon-download'); + expect(downloadIcon).toBeNull(); + }); +}); + +// ─── 受控模式 ────────────────────────────────────────────────────────── +describe('受控 visible/index', () => { + test('受控 visible 打开/关闭', async () => { + const ControlledViewer = () => { + const [visible, setVisible] = React.useState(false); + return ( + <> + + + setVisible(false)} /> + + ); + }; + render(); + + expect(document.querySelector('.t-image-viewer-preview-image')).toBeNull(); + + act(() => { + fireEvent.click(document.querySelector('[data-testid="open"]')); + }); + await mockDelay(); + expect(document.querySelector('.t-image-viewer-preview-image')).toBeTruthy(); + + act(() => { + fireEvent.click(document.querySelector('[data-testid="close"]')); + }); + await mockTimeout(() => expect(document.querySelector('.t-image-viewer-preview-image')).toBeNull()); + }); + + test('受控 index 切换图片', async () => { + const ControlledViewer = () => { + const [index, setIndex] = React.useState(0); + return ( + <> + + setIndex(i as number)} + /> + + ); + }; + render(); + await mockDelay(); + + // 初始 index=0 + const indexText = document.querySelector('.t-image-viewer__modal-index'); + expect(indexText).toBeTruthy(); + + // 外部修改 index 为 2 + act(() => { + fireEvent.click(document.querySelector('[data-testid="set-index"]')); + }); + await mockDelay(); + + // 验证组件已更新到第 3 张 + const updatedIndexText = document.querySelector('.t-image-viewer__modal-index'); + expect(updatedIndexText?.textContent).toContain('3/3'); + }); +}); + +// ─── 图片加载错误状态 ────────────────────────────────────────────────── +describe('图片加载错误状态', () => { + const triggerText = '错误状态测试'; + + test('图片加载失败显示错误 UI', async () => { + const BasicImageViewer = () => { + const trigger = ({ open }) => open()}>{triggerText}; + return ; + }; + render(); + + act(() => { + fireEvent.click(document.querySelector('span')); + }); + await mockDelay(); + + const img = document.querySelector('.t-image-viewer__modal-image') as HTMLImageElement; + expect(img).toBeTruthy(); + + act(() => { + fireEvent.error(img); + }); + await mockDelay(); + + const errorEl = document.querySelector('.t-image-viewer__img-error'); + // In JSDOM, error UI may render; verify either error element appears or image is hidden + const hasError = + errorEl !== null || document.querySelector('.t-image-viewer__modal-image[style*="display: none"]') !== null; + expect(hasError).toBe(true); + }); +}); + +// ─── open(index) 指定索引打开 ────────────────────────────────────────── +describe('open(index) 指定索引打开', () => { + test('open 传入 index 后显示对应图片', async () => { + const onIndexChange = vi.fn(); + const BasicImageViewer = () => { + const trigger = ({ open }) => open(2)}>指定索引打开; + return ; + }; + render(); + + act(() => { + fireEvent.click(document.querySelector('span')); + }); + await mockDelay(); + + const indexText = document.querySelector('.t-image-viewer__modal-index'); + expect(indexText?.textContent).toContain('3/3'); + }); +}); + +// ─── 缩略图导航 ────────────────────────────────────────────────────── +describe('ImageViewerHeader 缩略图导航', () => { + test('点击缩略图切换到对应图片', async () => { + const onIndexChange = vi.fn(); + const BasicImageViewer = () => { + const trigger = ({ open }) => open()}>缩略图测试; + return ; + }; + render(); + + act(() => { + fireEvent.click(document.querySelector('span')); + }); + await mockDelay(); + + const headerBoxes = document.querySelectorAll('.t-image-viewer__header-box'); + expect(headerBoxes.length).toBe(3); + + act(() => { + fireEvent.click(headerBoxes[2]); + }); + expect(onIndexChange).toHaveBeenCalledWith(2, { trigger: 'current' }); + }); + + test('当前图片缩略图有 active 状态', async () => { + const BasicImageViewer = () => { + const trigger = ({ open }) => open()}>缩略图测试; + return ; + }; + render(); + + act(() => { + fireEvent.click(document.querySelector('span')); + }); + await mockDelay(); + + const headerBoxes = document.querySelectorAll('.t-image-viewer__header-box'); + expect(headerBoxes[0].classList.contains('t-is-active')).toBe(true); + expect(headerBoxes[1].classList.contains('t-is-active')).toBe(false); + }); +}); + +// ─── closeBtn 为函数 ────────────────────────────────────────────────── +describe('closeBtn 为函数', () => { + test('closeBtn 为函数时渲染自定义关闭按钮', async () => { + const BasicImageViewer = () => { + const trigger = ({ open }) => open()}>函数关闭按钮; + return ( + ( + + )} + /> + ); + }; + render(); + + act(() => { + fireEvent.click(document.querySelector('span')); + }); + await mockDelay(); + + const customBtn = document.querySelector('[data-testid="custom-close"]'); + expect(customBtn).toBeTruthy(); + expect(customBtn?.textContent).toBe('X'); + }); +}); + +// ─── DefaultTrigger 点击交互 ────────────────────────────────────────── +describe('DefaultTrigger 点击交互', () => { + test('默认触发器点击后打开预览', async () => { + render(); + + const triggerEl = document.querySelector('.t-image-viewer__trigger'); + expect(triggerEl).toBeTruthy(); + + act(() => { + fireEvent.click(triggerEl); + }); + await mockDelay(); + + expect(document.querySelector('.t-image-viewer-preview-image')).toBeTruthy(); + }); +}); + +// ─── 切换图片重置状态 ──────────────────────────────────────────────── +describe('切换图片后重置旋转/缩放/位移', () => { + test('切换图片后缩放重置为 1', async () => { + const user = userEvent.setup(); + const BasicImageViewer = () => { + const trigger = ({ open }) => open()}>重置测试; + return ; + }; + render(); + + act(() => { + fireEvent.click(document.querySelector('span')); + }); + await mockDelay(); + + // 放大 + await user.type(document.body, '{ArrowUp}'); + await mockDelay(); + const scaleText = document.querySelector('.t-image-viewer__utils-scale')?.textContent; + expect(scaleText).not.toBe('100%'); + + // 切换到下一张 + await user.type(document.body, '{ArrowRight}'); + await mockDelay(); + + const scaleTextAfter = document.querySelector('.t-image-viewer__utils-scale')?.textContent; + expect(scaleTextAfter).toBe('100%'); + }); +}); + +// ─── innerClassName 属性 ────────────────────────────────────────────── +describe('innerClassName 属性', () => { + test('innerClassName 应用到图片容器', async () => { + const BasicImageViewer = () => { + const trigger = ({ open }) => open()}>innerClassName测试; + return ; + }; + render(); + + act(() => { + fireEvent.click(document.querySelector('span')); + }); + await mockDelay(); + + const picEl = document.querySelector('.t-image-viewer__modal-pic'); + expect(picEl?.classList.contains('custom-inner')).toBe(true); + }); +}); + +// ─── showOverlay 为 false ───────────────────────────────────────────── +describe('showOverlay 属性', () => { + test('showOverlay 为 false 时不渲染遮罩', async () => { + const BasicImageViewer = () => { + const trigger = ({ open }) => open()}>遮罩测试; + return ; + }; + render(); + + act(() => { + fireEvent.click(document.querySelector('span')); + }); + await mockDelay(); + + const mask = document.querySelector('.t-image-viewer__modal-mask'); + expect(mask).toBeNull(); + }); +}); + +// ─── closeOnOverlay 为 false ────────────────────────────────────────── +describe('closeOnOverlay 属性', () => { + test('closeOnOverlay 为 false 时点击遮罩不关闭', async () => { + const onClose = vi.fn(); + const BasicImageViewer = () => { + const trigger = ({ open }) => open()}>遮罩不关闭测试; + return ; + }; + render(); + + act(() => { + fireEvent.click(document.querySelector('span')); + }); + await mockDelay(); + + const mask = document.querySelector('.t-image-viewer__modal-mask'); + expect(mask).toBeTruthy(); + act(() => { + fireEvent.click(mask); + }); + expect(onClose).not.toHaveBeenCalled(); + }); +}); + +// ─── title 为函数 ───────────────────────────────────────────────────── +describe('title 为 TNode', () => { + test('title 为 ReactNode 时渲染自定义标题', async () => { + const BasicImageViewer = () => { + const trigger = ({ open }) => open()}>标题测试; + return ( + 自定义标题} + /> + ); + }; + render(); + + act(() => { + fireEvent.click(document.querySelector('span')); + }); + await mockDelay(); + + const titleEl = document.querySelector('.custom-title-node'); + expect(titleEl).toBeTruthy(); + expect(titleEl?.textContent).toBe('自定义标题'); + }); +}); + +// ─── 第一张/最后一张箭头 disabled ────────────────────────────────────── +describe('第一张/最后一张箭头 disabled 状态', () => { + test('第一张图片时 prev 按钮有 disabled 样式', async () => { + const BasicImageViewer = () => { + const trigger = ({ open }) => open()}>箭头测试; + return ; + }; + render(); + + act(() => { + fireEvent.click(document.querySelector('span')); + }); + await mockDelay(); + + const prevBtn = document.querySelector('.t-image-viewer__modal-prev-bt'); + expect(prevBtn?.classList.contains('t-is-disabled')).toBe(true); + + const nextBtn = document.querySelector('.t-image-viewer__modal-next-bt'); + expect(nextBtn?.classList.contains('t-is-disabled')).toBe(false); + }); + + test('最后一张图片时 next 按钮有 disabled 样式', async () => { + const user = userEvent.setup(); + const BasicImageViewer = () => { + const trigger = ({ open }) => open()}>箭头测试2; + return ; + }; + render(); + + act(() => { + fireEvent.click(document.querySelector('span')); + }); + await mockDelay(); + + await user.type(document.body, '{ArrowRight}'); + await mockDelay(); + + const nextBtn = document.querySelector('.t-image-viewer__modal-next-bt'); + expect(nextBtn?.classList.contains('t-is-disabled')).toBe(true); + }); +}); + +// ─── 空图片数组 ─────────────────────────────────────────────────────── +describe('空图片数组', () => { + test('images 为空数组时不渲染弹窗', async () => { + const BasicImageViewer = () => { + const trigger = ({ open }) => open()}>空数组测试; + return ; + }; + render(); + + act(() => { + fireEvent.click(document.querySelector('span')); + }); + await mockDelay(); + + expect(document.querySelector('.t-image-viewer-preview-image')).toBeNull(); + }); +}); + +// ─── imageScale 动态变化重置 ────────────────────────────────────────── +describe('imageScale 动态变化重置缩放', () => { + test('imageScale 变化后缩放重置', async () => { + const DynamicScaleViewer = () => { + const [scale, setScale] = React.useState({ max: 2, min: 0.5, step: 0.2 }); + const trigger = ({ open }) => open()}>动态缩放; + return ( + <> + + + + ); + }; + render(); + + act(() => { + fireEvent.click(document.querySelector('span')); + }); + await mockDelay(); + + const scaleText = document.querySelector('.t-image-viewer__utils-scale')?.textContent; + expect(scaleText).toBe('100%'); + + act(() => { + fireEvent.click(document.querySelector('[data-testid="change-scale"]')); + }); + await mockDelay(); + + const scaleTextAfter = document.querySelector('.t-image-viewer__utils-scale')?.textContent; + expect(scaleTextAfter).toBe('100%'); + }); +}); diff --git a/packages/components/image-viewer/__tests__/transform.test.ts b/packages/components/image-viewer/__tests__/transform.test.ts index 3669bcd629..1b669c47db 100644 --- a/packages/components/image-viewer/__tests__/transform.test.ts +++ b/packages/components/image-viewer/__tests__/transform.test.ts @@ -10,7 +10,7 @@ * - isImageExceedsViewport * - DEFAULT_IMAGE_SCALE */ -import { describe, expect, it } from 'vitest'; +import { describe, expect, test } from 'vitest'; import { calcResetRotation, calculateTranslateOffset, @@ -27,8 +27,8 @@ import { } from '@tdesign/common-js/image-viewer/transform'; // ─── 常量 ──────────────────────────────────────────────────────────────── -describe('constants', () => { - it('DEFAULT_IMAGE_SCALE', () => { +describe('常量', () => { + test('DEFAULT_IMAGE_SCALE 默认缩放配置', () => { expect(DEFAULT_IMAGE_SCALE).toEqual({ max: 2, min: 0.5, @@ -37,26 +37,26 @@ describe('constants', () => { }); }); - it('MIRROR_DEFAULT = 1', () => { + test('MIRROR_DEFAULT 默认值为 1', () => { expect(MIRROR_DEFAULT).toBe(1); }); - it('ROTATE_DEG = -90', () => { + test('ROTATE_DEG 旋转角度为 -90', () => { expect(ROTATE_DEG).toBe(-90); }); }); // ─── toggleMirror ──────────────────────────────────────────────────────── -describe('toggleMirror', () => { - it('toggles from default(1) to -1', () => { +describe('toggleMirror 镜像切换', () => { + test('从默认值 1 切换为 -1', () => { expect(toggleMirror(1)).toBe(-1); }); - it('toggles from -1 back to 1', () => { + test('从 -1 切换回 1', () => { expect(toggleMirror(-1)).toBe(1); }); - it('rapid toggles (10 times) return to 1', () => { + test('连续切换 10 次回到 1', () => { let mirror = MIRROR_DEFAULT; for (let i = 0; i < 10; i++) { mirror = toggleMirror(mirror); @@ -64,7 +64,7 @@ describe('toggleMirror', () => { expect(mirror).toBe(1); }); - it('odd number of toggles gives -1', () => { + test('奇数次切换结果为 -1', () => { let mirror = MIRROR_DEFAULT; for (let i = 0; i < 5; i++) { mirror = toggleMirror(mirror); @@ -74,120 +74,135 @@ describe('toggleMirror', () => { }); // ─── calcResetRotation ────────────────────────────────────────────────── -describe('calcResetRotation', () => { - it('0° → no adjustment', () => { +describe('calcResetRotation 旋转重置', () => { + test('0° 时无需调整', () => { expect(calcResetRotation(0)).toBe(0); }); - it('-90° → -90 (|deg| ≤ 180, same value)', () => { + test('-90° 时保持不变(|deg| ≤ 180)', () => { expect(calcResetRotation(-90)).toBe(-90); }); - it('-180° → -180 (boundary, |deg| = 180)', () => { + test('-180° 边界值保持不变', () => { expect(calcResetRotation(-180)).toBe(-180); }); - it('-270° → 90 (|deg| > 180, shortest path via +90)', () => { + test('-270° 走最短路径(+90)', () => { expect(calcResetRotation(-270)).toBe(90); }); - it('-360° → no adjustment (full rotation)', () => { + test('-360° 整圈旋转无需调整', () => { expect(calcResetRotation(-360)).toBe(0); }); - it('-450° → -90 (-450 % 360 = -90)', () => { + test('-450° 等价于 -90°', () => { expect(calcResetRotation(-450)).toBe(-90); }); - it('-720° → no adjustment (two full rotations)', () => { + test('-720° 两圈旋转无需调整', () => { expect(calcResetRotation(-720)).toBe(0); }); - it('positive 90° → 90', () => { + test('正 90° 保持不变', () => { expect(calcResetRotation(90)).toBe(90); }); - it('positive 270° → shortest path', () => { - // 270 % 360 = 270, |270| > 180 → (270 + 360) % 360 = 270 + test('正 270° 走最短路径', () => { expect(calcResetRotation(270)).toBe(270); }); + + test('正 360° 整圈旋转无需调整', () => { + expect(calcResetRotation(360)).toBe(0); + }); + + test('正 180° 保持不变', () => { + expect(calcResetRotation(180)).toBe(180); + }); + + test('正 540° 等价于 180°', () => { + expect(calcResetRotation(540)).toBe(180); + }); + + test('负 630° 最短路径', () => { + expect(calcResetRotation(-630)).toBe(90); + }); }); // ─── clampScale ────────────────────────────────────────────────────────── -describe('clampScale', () => { - it('within range returns same value', () => { +describe('clampScale 缩放值限制', () => { + test('范围内值不变', () => { expect(clampScale(1, 0.5, 2)).toBe(1); }); - it('below min returns min', () => { + test('低于最小值返回最小值', () => { expect(clampScale(0.1, 0.5, 2)).toBe(0.5); }); - it('above max returns max', () => { + test('超过最大值返回最大值', () => { expect(clampScale(5, 0.5, 2)).toBe(2); }); - it('equal to min', () => { + test('等于最小值', () => { expect(clampScale(0.5, 0.5, 2)).toBe(0.5); }); - it('equal to max', () => { + test('等于最大值', () => { expect(clampScale(2, 0.5, 2)).toBe(2); }); - it('zero', () => { + test('零值被限制为最小值', () => { expect(clampScale(0, 0.5, 2)).toBe(0.5); }); - it('negative value', () => { + test('负值被限制为最小值', () => { expect(clampScale(-1, 0.5, 2)).toBe(0.5); }); }); // ─── calcZoomInScale / calcZoomOutScale ────────────────────────────────── -describe('calcZoomInScale', () => { - it('basic zoom in', () => { +describe('calcZoomInScale 放大计算', () => { + test('基本放大', () => { expect(calcZoomInScale(1, 0.2, 0.5, 2)).toBeCloseTo(1.2); }); - it('clamps at max', () => { + test('放大到最大值时截断', () => { expect(calcZoomInScale(1.9, 0.2, 0.5, 2)).toBe(2); }); - it('already at max returns max', () => { + test('已在最大值时保持不变', () => { expect(calcZoomInScale(2, 0.2, 0.5, 2)).toBe(2); }); - it('large step', () => { + test('大步长放大', () => { expect(calcZoomInScale(1, 1, 0.5, 2)).toBe(2); }); - it('small step', () => { + test('小步长放大', () => { expect(calcZoomInScale(1, 0.05, 0.5, 2)).toBeCloseTo(1.05); }); }); -describe('calcZoomOutScale', () => { - it('basic zoom out', () => { +describe('calcZoomOutScale 缩小计算', () => { + test('基本缩小', () => { expect(calcZoomOutScale(1, 0.2, 0.5, 2)).toBeCloseTo(0.8); }); - it('clamps at min', () => { + test('缩小到最小值时截断', () => { expect(calcZoomOutScale(0.6, 0.2, 0.5, 2)).toBe(0.5); }); - it('already at min returns min', () => { + test('已在最小值时保持不变', () => { expect(calcZoomOutScale(0.5, 0.2, 0.5, 2)).toBe(0.5); }); - it('large step', () => { + test('大步长缩小', () => { expect(calcZoomOutScale(1, 1, 0.5, 2)).toBe(0.5); }); }); // ─── calculateTranslateOffset ──────────────────────────────────────────── -describe('calculateTranslateOffset', () => { - it('returns undefined when mouseOffsetX is missing', () => { +describe('calculateTranslateOffset 位移计算', () => { + test('缺少 mouseOffsetX 时返回 undefined', () => { const result = calculateTranslateOffset(1, 1.2, { mouseOffsetY: 50, currentTranslate: { translateX: 0, translateY: 0 }, @@ -195,7 +210,7 @@ describe('calculateTranslateOffset', () => { expect(result).toBeUndefined(); }); - it('returns undefined when mouseOffsetY is missing', () => { + test('缺少 mouseOffsetY 时返回 undefined', () => { const result = calculateTranslateOffset(1, 1.2, { mouseOffsetX: 50, currentTranslate: { translateX: 0, translateY: 0 }, @@ -203,21 +218,18 @@ describe('calculateTranslateOffset', () => { expect(result).toBeUndefined(); }); - it('returns undefined when both offsets missing', () => { + test('两个偏移都缺失时返回 undefined', () => { const result = calculateTranslateOffset(1, 1.2, { currentTranslate: { translateX: 0, translateY: 0 }, }); expect(result).toBeUndefined(); }); - it('returns undefined when options is undefined', () => { + test('options 为 undefined 时返回 undefined', () => { expect(calculateTranslateOffset(1, 1.2)).toBeUndefined(); }); - it('center zoom (mouseOffset = 0): newT = scaleRatio * T', () => { - // scaleRatio = 1.2/1 = 1.2, T = {100, 50} - // newTx = 1.2 * 100 + (1 - 1.2) * 0 = 120 - // newTy = 1.2 * 50 + (1 - 1.2) * 0 = 60 + test('中心缩放(偏移为 0):newT = scaleRatio * T', () => { const result = calculateTranslateOffset(1, 1.2, { mouseOffsetX: 0, mouseOffsetY: 0, @@ -226,10 +238,7 @@ describe('calculateTranslateOffset', () => { expect(result).toEqual({ translateX: 120, translateY: 60 }); }); - it('non-center zoom: formula verification', () => { - // scaleRatio = 1.2/1 = 1.2 - // newTx = 1.2 * 0 + (1 - 1.2) * 100 = -20 - // newTy = 1.2 * 0 + (1 - 1.2) * 50 = -10 + test('非中心缩放:公式验证', () => { const result = calculateTranslateOffset(1, 1.2, { mouseOffsetX: 100, mouseOffsetY: 50, @@ -239,10 +248,7 @@ describe('calculateTranslateOffset', () => { expect(result.translateY).toBeCloseTo(-10); }); - it('zoom out with existing translate', () => { - // scaleRatio = 0.8/1 = 0.8 - // newTx = 0.8 * 50 + (1 - 0.8) * 100 = 40 + 20 = 60 - // newTy = 0.8 * 50 + (1 - 0.8) * 100 = 40 + 20 = 60 + test('缩小并带已有位移', () => { const result = calculateTranslateOffset(1, 0.8, { mouseOffsetX: 100, mouseOffsetY: 100, @@ -251,7 +257,7 @@ describe('calculateTranslateOffset', () => { expect(result).toEqual({ translateX: 60, translateY: 60 }); }); - it('same scale (ratio = 1) returns same translate', () => { + test('缩放比例为 1 时位移不变', () => { const result = calculateTranslateOffset(1, 1, { mouseOffsetX: 200, mouseOffsetY: 200, @@ -260,9 +266,7 @@ describe('calculateTranslateOffset', () => { expect(result).toEqual({ translateX: 50, translateY: 50 }); }); - it('missing currentTranslate defaults to {0, 0}', () => { - // scaleRatio = 1.2/1 = 1.2 - // newTx = 1.2 * 0 + (1 - 1.2) * 100 = -20 + test('缺少 currentTranslate 时默认为 {0, 0}', () => { const result = calculateTranslateOffset(1, 1.2, { mouseOffsetX: 100, mouseOffsetY: 100, @@ -273,14 +277,14 @@ describe('calculateTranslateOffset', () => { }); // ─── zoomIn / zoomOut (组合函数) ───────────────────────────────────────── -describe('zoomIn', () => { - it('basic zoom in without options', () => { +describe('zoomIn 放大', () => { + test('无 ZoomOptions 时只返回 newScale', () => { const { newScale, zoomResult } = zoomIn(1, 0.2, 0.5, 2); expect(newScale).toBeCloseTo(1.2); expect(zoomResult.newTranslate).toBeUndefined(); }); - it('zoom in with ZoomOptions', () => { + test('带 ZoomOptions 时计算新位移', () => { const { newScale, zoomResult } = zoomIn(1, 0.2, 0.5, 2, { mouseOffsetX: 0, mouseOffsetY: 0, @@ -290,21 +294,21 @@ describe('zoomIn', () => { expect(zoomResult.newTranslate).toEqual({ translateX: 120, translateY: 60 }); }); - it('zoom in at max boundary', () => { + test('已达最大值时只返回 newScale', () => { const { newScale, zoomResult } = zoomIn(2, 0.2, 0.5, 2); expect(newScale).toBe(2); expect(zoomResult.newTranslate).toBeUndefined(); }); }); -describe('zoomOut', () => { - it('basic zoom out without options', () => { +describe('zoomOut 缩小', () => { + test('无 ZoomOptions 时只返回 newScale', () => { const { newScale, zoomResult } = zoomOut(1, 0.2, 0.5, 2); expect(newScale).toBeCloseTo(0.8); expect(zoomResult.newTranslate).toBeUndefined(); }); - it('zoom out with ZoomOptions', () => { + test('带 ZoomOptions 时计算新位移', () => { const { newScale, zoomResult } = zoomOut(1, 0.2, 0.5, 2, { mouseOffsetX: 100, mouseOffsetY: 100, @@ -314,7 +318,7 @@ describe('zoomOut', () => { expect(zoomResult.newTranslate).toEqual({ translateX: 60, translateY: 60 }); }); - it('zoom out at min boundary', () => { + test('已达最小值时只返回 newScale', () => { const { newScale, zoomResult } = zoomOut(0.5, 0.2, 0.5, 2); expect(newScale).toBe(0.5); expect(zoomResult.newTranslate).toBeUndefined(); @@ -322,7 +326,7 @@ describe('zoomOut', () => { }); // ─── isImageExceedsViewport ────────────────────────────────────────────── -describe('isImageExceedsViewport', () => { +describe('isImageExceedsViewport 图片是否超出视口', () => { const createMockElement = (rect: Partial) => { const el = document.createElement('div'); el.getBoundingClientRect = () => ({ @@ -341,45 +345,69 @@ describe('isImageExceedsViewport', () => { return el; }; - it('image within viewport', () => { + test('图片在视口内', () => { const container = createMockElement({ left: 0, right: 800, top: 0, bottom: 600 }); const modalBox = createMockElement({ left: 100, right: 700, top: 50, bottom: 550 }); expect(isImageExceedsViewport(container, modalBox)).toBe(false); }); - it('image exceeds left', () => { + test('图片超出左侧', () => { const container = createMockElement({ left: 0, right: 800, top: 0, bottom: 600 }); const modalBox = createMockElement({ left: -50, right: 700, top: 50, bottom: 550 }); expect(isImageExceedsViewport(container, modalBox)).toBe(true); }); - it('image exceeds right', () => { + test('图片超出右侧', () => { const container = createMockElement({ left: 0, right: 800, top: 0, bottom: 600 }); const modalBox = createMockElement({ left: 100, right: 900, top: 50, bottom: 550 }); expect(isImageExceedsViewport(container, modalBox)).toBe(true); }); - it('image exceeds top', () => { + test('图片超出顶部', () => { const container = createMockElement({ left: 0, right: 800, top: 0, bottom: 600 }); const modalBox = createMockElement({ left: 100, right: 700, top: -10, bottom: 550 }); expect(isImageExceedsViewport(container, modalBox)).toBe(true); }); - it('image exceeds bottom', () => { + test('图片超出底部', () => { const container = createMockElement({ left: 0, right: 800, top: 0, bottom: 600 }); const modalBox = createMockElement({ left: 100, right: 700, top: 50, bottom: 650 }); expect(isImageExceedsViewport(container, modalBox)).toBe(true); }); - it('image exceeds all sides', () => { + test('图片四边均超出', () => { const container = createMockElement({ left: 0, right: 800, top: 0, bottom: 600 }); const modalBox = createMockElement({ left: -100, right: 900, top: -100, bottom: 700 }); expect(isImageExceedsViewport(container, modalBox)).toBe(true); }); - it('image matches viewport exactly', () => { + test('图片与视口完全重合', () => { const container = createMockElement({ left: 0, right: 800, top: 0, bottom: 600 }); const modalBox = createMockElement({ left: 0, right: 800, top: 0, bottom: 600 }); expect(isImageExceedsViewport(container, modalBox)).toBe(false); }); + + test('图片左边与容器左边对齐(边界不超出)', () => { + const container = createMockElement({ left: 0, right: 800, top: 0, bottom: 600 }); + const modalBox = createMockElement({ left: 0, right: 700, top: 50, bottom: 550 }); + expect(isImageExceedsViewport(container, modalBox)).toBe(false); + }); + + test('图片右边与容器右边对齐(边界不超出)', () => { + const container = createMockElement({ left: 0, right: 800, top: 0, bottom: 600 }); + const modalBox = createMockElement({ left: 100, right: 800, top: 50, bottom: 550 }); + expect(isImageExceedsViewport(container, modalBox)).toBe(false); + }); + + test('图片上边与容器上边对齐(边界不超出)', () => { + const container = createMockElement({ left: 0, right: 800, top: 0, bottom: 600 }); + const modalBox = createMockElement({ left: 100, right: 700, top: 0, bottom: 550 }); + expect(isImageExceedsViewport(container, modalBox)).toBe(false); + }); + + test('图片下边与容器下边对齐(边界不超出)', () => { + const container = createMockElement({ left: 0, right: 800, top: 0, bottom: 600 }); + const modalBox = createMockElement({ left: 100, right: 700, top: 50, bottom: 600 }); + expect(isImageExceedsViewport(container, modalBox)).toBe(false); + }); }); diff --git a/packages/components/image-viewer/__tests__/utils.test.ts b/packages/components/image-viewer/__tests__/utils.test.ts index b0d8da0cdb..a6f66d5164 100644 --- a/packages/components/image-viewer/__tests__/utils.test.ts +++ b/packages/components/image-viewer/__tests__/utils.test.ts @@ -5,26 +5,24 @@ * - formatImages * - downloadImage(含跨域 canvasDownload 路径) */ -import { afterEach, beforeEach, describe, expect, it, vi } from 'vitest'; +import { afterEach, beforeEach, describe, expect, test, vi } from 'vitest'; import { downloadImage, formatImages } from '@tdesign/common-js/image-viewer/utils'; import { act } from '@test/utils'; // ─── formatImages ──────────────────────────────────────────────────────── -describe('formatImages', () => { - it('non-array input returns empty array', () => { - expect(formatImages(null)).toEqual([]); - expect(formatImages(undefined)).toEqual([]); - // @ts-expect-error testing invalid input - expect(formatImages('string')).toEqual([]); - // @ts-expect-error testing invalid input - expect(formatImages(123)).toEqual([]); +describe('formatImages 图片格式化', () => { + test('非数组输入返回空数组', () => { + expect(formatImages(null as unknown as ImageInfo[])).toEqual([]); + expect(formatImages(undefined as unknown as ImageInfo[])).toEqual([]); + expect(formatImages('string' as unknown as ImageInfo[])).toEqual([]); + expect(formatImages(123 as unknown as ImageInfo[])).toEqual([]); }); - it('empty array', () => { + test('空数组', () => { expect(formatImages([])).toEqual([]); }); - it('string images with default properties', () => { + test('字符串数组:使用默认属性', () => { const images = ['image1.jpg', 'image2.png']; const result = formatImages(images); @@ -34,7 +32,7 @@ describe('formatImages', () => { ]); }); - it('ImageInfo objects with defaults', () => { + test('ImageInfo 对象:补全默认属性', () => { const images = [{ mainImage: 'main1.jpg' }, { mainImage: 'main2.jpg', thumbnail: 'thumb2.jpg' }]; const result = formatImages(images); @@ -42,13 +40,13 @@ describe('formatImages', () => { expect(result[1]).toEqual({ mainImage: 'main2.jpg', thumbnail: 'thumb2.jpg', download: true }); }); - it('custom download setting preserved', () => { + test('自定义 download 设置被保留', () => { const images = [{ mainImage: 'main.jpg', download: false }]; const result = formatImages(images); expect(result[0].download).toBeFalsy(); }); - it('mixed string and ImageInfo array', () => { + test('字符串与 ImageInfo 混合数组', () => { const images = ['string-image.jpg', { mainImage: 'object-main.jpg', thumbnail: 'object-thumb.jpg' }]; const result = formatImages(images); @@ -58,7 +56,7 @@ describe('formatImages', () => { ]); }); - it('File objects in images', () => { + test('File 对象作为图片输入', () => { const file = new File(['test'], 'test.png', { type: 'image/png' }); const result = formatImages([file]); @@ -67,19 +65,19 @@ describe('formatImages', () => { expect(result[0].download).toBeTruthy(); }); - it('ImageInfo with all properties', () => { + test('ImageInfo 包含全部属性', () => { const images = [{ mainImage: 'main.jpg', thumbnail: 'thumb.jpg', download: true, isSvg: true }]; const result = formatImages(images); expect(result[0]).toEqual({ mainImage: 'main.jpg', thumbnail: 'thumb.jpg', download: true, isSvg: true }); }); - it('thumbnail defaults to mainImage', () => { + test('thumbnail 默认等于 mainImage', () => { const images = [{ mainImage: 'only-main.jpg' }]; const result = formatImages(images); expect(result[0].thumbnail).toBe('only-main.jpg'); }); - it('large array of images', () => { + test('大数组处理(100 张图片)', () => { const images = Array.from({ length: 100 }, (_, i) => `image-${i}.jpg`); const result = formatImages(images); expect(result).toHaveLength(100); @@ -92,7 +90,7 @@ describe('formatImages', () => { }); // ─── downloadImage ─────────────────────────────────────────────────────── -describe('downloadImage', () => { +describe('downloadImage 图片下载', () => { let mockCreateObjectURL: ReturnType; let mockRevokeObjectURL: ReturnType; let mockCreateElement: typeof document.createElement; @@ -110,7 +108,7 @@ describe('downloadImage', () => { vi.restoreAllMocks(); }); - it('File input uses URL.createObjectURL', () => { + test('File 输入使用 URL.createObjectURL', () => { const mockClick = vi.fn(); const mockRemove = vi.fn(); const mockAnchor = { href: '', download: '', click: mockClick, remove: mockRemove }; @@ -128,7 +126,7 @@ describe('downloadImage', () => { expect(mockClick).toHaveBeenCalled(); }); - it('same-origin URL direct download', () => { + test('同源 URL 直接下载', () => { const mockClick = vi.fn(); const mockRemove = vi.fn(); const mockAnchor = { href: '', download: '', click: mockClick, remove: mockRemove }; @@ -146,7 +144,7 @@ describe('downloadImage', () => { expect(mockClick).toHaveBeenCalled(); }); - it('extracts filename from URL with query parameters', () => { + test('从带查询参数的 URL 提取文件名', () => { const mockClick = vi.fn(); const mockRemove = vi.fn(); const mockAnchor = { href: '', download: '', click: mockClick, remove: mockRemove }; @@ -161,7 +159,7 @@ describe('downloadImage', () => { expect(mockAnchor.download).toBe('image.png'); }); - it('extracts filename from URL with hash', () => { + test('从带 hash 的 URL 提取文件名', () => { const mockClick = vi.fn(); const mockRemove = vi.fn(); const mockAnchor = { href: '', download: '', click: mockClick, remove: mockRemove }; @@ -176,8 +174,7 @@ describe('downloadImage', () => { expect(mockAnchor.download).toBe('image.jpg'); }); - it('cross-origin URL triggers canvasDownload (Image load path)', () => { - // 跨域 URL 进入 canvasDownload 分支,创建 Image 元素 + test('跨域 URL 触发 canvasDownload 路径', () => { const crossOriginUrl = 'https://cross-origin.example.com/photo.jpg'; const setAttribute = vi.fn(); @@ -195,14 +192,12 @@ describe('downloadImage', () => { downloadImage(crossOriginUrl); - // 应该新建 Image 并通过 setAttribute 设置 crossOrigin expect(setAttribute).toHaveBeenCalledWith('crossOrigin', 'anonymous'); expect(mockImage.src).toBe(crossOriginUrl); - // click 不会被触发(图片还未 onload) expect(mockClick).not.toHaveBeenCalled(); }); - it('cross-origin image onload triggers canvas download', () => { + test('跨域图片 onload 后触发 canvas 下载', () => { const crossOriginUrl = 'https://cross-origin.example.com/photo.png'; const mockCanvas = { @@ -242,7 +237,6 @@ describe('downloadImage', () => { downloadImage(crossOriginUrl); - // 触发 onload expect(onloadFn).toBeTruthy(); act(() => { onloadFn?.(); @@ -252,7 +246,7 @@ describe('downloadImage', () => { expect(mockCanvas.toBlob).toHaveBeenCalled(); }); - it('random name when URL has no filename', () => { + test('URL 无文件名时使用随机名称', () => { const mockClick = vi.fn(); const mockRemove = vi.fn(); const mockAnchor = { href: '', download: '', click: mockClick, remove: mockRemove }; @@ -267,16 +261,93 @@ describe('downloadImage', () => { expect(mockAnchor.download).toBeTruthy(); expect(mockClick).toHaveBeenCalled(); }); + + test('URL 含多个 / 和复杂路径时正确提取文件名', () => { + const mockClick = vi.fn(); + const mockRemove = vi.fn(); + const mockAnchor = { href: '', download: '', click: mockClick, remove: mockRemove }; + + vi.spyOn(document, 'createElement').mockImplementation((tag) => { + if (tag === 'a') return mockAnchor as unknown as HTMLAnchorElement; + return mockCreateElement(tag); + }); + + const deepUrl = `${window.location.origin}/a/b/c/deep-image.png`; + downloadImage(deepUrl); + expect(mockAnchor.download).toBe('deep-image.png'); + }); + + test('File 对象下载后调用 revokeObjectURL', () => { + const mockClick = vi.fn(); + const mockRemove = vi.fn(); + const mockAnchor = { href: '', download: '', click: mockClick, remove: mockRemove }; + + vi.spyOn(document, 'createElement').mockImplementation((tag) => { + if (tag === 'a') return mockAnchor as unknown as HTMLAnchorElement; + return mockCreateElement(tag); + }); + + const file = new File(['test'], 'photo.jpg', { type: 'image/jpeg' }); + downloadImage(file); + + expect(mockCreateObjectURL).toHaveBeenCalledWith(file); + expect(mockClick).toHaveBeenCalled(); + // revokeObjectURL is called after click, need to verify + expect(mockRevokeObjectURL).toHaveBeenCalled(); + }); + + test('跨域 URL jpg 扩展名使用 image/jpeg mime', () => { + const crossOriginUrl = 'https://other.com/photo.jpg'; + + let onloadFn: (() => void) | null = null; + const mockImage: Partial & { width: number; height: number } = { + setAttribute: vi.fn(), + width: 100, + height: 100, + }; + Object.defineProperty(mockImage, 'onload', { + set(fn) { + onloadFn = fn; + }, + }); + const ImageSpy = vi.fn().mockImplementation(() => mockImage); + (global as any).Image = ImageSpy; + + const mockCanvas = { + width: 0, + height: 0, + getContext: vi.fn().mockReturnValue({ drawImage: vi.fn() }), + toBlob: vi.fn(), + }; + + const mockBlobClick = vi.fn(); + const mockBlobAnchor = { href: '', download: '', click: mockBlobClick, remove: vi.fn() }; + vi.spyOn(document, 'createElement').mockImplementation((tag) => { + if (tag === 'canvas') return mockCanvas as unknown as HTMLCanvasElement; + if (tag === 'a') return mockBlobAnchor as unknown as HTMLAnchorElement; + return mockCreateElement(tag); + }); + + downloadImage(crossOriginUrl); + + expect(onloadFn).toBeTruthy(); + act(() => { + onloadFn?.(); + }); + + // toBlob should be called with jpeg mime for .jpg extension + expect(mockCanvas.toBlob).toHaveBeenCalledWith(expect.any(Function), 'image/jpeg'); + }); }); // ─── 快照测试 ──────────────────────────────────────────────────────────── -describe('formatImages snapshots', () => { - it('string images snapshot', () => { +describe('formatImages 快照', () => { + test('字符串数组快照', () => { const result = formatImages(['img1.jpg', 'img2.png', 'img3.gif']); expect(result).toMatchSnapshot('formatImages-string-array'); }); - it('ImageInfo objects snapshot', () => { + test('ImageInfo 对象数组快照', () => { const result = formatImages([ { mainImage: 'main1.jpg', thumbnail: 'thumb1.jpg', download: true }, { mainImage: 'main2.jpg', download: false, isSvg: true }, @@ -284,12 +355,12 @@ describe('formatImages snapshots', () => { expect(result).toMatchSnapshot('formatImages-image-info-array'); }); - it('mixed array snapshot', () => { + test('混合数组快照', () => { const result = formatImages(['simple.jpg', { mainImage: 'complex.jpg', thumbnail: 'complex-thumb.jpg' }]); expect(result).toMatchSnapshot('formatImages-mixed-array'); }); - it('empty array snapshot', () => { + test('空数组快照', () => { expect(formatImages([])).toMatchSnapshot('formatImages-empty'); }); }); diff --git a/packages/components/image-viewer/hooks/useIndex.ts b/packages/components/image-viewer/hooks/useIndex.ts index 40ac0112bc..e584b21293 100644 --- a/packages/components/image-viewer/hooks/useIndex.ts +++ b/packages/components/image-viewer/hooks/useIndex.ts @@ -14,9 +14,10 @@ const useIndex = (resProps, images) => { }, [setIndex, index, images.length]); const prev = useCallback(() => { - const newIndex = index - 1 > 0 ? index - 1 : 0; + const newIndex = index - 1; + if (newIndex < 0) return index; setIndex(newIndex, { trigger: 'prev' }); - }, [index, setIndex]); + }, [setIndex, index]); return { index, From 28d8a8c3a55c3fac6786a8cd75ef87218c866cbc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=98=BF=E8=8F=9C=20Cai?= Date: Wed, 20 May 2026 10:12:38 +0800 Subject: [PATCH 25/27] =?UTF-8?q?refactor(image-viewer):=20=E4=BC=98?= =?UTF-8?q?=E5=8C=96hooks=E4=B8=8E=E5=9B=BE=E6=A0=87=E9=80=BB=E8=BE=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../image-viewer/ImageViewerModal.tsx | 190 ++++++++---------- .../image-viewer/hooks/useIconMap.ts | 3 + .../image-viewer/hooks/usePosition.ts | 9 + 3 files changed, 99 insertions(+), 103 deletions(-) diff --git a/packages/components/image-viewer/ImageViewerModal.tsx b/packages/components/image-viewer/ImageViewerModal.tsx index e706051bee..e5352cfd9e 100644 --- a/packages/components/image-viewer/ImageViewerModal.tsx +++ b/packages/components/image-viewer/ImageViewerModal.tsx @@ -1,12 +1,7 @@ import React, { useCallback, useEffect, useImperativeHandle, useMemo, useRef, useState } from 'react'; import classNames from 'classnames'; import { isArray, isFunction } from 'lodash-es'; -import { - ImageErrorIcon as TdImageErrorIcon, - ImageIcon as TdImageIcon, - MirrorIcon as TdMirrorIcon, - RotationIcon as TdRotationIcon, -} from 'tdesign-icons-react'; +import { ImageErrorIcon as TdImageErrorIcon } from 'tdesign-icons-react'; import { isImageExceedsViewport } from '@tdesign/common-js/image-viewer/transform'; import { downloadImage } from '@tdesign/common-js/image-viewer/utils'; import { largeNumberToFixed } from '@tdesign/common-js/input-number/large-number'; @@ -96,11 +91,8 @@ export const ImageModalItem = React.forwardRef { - const response = await fetch(url); - if (!response.ok) { - setError(true); - throw new Error(`Failed to fetch SVG: ${response.statusText}`); - } + const createSvgShadow = useCallback( + async (url: string) => { + const response = await fetch(url); + if (!response.ok) { + setError(true); + throw new Error(`Failed to fetch SVG: ${response.statusText}`); + } - const svgText = await response.text(); - - const element = svgRef.current; - element.innerHTML = ''; - element.classList?.add(`${classPrefix}-image-viewer__modal-image-svg`); - const shadowRoot = element.attachShadow({ mode: 'closed' }); - - const container = document.createElement('div'); - container.style.background = 'transparent'; - container.innerHTML = svgText; - shadowRoot.appendChild(container); - - const svgElement = container.querySelector('svg'); - if (svgElement) { - const svgViewBox = svgElement.getAttribute('viewBox'); - if (svgViewBox) { - const viewBoxValues = svgViewBox - .split(/[\s,]/) - .filter((v) => v) - .map(parseFloat); - - // svg viewbox x(0) and y(1) offset, width(2) and height(3),eg - const svgViewBoxWidth = viewBoxValues[2]; - const svgViewBoxHeight = viewBoxValues[3]; - container.style.width = `${svgViewBoxWidth}px`; - container.style.height = `${svgViewBoxHeight}px`; - } else { - const bbox = svgElement.getBBox(); - const calculatedViewBox = `${bbox.x} ${bbox.y} ${bbox.width} ${bbox.height}`; - svgElement.setAttribute('viewBox', calculatedViewBox); - - container.style.width = `${bbox.width}px`; - container.style.height = `${bbox.height}px`; + const svgText = await response.text(); + + const element = svgRef.current; + if (!element) return; + + element.innerHTML = ''; + element.classList?.add(`${classPrefix}-image-viewer__modal-image-svg`); + const shadowRoot = element.attachShadow({ mode: 'closed' }); + + const container = document.createElement('div'); + container.style.background = 'transparent'; + container.innerHTML = svgText; + shadowRoot.appendChild(container); + + const svgElement = container.querySelector('svg'); + if (svgElement) { + const svgViewBox = svgElement.getAttribute('viewBox'); + if (svgViewBox) { + const viewBoxValues = svgViewBox + .split(/[\s,]/) + .filter((v) => v) + .map(parseFloat); + + // svg viewbox x(0) and y(1) offset, width(2) and height(3) + container.style.width = `${viewBoxValues[2]}px`; + container.style.height = `${viewBoxValues[3]}px`; + } else { + const bbox = svgElement.getBBox(); + const calculatedViewBox = `${bbox.x} ${bbox.y} ${bbox.width} ${bbox.height}`; + svgElement.setAttribute('viewBox', calculatedViewBox); + + container.style.width = `${bbox.width}px`; + container.style.height = `${bbox.height}px`; + } } - } - setLoaded(true); - }; + setLoaded(true); + }, + [classPrefix], + ); useEffect(() => { setError(false); @@ -212,8 +207,7 @@ export const ImageModalItem = React.forwardRef @@ -321,11 +315,6 @@ export const ImageViewerUtils: React.FC = ({ onDownload, }) => { const { classPrefix } = useConfig(); - const { MirrorIcon, RotationIcon, ImageIcon } = useGlobalIcon({ - MirrorIcon: TdMirrorIcon, - RotationIcon: TdRotationIcon, - ImageIcon: TdImageIcon, - }); return (
                                                                                                                      @@ -336,9 +325,7 @@ export const ImageViewerUtils: React.FC = ({ showShadow={false} zIndex={zIndex} > -
                                                                                                                      - -
                                                                                                                      + = ({ showShadow={false} zIndex={zIndex} > -
                                                                                                                      onRotate()}> - -
                                                                                                                      +
                                                                                                                      = ({ showShadow={false} zIndex={zIndex} > -
                                                                                                                      - -
                                                                                                                      + {currentImage.download && ( = ({ name="download" onClick={() => { if (isFunction(onDownload)) { - // 自定义图片预览下载 onDownload(currentImage.mainImage); return; } @@ -516,7 +498,7 @@ export const ImageModal: React.FC = (props) => { const containerRef = useRef(null); const imageItemRef = useRef(null); - // handleWheel 先用 ref 占位,useScale 之后再赋值,避免循环依赖 + // handleWheel 用 ref 存储最新版本,传给 useScale 注册 passive:false 的 wheel 监听 const handleWheelRef = useRef<(e: WheelEvent) => void>(null); const stableHandleWheel = useCallback((e: WheelEvent) => handleWheelRef.current?.(e), []); @@ -524,34 +506,32 @@ export const ImageModal: React.FC = (props) => { // ⚠️ 不能用 React 的 onWheel —— React 17+ 将 wheel 注册为 passive: true, // 导致 e.preventDefault() 无效,无法阻止页面滚动。 - handleWheelRef.current = useCallback( - (e: WheelEvent) => { - e.preventDefault(); - - const isZoomOut = e.deltaY > 0; - const container = containerRef.current; - const modalBox = imageItemRef.current?.modalBoxRef?.current; - - if (isZoomOut && container && modalBox && isImageExceedsViewport(container, modalBox)) { - const currentPosition = imageItemRef.current?.positionRef?.current ?? [0, 0]; - const result = onZoomOut({ - mouseOffsetX: 0, - mouseOffsetY: 0, - currentTranslate: { - translateX: currentPosition[0], - translateY: currentPosition[1], - }, - }); - if (result?.newTranslate) { - imageItemRef.current?.enableTransition?.(); - imageItemRef.current?.setPosition?.([result.newTranslate.translateX, result.newTranslate.translateY]); - } - } else { - isZoomOut ? onZoomOut() : onZoomIn(); + // 直接赋值给 ref(无需额外 useCallback,ref 赋值本身不触发重渲染) + handleWheelRef.current = (e: WheelEvent) => { + e.preventDefault(); + + const isZoomOut = e.deltaY > 0; + const container = containerRef.current; + const modalBox = imageItemRef.current?.modalBoxRef?.current; + + if (isZoomOut && container && modalBox && isImageExceedsViewport(container, modalBox)) { + const currentPosition = imageItemRef.current?.positionRef?.current ?? [0, 0]; + const result = onZoomOut({ + mouseOffsetX: 0, + mouseOffsetY: 0, + currentTranslate: { + translateX: currentPosition[0], + translateY: currentPosition[1], + }, + }); + if (result?.newTranslate) { + imageItemRef.current?.enableTransition?.(); + imageItemRef.current?.setPosition?.([result.newTranslate.translateX, result.newTranslate.translateY]); } - }, - [onZoomIn, onZoomOut], - ); + } else { + isZoomOut ? onZoomOut() : onZoomIn(); + } + }; // imageScale 动态变化时重置缩放 const isFirstRender = useRef(true); @@ -581,7 +561,9 @@ export const ImageModal: React.FC = (props) => { ArrowLeft: () => handlers.prev(), ArrowUp: () => handlers.onZoomIn(), ArrowDown: () => handlers.onZoomOut(), - Escape: () => handlers.closeOnEscKeydown && handlers.onClose?.({ trigger: 'esc', e: event as any }), + Escape: () => + handlers.closeOnEscKeydown && + handlers.onClose?.({ trigger: 'esc', e: event as unknown as React.KeyboardEvent }), }; keyActionMap[event.key]?.(); }, []); @@ -641,8 +623,8 @@ export const ImageModal: React.FC = (props) => { ); } - // boolean控制显示,tnode直接展示 - let closeNode: TNode = closeBtn; + // boolean 控制显示,tnode 直接展示 + let closeNode: TNode = null; if (closeBtn === true) { closeNode = ( = (props) => { onClick={(e: React.MouseEvent) => onClose && onClose({ trigger: 'close-btn', e })} /> ); - } else if (isFunction(closeBtn)) closeNode = closeBtn({ onClose, onOpen }); + } else if (closeBtn !== false) { + closeNode = isFunction(closeBtn) ? closeBtn({ onClose, onOpen }) : closeBtn; + } return (
                                                                                                                      { ChevronRightIcon: TdChevronRightIcon, CloseIcon: TdCloseIcon, DownloadIcon: TdDownloadIcon, + ImageIcon: TdImageIcon, MirrorIcon: TdMirrorIcon, RotationIcon: TdRotationIcon, ZoomInIcon: TdZoomInIcon, @@ -31,6 +33,7 @@ const useIconMap = () => { mirror: Icons.MirrorIcon, 'zoom-out': Icons.ZoomOutIcon, download: Icons.DownloadIcon, + image: Icons.ImageIcon, 'chevron-left': Icons.ChevronLeftIcon, 'chevron-right': Icons.ChevronRightIcon, 'chevron-down': Icons.ChevronDownIcon, diff --git a/packages/components/image-viewer/hooks/usePosition.ts b/packages/components/image-viewer/hooks/usePosition.ts index 88bd8ac5ce..f09e0a21c0 100644 --- a/packages/components/image-viewer/hooks/usePosition.ts +++ b/packages/components/image-viewer/hooks/usePosition.ts @@ -15,6 +15,13 @@ const usePosition = (imgRef: React.RefObject, options?: Position const [isDragging, setIsDragging] = useState(false); const lastScreenPositionRef = useRef<{ x: number; y: number } | null>(null); + // 始终保持最新值的 ref,供外部免订阅地读取 + const positionRef = useRef(position); + positionRef.current = position; + + const isDraggingRef = useRef(isDragging); + isDraggingRef.current = isDragging; + useMouseEvent(imgRef, { onDown: (e) => { const { screenX, screenY } = e; @@ -43,9 +50,11 @@ const usePosition = (imgRef: React.RefObject, options?: Position return { position, + positionRef, setPosition, resetPosition, isDragging, + isDraggingRef, }; }; From 01059052e225857d4036024a0d1924f5a27e2145 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=98=BF=E8=8F=9C=20Cai?= Date: Wed, 20 May 2026 10:39:54 +0800 Subject: [PATCH 26/27] =?UTF-8?q?chore:=20=E6=B7=BB=E5=8A=A0=20viewerScale?= =?UTF-8?q?=20=E9=80=8F=E4=BC=A0=E5=BE=85=E5=8A=9E=E6=B3=A8=E9=87=8A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/components/image-viewer/ImageViewerMini.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packages/components/image-viewer/ImageViewerMini.tsx b/packages/components/image-viewer/ImageViewerMini.tsx index 6bc55f991d..bf79d4663e 100644 --- a/packages/components/image-viewer/ImageViewerMini.tsx +++ b/packages/components/image-viewer/ImageViewerMini.tsx @@ -46,6 +46,8 @@ export const ImageModalMiniContent: React.FC = (props) => { const { classPrefix } = useConfig(); return ( + // TODO: viewerScale(minWidth/minHeight)应作为 style 应用到此容器,参考 tdesign-next-vue 实现 + // 需将 viewerScale 从 TdImageViewerProps → ImageViewer → ImageModal → ImageModalMini → ImageModalMiniContent 完整透传
                                                                                                                      Date: Wed, 20 May 2026 10:56:21 +0800 Subject: [PATCH 27/27] =?UTF-8?q?chore(image-viewer):=20=E8=BF=98=E5=8E=9F?= =?UTF-8?q?=E4=BB=A3=E7=A0=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../image-viewer/ImageViewerModal.tsx | 24 +++++++++++++++---- .../image-viewer/hooks/useIconMap.ts | 3 --- 2 files changed, 20 insertions(+), 7 deletions(-) diff --git a/packages/components/image-viewer/ImageViewerModal.tsx b/packages/components/image-viewer/ImageViewerModal.tsx index e5352cfd9e..7efb161cc7 100644 --- a/packages/components/image-viewer/ImageViewerModal.tsx +++ b/packages/components/image-viewer/ImageViewerModal.tsx @@ -1,7 +1,12 @@ import React, { useCallback, useEffect, useImperativeHandle, useMemo, useRef, useState } from 'react'; import classNames from 'classnames'; import { isArray, isFunction } from 'lodash-es'; -import { ImageErrorIcon as TdImageErrorIcon } from 'tdesign-icons-react'; +import { + ImageErrorIcon as TdImageErrorIcon, + ImageIcon as TdImageIcon, + MirrorIcon as TdMirrorIcon, + RotationIcon as TdRotationIcon, +} from 'tdesign-icons-react'; import { isImageExceedsViewport } from '@tdesign/common-js/image-viewer/transform'; import { downloadImage } from '@tdesign/common-js/image-viewer/utils'; import { largeNumberToFixed } from '@tdesign/common-js/input-number/large-number'; @@ -315,6 +320,11 @@ export const ImageViewerUtils: React.FC = ({ onDownload, }) => { const { classPrefix } = useConfig(); + const { MirrorIcon, RotationIcon, ImageIcon } = useGlobalIcon({ + MirrorIcon: TdMirrorIcon, + RotationIcon: TdRotationIcon, + ImageIcon: TdImageIcon, + }); return (
                                                                                                                      @@ -325,7 +335,9 @@ export const ImageViewerUtils: React.FC = ({ showShadow={false} zIndex={zIndex} > - +
                                                                                                                      + +
                                                                                                                      = ({ showShadow={false} zIndex={zIndex} > - +
                                                                                                                      + +
                                                                                                                      = ({ showShadow={false} zIndex={zIndex} > - +
                                                                                                                      + +
                                                                                                                      {currentImage.download && ( { ChevronRightIcon: TdChevronRightIcon, CloseIcon: TdCloseIcon, DownloadIcon: TdDownloadIcon, - ImageIcon: TdImageIcon, MirrorIcon: TdMirrorIcon, RotationIcon: TdRotationIcon, ZoomInIcon: TdZoomInIcon, @@ -33,7 +31,6 @@ const useIconMap = () => { mirror: Icons.MirrorIcon, 'zoom-out': Icons.ZoomOutIcon, download: Icons.DownloadIcon, - image: Icons.ImageIcon, 'chevron-left': Icons.ChevronLeftIcon, 'chevron-right': Icons.ChevronRightIcon, 'chevron-down': Icons.ChevronDownIcon,