From 86cd5a8590034ceac78adf599b0c80e22cc86d7c Mon Sep 17 00:00:00 2001 From: zhangbing4 Date: Thu, 16 May 2024 11:09:53 +0800 Subject: [PATCH 1/5] feat: add button color props close#999 --- components/button/demos/basic.md | 3 +++ components/button/demos/ghost.md | 1 + components/button/index.md | 1 + components/button/index.ts | 2 ++ components/button/index.vdt | 17 +++++++++++------ components/button/styles.ts | 32 +++++++++++++++++++++++++++++++- 6 files changed, 49 insertions(+), 7 deletions(-) diff --git a/components/button/demos/basic.md b/components/button/demos/basic.md index b17406198..3a9643208 100644 --- a/components/button/demos/basic.md +++ b/components/button/demos/basic.md @@ -18,6 +18,9 @@ import {Button} from 'kpc'; + + + ``` diff --git a/components/button/demos/ghost.md b/components/button/demos/ghost.md index 34ab85e32..9da589ef5 100644 --- a/components/button/demos/ghost.md +++ b/components/button/demos/ghost.md @@ -14,6 +14,7 @@ import {Button, Icon} from 'kpc'; + diff --git a/components/button/index.md b/components/button/index.md index f9c8a8663..f1e309880 100644 --- a/components/button/index.md +++ b/components/button/index.md @@ -23,6 +23,7 @@ sidebar: doc | value | 对于`radio/checkbox`类型的按钮组,我们可以给每个按钮指定一个选中时的值 | `*` | `undefined` | | name | 对于`radio/checkbox`类型的按钮组,我们给`input`指定`name`属性 | `string` | `undefined` | | ghost | 展示透明背景的按钮 | `boolean` | `false` | +| color | 自定义字体、边框、波纹动效颜色 | `string` | `undefined` | ## ButtonGroup diff --git a/components/button/index.ts b/components/button/index.ts index 0537cc298..b3a006e3c 100644 --- a/components/button/index.ts +++ b/components/button/index.ts @@ -26,6 +26,7 @@ export interface ButtonProps extends ButtonHTMLAttributes { size?: Sizes, icon?: boolean circle?: boolean + color?: string loading?: boolean disabled?: boolean fluid?: boolean @@ -47,6 +48,7 @@ const typeDefs: Required> size: ['large', 'default', 'small', 'mini'], icon: Boolean, circle: Boolean, + color: String, loading: Boolean, disabled: Boolean, fluid: Boolean, diff --git a/components/button/index.vdt b/components/button/index.vdt index ac468d349..d9ed9787e 100644 --- a/components/button/index.vdt +++ b/components/button/index.vdt @@ -1,4 +1,4 @@ -import {getRestProps} from '../utils'; +import {addStyle, getRestProps} from '../utils'; import {Icon} from '../icon'; import {makeButtonStyles} from './styles'; import {DynamicButton} from './dynamicButton'; @@ -8,7 +8,7 @@ import {button as theme} from './styles'; let { type, className, size, icon, circle, ref, key, tabindex, tagName, htmlType, fluid, children, loading, disabled, - name, ghost, + name, ghost, color, style } = this.get(); const { cls, k } = this.config; @@ -42,7 +42,7 @@ if (!icon && Array.isArray(children)) { const classNameObj = { [cls('btn')]: true, [cls(size)]: size !== 'default', - [cls(type)]: true, + [cls(type)]: !color, [cls(`btn-icon`)]: icon, [className]: className, [cls('circle')]: circle, @@ -51,7 +51,8 @@ const classNameObj = { [cls('active')]: checked, [cls('disabled')]: disabled || loading, [cls('ghost')]: ghost, - [makeButtonStyles(k, iconSide)]: true, + [cls('custom')]: color, + [makeButtonStyles(k, iconSide, color)]: true, }; const loadingIcon = ( @@ -66,8 +67,11 @@ const buttonGroup = this.buttonGroup; const checkType = buttonGroup ? buttonGroup.get('checkType') : 'none'; const isCheckType = checkType !== 'none'; const typeStyles = theme[type]; -const waveColor = typeStyles && typeStyles.borderColor || theme.primary.borderColor; - +const waveColor = typeStyles && typeStyles.borderColor || color || theme.primary.borderColor; +const _style = { + // color: color, + // borderColor: color, +}; { export {button}; -export const makeButtonStyles = cache(function makeButtonStyles(k: string, iconSide?: string) { +export const makeButtonStyles = cache(function makeButtonStyles(k: string, iconSide?: string, color?: string) { const {secondary, link} = button; return cx( @@ -247,6 +247,22 @@ export const makeButtonStyles = cache(function makeButtonStyles(k: string, iconS } } + + + ${color && css` + &.${k}-custom { + color: ${color}; + border-color: ${color}; + &:hover, + &:focus { + background: ${palette(color, -4)}; + } + &:active { + background: ${palette(color, -3)}; + } + } + `} + &.${k}-link { color: ${link.color}; &:hover { @@ -395,6 +411,20 @@ export const makeButtonStyles = cache(function makeButtonStyles(k: string, iconS } ` })} + ${color && css` + &.${k}-custom { + color: ${color}; + border-color: ${color}; + &:hover { + color: ${palette(color, -1)}; + border-color: ${palette(color, -1)}; + } + &:active { + color: ${palette(color, 1)}; + border-color: ${palette(color, 1)}; + } + } + `} // disabled &.${k}-disabled { &, &:hover { From 8a245434cac84d232b05f33ec4705f5845bb5244 Mon Sep 17 00:00:00 2001 From: zhangbing4 Date: Fri, 17 May 2024 11:15:45 +0800 Subject: [PATCH 2/5] feat: add TableColumns hidden props hidden cell close#996 --- components/table/cell.vdt | 7 ++++++- components/table/column.ts | 2 ++ components/table/column.vdt | 3 ++- components/table/demos/hidden.md | 35 ++++++++++++++++++++++++++++++++ components/table/index.md | 1 + components/table/styles.ts | 8 ++++---- components/table/table.vdt | 6 ++++-- components/table/useColumns.ts | 2 +- 8 files changed, 55 insertions(+), 9 deletions(-) create mode 100644 components/table/demos/hidden.md diff --git a/components/table/cell.vdt b/components/table/cell.vdt index f72d9af95..28cc13f35 100644 --- a/components/table/cell.vdt +++ b/components/table/cell.vdt @@ -26,7 +26,12 @@ if (columnIndex === 0 && indent) { style.paddingLeft = `${indent}px`; } - string minWidth?: number + hidden?: boolean // passed by Table // offset: number @@ -54,6 +55,7 @@ const typeDefs: Required> = { exportTitle: String, exportCell: Function, minWidth: Number, + hidden: Boolean, // offset: null, cols: null, diff --git a/components/table/column.vdt b/components/table/column.vdt index 19c83a7ae..9970b4bd1 100644 --- a/components/table/column.vdt +++ b/components/table/column.vdt @@ -16,7 +16,7 @@ import {Input} from '../input'; import {_$} from '../../i18n'; import {ignoreSortable} from './useSortable'; -const {title, fixed, group, multiple, key, sortable, cols, rows} = this.get(); +const {title, fixed, group, multiple, key, sortable, cols, rows, hidden} = this.get(); const { onSelect, isChecked, keywords, filteredGroup, onShow, reset, confirm, dropdownRef, @@ -37,6 +37,7 @@ const { k } = this.config; const {className, style} = getClassAndStyleForFixed(this.get(), offsetMap[key], k, checkType); const classNameObj = { [`${k}-column-sortable`]: sortable, + [`${k}-hidden`]: hidden, [className]: className, } diff --git a/components/table/demos/hidden.md b/components/table/demos/hidden.md new file mode 100644 index 000000000..9e26d8fc1 --- /dev/null +++ b/components/table/demos/hidden.md @@ -0,0 +1,35 @@ +--- +title: 隐藏列 +order: 31 +--- + +通过`TableColumn`的`hidden`属性配置隐藏列 + +```vdt +import {Table, TableColumn} from 'kpc'; + + + +
+``` + +```styl +.dis + display none +``` + +```ts +export default class extends Component { + static template = template; + static defaults() { + return { + data: [ + {a: 'Cell 1-1', b: 'Cell 1-2', c: 'cell 1-3'}, + {a: 'Cell 2-1', b: 'Cell 2-2', c: 'cell 2-3'} + ] + }; + } +} +``` diff --git a/components/table/index.md b/components/table/index.md index 734c6bae5..a6496a209 100644 --- a/components/table/index.md +++ b/components/table/index.md @@ -111,6 +111,7 @@ export interface PaginationProps { | exportCell | 自定义导出的单元格内容 | `(data: any, index: number) => string` | `undefined` | | minWidth | 指定当前列拖动时的最小宽度,优先级高于`Table`的`minColWidth` | `number` | `undefined` | | className | 给当前列添加className | `string` | `Record` | `undefined` | +| hidden | 是否隐藏当前列,仅为不可见,不影响`exportTable`导出表格 | `boolean` | `false` | ```ts import {VNode} from 'intact'; diff --git a/components/table/styles.ts b/components/table/styles.ts index 112071eca..36d9b6f51 100644 --- a/components/table/styles.ts +++ b/components/table/styles.ts @@ -313,10 +313,10 @@ export const makeStyles = cache(function makeStyles(k: string) { background: ${table.selectedBgColor}; } - // tree - // tr.${k}-hidden { - // display: none; - // } + // hidden cell + col.${k}-hidden, tr > .${k}-hidden { + display: none; + } .${k}-table-arrow { width: ${table.arrow.width} !important; margin-right: ${table.arrow.gap}; diff --git a/components/table/table.vdt b/components/table/table.vdt index a39ea61ba..db186ee7d 100644 --- a/components/table/table.vdt +++ b/components/table/table.vdt @@ -57,7 +57,10 @@ const colgroup = ( ); @@ -176,7 +179,6 @@ const tbody = ( ); } - rows.push(row); if ($blocks.expand) { const expanded = isExpanded(key); diff --git a/components/table/useColumns.ts b/components/table/useColumns.ts index dccd4a779..0869adc80 100644 --- a/components/table/useColumns.ts +++ b/components/table/useColumns.ts @@ -84,7 +84,7 @@ export function useColumns() { props.children = null; props.cols = 1; cols.push(props); - maxCols++; + if(!props.hidden) maxCols++; Object.defineProperty(props, 'rows', { get() { return maxRows - row; From 3888f889b0f13185bb1d32532d67756e43919a92 Mon Sep 17 00:00:00 2001 From: zhangbing4 Date: Tue, 21 May 2024 11:29:28 +0800 Subject: [PATCH 3/5] feat: add btnwidth close #949 --- components/button/demos/group.md | 7 +++++++ components/button/group.ts | 2 ++ components/button/index.vdt | 12 ++++++------ components/dialog/alert.vdt | 5 ++--- 4 files changed, 17 insertions(+), 9 deletions(-) diff --git a/components/button/demos/group.md b/components/button/demos/group.md index a84802ec1..09699d812 100644 --- a/components/button/demos/group.md +++ b/components/button/demos/group.md @@ -74,6 +74,13 @@ import {Button, ButtonGroup, Icon} from 'kpc'; +

支持自定义ButtonGroup下的Button宽度

+ + + + + + ``` diff --git a/components/button/group.ts b/components/button/group.ts index 23a672640..270041a0a 100644 --- a/components/button/group.ts +++ b/components/button/group.ts @@ -10,6 +10,7 @@ export interface ButtonGroupProps { checkType?: 'none' | 'radio' | 'checkbox' fluid?: boolean seperate?: boolean + btnWidth?: number | string } const typeDefs: Required> = { @@ -18,6 +19,7 @@ const typeDefs: Required> = { fluid: Boolean, checkType: ['none', 'radio', 'checkbox'], seperate: Boolean, + btnWidth: [Number, String], }; const defaults = (): Partial => ({ diff --git a/components/button/index.vdt b/components/button/index.vdt index d9ed9787e..64de1395f 100644 --- a/components/button/index.vdt +++ b/components/button/index.vdt @@ -64,14 +64,14 @@ const loadingIcon = ( ); const buttonGroup = this.buttonGroup; -const checkType = buttonGroup ? buttonGroup.get('checkType') : 'none'; +const checkType = buttonGroup?.get('checkType') ?? 'none'; +const btnWidth = buttonGroup?.get('btnWidth'); +const _style = { + width: typeof btnWidth === 'number' ? `${btnWidth}px` : btnWidth, +} const isCheckType = checkType !== 'none'; const typeStyles = theme[type]; const waveColor = typeStyles && typeStyles.borderColor || color || theme.primary.borderColor; -const _style = { - // color: color, - // borderColor: color, -}; {icon} From 84d00294f067116c83ed9371a328f5e9d82491c6 Mon Sep 17 00:00:00 2001 From: zhangbing4 Date: Tue, 21 May 2024 22:07:16 +0800 Subject: [PATCH 4/5] =?UTF-8?q?fix:=20Switch=E5=A2=9E=E5=8A=A0beforeChange?= =?UTF-8?q?=20=E9=98=BB=E6=96=AD=E5=88=87=E6=8D=A2=20=20close=20#1000?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- components/button/demos/basic.md | 4 +- components/switch/demos/beforeChange.md | 49 +++ components/switch/index.md | 2 + components/switch/index.spec.ts | 11 + components/switch/index.ts | 34 +- components/switch/index.vdt | 10 +- components/switch/styles.ts | 16 +- components/table/demos/hidden.md | 25 +- components/table/styles.ts | 5 +- .../__tests__/__snapshots__/Vue Next Demos.md | 320 ++++++++------- .../__snapshots__/Vue Legacy Demos.md | 376 +++++++++--------- test/__snapshots__/Carousel.md | 24 +- test/__snapshots__/Config.md | 6 +- test/__snapshots__/Datepicker.md | 2 +- test/__snapshots__/Demos.md | 360 +++++++++-------- test/__snapshots__/Diagram.md | 8 +- test/__snapshots__/Dialog.md | 46 +-- test/__snapshots__/Drawer.md | 10 +- test/__snapshots__/Form.md | 14 +- test/__snapshots__/Input.md | 10 +- test/__snapshots__/Menu.md | 18 +- test/__snapshots__/Pagination.md | 16 +- test/__snapshots__/Popover.md | 4 +- test/__snapshots__/Progress.md | 16 +- test/__snapshots__/Slider.md | 38 +- test/__snapshots__/Spinner.md | 22 +- test/__snapshots__/Steps.md | 4 +- test/__snapshots__/Switch.md | 22 +- test/__snapshots__/Table.md | 56 +-- test/__snapshots__/Tabs.md | 14 +- test/__snapshots__/Timepicker.md | 30 +- test/__snapshots__/Transfer.md | 18 +- test/__snapshots__/Tree.md | 20 +- test/__snapshots__/Upload.md | 18 +- 34 files changed, 890 insertions(+), 738 deletions(-) create mode 100644 components/switch/demos/beforeChange.md diff --git a/components/button/demos/basic.md b/components/button/demos/basic.md index 3a9643208..234e4bcfb 100644 --- a/components/button/demos/basic.md +++ b/components/button/demos/basic.md @@ -3,7 +3,7 @@ title: 按钮类型 order: 0 --- -有如下几种类型:默认按钮,主按钮,次按钮,警告按钮,危险按钮,成功按钮,文字按钮,超链接按钮,扁平按钮 +有如下几种类型:默认按钮,主按钮,次按钮,警告按钮,危险按钮,成功按钮,文字按钮,超链接按钮,扁平按钮, 自定义color按钮 ```vdt import {Button} from 'kpc'; @@ -26,5 +26,5 @@ import {Button} from 'kpc'; ```styl .k-btn - margin-right 20px + margin 0 20px 20px 0 ``` diff --git a/components/switch/demos/beforeChange.md b/components/switch/demos/beforeChange.md new file mode 100644 index 000000000..f876c8f62 --- /dev/null +++ b/components/switch/demos/beforeChange.md @@ -0,0 +1,49 @@ +--- +title: 定义switch切换前的拦截函数 +order: 8 +--- + +给`Switch`添加`beforeChange`函数,来定义开关切换之前的逻辑,如果该函数返回`true`则成功切换,否则忽略本次切换 + +> 支持异步函数 + +```vdt +import {Switch} from 'kpc'; + +
+ + +
+``` + +```styl +.k-switch + margin-right 20px +``` + +```ts +export default class extends Component { + static template = template; + static defaults() { + return { + value1: false, + value2: false, + } + } + + beforeChange() { + return new Promise(resolve => { + setTimeout(() => { + resolve(true); + }, 1000); + }); + } + beforeChangeFalse() { + return new Promise(resolve => { + setTimeout(() => { + resolve(false); + }, 1000); + }); + } +} +``` diff --git a/components/switch/index.md b/components/switch/index.md index b0f0936f1..8ed670040 100644 --- a/components/switch/index.md +++ b/components/switch/index.md @@ -22,6 +22,8 @@ sidebar: doc | height | 开关的高度 | `number` | `string` | `undefined` | | size | 尺寸 | `"large"` | `"default"` | `"small"` | `"mini"` | `"default"` | | disabled | 控制禁用 | `boolean` | `false` | +| loading | 开关loading属性 | `boolean` | `false` | +| beforeChange | 切换`Switch`之前的拦截函数,如果该函数返回`false`则阻止本次切换,支持异步函数 | () => boolean | Promise<boolean> | `undefined` | # 扩展点 diff --git a/components/switch/index.spec.ts b/components/switch/index.spec.ts index 5878cd09c..adc7d8957 100644 --- a/components/switch/index.spec.ts +++ b/components/switch/index.spec.ts @@ -2,6 +2,7 @@ import BasicDemo from '~/components/switch/demos/basic'; import DisabledDemo from '~/components/switch/demos/disabled'; import ValueDemo from '~/components/switch/demos/value'; import WidthHeightDemo from '~/components/switch/demos/widthHeight'; +import BeforeChangeDemo from '~/components/switch/demos/beforeChange'; import {mount, unmount, dispatchEvent, wait} from '../../test/utils'; describe('Switch', () => { @@ -118,4 +119,14 @@ describe('Switch', () => { await wait(); expect(element.outerHTML).to.matchSnapshot(); }); + + it('beforeChange', async function() { + const [instance, element] = mount(BeforeChangeDemo); + const [el1, el2] = element.querySelectorAll('.k-switch'); + el1.click(); + el2.click(); + await wait(1000); + expect(instance.get('value1')).to.be.true; + expect(instance.get('value2')).to.be.false; + }); }); diff --git a/components/switch/index.ts b/components/switch/index.ts index 06c508b9e..17ad838bd 100644 --- a/components/switch/index.ts +++ b/components/switch/index.ts @@ -17,6 +17,8 @@ export interface SwitchProps { height?: number | string size?: Sizes disabled?: boolean + loading?: boolean + beforeChange?: () => boolean | Promise; } export interface SwitchEvents { @@ -40,6 +42,8 @@ const typeDefs: Required> = { height: [Number, String], size: sizes, disabled: Boolean, + loading: Boolean, + beforeChange: Function, }; const defaults = (): Partial => ({ @@ -47,6 +51,7 @@ const defaults = (): Partial => ({ trueValue: true, falseValue: false, size: 'default', + loading: false, }); const events: Events = { @@ -90,13 +95,30 @@ export class Switch extends Component + />
{off}
@@ -83,6 +88,7 @@ if (barWidth.value) { {on}
+
{ - const {width, height, padding} = kswitch[size]; + const {width, height, padding, iconSize} = kswitch[size]; return css` &.${k}-${size}, &.${k}-${size} .${k}-switch-on, @@ -167,6 +178,9 @@ export const makeStyles = cache(function makeStyles(k: string) { .${k}-switch-off { padding: 0 calc(${height} / 3) 0 ${height}; } + .${k}-switch-icon { + font-size: ${iconSize}; + } } ` })} diff --git a/components/table/demos/hidden.md b/components/table/demos/hidden.md index 9e26d8fc1..8bd3b0115 100644 --- a/components/table/demos/hidden.md +++ b/components/table/demos/hidden.md @@ -8,16 +8,24 @@ order: 31 ```vdt import {Table, TableColumn} from 'kpc'; - - -
+
+ + +
+

无数据展示

+ + +
+
``` ```styl -.dis - display none +.k-table + margin-bottom 20px ``` ```ts @@ -28,7 +36,8 @@ export default class extends Component { data: [ {a: 'Cell 1-1', b: 'Cell 1-2', c: 'cell 1-3'}, {a: 'Cell 2-1', b: 'Cell 2-2', c: 'cell 2-3'} - ] + ], + data2: [] }; } } diff --git a/components/table/styles.ts b/components/table/styles.ts index 36d9b6f51..25613d1ea 100644 --- a/components/table/styles.ts +++ b/components/table/styles.ts @@ -314,7 +314,10 @@ export const makeStyles = cache(function makeStyles(k: string) { } // hidden cell - col.${k}-hidden, tr > .${k}-hidden { + // col.${k}-hidden, tr > .${k}-hidden { + // display: none; + // } + .${k}-hidden { display: none; } .${k}-table-arrow { diff --git a/packages/kpc-vue-next/__tests__/__snapshots__/Vue Next Demos.md b/packages/kpc-vue-next/__tests__/__snapshots__/Vue Next Demos.md index a26e8b130..980b071d1 100644 --- a/packages/kpc-vue-next/__tests__/__snapshots__/Vue Next Demos.md +++ b/packages/kpc-vue-next/__tests__/__snapshots__/Vue Next Demos.md @@ -11,19 +11,19 @@ #### `Badge basic` ``` -"
Message
" +"
Message
" ``` #### `Badge disabled` ``` -"
Message
" +"
Message
" ``` #### `Badge text` ``` -"
Messagenew
6
19
99+
" +"
Messagenew
6
19
99+
" ``` ## `breadcrumb` @@ -45,49 +45,49 @@ #### `Button basic` ``` -"
" +"
" ``` #### `Button disabled` ``` -"
" +"
" ``` #### `Button ghost` ``` -"
" +"
" ``` #### `Button group` ``` -"


纵向按钮组



单选按钮组

多选按钮组

有间隔的按钮组

" +"


纵向按钮组



单选按钮组

多选按钮组

有间隔的按钮组

支持自定义ButtonGroup下的Button宽度

" ``` #### `Button icon` ``` -"
" +"
" ``` #### `Button loading` ``` -"


" +"


" ``` #### `Button size` ``` -"


" +"


" ``` #### `Button tagName` ``` -"
div元素按钮
disabled div button
超链接按钮
" +"
div元素按钮
disabled div button
超链接按钮
" ``` ## `card` @@ -127,25 +127,25 @@ #### `Carousel autoplay` ``` -"" +"" ``` #### `Carousel basic` ``` -"" +"" ``` #### `Carousel effect` ``` -"" +"" ``` #### `Carousel multiple` ``` -"" +"" ``` ## `cascader` @@ -293,13 +293,13 @@ #### `Config basic` ``` -"" +"" ``` #### `Config disableWave` ``` -"" +"" ``` ## `copy` @@ -313,7 +313,7 @@ #### `Copy children` ``` -"
Copy
" +"
Copy
" ``` ## `datepicker` @@ -403,55 +403,55 @@ #### `Dialog asyncClose` ``` -"
" +"
" ``` #### `Dialog basic` ``` -"
" +"
" ``` #### `Dialog block` ``` -"
" +"
" ``` #### `Dialog destroy` ``` -"
" +"
" ``` #### `Dialog events` ``` -"
" +"
" ``` #### `Dialog overlay` ``` -"
" +"
" ``` #### `Dialog size` ``` -"


" +"


" ``` #### `Dialog static` ``` -"


" +"




" ``` #### `Dialog terminate` ``` -"
" +"
" ``` ## `divider` @@ -485,25 +485,25 @@ #### `Drawer basic` ``` -"
" +"
" ``` #### `Drawer content` ``` -"
" +"
" ``` #### `Drawer overlay` ``` -"
" +"
" ``` #### `Drawer placement` ``` -"


" +"


" ``` ## `dropdown` @@ -511,13 +511,13 @@ #### `Dropdown basic` ``` -"
" +"
" ``` #### `Dropdown checkbox` ``` -"
" +"
" ``` #### `Dropdown contextmenu` @@ -529,31 +529,31 @@ #### `Dropdown disabled` ``` -"
" +"
" ``` #### `Dropdown nested` ``` -"
" +"
" ``` #### `Dropdown position` ``` -"
" +"
" ``` #### `Dropdown tooltip` ``` -"
" +"
" ``` #### `Dropdown trigger` ``` -"
" +"
" ``` ## `editable` @@ -581,7 +581,7 @@ #### `Ellipsis custom` ``` -"
" +"
" ``` #### `Ellipsis position` @@ -595,13 +595,13 @@ #### `Form basic` ``` -"
请选择
0
0100
" +"
请选择
0
0100
" ``` #### `Form custom` ``` -"
" +"
" ``` #### `Form label` @@ -613,7 +613,7 @@ #### `Form layout` ``` -"
请选择
" +"
请选择
" ``` #### `Form remote` @@ -727,7 +727,7 @@ #### `Input blocks` ``` -"
http://
.com







http://
.com
" +"
http://
.com







http://
.com
" ``` #### `Input clearable` @@ -763,7 +763,7 @@ #### `Input search` ``` -"

" +"

" ``` #### `Input showCount` @@ -775,7 +775,7 @@ #### `Input size` ``` -"



http://
.com



" +"



http://
.com



" ``` #### `Input textarea` @@ -789,13 +789,13 @@ #### `Layout aside` ``` -"
LOGO
menu 1
sub menu 1
sub menu 2
sub menu 3
sub menu 4
menu 2
menu 3
sub menu 1
sub menu 2
sub menu 3
sub menu 4
menu 4
Home
Detail
content
" +"
LOGO
menu 1
sub menu 1
sub menu 2
sub menu 3
sub menu 4
menu 2
menu 3
sub menu 1
sub menu 2
sub menu 3
sub menu 4
menu 4
Home
Detail
content
" ``` #### `Layout asideFix` ``` -"
LOGO
menu 1
sub menu 1
sub menu 2
sub menu 3
sub menu 4
menu 2
menu 3
sub menu 1
sub menu 2
sub menu 3
sub menu 4
menu 4
Home
Detail
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
" +"
LOGO
menu 1
sub menu 1
sub menu 2
sub menu 3
sub menu 4
menu 2
menu 3
sub menu 1
sub menu 2
sub menu 3
sub menu 4
menu 4
Home
Detail
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
content
" ``` #### `Layout basic` @@ -813,7 +813,7 @@ #### `Layout theme` ``` -"
LOGO
menu 1
menu 2
menu 3
menu 4
menu 1
sub menu 1
sub menu 2
sub menu 3
sub menu 4
menu 2
menu 3
sub menu 1
sub menu 2
sub menu 3
sub menu 4
menu 4
Home
Detail
切换主题:
" +"
LOGO
menu 1
menu 2
menu 3
menu 4
menu 1
sub menu 1
sub menu 2
sub menu 3
sub menu 4
menu 2
menu 3
sub menu 1
sub menu 2
sub menu 3
sub menu 4
menu 4
Home
Detail
切换主题:
" ``` ## `menu` @@ -833,7 +833,7 @@ #### `Menu collapse` ``` -"
展开
收起
dark
light


" +"
展开
收起
dark
light


" ``` #### `Menu dot` @@ -845,7 +845,7 @@ #### `Menu horizontal` ``` -"
menu 1
menu 2
menu 3
menu 4


dark
light
" +"
menu 1
menu 2
menu 3
menu 4


dark
light
" ``` #### `Menu recursive` @@ -857,19 +857,19 @@ #### `Menu showCollapseArrow` ``` -"
隐藏折叠按钮
展示折叠按钮


自定义Header
menu 0
title 1
menu 1
menu 2
menu 3menu 3menu 3menu 3menu 3menu 3
title 2
menu 1
menu 2
sub menu 6
sub menu 1
sub menu 2
sub menu 3
sub menu 7
option 1
option 2
menu 8
" +"
隐藏折叠按钮
展示折叠按钮


自定义Header
menu 0
title 1
menu 1
menu 2
menu 3menu 3menu 3menu 3menu 3menu 3
title 2
menu 1
menu 2
sub menu 6
sub menu 1
sub menu 2
sub menu 3
sub menu 7
option 1
option 2
menu 8
" ``` #### `Menu size` ``` -"
展开
收起
vertical
horizontal


Header
menu 1
menu 2
menu 3
sub menu 1
sub menu 2
sub menu 3
sub menu 4
option 1
option 2
menu 4
" +"
展开
收起
vertical
horizontal


Header
menu 1
menu 2
menu 3
sub menu 1
sub menu 2
sub menu 3
sub menu 4
option 1
option 2
menu 4
" ``` #### `Menu theme` ``` -"


Header
menu 1
menu 2
menu 3
sub menu 1
sub menu 2
sub menu 3
sub menu 4
menu 4
" +"


Header
menu 1
menu 2
menu 3
sub menu 1
sub menu 2
sub menu 3
sub menu 4
menu 4
" ``` ## `message` @@ -877,19 +877,19 @@ #### `Message basic` ``` -"
" +"
" ``` #### `Message config` ``` -"
" +"
" ``` #### `Message duration` ``` -"
" +"
" ``` ## `pagination` @@ -897,49 +897,49 @@ #### `Pagination basic` ``` -"
共 200 条
10 条 / 页
共 200 条
20 条 / 页
共 200 条
20 条 / 页
" +"
共 200 条
10 条 / 页
共 200 条
20 条 / 页
共 200 条
20 条 / 页
" ``` #### `Pagination counts` ``` -"
共 200 条
10 条 / 页
共 200 条
10 条 / 页
" +"
共 200 条
10 条 / 页
共 200 条
10 条 / 页
" ``` #### `Pagination current` ``` -"
共 200 条
10 条 / 页


共 200 条
20 条 / 页
" +"
共 200 条
10 条 / 页


共 200 条
20 条 / 页
" ``` #### `Pagination disable` ``` -"
共 200 条
10 条 / 页
共 200 条
10 条 / 页
前往
" +"
共 200 条
10 条 / 页
共 200 条
10 条 / 页
前往
" ``` #### `Pagination flat` ``` -"
共 200 条
10 条 / 页
前往
共 200 条
10 条 / 页
前往
共 200 条
10 条 / 页
前往
共 200 条
10 条 / 页
前往
" +"
共 200 条
10 条 / 页
前往
共 200 条
10 条 / 页
前往
共 200 条
10 条 / 页
前往
共 200 条
10 条 / 页
前往
" ``` #### `Pagination goto` ``` -"
共 200 条
10 条 / 页
前往
" +"
共 200 条
10 条 / 页
前往
" ``` #### `Pagination simple` ``` -"
1
/ 20
1
/ 20
1
/ 20
1
/ 20
" +"
1
/ 20
1
/ 20
1
/ 20
1
/ 20
" ``` #### `Pagination size` ``` -"
共 200 条
10 条 / 页
共 200 条
10 条 / 页
共 200 条
10 条 / 页
共 200 条
10 条 / 页
" +"
共 200 条
10 条 / 页
共 200 条
10 条 / 页
共 200 条
10 条 / 页
共 200 条
10 条 / 页
" ``` #### `Pagination noBoard` @@ -953,31 +953,31 @@ #### `Popover basic` ``` -"
" +"
" ``` #### `Popover button` ``` -"
" +"
" ``` #### `Popover content` ``` -"
" +"
" ``` #### `Popover text` ``` -"
" +"
" ``` #### `Popover type` ``` -"
" +"
" ``` ## `progress` @@ -991,7 +991,7 @@ #### `Progress children` ``` -"
正在上传
40%
" +"
正在上传
40%
" ``` #### `Progress circle` @@ -1003,13 +1003,13 @@ #### `Progress circleSize` ``` -"
状态:
进度:


40%
40%
40%
" +"
状态:
进度:


40%
40%
40%
" ``` #### `Progress customColor` ``` -"
25%
25%
25%
" +"
25%
25%
25%
" ``` #### `Progress innerText` @@ -1281,19 +1281,19 @@ #### `Slider basic` ``` -"
60
0MB100MB
277
50500
" +"
60
0MB100MB
277
50500
" ``` #### `Slider disabled` ``` -"
50
0100
55
80
50100
-
" +"
50
0100
55
80
50100
-
" ``` #### `Slider dynamicStep` ``` -"
0
0500
" +"
0
0500
" ``` #### `Slider marks` @@ -1305,25 +1305,25 @@ #### `Slider points` ``` -"
45
0100
0.3
0.6
01
-
45
0100
" +"
45
0100
0.3
0.6
01
-
45
0100
" ``` #### `Slider range` ``` -"
50
76
0100
-
" +"
50
76
0100
-
" ``` #### `Slider step` ``` -"
0
50
50500
0.234234
01
" +"
0
50
50500
0.234234
01
" ``` #### `Slider tooltip` ``` -"
277
50500
6
123456月7891年2年3年
300
50500
" +"
277
50500
6
123456月7891年2年3年
300
50500
" ``` ## `spin` @@ -1337,7 +1337,7 @@ #### `Spin overlay` ``` -"
表头1
表头2
第一行哈哈2
第二行哈哈2
第三行哈哈3
" +"
表头1
表头2
第一行哈哈2
第二行哈哈2
第三行哈哈3
" ``` ## `spinner` @@ -1345,49 +1345,49 @@ #### `Spinner basic` ``` -"
" +"
" ``` #### `Spinner dynamicStep` ``` -"
" +"
" ``` #### `Spinner forceStep` ``` -"
" +"
" ``` #### `Spinner formatter` ``` -"
" +"
" ``` #### `Spinner precision` ``` -"
" +"
" ``` #### `Spinner size` ``` -"
" +"
" ``` #### `Spinner step` ``` -"
" +"
" ``` #### `Spinner vertical` ``` -"
" +"
" ``` ## `split` @@ -1401,7 +1401,7 @@ #### `Split complex` ``` -"
名称
网段
操作
name 0127.0.0.0删除
name 1127.0.0.1删除
name 2127.0.0.2删除
name 3127.0.0.3删除
name 4127.0.0.4删除
name 5127.0.0.5删除
name 6127.0.0.6删除
name 7127.0.0.7删除
name 8127.0.0.8删除
name 9127.0.0.9删除
name 10127.0.0.10删除
详情
流量统计
标签
" +"
名称
网段
操作
name 0127.0.0.0删除
name 1127.0.0.1删除
name 2127.0.0.2删除
name 3127.0.0.3删除
name 4127.0.0.4删除
name 5127.0.0.5删除
name 6127.0.0.6删除
name 7127.0.0.7删除
name 8127.0.0.8删除
name 9127.0.0.9删除
name 10127.0.0.10删除
详情
流量统计
标签
" ``` #### `Split nested` @@ -1427,13 +1427,13 @@ #### `Steps basic` ``` -"
1
选择配置
请选择主机的配置信息
2
选择弹性IP
请选择主机弹性IP的配置信息
3
设置VPC
" +"
1
选择配置
请选择主机的配置信息
2
选择弹性IP
请选择主机弹性IP的配置信息
3
设置VPC
" ``` #### `Steps clickable` ``` -"
1
选择配置
请选择主机的配置信息
2
选择弹性IP
请选择主机弹性IP的配置信息
3
设置VPC

选择配置
请选择主机的配置信息
2
选择弹性IP
请选择主机弹性IP的配置信息
3
设置VPC
" +"
1
选择配置
请选择主机的配置信息
2
选择弹性IP
请选择主机弹性IP的配置信息
3
设置VPC

选择配置
请选择主机的配置信息
2
选择弹性IP
请选择主机弹性IP的配置信息
3
设置VPC
" ``` #### `Steps error` @@ -1445,19 +1445,19 @@ #### `Steps line` ``` -"
1
选择配置
请选择主机的配置信息
2
选择弹性IP
请选择主机弹性IP的配置信息
3
设置VPC
1
选择配置
请选择主机的配置信息
2
选择弹性IP
请选择主机弹性IP的配置信息
3
设置VPC
" +"
1
选择配置
请选择主机的配置信息
2
选择弹性IP
请选择主机弹性IP的配置信息
3
设置VPC
1
选择配置
请选择主机的配置信息
2
选择弹性IP
请选择主机弹性IP的配置信息
3
设置VPC
" ``` #### `Steps simple` ``` -"
选择配置
请选择主机的配置信息
选择弹性IP
请选择主机弹性IP的配置信息
设置VPC
" +"
选择配置
请选择主机的配置信息
选择弹性IP
请选择主机弹性IP的配置信息
设置VPC
" ``` #### `Steps vertical` ``` -"
1
选择配置
请选择主机的配置信息
2
选择弹性IP
请选择主机弹性IP的配置信息
3
设置VPC
1
选择配置
请选择主机的配置信息
2
选择弹性IP
请选择主机弹性IP的配置信息
3
设置VPC
1
选择配置
请选择主机的配置信息
2
选择弹性IP
请选择主机弹性IP的配置信息
3
设置VPC
选择配置
请选择主机的配置信息
选择弹性IP
请选择主机弹性IP的配置信息
设置VPC
" +"
1
选择配置
请选择主机的配置信息
2
选择弹性IP
请选择主机弹性IP的配置信息
3
设置VPC
1
选择配置
请选择主机的配置信息
2
选择弹性IP
请选择主机弹性IP的配置信息
3
设置VPC
1
选择配置
请选择主机的配置信息
2
选择弹性IP
请选择主机弹性IP的配置信息
3
设置VPC
选择配置
请选择主机的配置信息
选择弹性IP
请选择主机弹性IP的配置信息
设置VPC
" ``` ## `switch` @@ -1465,37 +1465,43 @@ #### `Switch basic` ``` -"
" +"
" +``` + +#### `Switch beforeChange` + +``` +"
" ``` #### `Switch disabled` ``` -"
" +"
" ``` #### `Switch onOff` ``` -"
" +"
" ``` #### `Switch size` ``` -"
large:
default:
small:
mini:
" +"
large:
default:
small:
mini:
" ``` #### `Switch value` ``` -"
false
\"1\"
" +"
false
\"1\"
" ``` #### `Switch widthHeight` ``` -"
关闭
开启
关闭
开启
" +"
关闭
开启
关闭
开启
" ``` ## `table` @@ -1503,187 +1509,193 @@ #### `Table animation` ``` -"
Title 1
Title 3
Cell 1-1Cell 1-3
Cell 2-1Cell 2-3
Title 1
Title 3
Cell 1-1Cell 1-3
Cell 2-1Cell 2-3
" +"
Title 1
Title 3
Cell 1-1Cell 1-3
Cell 2-1Cell 2-3
Title 1
Title 3
Cell 1-1Cell 1-3
Cell 2-1Cell 2-3
" ``` #### `Table basic` ``` -"
Title 1
Title 2
Cell 1-1Cell 1-2
Cell 2-1Cell 2-2
" +"
Title 1
Title 2
Cell 1-1Cell 1-2
Cell 2-1Cell 2-2
" ``` #### `Table checkType` ``` -"
Title
checkbox 1
checkbox 2
Title
radio 1
radio 2
Title
no check 1
no check 2
" +"
Title
checkbox 1
checkbox 2
Title
radio 1
radio 2
Title
no check 1
no check 2
" ``` #### `Table checkedKeys` ``` -"
Radio without rowKey
default checked by index
unchecked
Radio with rowKey
default checked by rowKey
unchecked
checkbox without rowKey
default checked by index
unchecked
default checked
checkbox with rowKey
default checked by rowKey
unchecked
" +"
Radio without rowKey
default checked by index
unchecked
Radio with rowKey
default checked by rowKey
unchecked
checkbox without rowKey
default checked by index
unchecked
default checked
checkbox with rowKey
default checked by rowKey
unchecked
" ``` #### `Table disableRow` ``` -"
odd rows are uncheckable
1
2
3
4
5
" +"
odd rows are uncheckable
1
2
3
4
5
" ``` #### `Table draggable` ``` -"
Name
IP
Operation
name 1127.0.0.1Remove
name 2127.0.0.2Remove
name 3127.0.0.3Remove
name 4127.0.0.4Remove
name 5127.0.0.5Remove
name 6127.0.0.6Remove
name 7127.0.0.7Remove
name 8127.0.0.8Remove
name 9127.0.0.9Remove
name 10127.0.0.10Remove
name 11127.0.0.11Remove
name 12127.0.0.12Remove
name 13127.0.0.13Remove
name 14127.0.0.14Remove
name 15127.0.0.15Remove
name 16127.0.0.16Remove
name 17127.0.0.17Remove
name 18127.0.0.18Remove
name 19127.0.0.19Remove
name 20127.0.0.20Remove
" +"
Name
IP
Operation
name 1127.0.0.1Remove
name 2127.0.0.2Remove
name 3127.0.0.3Remove
name 4127.0.0.4Remove
name 5127.0.0.5Remove
name 6127.0.0.6Remove
name 7127.0.0.7Remove
name 8127.0.0.8Remove
name 9127.0.0.9Remove
name 10127.0.0.10Remove
name 11127.0.0.11Remove
name 12127.0.0.12Remove
name 13127.0.0.13Remove
name 14127.0.0.14Remove
name 15127.0.0.15Remove
name 16127.0.0.16Remove
name 17127.0.0.17Remove
name 18127.0.0.18Remove
name 19127.0.0.19Remove
name 20127.0.0.20Remove
" ``` #### `Table empty` ``` -"
表头1
表头2
暂无数据
表头1
表头2
没有数据
" +"
表头1
表头2
暂无数据
表头1
表头2
没有数据
" ``` #### `Table export` ``` -"
定义该列单元格内容
普通文本
自定义导出文本
操作
第一行哈哈1自定义1删除
第二行哈哈2自定义2删除
" +"
定义该列单元格内容
普通文本
自定义导出文本
操作
第一行哈哈1自定义1删除
第二行哈哈2自定义2删除
" ``` #### `Table fixColumn` ``` -"
Name
Column1
Column2
Column3
Column4
Action
Johntesttesttesttestaction
Tomtesttesttesttestaction
Javeytesttesttesttestaction
Name
Column1
Column2
Column3
Column4
Action
Johntesttesttesttestaction
Tomtesttesttesttestaction
Javeytesttesttesttestaction
" +"
Name
Column1
Column2
Column3
Column4
Action
Johntesttesttesttestaction
Tomtesttesttesttestaction
Javeytesttesttesttestaction
Name
Column1
Column2
Column3
Column4
Action
Johntesttesttesttestaction
Tomtesttesttesttestaction
Javeytesttesttesttestaction
" ``` #### `Table fixHeader` ``` -"
100px
表头固定,但内容没有超出最高高度
100px
表头固定啦
下拉
yeah!
" +"
100px
表头固定,但内容没有超出最高高度
100px
表头固定啦
下拉
yeah!
" ``` #### `Table group` ``` -"
名称
状态
主机1{data.status === 'active' ? '运行中' : '已关闭'}
主机2{data.status === 'active' ? '运行中' : '已关闭'}
主机3{data.status === 'active' ? '运行中' : '已关闭'}
名称
状态
主机1{data.status === 'active' ? '运行中' : '已关闭'}
主机2{data.status === 'active' ? '运行中' : '已关闭'}
主机3{data.status === 'active' ? '运行中' : '已关闭'}
" +"
名称
状态
主机1{data.status === 'active' ? '运行中' : '已关闭'}
主机2{data.status === 'active' ? '运行中' : '已关闭'}
主机3{data.status === 'active' ? '运行中' : '已关闭'}
名称
状态
主机1{data.status === 'active' ? '运行中' : '已关闭'}
主机2{data.status === 'active' ? '运行中' : '已关闭'}
主机3{data.status === 'active' ? '运行中' : '已关闭'}
" ``` #### `Table groupHeader` ``` -"
Weekday
Forenoon
Afternoon
Time
Classes
Time
Class 5
Class 6
Class 7
Class 1
Class 2
Class 3
Class 4
Monday08:00 ~ 12:00EnglishMathematicsChineseHistory14:00 ~ 17:00GeopraghyEnglishMathematics
Tuesday08:00 ~ 12:00MathematicsChineseHistoryGeopraghy14:00 ~ 17:00EnglishMathematicsChinese
Wendesday08:00 ~ 12:00ChineseHistoryGeopraghyEnglish14:00 ~ 17:00MathematicsChineseHistory
Thursday08:00 ~ 12:00HistoryGeopraghyEnglishMathematics14:00 ~ 17:00ChineseHistoryGeopraghy
Friday08:00 ~ 12:00GeopraghyEnglishMathematicsChinese14:00 ~ 17:00HistoryGeopraghyEnglish
" +"
Weekday
Forenoon
Afternoon
Time
Classes
Time
Class 5
Class 6
Class 7
Class 1
Class 2
Class 3
Class 4
Monday08:00 ~ 12:00EnglishMathematicsChineseHistory14:00 ~ 17:00GeopraghyEnglishMathematics
Tuesday08:00 ~ 12:00MathematicsChineseHistoryGeopraghy14:00 ~ 17:00EnglishMathematicsChinese
Wendesday08:00 ~ 12:00ChineseHistoryGeopraghyEnglish14:00 ~ 17:00MathematicsChineseHistory
Thursday08:00 ~ 12:00HistoryGeopraghyEnglishMathematics14:00 ~ 17:00ChineseHistoryGeopraghy
Friday08:00 ~ 12:00GeopraghyEnglishMathematicsChinese14:00 ~ 17:00HistoryGeopraghyEnglish
" +``` + +#### `Table hidden` + +``` +"
Title 1
Title 2
Title 3
Cell 1-1Cell 1-2cell 1-3
Cell 2-1Cell 2-2cell 2-3

无数据展示

Title 1
Title 2
Title 3
暂无数据
" ``` #### `Table hideHeader` ``` -"

hideHeader:

Cell 1-1Cell 1-2
Cell 2-1Cell 2-2
" +"

hideHeader:

Cell 1-1Cell 1-2
Cell 2-1Cell 2-2
" ``` #### `Table loading` ``` -"
表头1
表头2
第一行哈哈1
第二行哈哈2
第三行哈哈3
" +"
表头1
表头2
第一行哈哈1
第二行哈哈2
第三行哈哈3
" ``` #### `Table mergeCell` ``` -"
Weekday
Forenoon
Afternoon
Time
Class 1
Class 2
Class 3
Class 4
Class 5
Class 6
Class 7
Time
Monday08:00 ~ 12:00EnglishMathematicsHistoryEnglishHistoryEnglishHistory14:00 ~ 17:00
TuesdayEnglishGeopraghyHistoryEnglishHistoryMathematics
WendesdayHistoryChineseHistoryEnglishChineseHistory
ThursdayHistoryEnglishGeopraghyMathematicsGeopraghyEnglishMathematics
FridayGeopraghyEnglishGeopraghyEnglish
SaturdayGeopraghyEnglishGeopraghyEnglish
Weekday
Forenoon
Afternoon
Time
Class 1
Class 2
Class 3
Class 4
Class 5
Class 6
Class 7
Time
Monday08:00 ~ 12:00EnglishMathematicsHistoryEnglishHistoryEnglishHistory14:00 ~ 17:00
TuesdayEnglishGeopraghyHistoryEnglishHistoryMathematics
WendesdayHistoryChineseHistoryEnglishChineseHistory
ThursdayHistoryEnglishGeopraghyMathematicsGeopraghyEnglishMathematics
FridayGeopraghyEnglishGeopraghyEnglish
SaturdayGeopraghyEnglishGeopraghyEnglish
" +"
Weekday
Forenoon
Afternoon
Time
Class 1
Class 2
Class 3
Class 4
Class 5
Class 6
Class 7
Time
Monday08:00 ~ 12:00EnglishMathematicsHistoryEnglishHistoryEnglishHistory14:00 ~ 17:00
TuesdayEnglishGeopraghyHistoryEnglishHistoryMathematics
WendesdayHistoryChineseHistoryEnglishChineseHistory
ThursdayHistoryEnglishGeopraghyMathematicsGeopraghyEnglishMathematics
FridayGeopraghyEnglishGeopraghyEnglish
SaturdayGeopraghyEnglishGeopraghyEnglish
Weekday
Forenoon
Afternoon
Time
Class 1
Class 2
Class 3
Class 4
Class 5
Class 6
Class 7
Time
Monday08:00 ~ 12:00EnglishMathematicsHistoryEnglishHistoryEnglishHistory14:00 ~ 17:00
TuesdayEnglishGeopraghyHistoryEnglishHistoryMathematics
WendesdayHistoryChineseHistoryEnglishChineseHistory
ThursdayHistoryEnglishGeopraghyMathematicsGeopraghyEnglishMathematics
FridayGeopraghyEnglishGeopraghyEnglish
SaturdayGeopraghyEnglishGeopraghyEnglish
" ``` #### `Table pagination` ``` -"
Name
IP
name 1127.0.0.1
name 2127.0.0.2
name 3127.0.0.3
name 4127.0.0.4
name 5127.0.0.5
name 6127.0.0.6
name 7127.0.0.7
name 8127.0.0.8
name 9127.0.0.9
name 10127.0.0.10
共 20 条
10 条 / 页
" +"
Name
IP
name 1127.0.0.1
name 2127.0.0.2
name 3127.0.0.3
name 4127.0.0.4
name 5127.0.0.5
name 6127.0.0.6
name 7127.0.0.7
name 8127.0.0.8
name 9127.0.0.9
name 10127.0.0.10
共 20 条
10 条 / 页
" ``` #### `Table resizable` ``` -"
通过minColWidth控制最小宽度100px
隐藏列
单独设置最小宽度300px
标题
ABC
ABC
" +"
通过minColWidth控制最小宽度100px
隐藏列
单独设置最小宽度300px
标题
ABC
ABC
" ``` #### `Table rowCheckable` ``` -"
点击整行不选中
B
AB
A点我不会选中整行
点击整行选中
B
A任何位置都可以哦~
A点我会选中整行
" +"
点击整行不选中
B
AB
A点我不会选中整行
点击整行选中
B
A任何位置都可以哦~
A点我会选中整行
" ``` #### `Table rowClassName` ``` -"
rowClassName
1
2
3
4
5
stripe
1
2
3
4
5
" +"
rowClassName
1
2
3
4
5
stripe
1
2
3
4
5
" ``` #### `Table rowExpandable` ``` -"
点击整行展开内容
Javey
Jiawei
点击+,展开内容
Javey
Jiawei
" +"
点击整行展开内容
Javey
Jiawei
点击+,展开内容
Javey
Jiawei
" ``` #### `Table scheme` ``` -"
定义该列单元格内容
key形式
key为一个路径字符串
没有这个key,则返回空
虚拟DOM获取到了item.bitem.c.c1
" +"
定义该列单元格内容
key形式
key为一个路径字符串
没有这个key,则返回空
虚拟DOM获取到了item.bitem.c.c1
" ``` #### `Table scrollToRow` ``` -"
Name
IP
Operation
name 1127.0.0.1Remove
name 2127.0.0.2Remove
name 3127.0.0.3Remove
name 4127.0.0.4Remove
name 5127.0.0.5Remove
name 6127.0.0.6Remove
name 7127.0.0.7Remove
name 8127.0.0.8Remove
name 9127.0.0.9Remove
name 10127.0.0.10Remove
name 11127.0.0.11Remove
name 12127.0.0.12Remove
name 13127.0.0.13Remove
name 14127.0.0.14Remove
name 15127.0.0.15Remove
name 16127.0.0.16Remove
name 17127.0.0.17Remove
name 18127.0.0.18Remove
name 19127.0.0.19Remove
name 20127.0.0.20Remove
name 21127.0.0.21Remove
name 22127.0.0.22Remove
name 23127.0.0.23Remove
name 24127.0.0.24Remove
name 25127.0.0.25Remove
name 26127.0.0.26Remove
name 27127.0.0.27Remove
name 28127.0.0.28Remove
name 29127.0.0.29Remove
name 30127.0.0.30Remove
name 31127.0.0.31Remove
name 32127.0.0.32Remove
name 33127.0.0.33Remove
name 34127.0.0.34Remove
name 35127.0.0.35Remove
name 36127.0.0.36Remove
name 37127.0.0.37Remove
name 38127.0.0.38Remove
name 39127.0.0.39Remove
name 40127.0.0.40Remove
name 41127.0.0.41Remove
name 42127.0.0.42Remove
name 43127.0.0.43Remove
name 44127.0.0.44Remove
name 45127.0.0.45Remove
name 46127.0.0.46Remove
name 47127.0.0.47Remove
name 48127.0.0.48Remove
name 49127.0.0.49Remove
name 50127.0.0.50Remove
name 51127.0.0.51Remove
name 52127.0.0.52Remove
name 53127.0.0.53Remove
name 54127.0.0.54Remove
name 55127.0.0.55Remove
name 56127.0.0.56Remove
name 57127.0.0.57Remove
name 58127.0.0.58Remove
name 59127.0.0.59Remove
name 60127.0.0.60Remove
name 61127.0.0.61Remove
name 62127.0.0.62Remove
name 63127.0.0.63Remove
name 64127.0.0.64Remove
name 65127.0.0.65Remove
name 66127.0.0.66Remove
name 67127.0.0.67Remove
name 68127.0.0.68Remove
name 69127.0.0.69Remove
name 70127.0.0.70Remove
name 71127.0.0.71Remove
name 72127.0.0.72Remove
name 73127.0.0.73Remove
name 74127.0.0.74Remove
name 75127.0.0.75Remove
name 76127.0.0.76Remove
name 77127.0.0.77Remove
name 78127.0.0.78Remove
name 79127.0.0.79Remove
name 80127.0.0.80Remove
name 81127.0.0.81Remove
name 82127.0.0.82Remove
name 83127.0.0.83Remove
name 84127.0.0.84Remove
name 85127.0.0.85Remove
name 86127.0.0.86Remove
name 87127.0.0.87Remove
name 88127.0.0.88Remove
name 89127.0.0.89Remove
name 90127.0.0.90Remove
name 91127.0.0.91Remove
name 92127.0.0.92Remove
name 93127.0.0.93Remove
name 94127.0.0.94Remove
name 95127.0.0.95Remove
name 96127.0.0.96Remove
name 97127.0.0.97Remove
name 98127.0.0.98Remove
name 99127.0.0.99Remove
name 100127.0.0.100Remove
" +"
Name
IP
Operation
name 1127.0.0.1Remove
name 2127.0.0.2Remove
name 3127.0.0.3Remove
name 4127.0.0.4Remove
name 5127.0.0.5Remove
name 6127.0.0.6Remove
name 7127.0.0.7Remove
name 8127.0.0.8Remove
name 9127.0.0.9Remove
name 10127.0.0.10Remove
name 11127.0.0.11Remove
name 12127.0.0.12Remove
name 13127.0.0.13Remove
name 14127.0.0.14Remove
name 15127.0.0.15Remove
name 16127.0.0.16Remove
name 17127.0.0.17Remove
name 18127.0.0.18Remove
name 19127.0.0.19Remove
name 20127.0.0.20Remove
name 21127.0.0.21Remove
name 22127.0.0.22Remove
name 23127.0.0.23Remove
name 24127.0.0.24Remove
name 25127.0.0.25Remove
name 26127.0.0.26Remove
name 27127.0.0.27Remove
name 28127.0.0.28Remove
name 29127.0.0.29Remove
name 30127.0.0.30Remove
name 31127.0.0.31Remove
name 32127.0.0.32Remove
name 33127.0.0.33Remove
name 34127.0.0.34Remove
name 35127.0.0.35Remove
name 36127.0.0.36Remove
name 37127.0.0.37Remove
name 38127.0.0.38Remove
name 39127.0.0.39Remove
name 40127.0.0.40Remove
name 41127.0.0.41Remove
name 42127.0.0.42Remove
name 43127.0.0.43Remove
name 44127.0.0.44Remove
name 45127.0.0.45Remove
name 46127.0.0.46Remove
name 47127.0.0.47Remove
name 48127.0.0.48Remove
name 49127.0.0.49Remove
name 50127.0.0.50Remove
name 51127.0.0.51Remove
name 52127.0.0.52Remove
name 53127.0.0.53Remove
name 54127.0.0.54Remove
name 55127.0.0.55Remove
name 56127.0.0.56Remove
name 57127.0.0.57Remove
name 58127.0.0.58Remove
name 59127.0.0.59Remove
name 60127.0.0.60Remove
name 61127.0.0.61Remove
name 62127.0.0.62Remove
name 63127.0.0.63Remove
name 64127.0.0.64Remove
name 65127.0.0.65Remove
name 66127.0.0.66Remove
name 67127.0.0.67Remove
name 68127.0.0.68Remove
name 69127.0.0.69Remove
name 70127.0.0.70Remove
name 71127.0.0.71Remove
name 72127.0.0.72Remove
name 73127.0.0.73Remove
name 74127.0.0.74Remove
name 75127.0.0.75Remove
name 76127.0.0.76Remove
name 77127.0.0.77Remove
name 78127.0.0.78Remove
name 79127.0.0.79Remove
name 80127.0.0.80Remove
name 81127.0.0.81Remove
name 82127.0.0.82Remove
name 83127.0.0.83Remove
name 84127.0.0.84Remove
name 85127.0.0.85Remove
name 86127.0.0.86Remove
name 87127.0.0.87Remove
name 88127.0.0.88Remove
name 89127.0.0.89Remove
name 90127.0.0.90Remove
name 91127.0.0.91Remove
name 92127.0.0.92Remove
name 93127.0.0.93Remove
name 94127.0.0.94Remove
name 95127.0.0.95Remove
name 96127.0.0.96Remove
name 97127.0.0.97Remove
name 98127.0.0.98Remove
name 99127.0.0.99Remove
name 100127.0.0.100Remove
" ``` #### `Table selectedKeys` ``` -"
表头1
表头2
第一行哈哈
第二行哈哈
表头1
表头2
第一行哈哈
第二行哈哈
" +"
表头1
表头2
第一行哈哈
第二行哈哈
表头1
表头2
第一行哈哈
第二行哈哈
" ``` #### `Table showIndeterminate` ``` -"
表头1
表头2
第一行哈哈2
第二行哈哈2
" +"
表头1
表头2
第一行哈哈2
第二行哈哈2
" ``` #### `Table sort` ``` -"
姓名
年龄
aa1
cc5
bb9
" +"
姓名
年龄
aa1
cc5
bb9
" ``` #### `Table stickHeader` ``` -"
姓名
性别
Javeymale
Kanilyfemale
" +"
姓名
性别
Javeymale
Kanilyfemale
" ``` #### `Table stickScrollbar` ``` -"
Name
Column1
Column2
Column3
Column4
Action
Johntesttesttesttestaction
Tomtesttesttesttestaction
Javeytesttesttesttestaction
" +"
Name
Column1
Column2
Column3
Column4
Action
Johntesttesttesttestaction
Tomtesttesttesttestaction
Javeytesttesttesttestaction
" ``` #### `Table title` ``` -"
自定义表头内容
表头2
第一行哈哈2
第二行哈哈2
" +"
自定义表头内容
表头2
第一行哈哈2
第二行哈哈2
" ``` #### `Table tooltip` ``` -"
表头1
表头2
第一行哈哈1
第二行哈哈2
第三行哈哈3
" +"
表头1
表头2
第一行哈哈1
第二行哈哈2
第三行哈哈3
" ``` #### `Table tree` ``` -"
Name
Size
Audios12MB
Images14MB
doc.pdf18MB
" +"
Name
Size
Audios12MB
Images14MB
doc.pdf18MB
" ``` #### `Table type` ``` -"
Type
Value
typeborder
Type
Value
typegrid
" +"
Type
Value
typeborder
Type
Value
typegrid
" ``` ## `tabs` @@ -1709,7 +1721,7 @@ #### `Tabs closable` ``` -"


Tab 1
Tab 2
Tab 3
Tab 1
Tab 2
Tab 3
Tab 1
Tab 2
Tab 3
" +"


Tab 1
Tab 2
Tab 3
Tab 1
Tab 2
Tab 3
Tab 1
Tab 2
Tab 3
" ``` #### `Tabs disabled` @@ -1721,7 +1733,7 @@ #### `Tabs scroll` ``` -"


Table 1
Table 2
Table 3
Table 4
Table 5
Table 6
Table 7
Table 8
Table 9
Table 10
Table 11
Table 12
Table 13
Table 14
Table 15
Table 16
Table 17
Table 18
Table 19
Table 20
Table 1
Table 2
Table 3
Table 4
Table 5
Table 6
Table 7
Table 8
Table 9
Table 10
Table 11
Table 12
Table 13
Table 14
Table 15
Table 16
Table 17
Table 18
Table 19
Table 20
Table 1
Table 2
Table 3
Table 4
Table 5
Table 6
Table 7
Table 8
Table 9
Table 10
Table 11
Table 12
Table 13
Table 14
Table 15
Table 16
Table 17
Table 18
Table 19
Table 20


Table 1
Table 2
Table 3
Table 4
Table 5
Table 6
Table 7
Table 8
Table 9
Table 10
Table 11
Table 12
Table 13
Table 14
Table 15
Table 16
Table 17
Table 18
Table 19
Table 20
Table 1
Table 2
Table 3
Table 4
Table 5
Table 6
Table 7
Table 8
Table 9
Table 10
Table 11
Table 12
Table 13
Table 14
Table 15
Table 16
Table 17
Table 18
Table 19
Table 20
Table 1
Table 2
Table 3
Table 4
Table 5
Table 6
Table 7
Table 8
Table 9
Table 10
Table 11
Table 12
Table 13
Table 14
Table 15
Table 16
Table 17
Table 18
Table 19
Table 20
" +"


Table 1
Table 2
Table 3
Table 4
Table 5
Table 6
Table 7
Table 8
Table 9
Table 10
Table 11
Table 12
Table 13
Table 14
Table 15
Table 16
Table 17
Table 18
Table 19
Table 20
Table 1
Table 2
Table 3
Table 4
Table 5
Table 6
Table 7
Table 8
Table 9
Table 10
Table 11
Table 12
Table 13
Table 14
Table 15
Table 16
Table 17
Table 18
Table 19
Table 20
Table 1
Table 2
Table 3
Table 4
Table 5
Table 6
Table 7
Table 8
Table 9
Table 10
Table 11
Table 12
Table 13
Table 14
Table 15
Table 16
Table 17
Table 18
Table 19
Table 20


Table 1
Table 2
Table 3
Table 4
Table 5
Table 6
Table 7
Table 8
Table 9
Table 10
Table 11
Table 12
Table 13
Table 14
Table 15
Table 16
Table 17
Table 18
Table 19
Table 20
Table 1
Table 2
Table 3
Table 4
Table 5
Table 6
Table 7
Table 8
Table 9
Table 10
Table 11
Table 12
Table 13
Table 14
Table 15
Table 16
Table 17
Table 18
Table 19
Table 20
Table 1
Table 2
Table 3
Table 4
Table 5
Table 6
Table 7
Table 8
Table 9
Table 10
Table 11
Table 12
Table 13
Table 14
Table 15
Table 16
Table 17
Table 18
Table 19
Table 20
" ``` #### `Tabs size` @@ -1839,13 +1851,13 @@ #### `Tip closable` ``` -"
default
primary
success
warning
danger
custom closing content
" +"
default
primary
success
warning
danger
custom closing content
" ``` #### `Tip title` ``` -"
default
This is a default tip.
primary
This is a primary tip.
success
This is a success tip.
warning
This is a warning tip.
danger
This is a danger tip.
" +"
default
This is a default tip.
primary
This is a primary tip.
success
This is a success tip.
warning
This is a warning tip.
danger
This is a danger tip.
" ``` ## `tooltip` @@ -1865,19 +1877,19 @@ #### `Tooltip content` ``` -"
" +"
" ``` #### `Tooltip position` ``` -"
\"left\"
" +"
\"left\"
" ``` #### `Tooltip trigger` ``` -"
" +"
" ``` #### `Tooltip confirm` @@ -1892,7 +1904,7 @@ ``` "
0 / - 3
0 / + 3
0 / 2

You selected: [0,1]

" ``` @@ -1900,21 +1912,21 @@ ``` "
0 / - 0
全部策略
0 / + 0
全部策略
0 / 0

You selected: []

" ``` #### `Transfer customList` ``` -"
未分配
标准双人间
" +"
未分配
标准双人间
" ``` #### `Transfer getData` ``` -"


0 / - 3
0 / +"


0 / + 3
0 / 2

You selected: [0,1]

" ``` @@ -1922,7 +1934,7 @@ ``` "
0 / - 5
0 / + 5
0 / 0
" ``` @@ -1930,14 +1942,14 @@ ``` "
2 / - 5
0 / + 5
0 / 0

You checked left side: [0,2]

" ``` #### `Transfer tree` ``` -"
请选择
database
table1
class
student
table2
id
name
已选择
" +"
请选择
database
table1
class
student
table2
id
name
已选择
" ``` ## `tree` @@ -1951,7 +1963,7 @@ #### `Tree checkbox` ``` -"


First floor-1
First floor-2
" +"


First floor-1
First floor-2
" ``` #### `Tree contextmenu` @@ -1963,7 +1975,7 @@ #### `Tree custom` ``` -"
First floor-1
First floor-2
" +"
First floor-1
First floor-2
" ``` #### `Tree draggable` @@ -1975,7 +1987,7 @@ #### `Tree expandAll` ``` -"
First floor-1
Second floor-1.1
Third floor-1.1.1
First floor-2
Second floor-2.1
Third floor-2.1.1
Third floor-2.1.2
Second floor-2.2
Third floor-2.2.1
" +"
First floor-1
Second floor-1.1
Third floor-1.1.1
First floor-2
Second floor-2.1
Third floor-2.1.1
Third floor-2.1.2
Second floor-2.2
Third floor-2.2.1
" ``` #### `Tree filterable` @@ -1993,7 +2005,7 @@ #### `Tree select` ``` -"


First floor-1
First floor-2
Second floor-2.1
Third floor-2.1.1
Third floor-2.1.2
Second floor-2.2
" +"


First floor-1
First floor-2
Second floor-2.1
Third floor-2.1.1
Third floor-2.1.2
Second floor-2.2
" ``` #### `Tree uncorrelated` @@ -2039,13 +2051,13 @@ #### `Upload basic` ``` -"
只能上传JPG/PNG格式文件,且不超过500kb
" +"
只能上传JPG/PNG格式文件,且不超过500kb
" ``` #### `Upload directory` ``` -"
" +"
" ``` #### `Upload drag` @@ -2057,7 +2069,7 @@ #### `Upload files` ``` -"
test1.jpg
test2.png
test3.png
" +"
test1.jpg
test2.png
test3.png
" ``` #### `Upload gallery` @@ -2069,7 +2081,7 @@ #### `Upload manually` ``` -"
" +"
" ``` ## `wave` diff --git a/packages/kpc-vue/__tests__/__snapshots__/Vue Legacy Demos.md b/packages/kpc-vue/__tests__/__snapshots__/Vue Legacy Demos.md index 73fe9373d..4bbf48e58 100644 --- a/packages/kpc-vue/__tests__/__snapshots__/Vue Legacy Demos.md +++ b/packages/kpc-vue/__tests__/__snapshots__/Vue Legacy Demos.md @@ -11,19 +11,19 @@ #### `Badge basic` ``` -"
Message
" +"
Message
" ``` #### `Badge disabled` ``` -"
Message
" +"
Message
" ``` #### `Badge text` ``` -"
Messagenew
6
19
99+
" +"
Messagenew
6
19
99+
" ``` ## `breadcrumb` @@ -48,51 +48,51 @@ #### `Button basic` ``` -"
" +"
" ``` #### `Button disabled` ``` -"
" +"
" ``` #### `Button ghost` ``` -"
" +"
" ``` #### `Button group` ``` -"


纵向按钮组



单选按钮组

多选按钮组

有间隔的按钮组

" +"


纵向按钮组



单选按钮组

多选按钮组

有间隔的按钮组

支持自定义ButtonGroup下的Button宽度

" ``` #### `Button icon` ``` -"
" +"
" ``` #### `Button loading` ``` -"


" +"


" ``` #### `Button size` ``` -"


" +"


" ``` #### `Button tagName` ``` -"
div元素按钮
disabled div button
超链接按钮
" +"
div元素按钮
disabled div button
超链接按钮
" ``` ## `card` @@ -132,25 +132,25 @@ #### `Carousel autoplay` ``` -"" +"" ``` #### `Carousel basic` ``` -"" +"" ``` #### `Carousel effect` ``` -"" +"" ``` #### `Carousel multiple` ``` -"" +"" ``` ## `cascader` @@ -332,13 +332,13 @@ #### `Config basic` ``` -"" +"" ``` #### `Config disableWave` ``` -"" +"" ``` ## `copy` @@ -354,7 +354,7 @@ ``` "
Copy -
" +
" ``` ## `datepicker` @@ -472,55 +472,55 @@ #### `Dialog asyncClose` ``` -"
" +"
" ``` #### `Dialog basic` ``` -"
" +"
" ``` #### `Dialog block` ``` -"
" +"
" ``` #### `Dialog destroy` ``` -"
" +"
" ``` #### `Dialog events` ``` -"
" +"
" ``` #### `Dialog overlay` ``` -"
" +"
" ``` #### `Dialog size` ``` -"


" +"


" ``` #### `Dialog static` ``` -"


" +"




" ``` #### `Dialog terminate` ``` -"
" +"
" ``` ## `divider` @@ -568,25 +568,25 @@ #### `Drawer basic` ``` -"
" +"
" ``` #### `Drawer content` ``` -"
" +"
" ``` #### `Drawer overlay` ``` -"
" +"
" ``` #### `Drawer placement` ``` -"


" +"


" ``` ## `dropdown` @@ -594,14 +594,14 @@ #### `Dropdown basic` ``` -"
" ``` #### `Dropdown checkbox` ``` -"
" +"
" ``` #### `Dropdown contextmenu` @@ -615,38 +615,38 @@ #### `Dropdown disabled` ``` -"
" ``` #### `Dropdown nested` ``` -"
" ``` #### `Dropdown position` ``` -"
" ``` #### `Dropdown tooltip` ``` -"
" +"
" ``` #### `Dropdown trigger` ``` -"
" ``` @@ -675,7 +675,7 @@ #### `Ellipsis custom` ``` -"
" +"
" ``` #### `Ellipsis position` @@ -689,13 +689,13 @@ #### `Form basic` ``` -"
请选择
0
0100
" +"
请选择
0
0100
" ``` #### `Form custom` ``` -"
" +"
" ``` #### `Form label` @@ -707,7 +707,7 @@ #### `Form layout` ``` -"
请选择
" +"
请选择
" ``` #### `Form remote` @@ -822,7 +822,7 @@ #### `Input blocks` ``` -"
http://
.com







http://
.com
" +"
http://
.com







http://
.com
" ``` #### `Input clearable` @@ -858,7 +858,7 @@ #### `Input search` ``` -"

" +"

" ``` #### `Input showCount` @@ -870,7 +870,7 @@ #### `Input size` ``` -"



http://
.com



" +"



http://
.com



" ``` #### `Input textarea` @@ -886,7 +886,7 @@ ``` "
LOGO
menu 1
sub menu 1
sub menu 2
sub menu 3
sub menu 4
menu 2
menu 3 -
sub menu 1
sub menu 2
sub menu 3
sub menu 4
menu 4
Home
Detail
content
" +
sub menu 1
sub menu 2
sub menu 3
sub menu 4
menu 4
Home
Detail
content
" ``` #### `Layout asideFix` @@ -894,7 +894,7 @@ ``` "
LOGO
menu 1
sub menu 1
sub menu 2
sub menu 3
sub menu 4
menu 2
menu 3 -
sub menu 1
sub menu 2
sub menu 3
sub menu 4
menu 4
Home
Detail
+
sub menu 1
sub menu 2
sub menu 3
sub menu 4
menu 4
Home
Detail
content
content @@ -1325,7 +1325,7 @@
menu 4
menu 1
sub menu 1
sub menu 2
sub menu 3
sub menu 4
menu 2
menu 3
sub menu 1
sub menu 2
sub menu 3
sub menu 4
menu 4
Home
Detail
- 切换主题:
" + 切换主题:
" ``` ## `menu` @@ -1357,7 +1357,7 @@ #### `Menu collapse` ``` -"
展开
收起
dark
light


" +"
展开
收起
dark
light


" ``` #### `Menu dot` @@ -1371,7 +1371,7 @@ ``` "
menu 1
menu 2
menu 3 -
menu 4


dark
light
" +
menu 4


dark
light
" ``` #### `Menu recursive` @@ -1383,7 +1383,7 @@ #### `Menu showCollapseArrow` ``` -"
隐藏折叠按钮
展示折叠按钮


+"
隐藏折叠按钮
展示折叠按钮


自定义Header
menu 0
title 1
menu 1
menu 2
menu 3menu 3menu 3menu 3menu 3menu 3
title 2
menu 1
menu 2
sub menu 6 @@ -1395,7 +1395,7 @@ #### `Menu size` ``` -"
展开
收起
vertical
horizontal


Header
menu 1
menu 2
menu 3 +"
展开
收起
vertical
horizontal


Header
menu 1
menu 2
menu 3
sub menu 1
sub menu 2
sub menu 3
sub menu 4
option 1
option 2
menu 4
" @@ -1404,7 +1404,7 @@ #### `Menu theme` ``` -"


Header
menu 1
menu 2
menu 3 +"


Header
menu 1
menu 2
menu 3
sub menu 1
sub menu 2
sub menu 3
sub menu 4
menu 4
" ``` @@ -1413,19 +1413,19 @@ #### `Message basic` ``` -"
" +"
" ``` #### `Message config` ``` -"
" +"
" ``` #### `Message duration` ``` -"
" +"
" ``` ## `pagination` @@ -1433,49 +1433,49 @@ #### `Pagination basic` ``` -"
共 200 条
10 条 / 页
共 200 条
20 条 / 页
共 200 条
20 条 / 页
" +"
共 200 条
10 条 / 页
共 200 条
20 条 / 页
共 200 条
20 条 / 页
" ``` #### `Pagination counts` ``` -"
共 200 条
10 条 / 页
共 200 条
10 条 / 页
" +"
共 200 条
10 条 / 页
共 200 条
10 条 / 页
" ``` #### `Pagination current` ``` -"
共 200 条
10 条 / 页


共 200 条
20 条 / 页
" +"
共 200 条
10 条 / 页


共 200 条
20 条 / 页
" ``` #### `Pagination disable` ``` -"
共 200 条
10 条 / 页
共 200 条
10 条 / 页
前往
" +"
共 200 条
10 条 / 页
共 200 条
10 条 / 页
前往
" ``` #### `Pagination flat` ``` -"
共 200 条
10 条 / 页
前往
共 200 条
10 条 / 页
前往
共 200 条
10 条 / 页
前往
共 200 条
10 条 / 页
前往
" +"
共 200 条
10 条 / 页
前往
共 200 条
10 条 / 页
前往
共 200 条
10 条 / 页
前往
共 200 条
10 条 / 页
前往
" ``` #### `Pagination goto` ``` -"
共 200 条
10 条 / 页
前往
" +"
共 200 条
10 条 / 页
前往
" ``` #### `Pagination simple` ``` -"
1
/ 20
1
/ 20
1
/ 20
1
/ 20
" +"
1
/ 20
1
/ 20
1
/ 20
1
/ 20
" ``` #### `Pagination size` ``` -"
共 200 条
10 条 / 页
共 200 条
10 条 / 页
共 200 条
10 条 / 页
共 200 条
10 条 / 页
" +"
共 200 条
10 条 / 页
共 200 条
10 条 / 页
共 200 条
10 条 / 页
共 200 条
10 条 / 页
" ``` #### `Pagination noBoard` @@ -1489,33 +1489,33 @@ #### `Popover basic` ``` -"
+"
-
" +
" ``` #### `Popover button` ``` -"
" +"
" ``` #### `Popover content` ``` -"
" +"
" ``` #### `Popover text` ``` -"
" +"
" ``` #### `Popover type` ``` -"
" +"
" ``` ## `progress` @@ -1532,7 +1532,7 @@ "
正在上传
40% -
" +
" ``` #### `Progress circle` @@ -1546,16 +1546,16 @@ ``` "
状态: -
+
进度: -


40%
40%
40%
" +


40%
40%
40%
" ``` #### `Progress customColor` ``` -"
25%
25%
25%
" +"
25%
25%
25%
" ``` #### `Progress innerText` @@ -1848,19 +1848,19 @@ #### `Slider basic` ``` -"
60
0MB100MB
277
50500
" +"
60
0MB100MB
277
50500
" ``` #### `Slider disabled` ``` -"
50
0100
55
80
50100
-
" +"
50
0100
55
80
50100
-
" ``` #### `Slider dynamicStep` ``` -"
0
0500
" +"
0
0500
" ``` #### `Slider marks` @@ -1872,25 +1872,25 @@ #### `Slider points` ``` -"
45
0100
0.3
0.6
01
-
45
0100
" +"
45
0100
0.3
0.6
01
-
45
0100
" ``` #### `Slider range` ``` -"
50
76
0100
-
" +"
50
76
0100
-
" ``` #### `Slider step` ``` -"
0
50
50500
0.234234
01
" +"
0
50
50500
0.234234
01
" ``` #### `Slider tooltip` ``` -"
277
50500
300
50500
" +"
277
50500
300
50500
" ``` ## `spin` @@ -1904,7 +1904,7 @@ #### `Spin overlay` ``` -"
表头1
表头2
第一行哈哈2
第二行哈哈2
第三行哈哈3
" +"
表头1
表头2
第一行哈哈2
第二行哈哈2
第三行哈哈3
" ``` ## `spinner` @@ -1912,49 +1912,49 @@ #### `Spinner basic` ``` -"
" +"
" ``` #### `Spinner dynamicStep` ``` -"
" +"
" ``` #### `Spinner forceStep` ``` -"
" +"
" ``` #### `Spinner formatter` ``` -"
" +"
" ``` #### `Spinner precision` ``` -"
" +"
" ``` #### `Spinner size` ``` -"
" +"
" ``` #### `Spinner step` ``` -"
" +"
" ``` #### `Spinner vertical` ``` -"
" +"
" ``` ## `split` @@ -1968,7 +1968,7 @@ #### `Split complex` ``` -"
名称
网段
操作
name 0127.0.0.0删除
name 1127.0.0.1删除
name 2127.0.0.2删除
name 3127.0.0.3删除
name 4127.0.0.4删除
name 5127.0.0.5删除
name 6127.0.0.6删除
name 7127.0.0.7删除
name 8127.0.0.8删除
name 9127.0.0.9删除
name 10127.0.0.10删除
详情
流量统计
标签
" +"
名称
网段
操作
name 0127.0.0.0删除
name 1127.0.0.1删除
name 2127.0.0.2删除
name 3127.0.0.3删除
name 4127.0.0.4删除
name 5127.0.0.5删除
name 6127.0.0.6删除
name 7127.0.0.7删除
name 8127.0.0.8删除
name 9127.0.0.9删除
name 10127.0.0.10删除
详情
流量统计
标签
" ``` #### `Split nested` @@ -1994,13 +1994,13 @@ #### `Steps basic` ``` -"
1
选择配置
请选择主机的配置信息
2
选择弹性IP
请选择主机弹性IP的配置信息
3
设置VPC
" +"
1
选择配置
请选择主机的配置信息
2
选择弹性IP
请选择主机弹性IP的配置信息
3
设置VPC
" ``` #### `Steps clickable` ``` -"
1
选择配置
请选择主机的配置信息
2
选择弹性IP
请选择主机弹性IP的配置信息
3
设置VPC

选择配置
请选择主机的配置信息
2
选择弹性IP
请选择主机弹性IP的配置信息
3
设置VPC
" +"
1
选择配置
请选择主机的配置信息
2
选择弹性IP
请选择主机弹性IP的配置信息
3
设置VPC

选择配置
请选择主机的配置信息
2
选择弹性IP
请选择主机弹性IP的配置信息
3
设置VPC
" ``` #### `Steps error` @@ -2012,19 +2012,19 @@ #### `Steps line` ``` -"
1
选择配置
请选择主机的配置信息
2
选择弹性IP
请选择主机弹性IP的配置信息
3
设置VPC
1
选择配置
请选择主机的配置信息
2
选择弹性IP
请选择主机弹性IP的配置信息
3
设置VPC
" +"
1
选择配置
请选择主机的配置信息
2
选择弹性IP
请选择主机弹性IP的配置信息
3
设置VPC
1
选择配置
请选择主机的配置信息
2
选择弹性IP
请选择主机弹性IP的配置信息
3
设置VPC
" ``` #### `Steps simple` ``` -"
选择配置
请选择主机的配置信息
选择弹性IP
请选择主机弹性IP的配置信息
设置VPC
" +"
选择配置
请选择主机的配置信息
选择弹性IP
请选择主机弹性IP的配置信息
设置VPC
" ``` #### `Steps vertical` ``` -"
1
选择配置
请选择主机的配置信息
2
选择弹性IP
请选择主机弹性IP的配置信息
3
设置VPC
1
选择配置
请选择主机的配置信息
2
选择弹性IP
请选择主机弹性IP的配置信息
3
设置VPC
1
选择配置
请选择主机的配置信息
2
选择弹性IP
请选择主机弹性IP的配置信息
3
设置VPC
选择配置
请选择主机的配置信息
选择弹性IP
请选择主机弹性IP的配置信息
设置VPC
" +"
1
选择配置
请选择主机的配置信息
2
选择弹性IP
请选择主机弹性IP的配置信息
3
设置VPC
1
选择配置
请选择主机的配置信息
2
选择弹性IP
请选择主机弹性IP的配置信息
3
设置VPC
1
选择配置
请选择主机的配置信息
2
选择弹性IP
请选择主机弹性IP的配置信息
3
设置VPC
选择配置
请选择主机的配置信息
选择弹性IP
请选择主机弹性IP的配置信息
设置VPC
" ``` ## `switch` @@ -2032,37 +2032,43 @@ #### `Switch basic` ``` -"
" +"
" +``` + +#### `Switch beforeChange` + +``` +"
" ``` #### `Switch disabled` ``` -"
" +"
" ``` #### `Switch onOff` ``` -"
" +"
" ``` #### `Switch size` ``` "
- large:
- default:
- small:
- mini:
" + large:
+ default:
+ small:
+ mini:
" ``` #### `Switch value` ``` -"
+"
false -
+
\"1\"
" ``` @@ -2070,7 +2076,7 @@ #### `Switch widthHeight` ``` -"
关闭
开启
关闭
开启
" +"
关闭
开启
关闭
开启
" ``` ## `table` @@ -2078,51 +2084,51 @@ #### `Table animation` ``` -"
Title 1
Title 3
Cell 1-1Cell 1-3
Cell 2-1Cell 2-3
Title 1
Title 3
Cell 1-1Cell 1-3
Cell 2-1Cell 2-3
" +
Title 1
Title 3
Cell 1-1Cell 1-3
Cell 2-1Cell 2-3
Title 1
Title 3
Cell 1-1Cell 1-3
Cell 2-1Cell 2-3
" ``` #### `Table basic` ``` -"
Title 1
Title 2
Cell 1-1Cell 1-2
Cell 2-1Cell 2-2
" +"
Title 1
Title 2
Cell 1-1Cell 1-2
Cell 2-1Cell 2-2
" ``` #### `Table checkType` ``` -"
Title
checkbox 1
checkbox 2
Title
radio 1
radio 2
Title
no check 1
no check 2
" +"
Title
checkbox 1
checkbox 2
Title
radio 1
radio 2
Title
no check 1
no check 2
" ``` #### `Table checkedKeys` ``` -"
Radio without rowKey
default checked by index
unchecked
Radio with rowKey
default checked by rowKey
unchecked
checkbox without rowKey
default checked by index
unchecked
default checked
checkbox with rowKey
default checked by rowKey
unchecked
" +"
Radio without rowKey
default checked by index
unchecked
Radio with rowKey
default checked by rowKey
unchecked
checkbox without rowKey
default checked by index
unchecked
default checked
checkbox with rowKey
default checked by rowKey
unchecked
" ``` #### `Table disableRow` ``` -"
odd rows are uncheckable
1
2
3
4
5
" +"
odd rows are uncheckable
1
2
3
4
5
" ``` #### `Table draggable` ``` -"
Name
IP
Operation
name 1127.0.0.1Remove
name 2127.0.0.2Remove
name 3127.0.0.3Remove
name 4127.0.0.4Remove
name 5127.0.0.5Remove
name 6127.0.0.6Remove
name 7127.0.0.7Remove
name 8127.0.0.8Remove
name 9127.0.0.9Remove
name 10127.0.0.10Remove
name 11127.0.0.11Remove
name 12127.0.0.12Remove
name 13127.0.0.13Remove
name 14127.0.0.14Remove
name 15127.0.0.15Remove
name 16127.0.0.16Remove
name 17127.0.0.17Remove
name 18127.0.0.18Remove
name 19127.0.0.19Remove
name 20127.0.0.20Remove
" +"
Name
IP
Operation
name 1127.0.0.1Remove
name 2127.0.0.2Remove
name 3127.0.0.3Remove
name 4127.0.0.4Remove
name 5127.0.0.5Remove
name 6127.0.0.6Remove
name 7127.0.0.7Remove
name 8127.0.0.8Remove
name 9127.0.0.9Remove
name 10127.0.0.10Remove
name 11127.0.0.11Remove
name 12127.0.0.12Remove
name 13127.0.0.13Remove
name 14127.0.0.14Remove
name 15127.0.0.15Remove
name 16127.0.0.16Remove
name 17127.0.0.17Remove
name 18127.0.0.18Remove
name 19127.0.0.19Remove
name 20127.0.0.20Remove
" ``` #### `Table empty` ``` -"
表头1
表头2
暂无数据
表头1
表头2
没有数据
" +"
表头1
表头2
暂无数据
表头1
表头2
没有数据
" ``` #### `Table export` ``` -"
定义该列单元格内容
普通文本
自定义导出文本
操作
第一行哈哈1 +"
定义该列单元格内容
普通文本
自定义导出文本
操作
第一行哈哈1 自定义1 删除
第二行哈哈2 自定义2 @@ -2132,109 +2138,115 @@ #### `Table fixColumn` ``` -"
Name
Column1
Column2
Column3
Column4
Action
Johntesttesttesttestaction
Tomtesttesttesttestaction
Javeytesttesttesttestaction
Name
Column1
Column2
Column3
Column4
Action
Johntesttesttesttestaction
Tomtesttesttesttestaction
Javeytesttesttesttestaction
" +"
Name
Column1
Column2
Column3
Column4
Action
Johntesttesttesttestaction
Tomtesttesttesttestaction
Javeytesttesttesttestaction
Name
Column1
Column2
Column3
Column4
Action
Johntesttesttesttestaction
Tomtesttesttesttestaction
Javeytesttesttesttestaction
" ``` #### `Table fixHeader` ``` -"
100px
表头固定,但内容没有超出最高高度
100px
表头固定啦
下拉
yeah!
" +"
100px
表头固定,但内容没有超出最高高度
100px
表头固定啦
下拉
yeah!
" ``` #### `Table group` ``` -"
名称
状态
主机1{data.status === 'active' ? '运行中' : '已关闭'}
主机2{data.status === 'active' ? '运行中' : '已关闭'}
主机3{data.status === 'active' ? '运行中' : '已关闭'}
名称
状态
主机1{data.status === 'active' ? '运行中' : '已关闭'}
主机2{data.status === 'active' ? '运行中' : '已关闭'}
主机3{data.status === 'active' ? '运行中' : '已关闭'}
" +"
名称
状态
主机1{data.status === 'active' ? '运行中' : '已关闭'}
主机2{data.status === 'active' ? '运行中' : '已关闭'}
主机3{data.status === 'active' ? '运行中' : '已关闭'}
名称
状态
主机1{data.status === 'active' ? '运行中' : '已关闭'}
主机2{data.status === 'active' ? '运行中' : '已关闭'}
主机3{data.status === 'active' ? '运行中' : '已关闭'}
" ``` #### `Table groupHeader` ``` -"
Weekday
Forenoon
Afternoon
Time
Classes
Time
Class 5
Class 6
Class 7
Class 1
Class 2
Class 3
Class 4
Monday08:00 ~ 12:00EnglishMathematicsChineseHistory14:00 ~ 17:00GeopraghyEnglishMathematics
Tuesday08:00 ~ 12:00MathematicsChineseHistoryGeopraghy14:00 ~ 17:00EnglishMathematicsChinese
Wendesday08:00 ~ 12:00ChineseHistoryGeopraghyEnglish14:00 ~ 17:00MathematicsChineseHistory
Thursday08:00 ~ 12:00HistoryGeopraghyEnglishMathematics14:00 ~ 17:00ChineseHistoryGeopraghy
Friday08:00 ~ 12:00GeopraghyEnglishMathematicsChinese14:00 ~ 17:00HistoryGeopraghyEnglish
" +"
Weekday
Forenoon
Afternoon
Time
Classes
Time
Class 5
Class 6
Class 7
Class 1
Class 2
Class 3
Class 4
Monday08:00 ~ 12:00EnglishMathematicsChineseHistory14:00 ~ 17:00GeopraghyEnglishMathematics
Tuesday08:00 ~ 12:00MathematicsChineseHistoryGeopraghy14:00 ~ 17:00EnglishMathematicsChinese
Wendesday08:00 ~ 12:00ChineseHistoryGeopraghyEnglish14:00 ~ 17:00MathematicsChineseHistory
Thursday08:00 ~ 12:00HistoryGeopraghyEnglishMathematics14:00 ~ 17:00ChineseHistoryGeopraghy
Friday08:00 ~ 12:00GeopraghyEnglishMathematicsChinese14:00 ~ 17:00HistoryGeopraghyEnglish
" +``` + +#### `Table hidden` + +``` +"
Title 1
Title 2
Title 3
Cell 1-1Cell 1-2cell 1-3
Cell 2-1Cell 2-2cell 2-3

无数据展示

Title 1
Title 2
Title 3
暂无数据
" ``` #### `Table hideHeader` ``` -"

hideHeader:

Cell 1-1Cell 1-2
Cell 2-1Cell 2-2
" +"

hideHeader:

Cell 1-1Cell 1-2
Cell 2-1Cell 2-2
" ``` #### `Table loading` ``` -"
表头1
表头2
第一行哈哈1
第二行哈哈2
第三行哈哈3
" +"
表头1
表头2
第一行哈哈1
第二行哈哈2
第三行哈哈3
" ``` #### `Table mergeCell` ``` -"
Weekday
Forenoon
Afternoon
Time
Class 1
Class 2
Class 3
Class 4
Class 5
Class 6
Class 7
Time
Monday08:00 ~ 12:00EnglishMathematicsHistoryEnglishHistoryEnglishHistory14:00 ~ 17:00
TuesdayEnglishGeopraghyHistoryEnglishHistoryMathematics
WendesdayHistoryChineseHistoryEnglishChineseHistory
ThursdayHistoryEnglishGeopraghyMathematicsGeopraghyEnglishMathematics
FridayGeopraghyEnglishGeopraghyEnglish
SaturdayGeopraghyEnglishGeopraghyEnglish
Weekday
Forenoon
Afternoon
Time
Class 1
Class 2
Class 3
Class 4
Class 5
Class 6
Class 7
Time
Monday08:00 ~ 12:00EnglishMathematicsHistoryEnglishHistoryEnglishHistory14:00 ~ 17:00
TuesdayEnglishGeopraghyHistoryEnglishHistoryMathematics
WendesdayHistoryChineseHistoryEnglishChineseHistory
ThursdayHistoryEnglishGeopraghyMathematicsGeopraghyEnglishMathematics
FridayGeopraghyEnglishGeopraghyEnglish
SaturdayGeopraghyEnglishGeopraghyEnglish
" +"
Weekday
Forenoon
Afternoon
Time
Class 1
Class 2
Class 3
Class 4
Class 5
Class 6
Class 7
Time
Monday08:00 ~ 12:00EnglishMathematicsHistoryEnglishHistoryEnglishHistory14:00 ~ 17:00
TuesdayEnglishGeopraghyHistoryEnglishHistoryMathematics
WendesdayHistoryChineseHistoryEnglishChineseHistory
ThursdayHistoryEnglishGeopraghyMathematicsGeopraghyEnglishMathematics
FridayGeopraghyEnglishGeopraghyEnglish
SaturdayGeopraghyEnglishGeopraghyEnglish
Weekday
Forenoon
Afternoon
Time
Class 1
Class 2
Class 3
Class 4
Class 5
Class 6
Class 7
Time
Monday08:00 ~ 12:00EnglishMathematicsHistoryEnglishHistoryEnglishHistory14:00 ~ 17:00
TuesdayEnglishGeopraghyHistoryEnglishHistoryMathematics
WendesdayHistoryChineseHistoryEnglishChineseHistory
ThursdayHistoryEnglishGeopraghyMathematicsGeopraghyEnglishMathematics
FridayGeopraghyEnglishGeopraghyEnglish
SaturdayGeopraghyEnglishGeopraghyEnglish
" ``` #### `Table pagination` ``` -"
Name
IP
name 1127.0.0.1
name 2127.0.0.2
name 3127.0.0.3
name 4127.0.0.4
name 5127.0.0.5
name 6127.0.0.6
name 7127.0.0.7
name 8127.0.0.8
name 9127.0.0.9
name 10127.0.0.10
共 20 条
10 条 / 页
" +"
Name
IP
name 1127.0.0.1
name 2127.0.0.2
name 3127.0.0.3
name 4127.0.0.4
name 5127.0.0.5
name 6127.0.0.6
name 7127.0.0.7
name 8127.0.0.8
name 9127.0.0.9
name 10127.0.0.10
共 20 条
10 条 / 页
" ``` #### `Table resizable` ``` -"
通过minColWidth控制最小宽度100px
隐藏列
单独设置最小宽度300px
标题
ABC
ABC
" +"
通过minColWidth控制最小宽度100px
隐藏列
单独设置最小宽度300px
标题
ABC
ABC
" ``` #### `Table rowCheckable` ``` -"
点击整行不选中
B
AB
A点我不会选中整行
点击整行选中
B
A任何位置都可以哦~
A点我会选中整行
" +"
点击整行不选中
B
AB
A点我不会选中整行
点击整行选中
B
A任何位置都可以哦~
A点我会选中整行
" ``` #### `Table rowClassName` ``` -"
rowClassName
1
2
3
4
5
stripe
1
2
3
4
5
" +"
rowClassName
1
2
3
4
5
stripe
1
2
3
4
5
" ``` #### `Table rowExpandable` ``` -"
点击整行展开内容
Javey
Jiawei
点击+,展开内容
Javey
Jiawei
" +"
点击整行展开内容
Javey
Jiawei
点击+,展开内容
Javey
Jiawei
" ``` #### `Table scheme` ``` -"
定义该列单元格内容
key形式
key为一个路径字符串
没有这个key,则返回空
虚拟DOM获取到了item.bitem.c.c1
" +"
定义该列单元格内容
key形式
key为一个路径字符串
没有这个key,则返回空
虚拟DOM获取到了item.bitem.c.c1
" ``` #### `Table scrollToRow` ``` -"
Name
IP
Operation
name 1127.0.0.1Remove
name 2127.0.0.2Remove
name 3127.0.0.3Remove
name 4127.0.0.4Remove
name 5127.0.0.5Remove
name 6127.0.0.6Remove
name 7127.0.0.7Remove
name 8127.0.0.8Remove
name 9127.0.0.9Remove
name 10127.0.0.10Remove
name 11127.0.0.11Remove
name 12127.0.0.12Remove
name 13127.0.0.13Remove
name 14127.0.0.14Remove
name 15127.0.0.15Remove
name 16127.0.0.16Remove
name 17127.0.0.17Remove
name 18127.0.0.18Remove
name 19127.0.0.19Remove
name 20127.0.0.20Remove
name 21127.0.0.21Remove
name 22127.0.0.22Remove
name 23127.0.0.23Remove
name 24127.0.0.24Remove
name 25127.0.0.25Remove
name 26127.0.0.26Remove
name 27127.0.0.27Remove
name 28127.0.0.28Remove
name 29127.0.0.29Remove
name 30127.0.0.30Remove
name 31127.0.0.31Remove
name 32127.0.0.32Remove
name 33127.0.0.33Remove
name 34127.0.0.34Remove
name 35127.0.0.35Remove
name 36127.0.0.36Remove
name 37127.0.0.37Remove
name 38127.0.0.38Remove
name 39127.0.0.39Remove
name 40127.0.0.40Remove
name 41127.0.0.41Remove
name 42127.0.0.42Remove
name 43127.0.0.43Remove
name 44127.0.0.44Remove
name 45127.0.0.45Remove
name 46127.0.0.46Remove
name 47127.0.0.47Remove
name 48127.0.0.48Remove
name 49127.0.0.49Remove
name 50127.0.0.50Remove
name 51127.0.0.51Remove
name 52127.0.0.52Remove
name 53127.0.0.53Remove
name 54127.0.0.54Remove
name 55127.0.0.55Remove
name 56127.0.0.56Remove
name 57127.0.0.57Remove
name 58127.0.0.58Remove
name 59127.0.0.59Remove
name 60127.0.0.60Remove
name 61127.0.0.61Remove
name 62127.0.0.62Remove
name 63127.0.0.63Remove
name 64127.0.0.64Remove
name 65127.0.0.65Remove
name 66127.0.0.66Remove
name 67127.0.0.67Remove
name 68127.0.0.68Remove
name 69127.0.0.69Remove
name 70127.0.0.70Remove
name 71127.0.0.71Remove
name 72127.0.0.72Remove
name 73127.0.0.73Remove
name 74127.0.0.74Remove
name 75127.0.0.75Remove
name 76127.0.0.76Remove
name 77127.0.0.77Remove
name 78127.0.0.78Remove
name 79127.0.0.79Remove
name 80127.0.0.80Remove
name 81127.0.0.81Remove
name 82127.0.0.82Remove
name 83127.0.0.83Remove
name 84127.0.0.84Remove
name 85127.0.0.85Remove
name 86127.0.0.86Remove
name 87127.0.0.87Remove
name 88127.0.0.88Remove
name 89127.0.0.89Remove
name 90127.0.0.90Remove
name 91127.0.0.91Remove
name 92127.0.0.92Remove
name 93127.0.0.93Remove
name 94127.0.0.94Remove
name 95127.0.0.95Remove
name 96127.0.0.96Remove
name 97127.0.0.97Remove
name 98127.0.0.98Remove
name 99127.0.0.99Remove
name 100127.0.0.100Remove
" +"
Name
IP
Operation
name 1127.0.0.1Remove
name 2127.0.0.2Remove
name 3127.0.0.3Remove
name 4127.0.0.4Remove
name 5127.0.0.5Remove
name 6127.0.0.6Remove
name 7127.0.0.7Remove
name 8127.0.0.8Remove
name 9127.0.0.9Remove
name 10127.0.0.10Remove
name 11127.0.0.11Remove
name 12127.0.0.12Remove
name 13127.0.0.13Remove
name 14127.0.0.14Remove
name 15127.0.0.15Remove
name 16127.0.0.16Remove
name 17127.0.0.17Remove
name 18127.0.0.18Remove
name 19127.0.0.19Remove
name 20127.0.0.20Remove
name 21127.0.0.21Remove
name 22127.0.0.22Remove
name 23127.0.0.23Remove
name 24127.0.0.24Remove
name 25127.0.0.25Remove
name 26127.0.0.26Remove
name 27127.0.0.27Remove
name 28127.0.0.28Remove
name 29127.0.0.29Remove
name 30127.0.0.30Remove
name 31127.0.0.31Remove
name 32127.0.0.32Remove
name 33127.0.0.33Remove
name 34127.0.0.34Remove
name 35127.0.0.35Remove
name 36127.0.0.36Remove
name 37127.0.0.37Remove
name 38127.0.0.38Remove
name 39127.0.0.39Remove
name 40127.0.0.40Remove
name 41127.0.0.41Remove
name 42127.0.0.42Remove
name 43127.0.0.43Remove
name 44127.0.0.44Remove
name 45127.0.0.45Remove
name 46127.0.0.46Remove
name 47127.0.0.47Remove
name 48127.0.0.48Remove
name 49127.0.0.49Remove
name 50127.0.0.50Remove
name 51127.0.0.51Remove
name 52127.0.0.52Remove
name 53127.0.0.53Remove
name 54127.0.0.54Remove
name 55127.0.0.55Remove
name 56127.0.0.56Remove
name 57127.0.0.57Remove
name 58127.0.0.58Remove
name 59127.0.0.59Remove
name 60127.0.0.60Remove
name 61127.0.0.61Remove
name 62127.0.0.62Remove
name 63127.0.0.63Remove
name 64127.0.0.64Remove
name 65127.0.0.65Remove
name 66127.0.0.66Remove
name 67127.0.0.67Remove
name 68127.0.0.68Remove
name 69127.0.0.69Remove
name 70127.0.0.70Remove
name 71127.0.0.71Remove
name 72127.0.0.72Remove
name 73127.0.0.73Remove
name 74127.0.0.74Remove
name 75127.0.0.75Remove
name 76127.0.0.76Remove
name 77127.0.0.77Remove
name 78127.0.0.78Remove
name 79127.0.0.79Remove
name 80127.0.0.80Remove
name 81127.0.0.81Remove
name 82127.0.0.82Remove
name 83127.0.0.83Remove
name 84127.0.0.84Remove
name 85127.0.0.85Remove
name 86127.0.0.86Remove
name 87127.0.0.87Remove
name 88127.0.0.88Remove
name 89127.0.0.89Remove
name 90127.0.0.90Remove
name 91127.0.0.91Remove
name 92127.0.0.92Remove
name 93127.0.0.93Remove
name 94127.0.0.94Remove
name 95127.0.0.95Remove
name 96127.0.0.96Remove
name 97127.0.0.97Remove
name 98127.0.0.98Remove
name 99127.0.0.99Remove
name 100127.0.0.100Remove
" ``` #### `Table selectedKeys` ``` -"
表头1
表头2
第一行哈哈
第二行哈哈
表头1
表头2
第一行哈哈
第二行哈哈
" +"
表头1
表头2
第一行哈哈
第二行哈哈
表头1
表头2
第一行哈哈
第二行哈哈
" ``` #### `Table showIndeterminate` ``` -"
表头1
表头2
第一行哈哈2
第二行哈哈2
" +"
表头1
表头2
第一行哈哈2
第二行哈哈2
" ``` #### `Table sort` ``` -"
姓名
年龄
aa1
cc5
bb9
" +"
姓名
年龄
aa1
cc5
bb9
" ``` #### `Table stickHeader` ``` -"
姓名
性别
+"
姓名
性别
Javey male @@ -2248,27 +2260,27 @@ #### `Table stickScrollbar` ``` -"
Name
Column1
Column2
Column3
Column4
Action
Johntesttesttesttestaction
Tomtesttesttesttestaction
Javeytesttesttesttestaction
" +"
Name
Column1
Column2
Column3
Column4
Action
Johntesttesttesttestaction
Tomtesttesttesttestaction
Javeytesttesttesttestaction
" ``` #### `Table title` ``` -"
自定义表头内容
表头2
第一行哈哈2
第二行哈哈2
" +"
自定义表头内容
表头2
第一行哈哈2
第二行哈哈2
" ``` #### `Table tooltip` ``` -"
表头1
表头2
第一行哈哈1
第二行哈哈2
第三行哈哈3
" +"
表头1
表头2
第一行哈哈1
第二行哈哈2
第三行哈哈3
" ``` #### `Table tree` ``` -"
Name
Size
Audios +"
Name
Size
Audios 12MB -
Images +
Images 14MB
doc.pdf 18MB @@ -2278,7 +2290,7 @@ #### `Table type` ``` -"
Type
Value
typeborder
Type
Value
typegrid
" +"
Type
Value
typeborder
Type
Value
typegrid
" ``` ## `tabs` @@ -2304,25 +2316,25 @@ #### `Tabs closable` ``` -"


+"


Tab 1 -
+
Tab 2 -
+
Tab 3 -
+
Tab 1 -
+
Tab 2 -
+
Tab 3 -
+
Tab 1 -
+
Tab 2 -
+
Tab 3 -
" +
" ``` #### `Tabs disabled` @@ -2334,7 +2346,7 @@ #### `Tabs scroll` ``` -"


Table 1
Table 2
Table 3
Table 4
Table 5
Table 6
Table 7
Table 8
Table 9
Table 10
Table 11
Table 12
Table 13
Table 14
Table 15
Table 16
Table 17
Table 18
Table 19
Table 20
Table 1
Table 2
Table 3
Table 4
Table 5
Table 6
Table 7
Table 8
Table 9
Table 10
Table 11
Table 12
Table 13
Table 14
Table 15
Table 16
Table 17
Table 18
Table 19
Table 20
Table 1
Table 2
Table 3
Table 4
Table 5
Table 6
Table 7
Table 8
Table 9
Table 10
Table 11
Table 12
Table 13
Table 14
Table 15
Table 16
Table 17
Table 18
Table 19
Table 20


Table 1
Table 2
Table 3
Table 4
Table 5
Table 6
Table 7
Table 8
Table 9
Table 10
Table 11
Table 12
Table 13
Table 14
Table 15
Table 16
Table 17
Table 18
Table 19
Table 20
Table 1
Table 2
Table 3
Table 4
Table 5
Table 6
Table 7
Table 8
Table 9
Table 10
Table 11
Table 12
Table 13
Table 14
Table 15
Table 16
Table 17
Table 18
Table 19
Table 20
Table 1
Table 2
Table 3
Table 4
Table 5
Table 6
Table 7
Table 8
Table 9
Table 10
Table 11
Table 12
Table 13
Table 14
Table 15
Table 16
Table 17
Table 18
Table 19
Table 20
" +"


Table 1
Table 2
Table 3
Table 4
Table 5
Table 6
Table 7
Table 8
Table 9
Table 10
Table 11
Table 12
Table 13
Table 14
Table 15
Table 16
Table 17
Table 18
Table 19
Table 20
Table 1
Table 2
Table 3
Table 4
Table 5
Table 6
Table 7
Table 8
Table 9
Table 10
Table 11
Table 12
Table 13
Table 14
Table 15
Table 16
Table 17
Table 18
Table 19
Table 20
Table 1
Table 2
Table 3
Table 4
Table 5
Table 6
Table 7
Table 8
Table 9
Table 10
Table 11
Table 12
Table 13
Table 14
Table 15
Table 16
Table 17
Table 18
Table 19
Table 20


Table 1
Table 2
Table 3
Table 4
Table 5
Table 6
Table 7
Table 8
Table 9
Table 10
Table 11
Table 12
Table 13
Table 14
Table 15
Table 16
Table 17
Table 18
Table 19
Table 20
Table 1
Table 2
Table 3
Table 4
Table 5
Table 6
Table 7
Table 8
Table 9
Table 10
Table 11
Table 12
Table 13
Table 14
Table 15
Table 16
Table 17
Table 18
Table 19
Table 20
Table 1
Table 2
Table 3
Table 4
Table 5
Table 6
Table 7
Table 8
Table 9
Table 10
Table 11
Table 12
Table 13
Table 14
Table 15
Table 16
Table 17
Table 18
Table 19
Table 20
" ``` #### `Tabs size` @@ -2488,9 +2500,9 @@ #### `Tip closable` ``` -"
default
primary
success
warning
danger
+"
default
primary
success
warning
danger
custom closing content -
" +
" ``` #### `Tip title` @@ -2498,15 +2510,15 @@ ``` "
default
This is a default tip. -
primary
+
primary
This is a primary tip. -
success
+
success
This is a success tip. -
warning
+
warning
This is a warning tip. -
danger
+
danger
This is a danger tip. -
" + " ``` ## `tooltip` @@ -2540,19 +2552,19 @@ #### `Tooltip content` ``` -"
" +"
" ``` #### `Tooltip position` ``` -"
\"left\"
" +"
\"left\"
" ``` #### `Tooltip trigger` ``` -"
" +"
" ``` #### `Tooltip confirm` @@ -2567,7 +2579,7 @@ ``` "
0 / - 3
0 / + 3
0 / 2

You selected: [0,1]

" ``` @@ -2575,7 +2587,7 @@ ``` "
0 / - 0
全部策略
0 / + 0
全部策略
0 / 0

You selected: []

" ``` @@ -2596,7 +2608,7 @@ 赵六
标准双人间
标准双人间
menu 4
Home
Detail
content
" ``` #### `Layout asideFix` @@ -889,7 +889,7 @@ ``` "
LOGO
menu 1
sub menu 1
sub menu 2
sub menu 3
sub menu 4
menu 2
menu 3 -
sub menu 1
sub menu 2
sub menu 3
sub menu 4
menu 4
Home
Detail
+
sub menu 1
sub menu 2
sub menu 3
sub menu 4
menu 4
Home
Detail
content
content @@ -1320,7 +1320,7 @@
menu 4
menu 1
sub menu 1
sub menu 2
sub menu 3
sub menu 4
menu 2
menu 3
sub menu 1
sub menu 2
sub menu 3
sub menu 4
menu 4
Home
Detail
- 切换主题:
" + 切换主题:
" ``` ## `menu` @@ -1352,7 +1352,7 @@ #### `Menu collapse` ``` -"
展开
收起
dark
light


" +"
展开
收起
dark
light


" ``` #### `Menu dot` @@ -1366,7 +1366,7 @@ ``` "
menu 1
menu 2
menu 3 -
menu 4


dark
light
" +
menu 4


dark
light
" ``` #### `Menu recursive` @@ -1389,7 +1389,7 @@ #### `Menu showCollapseArrow` ``` -"
隐藏折叠按钮
展示折叠按钮


+"
隐藏折叠按钮
展示折叠按钮


自定义Header
menu 0
title 1
menu 1
menu 2
menu 3menu 3menu 3menu 3menu 3menu 3
title 2
menu 1
menu 2
sub menu 6 @@ -1401,7 +1401,7 @@ #### `Menu size` ``` -"
展开
收起
vertical
horizontal


Header
menu 1
menu 2
menu 3 +"
展开
收起
vertical
horizontal


Header
menu 1
menu 2
menu 3
sub menu 1
sub menu 2
sub menu 3
sub menu 4
option 1
option 2
menu 4
" @@ -1410,7 +1410,7 @@ #### `Menu theme` ``` -"


Header
menu 1
menu 2
menu 3 +"


Header
menu 1
menu 2
menu 3
sub menu 1
sub menu 2
sub menu 3
sub menu 4
menu 4
" ``` @@ -1419,19 +1419,19 @@ #### `Message basic` ``` -"
" +"
" ``` #### `Message config` ``` -"
" +"
" ``` #### `Message duration` ``` -"
" +"
" ``` ## `pagination` @@ -1439,49 +1439,49 @@ #### `Pagination basic` ``` -"
共 200 条
10 条 / 页
共 200 条
20 条 / 页
共 200 条
20 条 / 页
" +"
共 200 条
10 条 / 页
共 200 条
20 条 / 页
共 200 条
20 条 / 页
" ``` #### `Pagination counts` ``` -"
共 200 条
10 条 / 页
共 200 条
10 条 / 页
" +"
共 200 条
10 条 / 页
共 200 条
10 条 / 页
" ``` #### `Pagination current` ``` -"
共 200 条
10 条 / 页


共 200 条
20 条 / 页
" +"
共 200 条
10 条 / 页


共 200 条
20 条 / 页
" ``` #### `Pagination disable` ``` -"
共 200 条
10 条 / 页
共 200 条
10 条 / 页
前往
" +"
共 200 条
10 条 / 页
共 200 条
10 条 / 页
前往
" ``` #### `Pagination flat` ``` -"
共 200 条
10 条 / 页
前往
共 200 条
10 条 / 页
前往
共 200 条
10 条 / 页
前往
共 200 条
10 条 / 页
前往
" +"
共 200 条
10 条 / 页
前往
共 200 条
10 条 / 页
前往
共 200 条
10 条 / 页
前往
共 200 条
10 条 / 页
前往
" ``` #### `Pagination goto` ``` -"
共 200 条
10 条 / 页
前往
" +"
共 200 条
10 条 / 页
前往
" ``` #### `Pagination simple` ``` -"
1
/ 20
1
/ 20
1
/ 20
1
/ 20
" +"
1
/ 20
1
/ 20
1
/ 20
1
/ 20
" ``` #### `Pagination size` ``` -"
共 200 条
10 条 / 页
共 200 条
10 条 / 页
共 200 条
10 条 / 页
共 200 条
10 条 / 页
" +"
共 200 条
10 条 / 页
共 200 条
10 条 / 页
共 200 条
10 条 / 页
共 200 条
10 条 / 页
" ``` #### `Pagination noBoard` @@ -1495,31 +1495,31 @@ #### `Popover basic` ``` -"
" +"
" ``` #### `Popover button` ``` -"
" +"
" ``` #### `Popover content` ``` -"
" +"
" ``` #### `Popover text` ``` -"
" +"
" ``` #### `Popover type` ``` -"
" +"
" ``` #### `Pagination flat` @@ -1541,7 +1541,7 @@ ``` "
正在上传
40% -
" +
" ``` #### `Progress circle` @@ -1555,16 +1555,16 @@ ``` "
状态: -
+
进度: -


40%
40%
40%
" +


40%
40%
40%
" ``` #### `Progress customColor` ``` -"
25%
25%
25%
" +"
25%
25%
25%
" ``` #### `Progress innerText` @@ -1851,19 +1851,19 @@ #### `Slider basic` ``` -"
60
0MB100MB
277
50500
" +"
60
0MB100MB
277
50500
" ``` #### `Slider disabled` ``` -"
50
0100
55
80
50100
-
" +"
50
0100
55
80
50100
-
" ``` #### `Slider dynamicStep` ``` -"
0
0500
" +"
0
0500
" ``` #### `Slider marks` @@ -1875,25 +1875,25 @@ #### `Slider points` ``` -"
45
0100
0.3
0.6
01
-
45
0100
" +"
45
0100
0.3
0.6
01
-
45
0100
" ``` #### `Slider range` ``` -"
50
76
0100
-
" +"
50
76
0100
-
" ``` #### `Slider step` ``` -"
0
50
50500
0.234234
01
" +"
0
50
50500
0.234234
01
" ``` #### `Slider tooltip` ``` -"
277
50500
50
76
0100
-
123456月7891年2年3年
300
50500
" +"
277
50500
50
76
0100
-
123456月7891年2年3年
300
50500
" ``` ## `spin` @@ -1907,7 +1907,7 @@ #### `Spin overlay` ``` -"
表头1
表头2
第一行哈哈2
第二行哈哈2
第三行哈哈3
" +"
表头1
表头2
第一行哈哈2
第二行哈哈2
第三行哈哈3
" ``` ## `spinner` @@ -1915,49 +1915,49 @@ #### `Spinner basic` ``` -"
" +"
" ``` #### `Spinner dynamicStep` ``` -"
" +"
" ``` #### `Spinner forceStep` ``` -"
" +"
" ``` #### `Spinner formatter` ``` -"
" +"
" ``` #### `Spinner precision` ``` -"
" +"
" ``` #### `Spinner size` ``` -"
" +"
" ``` #### `Spinner step` ``` -"
" +"
" ``` #### `Spinner vertical` ``` -"
" +"
" ``` ## `split` @@ -1971,7 +1971,7 @@ #### `Split complex` ``` -"
名称
网段
操作
name 0127.0.0.0删除
name 1127.0.0.1删除
name 2127.0.0.2删除
name 3127.0.0.3删除
name 4127.0.0.4删除
name 5127.0.0.5删除
name 6127.0.0.6删除
name 7127.0.0.7删除
name 8127.0.0.8删除
name 9127.0.0.9删除
name 10127.0.0.10删除
详情
流量统计
标签
" +"
名称
网段
操作
name 0127.0.0.0删除
name 1127.0.0.1删除
name 2127.0.0.2删除
name 3127.0.0.3删除
name 4127.0.0.4删除
name 5127.0.0.5删除
name 6127.0.0.6删除
name 7127.0.0.7删除
name 8127.0.0.8删除
name 9127.0.0.9删除
name 10127.0.0.10删除
详情
流量统计
标签
" ``` #### `Split nested` @@ -1997,13 +1997,13 @@ #### `Steps basic` ``` -"
1
选择配置
请选择主机的配置信息
2
选择弹性IP
请选择主机弹性IP的配置信息
3
设置VPC
" +"
1
选择配置
请选择主机的配置信息
2
选择弹性IP
请选择主机弹性IP的配置信息
3
设置VPC
" ``` #### `Steps clickable` ``` -"
1
选择配置
请选择主机的配置信息
2
选择弹性IP
请选择主机弹性IP的配置信息
3
设置VPC

选择配置
请选择主机的配置信息
2
选择弹性IP
请选择主机弹性IP的配置信息
3
设置VPC
" +"
1
选择配置
请选择主机的配置信息
2
选择弹性IP
请选择主机弹性IP的配置信息
3
设置VPC

选择配置
请选择主机的配置信息
2
选择弹性IP
请选择主机弹性IP的配置信息
3
设置VPC
" ``` #### `Steps error` @@ -2015,19 +2015,19 @@ #### `Steps line` ``` -"
1
选择配置
请选择主机的配置信息
2
选择弹性IP
请选择主机弹性IP的配置信息
3
设置VPC
1
选择配置
请选择主机的配置信息
2
选择弹性IP
请选择主机弹性IP的配置信息
3
设置VPC
" +"
1
选择配置
请选择主机的配置信息
2
选择弹性IP
请选择主机弹性IP的配置信息
3
设置VPC
1
选择配置
请选择主机的配置信息
2
选择弹性IP
请选择主机弹性IP的配置信息
3
设置VPC
" ``` #### `Steps simple` ``` -"
选择配置
请选择主机的配置信息
选择弹性IP
请选择主机弹性IP的配置信息
设置VPC
" +"
选择配置
请选择主机的配置信息
选择弹性IP
请选择主机弹性IP的配置信息
设置VPC
" ``` #### `Steps vertical` ``` -"
1
选择配置
请选择主机的配置信息
2
选择弹性IP
请选择主机弹性IP的配置信息
3
设置VPC
1
选择配置
请选择主机的配置信息
2
选择弹性IP
请选择主机弹性IP的配置信息
3
设置VPC
1
选择配置
请选择主机的配置信息
2
选择弹性IP
请选择主机弹性IP的配置信息
3
设置VPC
选择配置
请选择主机的配置信息
选择弹性IP
请选择主机弹性IP的配置信息
设置VPC
" +"
1
选择配置
请选择主机的配置信息
2
选择弹性IP
请选择主机弹性IP的配置信息
3
设置VPC
1
选择配置
请选择主机的配置信息
2
选择弹性IP
请选择主机弹性IP的配置信息
3
设置VPC
1
选择配置
请选择主机的配置信息
2
选择弹性IP
请选择主机弹性IP的配置信息
3
设置VPC
选择配置
请选择主机的配置信息
选择弹性IP
请选择主机弹性IP的配置信息
设置VPC
" ``` ## `switch` @@ -2035,41 +2035,47 @@ #### `Switch basic` ``` -"
" +"
" +``` + +#### `Switch beforeChange` + +``` +"
" ``` #### `Switch disabled` ``` -"
" +"
" ``` #### `Switch onOff` ``` -"
" +"
" ``` #### `Switch size` ``` "
- large:
- default:
- small:
- mini:
" + large:
+ default:
+ small:
+ mini:
" ``` #### `Switch value` ``` -"
false
\"1\"
" +"
false
\"1\"
" ``` #### `Switch widthHeight` ``` -"
关闭
开启
关闭
开启
" +"
关闭
开启
关闭
开启
" ``` ## `table` @@ -2077,184 +2083,190 @@ #### `Table animation` ``` -"
Title 1
Title 3
Cell 1-1Cell 1-3
Cell 2-1Cell 2-3
Title 1
Title 3
Cell 1-1Cell 1-3
Cell 2-1Cell 2-3
" +
Title 1
Title 3
Cell 1-1Cell 1-3
Cell 2-1Cell 2-3
Title 1
Title 3
Cell 1-1Cell 1-3
Cell 2-1Cell 2-3
" ``` #### `Table basic` ``` -"
Title 1
Title 2
Cell 1-1Cell 1-2
Cell 2-1Cell 2-2
" +"
Title 1
Title 2
Cell 1-1Cell 1-2
Cell 2-1Cell 2-2
" ``` #### `Table checkType` ``` -"
Title
checkbox 1
checkbox 2
Title
radio 1
radio 2
Title
no check 1
no check 2
" +"
Title
checkbox 1
checkbox 2
Title
radio 1
radio 2
Title
no check 1
no check 2
" ``` #### `Table checkedKeys` ``` -"
Radio without rowKey
default checked by index
unchecked
Radio with rowKey
default checked by rowKey
unchecked
checkbox without rowKey
default checked by index
unchecked
default checked
checkbox with rowKey
default checked by rowKey
unchecked
" +"
Radio without rowKey
default checked by index
unchecked
Radio with rowKey
default checked by rowKey
unchecked
checkbox without rowKey
default checked by index
unchecked
default checked
checkbox with rowKey
default checked by rowKey
unchecked
" ``` #### `Table disableRow` ``` -"
odd rows are uncheckable
1
2
3
4
5
" +"
odd rows are uncheckable
1
2
3
4
5
" ``` #### `Table draggable` ``` -"
Name
IP
Operation
name 1127.0.0.1Remove
name 2127.0.0.2Remove
name 3127.0.0.3Remove
name 4127.0.0.4Remove
name 5127.0.0.5Remove
name 6127.0.0.6Remove
name 7127.0.0.7Remove
name 8127.0.0.8Remove
name 9127.0.0.9Remove
name 10127.0.0.10Remove
name 11127.0.0.11Remove
name 12127.0.0.12Remove
name 13127.0.0.13Remove
name 14127.0.0.14Remove
name 15127.0.0.15Remove
name 16127.0.0.16Remove
name 17127.0.0.17Remove
name 18127.0.0.18Remove
name 19127.0.0.19Remove
name 20127.0.0.20Remove
" +"
Name
IP
Operation
name 1127.0.0.1Remove
name 2127.0.0.2Remove
name 3127.0.0.3Remove
name 4127.0.0.4Remove
name 5127.0.0.5Remove
name 6127.0.0.6Remove
name 7127.0.0.7Remove
name 8127.0.0.8Remove
name 9127.0.0.9Remove
name 10127.0.0.10Remove
name 11127.0.0.11Remove
name 12127.0.0.12Remove
name 13127.0.0.13Remove
name 14127.0.0.14Remove
name 15127.0.0.15Remove
name 16127.0.0.16Remove
name 17127.0.0.17Remove
name 18127.0.0.18Remove
name 19127.0.0.19Remove
name 20127.0.0.20Remove
" ``` #### `Table empty` ``` -"
表头1
表头2
暂无数据
表头1
表头2
没有数据
" +"
表头1
表头2
暂无数据
表头1
表头2
没有数据
" ``` #### `Table export` ``` -"
定义该列单元格内容
普通文本
自定义导出文本
操作
第一行哈哈1自定义1删除
第二行哈哈2自定义2删除
" +"
定义该列单元格内容
普通文本
自定义导出文本
操作
第一行哈哈1自定义1删除
第二行哈哈2自定义2删除
" ``` #### `Table fixColumn` ``` -"
Name
Column1
Column2
Column3
Column4
Action
Johntesttesttesttestaction
Tomtesttesttesttestaction
Javeytesttesttesttestaction
Name
Column1
Column2
Column3
Column4
Action
Johntesttesttesttestaction
Tomtesttesttesttestaction
Javeytesttesttesttestaction
" +"
Name
Column1
Column2
Column3
Column4
Action
Johntesttesttesttestaction
Tomtesttesttesttestaction
Javeytesttesttesttestaction
Name
Column1
Column2
Column3
Column4
Action
Johntesttesttesttestaction
Tomtesttesttesttestaction
Javeytesttesttesttestaction
" ``` #### `Table fixHeader` ``` -"
100px
表头固定,但内容没有超出最高高度
100px
表头固定啦
下拉
yeah!
" +"
100px
表头固定,但内容没有超出最高高度
100px
表头固定啦
下拉
yeah!
" ``` #### `Table group` ``` -"
名称
状态
主机1运行中
主机2已关闭
主机3运行中
名称
状态
主机1运行中
主机2已关闭
主机3运行中
" +"
名称
状态
主机1运行中
主机2已关闭
主机3运行中
名称
状态
主机1运行中
主机2已关闭
主机3运行中
" ``` #### `Table groupHeader` ``` -"
Weekday
Forenoon
Afternoon
Time
Classes
Time
Class 5
Class 6
Class 7
Class 1
Class 2
Class 3
Class 4
Monday08:00 ~ 12:00EnglishMathematicsChineseHistory14:00 ~ 17:00GeopraghyEnglishMathematics
Tuesday08:00 ~ 12:00MathematicsChineseHistoryGeopraghy14:00 ~ 17:00EnglishMathematicsChinese
Wendesday08:00 ~ 12:00ChineseHistoryGeopraghyEnglish14:00 ~ 17:00MathematicsChineseHistory
Thursday08:00 ~ 12:00HistoryGeopraghyEnglishMathematics14:00 ~ 17:00ChineseHistoryGeopraghy
Friday08:00 ~ 12:00GeopraghyEnglishMathematicsChinese14:00 ~ 17:00HistoryGeopraghyEnglish
" +"
Weekday
Forenoon
Afternoon
Time
Classes
Time
Class 5
Class 6
Class 7
Class 1
Class 2
Class 3
Class 4
Monday08:00 ~ 12:00EnglishMathematicsChineseHistory14:00 ~ 17:00GeopraghyEnglishMathematics
Tuesday08:00 ~ 12:00MathematicsChineseHistoryGeopraghy14:00 ~ 17:00EnglishMathematicsChinese
Wendesday08:00 ~ 12:00ChineseHistoryGeopraghyEnglish14:00 ~ 17:00MathematicsChineseHistory
Thursday08:00 ~ 12:00HistoryGeopraghyEnglishMathematics14:00 ~ 17:00ChineseHistoryGeopraghy
Friday08:00 ~ 12:00GeopraghyEnglishMathematicsChinese14:00 ~ 17:00HistoryGeopraghyEnglish
" +``` + +#### `Table hidden` + +``` +"
Title 1
Title 2
Title 3
Cell 1-1Cell 1-2cell 1-3
Cell 2-1Cell 2-2cell 2-3

无数据展示

Title 1
Title 2
Title 3
暂无数据
" ``` #### `Table hideHeader` ``` -"

hideHeader:

Cell 1-1Cell 1-2
Cell 2-1Cell 2-2
" +"

hideHeader:

Cell 1-1Cell 1-2
Cell 2-1Cell 2-2
" ``` #### `Table loading` ``` -"
表头1
表头2
第一行哈哈1
第二行哈哈2
第三行哈哈3
" +"
表头1
表头2
第一行哈哈1
第二行哈哈2
第三行哈哈3
" ``` #### `Table mergeCell` ``` -"
Weekday
Forenoon
Afternoon
Time
Class 1
Class 2
Class 3
Class 4
Class 5
Class 6
Class 7
Time
Monday08:00 ~ 12:00EnglishMathematicsHistoryEnglishHistoryEnglishHistory14:00 ~ 17:00
TuesdayEnglishGeopraghyHistoryEnglishHistoryMathematics
WendesdayHistoryChineseHistoryEnglishChineseHistory
ThursdayHistoryEnglishGeopraghyMathematicsGeopraghyEnglishMathematics
FridayGeopraghyEnglishGeopraghyEnglish
SaturdayGeopraghyEnglishGeopraghyEnglish
Weekday
Forenoon
Afternoon
Time
Class 1
Class 2
Class 3
Class 4
Class 5
Class 6
Class 7
Time
Monday08:00 ~ 12:00EnglishMathematicsHistoryEnglishHistoryEnglishHistory14:00 ~ 17:00
TuesdayEnglishGeopraghyHistoryEnglishHistoryMathematics
WendesdayHistoryChineseHistoryEnglishChineseHistory
ThursdayHistoryEnglishGeopraghyMathematicsGeopraghyEnglishMathematics
FridayGeopraghyEnglishGeopraghyEnglish
SaturdayGeopraghyEnglishGeopraghyEnglish
" +"
Weekday
Forenoon
Afternoon
Time
Class 1
Class 2
Class 3
Class 4
Class 5
Class 6
Class 7
Time
Monday08:00 ~ 12:00EnglishMathematicsHistoryEnglishHistoryEnglishHistory14:00 ~ 17:00
TuesdayEnglishGeopraghyHistoryEnglishHistoryMathematics
WendesdayHistoryChineseHistoryEnglishChineseHistory
ThursdayHistoryEnglishGeopraghyMathematicsGeopraghyEnglishMathematics
FridayGeopraghyEnglishGeopraghyEnglish
SaturdayGeopraghyEnglishGeopraghyEnglish
Weekday
Forenoon
Afternoon
Time
Class 1
Class 2
Class 3
Class 4
Class 5
Class 6
Class 7
Time
Monday08:00 ~ 12:00EnglishMathematicsHistoryEnglishHistoryEnglishHistory14:00 ~ 17:00
TuesdayEnglishGeopraghyHistoryEnglishHistoryMathematics
WendesdayHistoryChineseHistoryEnglishChineseHistory
ThursdayHistoryEnglishGeopraghyMathematicsGeopraghyEnglishMathematics
FridayGeopraghyEnglishGeopraghyEnglish
SaturdayGeopraghyEnglishGeopraghyEnglish
" ``` #### `Table pagination` ``` -"
Name
IP
name 1127.0.0.1
name 2127.0.0.2
name 3127.0.0.3
name 4127.0.0.4
name 5127.0.0.5
name 6127.0.0.6
name 7127.0.0.7
name 8127.0.0.8
name 9127.0.0.9
name 10127.0.0.10
共 20 条
10 条 / 页
" +"
Name
IP
name 1127.0.0.1
name 2127.0.0.2
name 3127.0.0.3
name 4127.0.0.4
name 5127.0.0.5
name 6127.0.0.6
name 7127.0.0.7
name 8127.0.0.8
name 9127.0.0.9
name 10127.0.0.10
共 20 条
10 条 / 页
" ``` #### `Table resizable` ``` -"
通过minColWidth控制最小宽度100px
隐藏列
单独设置最小宽度300px
标题
ABC
ABC
" +"
通过minColWidth控制最小宽度100px
隐藏列
单独设置最小宽度300px
标题
ABC
ABC
" ``` #### `Table rowCheckable` ``` -"
点击整行不选中
B
AB
A点我不会选中整行
点击整行选中
B
A任何位置都可以哦~
A点我会选中整行
" +"
点击整行不选中
B
AB
A点我不会选中整行
点击整行选中
B
A任何位置都可以哦~
A点我会选中整行
" ``` #### `Table rowClassName` ``` -"
rowClassName
1
2
3
4
5
stripe
1
2
3
4
5
" +"
rowClassName
1
2
3
4
5
stripe
1
2
3
4
5
" ``` #### `Table rowExpandable` ``` -"
点击整行展开内容
Javey
Jiawei
点击+,展开内容
Javey
Jiawei
" +"
点击整行展开内容
Javey
Jiawei
点击+,展开内容
Javey
Jiawei
" ``` #### `Table scheme` ``` -"
定义该列单元格内容
key形式
key为一个路径字符串
没有这个key,则返回空
虚拟DOM获取到了item.bitem.c.c1
" +"
定义该列单元格内容
key形式
key为一个路径字符串
没有这个key,则返回空
虚拟DOM获取到了item.bitem.c.c1
" ``` #### `Table scrollToRow` ``` -"
Name
IP
Operation
name 1127.0.0.1Remove
name 2127.0.0.2Remove
name 3127.0.0.3Remove
name 4127.0.0.4Remove
name 5127.0.0.5Remove
name 6127.0.0.6Remove
name 7127.0.0.7Remove
name 8127.0.0.8Remove
name 9127.0.0.9Remove
name 10127.0.0.10Remove
name 11127.0.0.11Remove
name 12127.0.0.12Remove
name 13127.0.0.13Remove
name 14127.0.0.14Remove
name 15127.0.0.15Remove
name 16127.0.0.16Remove
name 17127.0.0.17Remove
name 18127.0.0.18Remove
name 19127.0.0.19Remove
name 20127.0.0.20Remove
name 21127.0.0.21Remove
name 22127.0.0.22Remove
name 23127.0.0.23Remove
name 24127.0.0.24Remove
name 25127.0.0.25Remove
name 26127.0.0.26Remove
name 27127.0.0.27Remove
name 28127.0.0.28Remove
name 29127.0.0.29Remove
name 30127.0.0.30Remove
name 31127.0.0.31Remove
name 32127.0.0.32Remove
name 33127.0.0.33Remove
name 34127.0.0.34Remove
name 35127.0.0.35Remove
name 36127.0.0.36Remove
name 37127.0.0.37Remove
name 38127.0.0.38Remove
name 39127.0.0.39Remove
name 40127.0.0.40Remove
name 41127.0.0.41Remove
name 42127.0.0.42Remove
name 43127.0.0.43Remove
name 44127.0.0.44Remove
name 45127.0.0.45Remove
name 46127.0.0.46Remove
name 47127.0.0.47Remove
name 48127.0.0.48Remove
name 49127.0.0.49Remove
name 50127.0.0.50Remove
name 51127.0.0.51Remove
name 52127.0.0.52Remove
name 53127.0.0.53Remove
name 54127.0.0.54Remove
name 55127.0.0.55Remove
name 56127.0.0.56Remove
name 57127.0.0.57Remove
name 58127.0.0.58Remove
name 59127.0.0.59Remove
name 60127.0.0.60Remove
name 61127.0.0.61Remove
name 62127.0.0.62Remove
name 63127.0.0.63Remove
name 64127.0.0.64Remove
name 65127.0.0.65Remove
name 66127.0.0.66Remove
name 67127.0.0.67Remove
name 68127.0.0.68Remove
name 69127.0.0.69Remove
name 70127.0.0.70Remove
name 71127.0.0.71Remove
name 72127.0.0.72Remove
name 73127.0.0.73Remove
name 74127.0.0.74Remove
name 75127.0.0.75Remove
name 76127.0.0.76Remove
name 77127.0.0.77Remove
name 78127.0.0.78Remove
name 79127.0.0.79Remove
name 80127.0.0.80Remove
name 81127.0.0.81Remove
name 82127.0.0.82Remove
name 83127.0.0.83Remove
name 84127.0.0.84Remove
name 85127.0.0.85Remove
name 86127.0.0.86Remove
name 87127.0.0.87Remove
name 88127.0.0.88Remove
name 89127.0.0.89Remove
name 90127.0.0.90Remove
name 91127.0.0.91Remove
name 92127.0.0.92Remove
name 93127.0.0.93Remove
name 94127.0.0.94Remove
name 95127.0.0.95Remove
name 96127.0.0.96Remove
name 97127.0.0.97Remove
name 98127.0.0.98Remove
name 99127.0.0.99Remove
name 100127.0.0.100Remove
" +"
Name
IP
Operation
name 1127.0.0.1Remove
name 2127.0.0.2Remove
name 3127.0.0.3Remove
name 4127.0.0.4Remove
name 5127.0.0.5Remove
name 6127.0.0.6Remove
name 7127.0.0.7Remove
name 8127.0.0.8Remove
name 9127.0.0.9Remove
name 10127.0.0.10Remove
name 11127.0.0.11Remove
name 12127.0.0.12Remove
name 13127.0.0.13Remove
name 14127.0.0.14Remove
name 15127.0.0.15Remove
name 16127.0.0.16Remove
name 17127.0.0.17Remove
name 18127.0.0.18Remove
name 19127.0.0.19Remove
name 20127.0.0.20Remove
name 21127.0.0.21Remove
name 22127.0.0.22Remove
name 23127.0.0.23Remove
name 24127.0.0.24Remove
name 25127.0.0.25Remove
name 26127.0.0.26Remove
name 27127.0.0.27Remove
name 28127.0.0.28Remove
name 29127.0.0.29Remove
name 30127.0.0.30Remove
name 31127.0.0.31Remove
name 32127.0.0.32Remove
name 33127.0.0.33Remove
name 34127.0.0.34Remove
name 35127.0.0.35Remove
name 36127.0.0.36Remove
name 37127.0.0.37Remove
name 38127.0.0.38Remove
name 39127.0.0.39Remove
name 40127.0.0.40Remove
name 41127.0.0.41Remove
name 42127.0.0.42Remove
name 43127.0.0.43Remove
name 44127.0.0.44Remove
name 45127.0.0.45Remove
name 46127.0.0.46Remove
name 47127.0.0.47Remove
name 48127.0.0.48Remove
name 49127.0.0.49Remove
name 50127.0.0.50Remove
name 51127.0.0.51Remove
name 52127.0.0.52Remove
name 53127.0.0.53Remove
name 54127.0.0.54Remove
name 55127.0.0.55Remove
name 56127.0.0.56Remove
name 57127.0.0.57Remove
name 58127.0.0.58Remove
name 59127.0.0.59Remove
name 60127.0.0.60Remove
name 61127.0.0.61Remove
name 62127.0.0.62Remove
name 63127.0.0.63Remove
name 64127.0.0.64Remove
name 65127.0.0.65Remove
name 66127.0.0.66Remove
name 67127.0.0.67Remove
name 68127.0.0.68Remove
name 69127.0.0.69Remove
name 70127.0.0.70Remove
name 71127.0.0.71Remove
name 72127.0.0.72Remove
name 73127.0.0.73Remove
name 74127.0.0.74Remove
name 75127.0.0.75Remove
name 76127.0.0.76Remove
name 77127.0.0.77Remove
name 78127.0.0.78Remove
name 79127.0.0.79Remove
name 80127.0.0.80Remove
name 81127.0.0.81Remove
name 82127.0.0.82Remove
name 83127.0.0.83Remove
name 84127.0.0.84Remove
name 85127.0.0.85Remove
name 86127.0.0.86Remove
name 87127.0.0.87Remove
name 88127.0.0.88Remove
name 89127.0.0.89Remove
name 90127.0.0.90Remove
name 91127.0.0.91Remove
name 92127.0.0.92Remove
name 93127.0.0.93Remove
name 94127.0.0.94Remove
name 95127.0.0.95Remove
name 96127.0.0.96Remove
name 97127.0.0.97Remove
name 98127.0.0.98Remove
name 99127.0.0.99Remove
name 100127.0.0.100Remove
" ``` #### `Table selectedKeys` ``` -"
表头1
表头2
第一行哈哈
第二行哈哈
表头1
表头2
第一行哈哈
第二行哈哈
" +"
表头1
表头2
第一行哈哈
第二行哈哈
表头1
表头2
第一行哈哈
第二行哈哈
" ``` #### `Table showIndeterminate` ``` -"
表头1
表头2
第一行哈哈2
第二行哈哈2
" +"
表头1
表头2
第一行哈哈2
第二行哈哈2
" ``` #### `Table sort` ``` -"
姓名
年龄
aa1
cc5
bb9
" +"
姓名
年龄
aa1
cc5
bb9
" ``` #### `Table stickHeader` ``` -"
姓名
性别
Javeymale
Kanilyfemale
" +"
姓名
性别
Javeymale
Kanilyfemale
" ``` #### `Table stickScrollbar` ``` -"
Name
Column1
Column2
Column3
Column4
Action
Johntesttesttesttestaction
Tomtesttesttesttestaction
Javeytesttesttesttestaction
" +"
Name
Column1
Column2
Column3
Column4
Action
Johntesttesttesttestaction
Tomtesttesttesttestaction
Javeytesttesttesttestaction
" ``` #### `Table title` ``` -"
自定义表头内容
表头2
第一行哈哈2
第二行哈哈2
" +"
自定义表头内容
表头2
第一行哈哈2
第二行哈哈2
" ``` #### `Table tooltip` ``` -"
表头1
表头2
第一行哈哈1
第二行哈哈2
第三行哈哈3
" +"
表头1
表头2
第一行哈哈1
第二行哈哈2
第三行哈哈3
" ``` #### `Table tree` ``` -"
Name
Size
Audios12MB -
Images14MB +"
Name
Size
Audios12MB +
Images14MB
doc.pdf18MB
" ``` @@ -2262,7 +2274,7 @@ #### `Table type` ``` -"
Type
Value
typeborder
Type
Value
typegrid
" +"
Type
Value
typeborder
Type
Value
typegrid
" ``` ## `tabs` @@ -2288,7 +2300,7 @@ #### `Tabs closable` ``` -"


Tab 1
Tab 2
Tab 3
Tab 1
Tab 2
Tab 3
Tab 1
Tab 2
Tab 3
" +"


Tab 1
Tab 2
Tab 3
Tab 1
Tab 2
Tab 3
Tab 1
Tab 2
Tab 3
" ``` #### `Tabs disabled` @@ -2300,7 +2312,7 @@ #### `Tabs scroll` ``` -"


Table 1
Table 2
Table 3
Table 4
Table 5
Table 6
Table 7
Table 8
Table 9
Table 10
Table 11
Table 12
Table 13
Table 14
Table 15
Table 16
Table 17
Table 18
Table 19
Table 20
Table 1
Table 2
Table 3
Table 4
Table 5
Table 6
Table 7
Table 8
Table 9
Table 10
Table 11
Table 12
Table 13
Table 14
Table 15
Table 16
Table 17
Table 18
Table 19
Table 20
Table 1
Table 2
Table 3
Table 4
Table 5
Table 6
Table 7
Table 8
Table 9
Table 10
Table 11
Table 12
Table 13
Table 14
Table 15
Table 16
Table 17
Table 18
Table 19
Table 20


Table 1
Table 2
Table 3
Table 4
Table 5
Table 6
Table 7
Table 8
Table 9
Table 10
Table 11
Table 12
Table 13
Table 14
Table 15
Table 16
Table 17
Table 18
Table 19
Table 20
Table 1
Table 2
Table 3
Table 4
Table 5
Table 6
Table 7
Table 8
Table 9
Table 10
Table 11
Table 12
Table 13
Table 14
Table 15
Table 16
Table 17
Table 18
Table 19
Table 20
Table 1
Table 2
Table 3
Table 4
Table 5
Table 6
Table 7
Table 8
Table 9
Table 10
Table 11
Table 12
Table 13
Table 14
Table 15
Table 16
Table 17
Table 18
Table 19
Table 20
" +"


Table 1
Table 2
Table 3
Table 4
Table 5
Table 6
Table 7
Table 8
Table 9
Table 10
Table 11
Table 12
Table 13
Table 14
Table 15
Table 16
Table 17
Table 18
Table 19
Table 20
Table 1
Table 2
Table 3
Table 4
Table 5
Table 6
Table 7
Table 8
Table 9
Table 10
Table 11
Table 12
Table 13
Table 14
Table 15
Table 16
Table 17
Table 18
Table 19
Table 20
Table 1
Table 2
Table 3
Table 4
Table 5
Table 6
Table 7
Table 8
Table 9
Table 10
Table 11
Table 12
Table 13
Table 14
Table 15
Table 16
Table 17
Table 18
Table 19
Table 20


Table 1
Table 2
Table 3
Table 4
Table 5
Table 6
Table 7
Table 8
Table 9
Table 10
Table 11
Table 12
Table 13
Table 14
Table 15
Table 16
Table 17
Table 18
Table 19
Table 20
Table 1
Table 2
Table 3
Table 4
Table 5
Table 6
Table 7
Table 8
Table 9
Table 10
Table 11
Table 12
Table 13
Table 14
Table 15
Table 16
Table 17
Table 18
Table 19
Table 20
Table 1
Table 2
Table 3
Table 4
Table 5
Table 6
Table 7
Table 8
Table 9
Table 10
Table 11
Table 12
Table 13
Table 14
Table 15
Table 16
Table 17
Table 18
Table 19
Table 20
" ``` #### `Tabs size` @@ -2429,9 +2441,9 @@ #### `Tip closable` ``` -"
default
primary
success
warning
danger
+"
default
primary
success
warning
danger
custom closing content -
" +
" ``` #### `Tip title` @@ -2439,15 +2451,15 @@ ``` "
default
This is a default tip. -
primary
+
primary
This is a primary tip. -
success
+
success
This is a success tip. -
warning
+
warning
This is a warning tip. -
danger
+
danger
This is a danger tip. -
" + " ``` ## `tooltip` @@ -2481,19 +2493,19 @@ #### `Tooltip content` ``` -"
" +"
" ``` #### `Tooltip position` ``` -"
\"left\"
" +"
\"left\"
" ``` #### `Tooltip trigger` ``` -"
" +"
" ``` #### `Tooltip confirm` @@ -2508,7 +2520,7 @@ ``` "
0 / - 3
0 / + 3
0 / 2

You selected: [0,1]

" ``` @@ -2516,21 +2528,21 @@ ``` "
0 / - 0
全部策略
0 / + 0
全部策略
0 / 0

You selected: []

" ``` #### `Transfer customList` ``` -"
未分配
标准双人间
" +"
未分配
标准双人间
" ``` #### `Transfer getData` ``` -"


0 / - 3
0 / +"


0 / + 3
0 / 2

You selected: [0,1]

" ``` @@ -2538,7 +2550,7 @@ ``` "
0 / - 5
0 / + 5
0 / 0
" ``` @@ -2546,14 +2558,14 @@ ``` "
2 / - 5
0 / + 5
0 / 0

You checked left side: [0,2]

" ``` #### `Transfer tree` ``` -"
请选择
database
table1
class
student
table2
id
name
已选择
" +"
请选择
database
table1
class
student
table2
id
name
已选择
" ``` ## `tree` @@ -2567,7 +2579,7 @@ #### `Tree checkbox` ``` -"


First floor-1
First floor-2
" +"


First floor-1
First floor-2
" ``` #### `Tree contextmenu` @@ -2579,7 +2591,7 @@ #### `Tree custom` ``` -"
First floor-1
First floor-2
" +"
First floor-1
First floor-2
" ``` #### `Tree draggable` @@ -2591,7 +2603,7 @@ #### `Tree expandAll` ``` -"
First floor-1
Second floor-1.1
Third floor-1.1.1
First floor-2
Second floor-2.1
Third floor-2.1.1
Third floor-2.1.2
Second floor-2.2
Third floor-2.2.1
" +"
First floor-1
Second floor-1.1
Third floor-1.1.1
First floor-2
Second floor-2.1
Third floor-2.1.1
Third floor-2.1.2
Second floor-2.2
Third floor-2.2.1
" ``` #### `Tree filterable` @@ -2609,7 +2621,7 @@ #### `Tree select` ``` -"


First floor-1
First floor-2
Second floor-2.1
Third floor-2.1.1
Third floor-2.1.2
Second floor-2.2
" +"


First floor-1
First floor-2
Second floor-2.1
Third floor-2.1.1
Third floor-2.1.2
Second floor-2.2
" ``` #### `Tree uncorrelated` @@ -2655,13 +2667,13 @@ #### `Upload basic` ``` -"
只能上传JPG/PNG格式文件,且不超过500kb
" +"
只能上传JPG/PNG格式文件,且不超过500kb
" ``` #### `Upload directory` ``` -"
" +"
" ``` #### `Upload drag` @@ -2673,7 +2685,7 @@ #### `Upload files` ``` -"
test1.jpg
test2.png
test3.png
" +"
test1.jpg
test2.png
test3.png
" ``` #### `Upload gallery` @@ -2685,6 +2697,6 @@ #### `Upload manually` ``` -"
" +"
" ``` diff --git a/test/__snapshots__/Diagram.md b/test/__snapshots__/Diagram.md index ab8c1a547..9ecb5d710 100644 --- a/test/__snapshots__/Diagram.md +++ b/test/__snapshots__/Diagram.md @@ -33,11 +33,11 @@ #### `should render kpc components in shape` ``` -"
click counts: 0
" +"
click counts: 0
" ``` ``` -"
click counts: 1
" +"
click counts: 1
" ``` #### `should remove element in shape correctly` @@ -97,11 +97,11 @@ #### `test all layouts` ``` -"
" +"
" ``` ``` -"
" +"
" ``` ``` diff --git a/test/__snapshots__/Dialog.md b/test/__snapshots__/Dialog.md index 7364ca0cc..d6261cc84 100644 --- a/test/__snapshots__/Dialog.md +++ b/test/__snapshots__/Dialog.md @@ -3,97 +3,97 @@ #### `should show dialog correctly` ``` -"
Dialog Title
+"
Dialog Title
Dialog Body -
请选择
无数据
" +
请选择
无数据
" ``` #### `should show correctly when render with value is true` ``` -"
提示
test
" +"
提示
test
" ``` #### `show dialog as instance` ``` -"
提示
Dialog Instance 1
" +"
提示
Dialog Instance 1
" ``` #### `basic test` ``` -"
Dialog Title
+"
Dialog Title
Dialog Body -
请选择
无数据
" +
请选择
无数据
" ``` #### `demos test` ``` -"
Customized ok callback
" +"
Customized ok callback
" ``` ``` -"
Dialog Title
+"
Dialog Title
Dialog Body -
请选择
无数据
" +
请选择
无数据
" ``` ``` -"
No Footer
body
" +"
No Footer
body
" ``` ``` -"
Dialog Title
" +"
Dialog Title
" ``` ``` -"
Dialog Title
Dialog Body
" +"
Dialog Title
Dialog Body
" ``` ``` -"
Dialog Title
" +"
Dialog Title
" ``` ``` -"
Dialog Title
+"
Dialog Title
width: -
" +
" ``` ``` -"
Dialog Title
+"
Dialog Title
Dialog Body -
" +
" ``` #### `static methods` ``` -"
test
" +"
test
" ``` ``` -"
test
" +"
test
" ``` ``` -"
error
test
" +"
error
test
" ``` #### `should remove body` ``` -"
Dialog Title
" +"
Dialog Title
" ``` #### `should not close when click and move outside` ``` -"
Dialog Title
+"
Dialog Title
Dialog Body -
请选择
无数据
" +
请选择
无数据
" ``` #### `async open` diff --git a/test/__snapshots__/Drawer.md b/test/__snapshots__/Drawer.md index 0d2e3806d..f05c131ae 100644 --- a/test/__snapshots__/Drawer.md +++ b/test/__snapshots__/Drawer.md @@ -3,20 +3,20 @@ #### `should show drawer correctly` ``` -"
" +"
" ``` ``` -"
Drawer Title
请选择
+"
Drawer Title
请选择
Drawer Body -
Option 1
Option 2
" +
Option 1
Option 2
" ``` #### `should show no overlay` ``` -"
Drawer Title
+"
Drawer Title
Drawer Without Overlay -
" +
" ``` diff --git a/test/__snapshots__/Form.md b/test/__snapshots__/Form.md index 387782a3c..67c754479 100644 --- a/test/__snapshots__/Form.md +++ b/test/__snapshots__/Form.md @@ -3,7 +3,7 @@ #### `validate` ``` -"
必须填写
请选择
必须选择
必须选择
必须选择
必须选择
0
0100
必须填写
必须填写
必须填写
必须填写
必须填写
" +"
必须填写
请选择
必须选择
必须选择
必须选择
必须选择
0
0100
必须填写
必须填写
必须填写
必须填写
必须填写
" ``` ``` @@ -13,11 +13,11 @@ Object { ``` ``` -"
必须填写
请选择
必须选择
必须选择
必须选择
必须选择
0
0100
必须填写
必须填写
必须填写
必须填写
必须填写
" +"
必须填写
请选择
必须选择
必须选择
必须选择
必须选择
0
0100
必须填写
必须填写
必须填写
必须填写
必须填写
" ``` ``` -"
必须填写
请选择
必须选择
必须选择
必须选择
必须选择
0
0100
必须填写
必须填写
必须填写
必须填写
必须填写
" +"
必须填写
请选择
必须选择
必须选择
必须选择
必须选择
0
0100
必须填写
必须填写
必须填写
必须填写
必须填写
" ``` ``` @@ -35,19 +35,19 @@ Object { #### `custom rules` ``` -"
只能输入字母
" +"
只能输入字母
" ``` ``` -"
只能输入字母
" +"
只能输入字母
" ``` ``` -"
不能相同
不能相同
" +"
不能相同
不能相同
" ``` ``` -"
不能相同
不能相同
" +"
不能相同
不能相同
" ``` ``` diff --git a/test/__snapshots__/Input.md b/test/__snapshots__/Input.md index a2a764e6f..d75ee3fe7 100644 --- a/test/__snapshots__/Input.md +++ b/test/__snapshots__/Input.md @@ -3,23 +3,23 @@ #### `search input` ``` -"
" +"
" ``` ``` -"
" +"
" ``` ``` -"
" +"
" ``` ``` -"
" +"
" ``` ``` -"
" +"
" ``` ``` diff --git a/test/__snapshots__/Menu.md b/test/__snapshots__/Menu.md index 78e5554c9..61b5c8fe9 100644 --- a/test/__snapshots__/Menu.md +++ b/test/__snapshots__/Menu.md @@ -30,28 +30,28 @@ #### `select` ``` -"
展开
收起
dark
light


menu 1
menu 2
menu 3 +"
展开
收起
dark
light


menu 1
menu 2
menu 3
sub menu 1
sub menu 2
sub menu 3
sub menu 4
option 1
option 2
menu 4
menu 5
sub menu 1
sub menu 2
" ``` ``` -"
展开
收起
dark
light


menu 1
menu 2
menu 3 +"
展开
收起
dark
light


menu 1
menu 2
menu 3
sub menu 1
sub menu 2
sub menu 3
sub menu 4
option 1
option 2
menu 4
menu 5
sub menu 1
sub menu 2
" ``` ``` -"
展开
收起
dark
light


menu 1
menu 2
menu 3 +"
展开
收起
dark
light


menu 1
menu 2
menu 3
sub menu 1
sub menu 2
sub menu 3
sub menu 4
option 1
option 2
menu 4
menu 5
sub menu 1
sub menu 2
" ``` ``` -"
展开
收起
dark
light


menu 1
menu 2
menu 3 +"
展开
收起
dark
light


menu 1
menu 2
menu 3
sub menu 1
sub menu 2
sub menu 3
sub menu 4
option 1
option 2
menu 4
menu 5
sub menu 1
sub menu 2
" @@ -60,7 +60,7 @@ #### `collapse` ``` -"
展开
收起
dark
light


" +"
展开
收起
dark
light


" ``` ``` @@ -76,7 +76,7 @@ #### `select collapsed menu` ``` -"
展开
收起
dark
light


" +"
展开
收起
dark
light


" ``` ``` @@ -138,7 +138,7 @@ #### `collapsed arrow` ``` -"
隐藏折叠按钮
展示折叠按钮


+"
隐藏折叠按钮
展示折叠按钮


自定义Header
menu 0
title 1
menu 1
menu 2
menu 3menu 3menu 3menu 3menu 3menu 3
title 2
menu 1
menu 2
sub menu 6 @@ -148,10 +148,10 @@ ``` ``` -"
隐藏折叠按钮
展示折叠按钮


" +"
隐藏折叠按钮
展示折叠按钮


" ``` ``` -"
隐藏折叠按钮
展示折叠按钮


" +"
隐藏折叠按钮
展示折叠按钮


" ``` diff --git a/test/__snapshots__/Pagination.md b/test/__snapshots__/Pagination.md index a90dd20bc..829acbe52 100644 --- a/test/__snapshots__/Pagination.md +++ b/test/__snapshots__/Pagination.md @@ -3,37 +3,37 @@ #### `basic test` ``` -"
共 200 条
10 条 / 页
" +"
共 200 条
10 条 / 页
" ``` ``` -"
共 200 条
10 条 / 页
" +"
共 200 条
10 条 / 页
" ``` ``` -"
共 200 条
10 条 / 页
" +"
共 200 条
10 条 / 页
" ``` ``` -"
共 200 条
10 条 / 页
" +"
共 200 条
10 条 / 页
" ``` ``` -"
共 200 条
10 条 / 页
" +"
共 200 条
10 条 / 页
" ``` ``` -"
共 200 条
20 条 / 页
" +"
共 200 条
20 条 / 页
" ``` #### `goto test` ``` -"
共 200 条
10 条 / 页
前往
" +"
共 200 条
10 条 / 页
前往
" ``` ``` -"
共 200 条
10 条 / 页
前往
" +"
共 200 条
10 条 / 页
前往
" ``` ``` diff --git a/test/__snapshots__/Popover.md b/test/__snapshots__/Popover.md index 42b97ea1b..910ff2d8c 100644 --- a/test/__snapshots__/Popover.md +++ b/test/__snapshots__/Popover.md @@ -3,7 +3,7 @@ #### `should handle popover correctly` ``` -"
确定删除?
" +"
确定删除?
" ``` #### `should handle title/content slot correctly` @@ -39,7 +39,7 @@ #### `should handle footer slot correctly` ``` -"
" +"
" ``` #### `should handle buttons slot correctly` diff --git a/test/__snapshots__/Progress.md b/test/__snapshots__/Progress.md index 4f29fd317..1041bb46b 100644 --- a/test/__snapshots__/Progress.md +++ b/test/__snapshots__/Progress.md @@ -5,42 +5,42 @@ ``` "
上传完成 -
" +
" ``` ``` "
正在上传
110% -
" +
" ``` ``` "
正在上传
90% -
" +
" ``` ``` "
正在上传
-10% -
" +
" ``` #### `should custom colors` ``` -"
25%
25%
25%
" +"
25%
25%
25%
" ``` ``` -"
50%
50%
50%
" +"
50%
50%
50%
" ``` ``` -"
75%
75%
75%
" +"
75%
75%
75%
" ``` ``` -"
" +"
" ``` diff --git a/test/__snapshots__/Slider.md b/test/__snapshots__/Slider.md index 1a9b10cdd..75a258c05 100644 --- a/test/__snapshots__/Slider.md +++ b/test/__snapshots__/Slider.md @@ -3,19 +3,19 @@ #### `range test` ``` -"
76
80
0100
-
" +"
76
80
0100
-
" ``` ``` -"
60
76
0100
-
" +"
60
76
0100
-
" ``` ``` -"
50
76
0100
-
" +"
50
76
0100
-
" ``` ``` -"
50
70
0100
-
" +"
50
70
0100
-
" ``` ``` @@ -34,15 +34,15 @@ #### `keyboard operation for basic` ``` -"
276
50500
" +"
276
50500
" ``` ``` -"
277
50500
" +"
277
50500
" ``` ``` -"
277
50500
" +"
277
50500
" ``` ``` @@ -61,27 +61,27 @@ #### `keyboard operation for range` ``` -"
51
51
0100
-
" +"
51
51
0100
-
" ``` ``` -"
51
52
0100
-
" +"
51
52
0100
-
" ``` ``` -"
51
53
0100
-
" +"
51
53
0100
-
" ``` ``` -"
50
50
0100
-
" +"
50
50
0100
-
" ``` ``` -"
49
50
0100
-
" +"
49
50
0100
-
" ``` ``` -"
48
50
0100
-
" +"
48
50
0100
-
" ``` ``` @@ -108,15 +108,15 @@ #### `disabled` ``` -"
50
0100
" +"
50
0100
" ``` ``` -"
50
0100
" +"
50
0100
" ``` ``` -"
50
0100
" +"
50
0100
" ``` ``` @@ -135,18 +135,18 @@ #### `min/max/step is undefined` ``` -"
1
0100
" +"
1
0100
" ``` #### `should log error when max < min` ``` -"
0
200
" +"
0
200
" ``` #### `should locate at the end if start value is equal to end value` ``` -"
1
11
1
1
11
-
" +"
1
11
1
1
11
-
" ``` diff --git a/test/__snapshots__/Spinner.md b/test/__snapshots__/Spinner.md index 5f31be8eb..2ff7360a0 100644 --- a/test/__snapshots__/Spinner.md +++ b/test/__snapshots__/Spinner.md @@ -3,39 +3,39 @@ #### `step/max/min test` ``` -"
" +"
" ``` ``` -"
" +"
" ``` ``` -"
" +"
" ``` ``` -"
" +"
" ``` ``` -"
" +"
" ``` ``` -"
" +"
" ``` ``` -"
" +"
" ``` ``` -"
" +"
" ``` ``` -"
" +"
" ``` ``` @@ -74,12 +74,12 @@ #### `precision` ``` -"
" +"
" ``` #### `should log error when max < min` ``` -"
" +"
" ``` diff --git a/test/__snapshots__/Steps.md b/test/__snapshots__/Steps.md index f34a22b72..2f6953ff7 100644 --- a/test/__snapshots__/Steps.md +++ b/test/__snapshots__/Steps.md @@ -3,10 +3,10 @@ #### `change step` ``` -"
1
选择配置
请选择主机的配置信息
2
选择弹性IP
请选择主机弹性IP的配置信息
3
设置VPC

选择配置
请选择主机的配置信息
选择弹性IP
请选择主机弹性IP的配置信息
3
设置VPC
" +"
1
选择配置
请选择主机的配置信息
2
选择弹性IP
请选择主机弹性IP的配置信息
3
设置VPC

选择配置
请选择主机的配置信息
选择弹性IP
请选择主机弹性IP的配置信息
3
设置VPC
" ``` ``` -"
1
选择配置
请选择主机的配置信息
2
选择弹性IP
请选择主机弹性IP的配置信息
3
设置VPC

1
选择配置
请选择主机的配置信息
2
选择弹性IP
请选择主机弹性IP的配置信息
3
设置VPC
" +"
1
选择配置
请选择主机的配置信息
2
选择弹性IP
请选择主机弹性IP的配置信息
3
设置VPC

1
选择配置
请选择主机的配置信息
2
选择弹性IP
请选择主机弹性IP的配置信息
3
设置VPC
" ``` diff --git a/test/__snapshots__/Switch.md b/test/__snapshots__/Switch.md index 51a9d56a7..56473347a 100644 --- a/test/__snapshots__/Switch.md +++ b/test/__snapshots__/Switch.md @@ -3,54 +3,54 @@ #### `change value by clicking` ``` -"
" +"
" ``` ``` -"
" +"
" ``` #### `disabled` ``` -"
" +"
" ``` ``` -"
" +"
" ``` #### `change value by draging` ``` -"
" +"
" ``` ``` -"
" +"
" ``` ``` -"
" +"
" ``` #### `drag switch which has custom width and height` ``` -"
关闭
开启
关闭
开启
" +"
关闭
开启
关闭
开启
" ``` ``` -"
关闭
开启
关闭
开启
" +"
关闭
开启
关闭
开启
" ``` #### `custom the value` ``` -"
true
1
" +"
true
1
" ``` ``` -"
false
\"1\"
" +"
false
\"1\"
" ``` diff --git a/test/__snapshots__/Table.md b/test/__snapshots__/Table.md index 4c11b29af..fca9df9c0 100644 --- a/test/__snapshots__/Table.md +++ b/test/__snapshots__/Table.md @@ -21,57 +21,57 @@ #### `expand & shrink` ``` -"
点击整行展开内容
Javey
Email: jiawei23716@sina.com
Jiawei
" +"
点击整行展开内容
Javey
Email: jiawei23716@sina.com
Jiawei
" ``` ``` -"
点击整行展开内容
Javey
Email: jiawei23716@sina.com
Jiawei
" +"
点击整行展开内容
Javey
Email: jiawei23716@sina.com
Jiawei
" ``` ``` -"
点击+,展开内容
Javey
Jiawei
" +"
点击+,展开内容
Javey
Jiawei
" ``` ``` -"
点击+,展开内容
Javey
Email: jiawei23716@sina.com
Jiawei
" +"
点击+,展开内容
Javey
Email: jiawei23716@sina.com
Jiawei
" ``` ``` -"
点击+,展开内容
Javey
Email: jiawei23716@sina.com
Jiawei
" +"
点击+,展开内容
Javey
Email: jiawei23716@sina.com
Jiawei
" ``` #### `merge cells` ``` -"
Weekday
Forenoon
Afternoon
Time
Class 1
Class 2
Class 3
Class 4
Class 5
Class 6
Class 7
Time
Monday08:00 ~ 12:00EnglishMathematicsHistoryEnglishHistoryEnglishHistory14:00 ~ 17:00
TuesdayEnglishGeopraghyHistoryEnglishHistoryMathematics
WendesdayHistoryChineseHistoryEnglishChineseHistory
ThursdayHistoryEnglishGeopraghyMathematicsGeopraghyEnglishMathematics
FridayGeopraghyEnglishGeopraghyEnglish
SaturdayGeopraghyEnglishGeopraghyEnglish
" +"
Weekday
Forenoon
Afternoon
Time
Class 1
Class 2
Class 3
Class 4
Class 5
Class 6
Class 7
Time
Monday08:00 ~ 12:00EnglishMathematicsHistoryEnglishHistoryEnglishHistory14:00 ~ 17:00
TuesdayEnglishGeopraghyHistoryEnglishHistoryMathematics
WendesdayHistoryChineseHistoryEnglishChineseHistory
ThursdayHistoryEnglishGeopraghyMathematicsGeopraghyEnglishMathematics
FridayGeopraghyEnglishGeopraghyEnglish
SaturdayGeopraghyEnglishGeopraghyEnglish
" ``` ``` -"
Weekday
Forenoon
Afternoon
Time
Class 1
Class 2
Class 3
Class 4
Class 5
Class 6
Class 7
Time
Monday08:00 ~ 12:00EnglishMathematicsHistoryEnglishHistoryEnglishHistory14:00 ~ 17:00
TuesdayEnglishGeopraghyHistoryEnglishHistoryMathematics
WendesdayHistoryChineseHistoryEnglishChineseHistory
ThursdayHistoryEnglishGeopraghyMathematicsGeopraghyEnglishMathematics
FridayGeopraghyEnglishGeopraghyEnglish
SaturdayGeopraghyEnglishGeopraghyEnglish
" +"
Weekday
Forenoon
Afternoon
Time
Class 1
Class 2
Class 3
Class 4
Class 5
Class 6
Class 7
Time
Monday08:00 ~ 12:00EnglishMathematicsHistoryEnglishHistoryEnglishHistory14:00 ~ 17:00
TuesdayEnglishGeopraghyHistoryEnglishHistoryMathematics
WendesdayHistoryChineseHistoryEnglishChineseHistory
ThursdayHistoryEnglishGeopraghyMathematicsGeopraghyEnglishMathematics
FridayGeopraghyEnglishGeopraghyEnglish
SaturdayGeopraghyEnglishGeopraghyEnglish
" ``` ``` -"
Weekday
Forenoon
Afternoon
Time
Class 1
Class 2
Class 3
Class 4
Class 5
Class 6
Class 7
Time
Monday08:00 ~ 12:00EnglishMathematicsHistoryEnglishHistoryEnglishHistory14:00 ~ 17:00
TuesdayEnglishGeopraghyHistoryEnglishHistoryMathematics
WendesdayHistoryChineseHistoryEnglishChineseHistory
ThursdayHistoryEnglishGeopraghyMathematicsGeopraghyEnglishMathematics
FridayGeopraghyEnglishGeopraghyEnglish
SaturdayGeopraghyEnglishGeopraghyEnglish
" +"
Weekday
Forenoon
Afternoon
Time
Class 1
Class 2
Class 3
Class 4
Class 5
Class 6
Class 7
Time
Monday08:00 ~ 12:00EnglishMathematicsHistoryEnglishHistoryEnglishHistory14:00 ~ 17:00
TuesdayEnglishGeopraghyHistoryEnglishHistoryMathematics
WendesdayHistoryChineseHistoryEnglishChineseHistory
ThursdayHistoryEnglishGeopraghyMathematicsGeopraghyEnglishMathematics
FridayGeopraghyEnglishGeopraghyEnglish
SaturdayGeopraghyEnglishGeopraghyEnglish
" ``` ``` -"
Weekday
Forenoon
Afternoon
Time
Class 1
Class 2
Class 3
Class 4
Class 5
Class 6
Class 7
Time
Monday08:00 ~ 12:00EnglishMathematicsHistoryEnglishHistoryEnglishHistory14:00 ~ 17:00
TuesdayEnglishGeopraghyHistoryEnglishHistoryMathematics
WendesdayHistoryChineseHistoryEnglishChineseHistory
ThursdayHistoryEnglishGeopraghyMathematicsGeopraghyEnglishMathematics
FridayGeopraghyEnglishGeopraghyEnglish
SaturdayGeopraghyEnglishGeopraghyEnglish
" +"
Weekday
Forenoon
Afternoon
Time
Class 1
Class 2
Class 3
Class 4
Class 5
Class 6
Class 7
Time
Monday08:00 ~ 12:00EnglishMathematicsHistoryEnglishHistoryEnglishHistory14:00 ~ 17:00
TuesdayEnglishGeopraghyHistoryEnglishHistoryMathematics
WendesdayHistoryChineseHistoryEnglishChineseHistory
ThursdayHistoryEnglishGeopraghyMathematicsGeopraghyEnglishMathematics
FridayGeopraghyEnglishGeopraghyEnglish
SaturdayGeopraghyEnglishGeopraghyEnglish
" ``` ``` -"
Weekday
Forenoon
Afternoon
Time
Class 1
Class 2
Class 3
Class 4
Class 5
Class 6
Class 7
Time
Monday08:00 ~ 12:00EnglishMathematicsHistoryEnglishHistoryEnglishHistory14:00 ~ 17:00
TuesdayEnglishGeopraghyHistoryEnglishHistoryMathematics
WendesdayHistoryChineseHistoryEnglishChineseHistory
ThursdayHistoryEnglishGeopraghyMathematicsGeopraghyEnglishMathematics
FridayGeopraghyEnglishGeopraghyEnglish
SaturdayGeopraghyEnglishGeopraghyEnglish
" +"
Weekday
Forenoon
Afternoon
Time
Class 1
Class 2
Class 3
Class 4
Class 5
Class 6
Class 7
Time
Monday08:00 ~ 12:00EnglishMathematicsHistoryEnglishHistoryEnglishHistory14:00 ~ 17:00
TuesdayEnglishGeopraghyHistoryEnglishHistoryMathematics
WendesdayHistoryChineseHistoryEnglishChineseHistory
ThursdayHistoryEnglishGeopraghyMathematicsGeopraghyEnglishMathematics
FridayGeopraghyEnglishGeopraghyEnglish
SaturdayGeopraghyEnglishGeopraghyEnglish
" ``` ``` -"
Weekday
Forenoon
Afternoon
Time
Class 1
Class 2
Class 3
Class 4
Class 5
Class 6
Class 7
Time
Monday08:00 ~ 12:00EnglishMathematicsHistoryEnglishHistoryEnglishHistory14:00 ~ 17:00
TuesdayEnglishGeopraghyHistoryEnglishHistoryMathematics
WendesdayHistoryChineseHistoryEnglishChineseHistory
ThursdayHistoryEnglishGeopraghyMathematicsGeopraghyEnglishMathematics
FridayGeopraghyEnglishGeopraghyEnglish
SaturdayGeopraghyEnglishGeopraghyEnglish
" +"
Weekday
Forenoon
Afternoon
Time
Class 1
Class 2
Class 3
Class 4
Class 5
Class 6
Class 7
Time
Monday08:00 ~ 12:00EnglishMathematicsHistoryEnglishHistoryEnglishHistory14:00 ~ 17:00
TuesdayEnglishGeopraghyHistoryEnglishHistoryMathematics
WendesdayHistoryChineseHistoryEnglishChineseHistory
ThursdayHistoryEnglishGeopraghyMathematicsGeopraghyEnglishMathematics
FridayGeopraghyEnglishGeopraghyEnglish
SaturdayGeopraghyEnglishGeopraghyEnglish
" ``` ``` -"
Weekday
Forenoon
Afternoon
Time
Class 1
Class 2
Class 3
Class 4
Class 5
Class 6
Class 7
Time
Monday08:00 ~ 12:00EnglishMathematicsHistoryEnglishHistoryEnglishHistory14:00 ~ 17:00
TuesdayEnglishGeopraghyHistoryEnglishHistoryMathematics
WendesdayHistoryChineseHistoryEnglishChineseHistory
ThursdayHistoryEnglishGeopraghyMathematicsGeopraghyEnglishMathematics
FridayGeopraghyEnglishGeopraghyEnglish
SaturdayGeopraghyEnglishGeopraghyEnglish
" +"
Weekday
Forenoon
Afternoon
Time
Class 1
Class 2
Class 3
Class 4
Class 5
Class 6
Class 7
Time
Monday08:00 ~ 12:00EnglishMathematicsHistoryEnglishHistoryEnglishHistory14:00 ~ 17:00
TuesdayEnglishGeopraghyHistoryEnglishHistoryMathematics
WendesdayHistoryChineseHistoryEnglishChineseHistory
ThursdayHistoryEnglishGeopraghyMathematicsGeopraghyEnglishMathematics
FridayGeopraghyEnglishGeopraghyEnglish
SaturdayGeopraghyEnglishGeopraghyEnglish
" ``` ``` -"
Weekday
Forenoon
Afternoon
Time
Class 1
Class 2
Class 3
Class 4
Class 5
Class 6
Class 7
Time
Monday08:00 ~ 12:00EnglishMathematicsHistoryEnglishHistoryEnglishHistory14:00 ~ 17:00
TuesdayEnglishGeopraghyHistoryEnglishHistoryMathematics
WendesdayHistoryChineseHistoryEnglishChineseHistory
ThursdayHistoryEnglishGeopraghyMathematicsGeopraghyEnglishMathematics
FridayGeopraghyEnglishGeopraghyEnglish
SaturdayGeopraghyEnglishGeopraghyEnglish
" +"
Weekday
Forenoon
Afternoon
Time
Class 1
Class 2
Class 3
Class 4
Class 5
Class 6
Class 7
Time
Monday08:00 ~ 12:00EnglishMathematicsHistoryEnglishHistoryEnglishHistory14:00 ~ 17:00
TuesdayEnglishGeopraghyHistoryEnglishHistoryMathematics
WendesdayHistoryChineseHistoryEnglishChineseHistory
ThursdayHistoryEnglishGeopraghyMathematicsGeopraghyEnglishMathematics
FridayGeopraghyEnglishGeopraghyEnglish
SaturdayGeopraghyEnglishGeopraghyEnglish
" ``` #### `group` @@ -85,7 +85,7 @@ ``` ``` -"
" +"
" ``` ``` @@ -97,11 +97,11 @@ ``` ``` -"
" +"
" ``` ``` -"
" +"
" ``` ``` @@ -111,15 +111,15 @@ #### `fix columns` ``` -"
Name
Column1
Column2
Column3
Column4
Action
Johntesttesttesttestaction
Tomtesttesttesttestaction
Javeytesttesttesttestaction
" +"
Name
Column1
Column2
Column3
Column4
Action
Johntesttesttesttestaction
Tomtesttesttesttestaction
Javeytesttesttesttestaction
" ``` ``` -"
Name
Column1
Column2
Column3
Column4
Action
Johntesttesttesttestaction
Tomtesttesttesttestaction
Javeytesttesttesttestaction
" +"
Name
Column1
Column2
Column3
Column4
Action
Johntesttesttesttestaction
Tomtesttesttesttestaction
Javeytesttesttesttestaction
" ``` ``` -"
Name
Column1
Column2
Column3
Column4
Action
Johntesttesttesttestaction
Tomtesttesttesttestaction
Javeytesttesttesttestaction
" +"
Name
Column1
Column2
Column3
Column4
Action
Johntesttesttesttestaction
Tomtesttesttesttestaction
Javeytesttesttesttestaction
" ``` #### `resize` @@ -143,11 +143,11 @@ #### `loading` ``` -"
表头1
表头2
第一行哈哈1
第二行哈哈2
第三行哈哈3
" +"
表头1
表头2
第一行哈哈1
第二行哈哈2
第三行哈哈3
" ``` ``` -"
表头1
表头2
第一行哈哈1
第二行哈哈2
第三行哈哈3
" +"
表头1
表头2
第一行哈哈1
第二行哈哈2
第三行哈哈3
" ``` #### `export` @@ -198,26 +198,26 @@ #### `tree` ``` -"
Name
Size
Audios12MB -
Images14MB +"
Name
Size
Audios12MB +
Images14MB
doc.pdf18MB
" ``` ``` -"
Name
Size
Audios12MB +"
Name
Size
Audios12MB
Fly.mp37MB
Fade.aac5MB -
Images14MB +
Images14MB
doc.pdf18MB
" ``` ``` -"
Name
Size
Audios12MB +"
Name
Size
Audios12MB
Fly.mp37MB
Fade.aac5MB -
Images14MB +
Images14MB
doc.pdf18MB
" ``` @@ -225,7 +225,7 @@ #### `render a hidden table with minWidth` ``` -"
暂无数据
" +"
暂无数据
" ``` #### `draggable` diff --git a/test/__snapshots__/Tabs.md b/test/__snapshots__/Tabs.md index 8e940428f..328fd6629 100644 --- a/test/__snapshots__/Tabs.md +++ b/test/__snapshots__/Tabs.md @@ -3,32 +3,32 @@ #### `closable` ``` -"
Tab 1
Tab 2
Tab 3
Tab 4
" +"
Tab 1
Tab 2
Tab 3
Tab 4
" ``` ``` -"
Tab 1
Tab 2
Tab 3
Tab 4
" +"
Tab 1
Tab 2
Tab 3
Tab 4
" ``` ``` -"
Tab 1
Tab 2
Tab 3
Tab 4
" +"
Tab 1
Tab 2
Tab 3
Tab 4
" ``` ``` -"
Tab 2
Tab 3
Tab 4
" +"
Tab 2
Tab 3
Tab 4
" ``` #### `vertical scroll` ``` -"
0
1
2
3
4
5
6
7
8
9
" +"
0
1
2
3
4
5
6
7
8
9
" ``` ``` -"
0
1
2
3
4
5
6
7
8
9
" +"
0
1
2
3
4
5
6
7
8
9
" ``` ``` -"
0
1
2
3
4
5
6
7
8
9
" +"
0
1
2
3
4
5
6
7
8
9
" ``` diff --git a/test/__snapshots__/Timepicker.md b/test/__snapshots__/Timepicker.md index a8c0e9a8c..adac3bc49 100644 --- a/test/__snapshots__/Timepicker.md +++ b/test/__snapshots__/Timepicker.md @@ -4,49 +4,49 @@ ``` "
15
16
17
18
19
20
21
22
23
00
01
02
03
04
05
06
07
08
09
51
52
53
54
55
56
57
58
59
00
01
02
03
04
05
06
07
08
09
51
52
53
54
55
56
57
58
59
00
01
02
03
04
05
06
07
08
09
-
" +
" ``` ``` "
16
17
18
19
20
21
22
23
00
01
02
03
04
05
06
07
08
09
10
51
52
53
54
55
56
57
58
59
00
01
02
03
04
05
06
07
08
09
51
52
53
54
55
56
57
58
59
00
01
02
03
04
05
06
07
08
09
-
" +
" ``` ``` "
17
18
19
20
21
22
23
00
01
02
03
04
05
06
07
08
09
10
11
51
52
53
54
55
56
57
58
59
00
01
02
03
04
05
06
07
08
09
51
52
53
54
55
56
57
58
59
00
01
02
03
04
05
06
07
08
09
-
" +
" ``` ``` "
18
19
20
21
22
23
00
01
02
03
04
05
06
07
08
09
10
11
12
54
55
56
57
58
59
00
01
02
03
04
05
06
07
08
09
10
11
12
54
55
56
57
58
59
00
01
02
03
04
05
06
07
08
09
10
11
12
-
" +
" ``` ``` "
16
17
18
19
20
21
22
23
00
01
02
03
04
05
06
07
08
09
10
51
52
53
54
55
56
57
58
59
00
01
02
03
04
05
06
07
08
09
51
52
53
54
55
56
57
58
59
00
01
02
03
04
05
06
07
08
09
-
" +
" ``` ``` "
18
19
20
21
22
23
00
01
02
03
04
05
06
07
08
09
10
11
12
54
55
56
57
58
59
00
01
02
03
04
05
06
07
08
09
10
11
12
55
56
57
58
59
00
01
02
03
04
05
06
07
08
09
10
11
12
13
-
" +
" ``` #### `range` ``` "
开始时间
15
16
17
18
19
20
21
22
23
00
01
02
03
04
05
06
07
08
09
51
52
53
54
55
56
57
58
59
00
01
02
03
04
05
06
07
08
09
51
52
53
54
55
56
57
58
59
00
01
02
03
04
05
06
07
08
09
-
结束时间
14
15
16
17
18
19
20
21
22
23
00
01
02
03
04
05
06
07
08
50
51
52
53
54
55
56
57
58
59
00
01
02
03
04
05
06
07
08
50
51
52
53
54
55
56
57
58
59
00
01
02
03
04
05
06
07
08
" +
结束时间
14
15
16
17
18
19
20
21
22
23
00
01
02
03
04
05
06
07
08
50
51
52
53
54
55
56
57
58
59
00
01
02
03
04
05
06
07
08
50
51
52
53
54
55
56
57
58
59
00
01
02
03
04
05
06
07
08
" ``` ``` "
开始时间
16
17
18
19
20
21
22
23
00
01
02
03
04
05
06
07
08
09
10
51
52
53
54
55
56
57
58
59
00
01
02
03
04
05
06
07
08
09
51
52
53
54
55
56
57
58
59
00
01
02
03
04
05
06
07
08
09
-
结束时间
14
15
16
17
18
19
20
21
22
23
00
01
02
03
04
05
06
07
08
50
51
52
53
54
55
56
57
58
59
00
01
02
03
04
05
06
07
08
50
51
52
53
54
55
56
57
58
59
00
01
02
03
04
05
06
07
08
" +
结束时间
14
15
16
17
18
19
20
21
22
23
00
01
02
03
04
05
06
07
08
50
51
52
53
54
55
56
57
58
59
00
01
02
03
04
05
06
07
08
50
51
52
53
54
55
56
57
58
59
00
01
02
03
04
05
06
07
08
" ``` ``` "
开始时间
16
17
18
19
20
21
22
23
00
01
02
03
04
05
06
07
08
09
10
51
52
53
54
55
56
57
58
59
00
01
02
03
04
05
06
07
08
09
51
52
53
54
55
56
57
58
59
00
01
02
03
04
05
06
07
08
09
-
结束时间
16
17
18
19
20
21
22
23
00
01
02
03
04
05
06
07
08
09
10
50
51
52
53
54
55
56
57
58
59
00
01
02
03
04
05
06
07
08
50
51
52
53
54
55
56
57
58
59
00
01
02
03
04
05
06
07
08
" +
结束时间
16
17
18
19
20
21
22
23
00
01
02
03
04
05
06
07
08
09
10
50
51
52
53
54
55
56
57
58
59
00
01
02
03
04
05
06
07
08
50
51
52
53
54
55
56
57
58
59
00
01
02
03
04
05
06
07
08
" ``` #### `step` @@ -59,24 +59,24 @@ ``` "
开始时间
20:00:00
20:30:00
21:00:00
21:30:00
22:00:00
22:30:00
23:00:00
23:30:00
23:59:59
00:00:00
00:30:00
01:00:00
01:30:00
02:00:00
02:30:00
03:00:00
03:30:00
04:00:00
04:30:00
-
结束时间
19:30:00
20:00:00
20:30:00
21:00:00
21:30:00
22:00:00
22:30:00
23:00:00
23:30:00
23:59:59
00:00:00
00:30:00
01:00:00
01:30:00
02:00:00
02:30:00
03:00:00
03:30:00
04:00:00
" +
结束时间
19:30:00
20:00:00
20:30:00
21:00:00
21:30:00
22:00:00
22:30:00
23:00:00
23:30:00
23:59:59
00:00:00
00:30:00
01:00:00
01:30:00
02:00:00
02:30:00
03:00:00
03:30:00
04:00:00
" ``` ``` "
开始时间
20:30:00
21:00:00
21:30:00
22:00:00
22:30:00
23:00:00
23:30:00
23:59:59
00:00:00
00:30:00
01:00:00
01:30:00
02:00:00
02:30:00
03:00:00
03:30:00
04:00:00
04:30:00
05:00:00
-
结束时间
19:30:00
20:00:00
20:30:00
21:00:00
21:30:00
22:00:00
22:30:00
23:00:00
23:30:00
23:59:59
00:00:00
00:30:00
01:00:00
01:30:00
02:00:00
02:30:00
03:00:00
03:30:00
04:00:00
" +
结束时间
19:30:00
20:00:00
20:30:00
21:00:00
21:30:00
22:00:00
22:30:00
23:00:00
23:30:00
23:59:59
00:00:00
00:30:00
01:00:00
01:30:00
02:00:00
02:30:00
03:00:00
03:30:00
04:00:00
" ``` ``` "
开始时间
20:30:00
21:00:00
21:30:00
22:00:00
22:30:00
23:00:00
23:30:00
23:59:59
00:00:00
00:30:00
01:00:00
01:30:00
02:00:00
02:30:00
03:00:00
03:30:00
04:00:00
04:30:00
05:00:00
-
结束时间
20:30:00
21:00:00
21:30:00
22:00:00
22:30:00
23:00:00
23:30:00
23:59:59
00:00:00
00:30:00
01:00:00
01:30:00
02:00:00
02:30:00
03:00:00
03:30:00
04:00:00
04:30:00
05:00:00
" +
结束时间
20:30:00
21:00:00
21:30:00
22:00:00
22:30:00
23:00:00
23:30:00
23:59:59
00:00:00
00:30:00
01:00:00
01:30:00
02:00:00
02:30:00
03:00:00
03:30:00
04:00:00
04:30:00
05:00:00
" ``` #### `format` ``` "
15
16
17
18
19
20
21
22
23
00
01
02
03
04
05
06
07
08
09
51
52
53
54
55
56
57
58
59
00
01
02
03
04
05
06
07
08
09
51
52
53
54
55
56
57
58
59
00
01
02
03
04
05
06
07
08
09
-
" +
" ``` ``` @@ -93,12 +93,12 @@ ``` "
开始时间
20:00
20:30
21:00
21:30
22:00
22:30
23:00
23:30
23:59
00:00
00:30
01:00
01:30
02:00
02:30
03:00
03:30
04:00
04:30
-
结束时间
19:30
20:00
20:30
21:00
21:30
22:00
22:30
23:00
23:30
23:59
00:00
00:30
01:00
01:30
02:00
02:30
03:00
03:30
04:00
" +
结束时间
19:30
20:00
20:30
21:00
21:30
22:00
22:30
23:00
23:30
23:59
00:00
00:30
01:00
01:30
02:00
02:30
03:00
03:30
04:00
" ``` ``` "
开始时间
20:30
21:00
21:30
22:00
22:30
23:00
23:30
23:59
00:00
00:30
01:00
01:30
02:00
02:30
03:00
03:30
04:00
04:30
05:00
-
结束时间
20:30
21:00
21:30
22:00
22:30
23:00
23:30
23:59
00:00
00:30
01:00
01:30
02:00
02:30
03:00
03:30
04:00
04:30
05:00
" +
结束时间
20:30
21:00
21:30
22:00
22:30
23:00
23:30
23:59
00:00
00:30
01:00
01:30
02:00
02:30
03:00
03:30
04:00
04:30
05:00
" ``` ``` diff --git a/test/__snapshots__/Transfer.md b/test/__snapshots__/Transfer.md index a1a95f544..776c323ab 100644 --- a/test/__snapshots__/Transfer.md +++ b/test/__snapshots__/Transfer.md @@ -4,25 +4,25 @@ ``` "
1 / - 3
0 / + 3
0 / 2

You selected: [0,1]

" ``` ``` "
0 / - 2
0 / + 2
0 / 3

You selected: [0,1,2]

" ``` ``` "
0 / - 2
1 / + 2
1 / 3

You selected: [0,1,2]

" ``` ``` "
0 / - 3
0 / + 3
0 / 2

You selected: [1,2]

" ``` @@ -30,31 +30,31 @@ ``` "
0 / - 1
0 / + 1
0 / 0
" ``` ``` "
1 / - 1
0 / + 1
0 / 0
" ``` ``` "
1 / - 5
0 / + 5
0 / 0
" ``` ``` "
4 / - 5
0 / + 5
0 / 0
" ``` ``` "
4 / - 5
0 / + 5
0 / 0
" ``` diff --git a/test/__snapshots__/Tree.md b/test/__snapshots__/Tree.md index f10e14dab..7a3338b8e 100644 --- a/test/__snapshots__/Tree.md +++ b/test/__snapshots__/Tree.md @@ -21,7 +21,7 @@ ``` ``` -"


First floor-1
First floor-2
" +"


First floor-1
First floor-2
" ``` ``` @@ -29,7 +29,7 @@ ``` ``` -"


First floor-1
First floor-2
Second floor-2.1
Third floor-2.1.1
Third floor-2.1.2
Second floor-2.2
" +"


First floor-1
First floor-2
Second floor-2.1
Third floor-2.1.1
Third floor-2.1.2
Second floor-2.2
" ``` ``` @@ -37,15 +37,15 @@ ``` ``` -"


First floor-1
First floor-2
Second floor-2.1
Third floor-2.1.1
Third floor-2.1.2
Second floor-2.2
" +"


First floor-1
First floor-2
Second floor-2.1
Third floor-2.1.1
Third floor-2.1.2
Second floor-2.2
" ``` ``` -"


First floor-1
First floor-2
Second floor-2.1
Third floor-2.1.1
Third floor-2.1.2
Second floor-2.2
" +"


First floor-1
First floor-2
Second floor-2.1
Third floor-2.1.1
Third floor-2.1.2
Second floor-2.2
" ``` ``` -"


First floor-1
First floor-2
Second floor-2.1
Third floor-2.1.1
Third floor-2.1.2
Second floor-2.2
" +"


First floor-1
First floor-2
Second floor-2.1
Third floor-2.1.1
Third floor-2.1.2
Second floor-2.2
" ``` #### `async load` @@ -69,7 +69,7 @@ #### `append and remove node` ``` -"
First floor-1
First floor-2
Appended root node
" +"
First floor-1
First floor-2
Appended root node
" ``` ``` @@ -121,15 +121,15 @@ Array [ ``` ``` -"
First floor-1
Second floor-1.1
Appended node
First floor-2
Appended root node
" +"
First floor-1
Second floor-1.1
Appended node
First floor-2
Appended root node
" ``` ``` -"
First floor-1
Second floor-1.1
Third floor-1.1.1
Appended node
Appended node
First floor-2
Appended root node
" +"
First floor-1
Second floor-1.1
Third floor-1.1.1
Appended node
Appended node
First floor-2
Appended root node
" ``` ``` -"
First floor-1
Second floor-1.1
Appended node
Appended node
First floor-2
Appended root node
" +"
First floor-1
Second floor-1.1
Appended node
Appended node
First floor-2
Appended root node
" ``` ``` @@ -203,7 +203,7 @@ Array [ #### `select` ``` -"


First floor-1
First floor-2
Second floor-2.1
Second floor-2.2
" +"


First floor-1
First floor-2
Second floor-2.1
Second floor-2.2
" ``` #### `draggable` diff --git a/test/__snapshots__/Upload.md b/test/__snapshots__/Upload.md index ff491c9b9..1de4783dd 100644 --- a/test/__snapshots__/Upload.md +++ b/test/__snapshots__/Upload.md @@ -3,19 +3,19 @@ #### `basic` ``` -"
只能上传JPG/PNG格式文件,且不超过500kb
" +"
只能上传JPG/PNG格式文件,且不超过500kb
" ``` ``` -"
只能上传JPG/PNG格式文件,且不超过500kb
a.png
" +"
只能上传JPG/PNG格式文件,且不超过500kb
a.png
" ``` ``` -"
只能上传JPG/PNG格式文件,且不超过500kb
a.png
" +"
只能上传JPG/PNG格式文件,且不超过500kb
a.png
" ``` ``` -"
只能上传JPG/PNG格式文件,且不超过500kb
" +"
只能上传JPG/PNG格式文件,且不超过500kb
" ``` #### `drag` @@ -47,7 +47,7 @@ ``` ``` -"
查看图片
" +"
查看图片
" ``` ``` @@ -61,11 +61,11 @@ #### `manually` ``` -"
a.png
" +"
a.png
" ``` ``` -"
a.png
" +"
a.png
" ``` #### `should trigger error event when exceed the maxSize` @@ -77,13 +77,13 @@ #### `should handle error on uploading correctly` ``` -"
a.png
" +"
a.png
" ``` #### `should abort request when remove file in progress` ``` -"
" +"
" ``` #### `should check file type` From 9e3169e999c88398010bd90ebe3f166c490bc99c Mon Sep 17 00:00:00 2001 From: zhangbing4 Date: Wed, 22 May 2024 14:45:14 +0800 Subject: [PATCH 5/5] =?UTF-8?q?fix:=20fix=20switch=20beforeChanged=20?= =?UTF-8?q?=E5=A2=9E=E5=8A=A0value=E5=85=A5=E5=8F=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- components/switch/demos/beforeChange.md | 7 +++++-- components/switch/index.md | 2 +- components/switch/index.ts | 6 +++--- 3 files changed, 9 insertions(+), 6 deletions(-) diff --git a/components/switch/demos/beforeChange.md b/components/switch/demos/beforeChange.md index f876c8f62..de11c6a77 100644 --- a/components/switch/demos/beforeChange.md +++ b/components/switch/demos/beforeChange.md @@ -22,6 +22,7 @@ import {Switch} from 'kpc'; ``` ```ts +import { Message } from 'kpc'; export default class extends Component { static template = template; static defaults() { @@ -31,14 +32,16 @@ export default class extends Component { } } - beforeChange() { + beforeChange(value: any) { return new Promise(resolve => { + Message.warning(`current value is ${value}`); setTimeout(() => { resolve(true); }, 1000); }); } - beforeChangeFalse() { + beforeChangeFalse(value: any) { + Message.warning(`current value is ${value}`); return new Promise(resolve => { setTimeout(() => { resolve(false); diff --git a/components/switch/index.md b/components/switch/index.md index 8ed670040..194e93c81 100644 --- a/components/switch/index.md +++ b/components/switch/index.md @@ -23,7 +23,7 @@ sidebar: doc | size | 尺寸 | `"large"` | `"default"` | `"small"` | `"mini"` | `"default"` | | disabled | 控制禁用 | `boolean` | `false` | | loading | 开关loading属性 | `boolean` | `false` | -| beforeChange | 切换`Switch`之前的拦截函数,如果该函数返回`false`则阻止本次切换,支持异步函数 | () => boolean | Promise<boolean> | `undefined` | +| beforeChange | 切换`Switch`之前的拦截函数,如果该函数返回`false`则阻止本次切换,支持异步函数, 参数为当前value | (value: any) => boolean | Promise<boolean> | `undefined` | # 扩展点 diff --git a/components/switch/index.ts b/components/switch/index.ts index 17ad838bd..82952a0f7 100644 --- a/components/switch/index.ts +++ b/components/switch/index.ts @@ -18,7 +18,7 @@ export interface SwitchProps { size?: Sizes disabled?: boolean loading?: boolean - beforeChange?: () => boolean | Promise; + beforeChange?: (value: True | False | undefined) => boolean | Promise; } export interface SwitchEvents { @@ -96,7 +96,7 @@ export class Switch extends Component extends Component