@vtx/components 4.0.0-beta.2 → 4.0.0-beta.21
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/es/index.js +3 -1
- package/es/utils/filterSpecialCharacters.js +47 -46
- package/es/utils/index.js +1 -2
- package/es/vtx-color-picker/index.js +50 -39
- package/es/vtx-combogrid/Combogrid.js +11 -6
- package/es/vtx-combogrid/index.js +1 -1
- package/es/vtx-combogrid/style/index.js +4 -4
- package/es/vtx-datagrid/Store/Provide.js +6 -5
- package/es/vtx-datagrid/ToolBar/components/ColumnSetting/index.js +8 -3
- package/es/vtx-datagrid/ToolBar/components/Density/index.js +3 -0
- package/es/vtx-datagrid/ToolBar/components/TableStyle/index.js +3 -0
- package/es/vtx-datagrid/ToolBar/index.js +2 -2
- package/es/vtx-datagrid/index.js +26 -14
- package/es/vtx-datagrid/style/index.js +22 -7
- package/es/vtx-descriptions/Descriptions.js +30 -0
- package/es/vtx-descriptions/index.js +3 -0
- package/es/vtx-descriptions/style/index.js +19 -0
- package/es/vtx-ellipsis-text/index.js +6 -1
- package/es/vtx-export/index.js +24 -25
- package/es/vtx-export-async/index.js +28 -8
- package/es/vtx-form-layout/Card.js +10 -10
- package/es/vtx-form-layout/Divider.js +1 -1
- package/es/vtx-form-layout/Pane.js +23 -12
- package/es/vtx-form-layout/style/index.js +0 -1
- package/es/vtx-icon/index.js +41 -4
- package/es/vtx-image/Preview.js +11 -6
- package/es/vtx-import/index.js +78 -37
- package/es/vtx-import/result.js +2 -1
- package/es/vtx-import/style/index.js +11 -1
- package/es/vtx-import2/index.js +4 -2
- package/es/vtx-import2/style/index.js +1 -1
- package/es/vtx-input/TextArea/index.js +11 -6
- package/es/vtx-modal/style/index.js +5 -3
- package/es/vtx-page-layout/Content.js +1 -1
- package/es/vtx-page-layout/TabLayout.js +1 -7
- package/es/vtx-page-layout/TableLayout.js +14 -4
- package/es/vtx-page-layout/TableWrap.js +3 -2
- package/es/vtx-page-layout/TreeLayout.js +2 -8
- package/es/vtx-page-layout/container.js +6 -5
- package/es/vtx-provider/index.js +11 -4
- package/es/vtx-provider/locale/en_US.js +10 -2
- package/es/vtx-provider/locale/zh_CN.js +20 -2
- package/es/vtx-scrollable-row/index.js +38 -28
- package/es/vtx-search/index.js +5 -4
- package/es/vtx-search/style/index.js +2 -1
- package/es/vtx-select/index.js +25 -11
- package/es/vtx-signature/index.js +5 -4
- package/es/vtx-signature/style/index.js +1 -1
- package/es/vtx-split-pane/SplitPane.js +34 -24
- package/es/vtx-split-pane/style/index.js +7 -112
- package/es/vtx-transfer/Transfer.js +16 -233
- package/es/vtx-transfer/style/index.js +5 -28
- package/es/vtx-transfer-select/TransferSelect.js +143 -0
- package/es/vtx-transfer-select/index.js +3 -0
- package/es/vtx-transfer-select/style/index.js +19 -0
- package/es/vtx-tree/index.js +104 -40
- package/es/vtx-tree-select/index.js +55 -92
- package/es/vtx-tree-select/style/index.js +4 -2
- package/es/vtx-upload/FilePreview.js +2 -1
- package/es/vtx-wang-editor/index.js +278 -108
- package/es/vtx-wang-editor/wangEditorUtil.js +59 -9
- package/lib/index.js +28 -4
- package/lib/utils/filterSpecialCharacters.js +48 -46
- package/lib/utils/index.js +0 -7
- package/lib/vtx-color-picker/index.js +50 -39
- package/lib/vtx-combogrid/Combogrid.js +11 -6
- package/lib/vtx-combogrid/index.js +1 -1
- package/lib/vtx-combogrid/style/index.js +4 -4
- package/lib/vtx-datagrid/Store/Provide.js +21 -19
- package/lib/vtx-datagrid/ToolBar/components/ColumnSetting/index.js +8 -4
- package/lib/vtx-datagrid/ToolBar/components/Density/index.js +3 -0
- package/lib/vtx-datagrid/ToolBar/components/TableStyle/index.js +3 -0
- package/lib/vtx-datagrid/ToolBar/index.js +2 -2
- package/lib/vtx-datagrid/index.js +27 -14
- package/lib/vtx-datagrid/style/index.js +22 -7
- package/lib/vtx-descriptions/Descriptions.js +39 -0
- package/lib/vtx-descriptions/index.js +15 -0
- package/lib/vtx-descriptions/style/index.js +25 -0
- package/lib/vtx-ellipsis-text/index.js +6 -1
- package/lib/vtx-export/index.js +25 -26
- package/lib/vtx-export-async/index.js +26 -6
- package/lib/vtx-form-layout/Card.js +9 -9
- package/lib/vtx-form-layout/Divider.js +1 -1
- package/lib/vtx-form-layout/Pane.js +22 -11
- package/lib/vtx-form-layout/style/index.js +0 -1
- package/lib/vtx-icon/index.js +59 -14
- package/lib/vtx-image/Preview.js +11 -6
- package/lib/vtx-import/index.js +77 -36
- package/lib/vtx-import/result.js +2 -1
- package/lib/vtx-import/style/index.js +11 -1
- package/lib/vtx-import2/index.js +4 -2
- package/lib/vtx-import2/style/index.js +1 -1
- package/lib/vtx-input/TextArea/index.js +11 -6
- package/lib/vtx-modal/style/index.js +5 -3
- package/lib/vtx-page-layout/Content.js +1 -1
- package/lib/vtx-page-layout/TabLayout.js +3 -9
- package/lib/vtx-page-layout/TableLayout.js +14 -4
- package/lib/vtx-page-layout/TableWrap.js +3 -2
- package/lib/vtx-page-layout/TreeLayout.js +4 -10
- package/lib/vtx-page-layout/container.js +6 -5
- package/lib/vtx-provider/index.js +11 -4
- package/lib/vtx-provider/locale/en_US.js +10 -2
- package/lib/vtx-provider/locale/zh_CN.js +20 -2
- package/lib/vtx-scrollable-row/index.js +38 -28
- package/lib/vtx-search/index.js +5 -4
- package/lib/vtx-search/style/index.js +2 -1
- package/lib/vtx-select/index.js +25 -11
- package/lib/vtx-signature/index.js +4 -3
- package/lib/vtx-signature/style/index.js +1 -1
- package/lib/vtx-split-pane/SplitPane.js +32 -22
- package/lib/vtx-split-pane/style/index.js +7 -112
- package/lib/vtx-transfer/Transfer.js +15 -231
- package/lib/vtx-transfer/style/index.js +5 -28
- package/lib/vtx-transfer-select/TransferSelect.js +151 -0
- package/lib/vtx-transfer-select/index.js +15 -0
- package/lib/vtx-transfer-select/style/index.js +25 -0
- package/lib/vtx-tree/index.js +102 -38
- package/lib/vtx-tree-select/index.js +55 -92
- package/lib/vtx-tree-select/style/index.js +4 -2
- package/lib/vtx-upload/FilePreview.js +2 -1
- package/lib/vtx-wang-editor/index.js +277 -109
- package/lib/vtx-wang-editor/wangEditorUtil.js +59 -10
- package/package.json +60 -33
- package/dist/1077.66b69576.async.js +0 -1
- package/dist/1572.2b90c634.async.js +0 -1
- package/dist/1632.03c8f7ad.async.js +0 -2
- package/dist/2267.aeefe75c.async.js +0 -137
- package/dist/2791.54c703a9.async.js +0 -5
- package/dist/2952.348f2c3f.async.js +0 -654
- package/dist/3421.4387ba14.async.js +0 -1264
- package/dist/3500.29895123.async.js +0 -1
- package/dist/404.html +0 -17
- package/dist/4195.93b9d34d.async.js +0 -1
- package/dist/4680.bca43384.async.js +0 -1
- package/dist/7965.a57e8f9a.async.js +0 -1
- package/dist/8300.66a39b1b.async.js +0 -1
- package/dist/8982.8e38e68e.async.js +0 -1
- package/dist/9877.87ec0c28.async.js +0 -11
- package/dist/VtxColorPicker__demos.60d61929.async.js +0 -1
- package/dist/VtxCombogrid__demos.8c798bc7.async.js +0 -1
- package/dist/VtxDatagrid__demos.e07857d0.async.js +0 -1
- package/dist/VtxEllipsisText__demos.2e269d20.async.js +0 -1
- package/dist/VtxExportAsync__demos.13e3bb1c.async.js +0 -1
- package/dist/VtxExport__demos.1cce5217.async.js +0 -1
- package/dist/VtxFormLayout__demos.b8bb038a.async.js +0 -1
- package/dist/VtxImage__demos.774c697e.async.js +0 -1
- package/dist/VtxImport2__demos.8182b8d2.async.js +0 -1
- package/dist/VtxImport__demos.3865c4e9.async.js +0 -1
- package/dist/VtxInput__demos.5fd77ccb.async.js +0 -1
- package/dist/VtxModal__demos.e0aae505.async.js +0 -1
- package/dist/VtxPageLayout__demos.b1cd7624.async.js +0 -1
- package/dist/VtxRpsFrame__demos.07c3fb5e.async.js +0 -1
- package/dist/VtxScrollableRow__demos.eeb18c3c.async.js +0 -1
- package/dist/VtxSearch__demos.f6b048ae.async.js +0 -1
- package/dist/VtxSelect__demos.0e8f1c52.async.js +0 -1
- package/dist/VtxSignature__demos.d0c4bcac.async.js +0 -1
- package/dist/VtxSplitPane__demos.6dda4f09.async.js +0 -1
- package/dist/VtxStatisticsColumn__demos.b2be3e4b.async.js +0 -1
- package/dist/VtxTimePicker__demos.ced305a6.async.js +0 -1
- package/dist/VtxTreeSelect__demos.daab9057.async.js +0 -1
- package/dist/VtxTree__demos.15550a80.async.js +0 -1
- package/dist/VtxUpload__demos.794c746a.async.js +0 -1
- package/dist/VtxWangEditor__demos.92b4daf1.async.js +0 -1
- package/dist/changelog/index.html +0 -17
- package/dist/components/index.html +0 -17
- package/dist/components/vtx-color-picker/index.html +0 -17
- package/dist/components/vtx-combogrid/index.html +0 -17
- package/dist/components/vtx-datagrid/index.html +0 -17
- package/dist/components/vtx-date-picker/index.html +0 -17
- package/dist/components/vtx-ellipsis-text/index.html +0 -17
- package/dist/components/vtx-export/index.html +0 -17
- package/dist/components/vtx-export-async/index.html +0 -17
- package/dist/components/vtx-form-layout/index.html +0 -17
- package/dist/components/vtx-image/index.html +0 -17
- package/dist/components/vtx-import/index.html +0 -17
- package/dist/components/vtx-import2/index.html +0 -17
- package/dist/components/vtx-input/index.html +0 -17
- package/dist/components/vtx-modal/index.html +0 -17
- package/dist/components/vtx-page-layout/index.html +0 -17
- package/dist/components/vtx-rps-frame/index.html +0 -17
- package/dist/components/vtx-scrollable-row/index.html +0 -17
- package/dist/components/vtx-search/index.html +0 -17
- package/dist/components/vtx-select/index.html +0 -17
- package/dist/components/vtx-signature/index.html +0 -17
- package/dist/components/vtx-split-pane/index.html +0 -17
- package/dist/components/vtx-statistics-column/index.html +0 -17
- package/dist/components/vtx-time-picker/index.html +0 -17
- package/dist/components/vtx-tree/index.html +0 -17
- package/dist/components/vtx-tree-select/index.html +0 -17
- package/dist/components/vtx-upload/index.html +0 -17
- package/dist/components/vtx-wang-editor/index.html +0 -17
- package/dist/demos.f6817f69.async.js +0 -1
- package/dist/docs/api-changes/index.html +0 -17
- package/dist/docs/index.html +0 -17
- package/dist/docs/migration-guide/index.html +0 -17
- package/dist/dumi__tmp-production__dumi__theme__ContextWrapper.aca58684.async.js +0 -1
- package/dist/favicon.ico +0 -0
- package/dist/icon.png +0 -0
- package/dist/index.html +0 -17
- package/dist/meta__site.2e323023.async.js +0 -5392
- package/dist/meta__site.51651769.chunk.css +0 -9
- package/dist/meta__vtx-search.5ddbd36b.async.js +0 -5
- package/dist/nm__dumi-theme-vortex-style__dist__layouts__DemoLayout__index.7cea644e.async.js +0 -1
- package/dist/nm__dumi-theme-vortex-style__dist__layouts__DocLayout__index.eec80432.chunk.css +0 -1
- package/dist/nm__dumi__dist__client__pages__404.0d35bb9e.async.js +0 -1
- package/dist/nm__dumi__dist__client__pages__404.8b85f2d9.chunk.css +0 -1
- package/dist/nm__dumi__dist__client__pages__Demo__index.578aa5c0.chunk.css +0 -1
- package/dist/nm__dumi__dist__client__pages__Demo__index.88d92ec7.async.js +0 -1
- package/dist/preload_helper.214f203a.js +0 -1
- package/dist/site__changelog.md.33be0665.chunk.css +0 -1
- package/dist/site__changelog.md.ca6f70d0.async.js +0 -1
- package/dist/site__components__index.md.1c0dd566.async.js +0 -1
- package/dist/site__components__index.md.33be0665.chunk.css +0 -1
- package/dist/site__components__vtx-color-picker__index.md.0b5f09f9.async.js +0 -1
- package/dist/site__components__vtx-color-picker__index.md.33be0665.chunk.css +0 -1
- package/dist/site__components__vtx-combogrid__index.md.33be0665.chunk.css +0 -1
- package/dist/site__components__vtx-combogrid__index.md.5c184a19.async.js +0 -19
- package/dist/site__components__vtx-datagrid__index.md.33be0665.chunk.css +0 -1
- package/dist/site__components__vtx-datagrid__index.md.3b6b11a0.async.js +0 -58
- package/dist/site__components__vtx-date-picker__index.md.33be0665.chunk.css +0 -1
- package/dist/site__components__vtx-date-picker__index.md.e498db68.async.js +0 -1
- package/dist/site__components__vtx-ellipsis-text__index.md.33be0665.chunk.css +0 -1
- package/dist/site__components__vtx-ellipsis-text__index.md.3df8b85b.async.js +0 -1
- package/dist/site__components__vtx-export-async__index.md.33be0665.chunk.css +0 -1
- package/dist/site__components__vtx-export-async__index.md.7ad10351.async.js +0 -50
- package/dist/site__components__vtx-export__index.md.33be0665.chunk.css +0 -1
- package/dist/site__components__vtx-export__index.md.ae512624.async.js +0 -6
- package/dist/site__components__vtx-form-layout__index.md.26ce0de4.async.js +0 -1
- package/dist/site__components__vtx-form-layout__index.md.33be0665.chunk.css +0 -1
- package/dist/site__components__vtx-image__index.md.33be0665.chunk.css +0 -1
- package/dist/site__components__vtx-image__index.md.51d7fede.async.js +0 -7
- package/dist/site__components__vtx-import2__index.md.33be0665.chunk.css +0 -1
- package/dist/site__components__vtx-import2__index.md.3d03da86.async.js +0 -22
- package/dist/site__components__vtx-import__index.md.2706afc2.async.js +0 -1
- package/dist/site__components__vtx-import__index.md.33be0665.chunk.css +0 -1
- package/dist/site__components__vtx-input__index.md.33be0665.chunk.css +0 -1
- package/dist/site__components__vtx-input__index.md.dbe2e571.async.js +0 -1
- package/dist/site__components__vtx-modal__index.md.33be0665.chunk.css +0 -1
- package/dist/site__components__vtx-modal__index.md.6a9b2eda.async.js +0 -9
- package/dist/site__components__vtx-page-layout__index.md.33be0665.chunk.css +0 -1
- package/dist/site__components__vtx-page-layout__index.md.46cefa9b.async.js +0 -1
- package/dist/site__components__vtx-rps-frame__index.md.0126d79c.async.js +0 -1
- package/dist/site__components__vtx-rps-frame__index.md.33be0665.chunk.css +0 -1
- package/dist/site__components__vtx-scrollable-row__index.md.33be0665.chunk.css +0 -1
- package/dist/site__components__vtx-scrollable-row__index.md.83c9c112.async.js +0 -1
- package/dist/site__components__vtx-search__index.md.33be0665.chunk.css +0 -1
- package/dist/site__components__vtx-search__index.md.a36329f4.async.js +0 -5
- package/dist/site__components__vtx-select__index.md.33be0665.chunk.css +0 -1
- package/dist/site__components__vtx-select__index.md.d4b9a187.async.js +0 -6
- package/dist/site__components__vtx-signature__index.md.33be0665.chunk.css +0 -1
- package/dist/site__components__vtx-signature__index.md.e502b176.async.js +0 -1
- package/dist/site__components__vtx-split-pane__index.md.33be0665.chunk.css +0 -1
- package/dist/site__components__vtx-split-pane__index.md.744d87da.async.js +0 -1
- package/dist/site__components__vtx-statistics-column__index.md.106749e3.async.js +0 -1
- package/dist/site__components__vtx-statistics-column__index.md.33be0665.chunk.css +0 -1
- package/dist/site__components__vtx-time-picker__index.md.33be0665.chunk.css +0 -1
- package/dist/site__components__vtx-time-picker__index.md.c9f4700c.async.js +0 -1
- package/dist/site__components__vtx-tree-select__index.md.33be0665.chunk.css +0 -1
- package/dist/site__components__vtx-tree-select__index.md.49b56c10.async.js +0 -1
- package/dist/site__components__vtx-tree__index.md.33be0665.chunk.css +0 -1
- package/dist/site__components__vtx-tree__index.md.4c124fad.async.js +0 -1
- package/dist/site__components__vtx-upload__index.md.33be0665.chunk.css +0 -1
- package/dist/site__components__vtx-upload__index.md.57969550.async.js +0 -6
- package/dist/site__components__vtx-wang-editor__index.md.33be0665.chunk.css +0 -1
- package/dist/site__components__vtx-wang-editor__index.md.b98b12a6.async.js +0 -7
- package/dist/site__docs__api-changes.md.33be0665.chunk.css +0 -1
- package/dist/site__docs__api-changes.md.aaa38736.async.js +0 -6
- package/dist/site__docs__index.md.33be0665.chunk.css +0 -1
- package/dist/site__docs__index.md.586150c4.async.js +0 -53
- package/dist/site__docs__migration-guide.md.02f5996d.async.js +0 -194
- package/dist/site__docs__migration-guide.md.33be0665.chunk.css +0 -1
- package/dist/site__index.md.33be0665.chunk.css +0 -1
- package/dist/site__index.md.634bf57a.async.js +0 -1
- package/dist/sitemap.xml +0 -1
- package/dist/umi.f49a7748.css +0 -1
- package/dist/umi.f610424c.js +0 -877
- package/dist/vtx-search__index.md.33be0665.chunk.css +0 -1
- package/dist/vtx-search__index.md.37a39d66.async.js +0 -5
- package/dist/~demos/:id/index.html +0 -17
- package/dist/~demos/site-components-vtx-date-picker-demo-demo1/index.html +0 -17
- package/dist/~demos/site-components-vtx-date-picker-demo-demo3/index.html +0 -17
- package/dist/~demos/vtxcolorpicker-demo-base/index.html +0 -17
- package/dist/~demos/vtxcolorpicker-demo-base-form/index.html +0 -17
- package/dist/~demos/vtxcombogrid-demo-demo1/index.html +0 -17
- package/dist/~demos/vtxcombogrid-demo-demo2/index.html +0 -17
- package/dist/~demos/vtxcombogrid-demo-demo3/index.html +0 -17
- package/dist/~demos/vtxcombogrid-demo-demo4/index.html +0 -17
- package/dist/~demos/vtxcombogrid-demo-demo5/index.html +0 -17
- package/dist/~demos/vtxdatagrid-demo-demo1/index.html +0 -17
- package/dist/~demos/vtxdatagrid-demo-demo10/index.html +0 -17
- package/dist/~demos/vtxdatagrid-demo-demo2/index.html +0 -17
- package/dist/~demos/vtxdatagrid-demo-demo3/index.html +0 -17
- package/dist/~demos/vtxdatagrid-demo-demo4/index.html +0 -17
- package/dist/~demos/vtxdatagrid-demo-demo5/index.html +0 -17
- package/dist/~demos/vtxdatagrid-demo-demo6/index.html +0 -17
- package/dist/~demos/vtxdatagrid-demo-demo7/index.html +0 -17
- package/dist/~demos/vtxdatagrid-demo-demo8/index.html +0 -17
- package/dist/~demos/vtxdatagrid-demo-demo9/index.html +0 -17
- package/dist/~demos/vtxellipsistext-demo-demo1/index.html +0 -17
- package/dist/~demos/vtxexport-demo-demo1/index.html +0 -17
- package/dist/~demos/vtxexportasync-demo-demo1/index.html +0 -17
- package/dist/~demos/vtxformlayout-demo-demo1/index.html +0 -17
- package/dist/~demos/vtxformlayout-demo-demo10/index.html +0 -17
- package/dist/~demos/vtxformlayout-demo-demo2/index.html +0 -17
- package/dist/~demos/vtxformlayout-demo-demo3/index.html +0 -17
- package/dist/~demos/vtxformlayout-demo-demo4/index.html +0 -17
- package/dist/~demos/vtxformlayout-demo-demo5/index.html +0 -17
- package/dist/~demos/vtxformlayout-demo-demo6/index.html +0 -17
- package/dist/~demos/vtxformlayout-demo-demo7/index.html +0 -17
- package/dist/~demos/vtxformlayout-demo-demo8/index.html +0 -17
- package/dist/~demos/vtxformlayout-demo-demo9/index.html +0 -17
- package/dist/~demos/vtximage-demo-demo1/index.html +0 -17
- package/dist/~demos/vtximage-demo-demo2/index.html +0 -17
- package/dist/~demos/vtximage-demo-demo3/index.html +0 -17
- package/dist/~demos/vtximage-demo-demo4/index.html +0 -17
- package/dist/~demos/vtximport-demo-base/index.html +0 -17
- package/dist/~demos/vtximport2-demo-base/index.html +0 -17
- package/dist/~demos/vtxinput-demo-demo1/index.html +0 -17
- package/dist/~demos/vtxinput-demo-demo2/index.html +0 -17
- package/dist/~demos/vtxinput-demo-demo3/index.html +0 -17
- package/dist/~demos/vtxmodal-demo-demo1/index.html +0 -17
- package/dist/~demos/vtxmodal-demo-demo2/index.html +0 -17
- package/dist/~demos/vtxmodal-demo-demo3/index.html +0 -17
- package/dist/~demos/vtxpagelayout-demo-demo1/index.html +0 -17
- package/dist/~demos/vtxpagelayout-demo-demo2/index.html +0 -17
- package/dist/~demos/vtxpagelayout-demo-demo3/index.html +0 -17
- package/dist/~demos/vtxpagelayout-demo-demo4/index.html +0 -17
- package/dist/~demos/vtxrpsframe-demo-base/index.html +0 -17
- package/dist/~demos/vtxscrollablerow-demo-demo/index.html +0 -17
- package/dist/~demos/vtxsearch-demo-demo1/index.html +0 -17
- package/dist/~demos/vtxsearch-demo-demo2/index.html +0 -17
- package/dist/~demos/vtxsearch-demo-demo3/index.html +0 -17
- package/dist/~demos/vtxsearch-demo-demo4/index.html +0 -17
- package/dist/~demos/vtxselect-demo-base/index.html +0 -17
- package/dist/~demos/vtxselect-demo-base-multiple/index.html +0 -17
- package/dist/~demos/vtxsignature-demo-demo/index.html +0 -17
- package/dist/~demos/vtxsignature-demo-demo1/index.html +0 -17
- package/dist/~demos/vtxsplitpane-demo-demo1/index.html +0 -17
- package/dist/~demos/vtxsplitpane-demo-demo2/index.html +0 -17
- package/dist/~demos/vtxsplitpane-demo-demo3/index.html +0 -17
- package/dist/~demos/vtxsplitpane-demo-demo4/index.html +0 -17
- package/dist/~demos/vtxstatisticscolumn-demo-demo1/index.html +0 -17
- package/dist/~demos/vtxstatisticscolumn-demo-demo2/index.html +0 -17
- package/dist/~demos/vtxstatisticscolumn-demo-demo3/index.html +0 -17
- package/dist/~demos/vtxtimepicker-demo-base/index.html +0 -17
- package/dist/~demos/vtxtree-demo-demo1/index.html +0 -17
- package/dist/~demos/vtxtree-demo-demo2/index.html +0 -17
- package/dist/~demos/vtxtree-demo-demo3/index.html +0 -17
- package/dist/~demos/vtxtreeselect-demo-demo1/index.html +0 -17
- package/dist/~demos/vtxtreeselect-demo-demo2/index.html +0 -17
- package/dist/~demos/vtxtreeselect-demo-demo3/index.html +0 -17
- package/dist/~demos/vtxupload-demo-demo1/index.html +0 -17
- package/dist/~demos/vtxupload-demo-demo2/index.html +0 -17
- package/dist/~demos/vtxupload-demo-demo3/index.html +0 -17
- package/dist/~demos/vtxwangeditor-demo-demo1/index.html +0 -17
- package/es/utils/hooks/useFetchData/index.js +0 -82
- package/lib/utils/hooks/useFetchData/index.js +0 -89
|
@@ -1 +0,0 @@
|
|
|
1
|
-
.dumi-default-badge{display:inline-block;margin-inline-start:2px;padding:1px 8px;font-size:12px;font-weight:400;line-height:20px;border-radius:4px;vertical-align:top}.dumi-default-badge:not([type]),.dumi-default-badge[type=info]{color:#1677ff;background:#e2eeff}[data-prefers-color=dark] .dumi-default-badge:not([type]),[data-prefers-color=dark] .dumi-default-badge[type=info]{color:#1677ff;background:#002962}.dumi-default-badge[type=warning]{color:#d59200;background:#ffefcb}[data-prefers-color=dark] .dumi-default-badge[type=warning]{color:#d59200;background:#231800}.dumi-default-badge[type=success]{color:#208a41;background:#cbf3d7}[data-prefers-color=dark] .dumi-default-badge[type=success]{color:#208a41;background:#092712}.dumi-default-badge[type=error]{color:#ce1f31;background:#fbe2e5}[data-prefers-color=dark] .dumi-default-badge[type=error]{color:#ce1f31;background:#3c090e}.dumi-default-table{margin:24px 0 32px;transform:translate(0)}.dumi-default-table-content{overflow:auto}.dumi-default-table-content:before,.dumi-default-table-content:after{content:"";display:block;position:fixed;z-index:1;top:0;bottom:0;width:6px;pointer-events:none}.dumi-default-table-content[data-left-folded]:before{left:0;background-image:linear-gradient(to right,#0000001a,#0000)}[data-prefers-color=dark] .dumi-default-table-content[data-left-folded]:before{background-image:linear-gradient(to right,#00000080,#0000)}.dumi-default-table-content[data-right-folded]:after{right:0;background-image:linear-gradient(to left,#0000001a,#0000)}[data-prefers-color=dark] .dumi-default-table-content[data-right-folded]:after{background-image:linear-gradient(to left,#00000080,#0000)}.dumi-default-table-content>table>thead>tr>th,.dumi-default-table-content>table>tr>th{white-space:nowrap}.dumi-default-api-type [data-token="|"],.dumi-default-api-type [data-token="=>"]{padding:0 .5em}.dumi-default-api-type [data-token=";"],.dumi-default-api-type [data-token=":"],.dumi-default-api-type [data-token=","],.dumi-default-api-type [data-token=async],.dumi-default-api-type [data-token="{"]{padding-right:.5em}.dumi-default-api-type [data-token="}"]{padding-left:.5em}.dumi-default-api-release [data-release]+[data-release]{margin-left:.5em}.dumi-default-api-release .dumi-default-badge{transform:scale(.9)}.dumi-default-api-release-name[data-release=deprecated]{text-decoration:line-through}.dumi-default-api-release-modifer[data-release=deprecated]{cursor:help;border-bottom:1px dotted #4f5866}.dumi-default-tree{padding:16px;margin:24px 0 32px;background:#fbfcfd;border:1px solid #e4e9ec;border-radius:2px;color:#30363f;overflow-y:auto}[data-prefers-color=dark] .dumi-default-tree{color:#c6c9cd;background:#020305;border-color:#1c2022}.dumi-default-tree small{padding-left:24px;color:#616d7f;font-size:14px;white-space:nowrap}[data-prefers-color=dark] .dumi-default-tree small{color:#616d7f}.dumi-default-tree small:before{content:"# "}.dumi-default-tree.rc-tree{transition:all .3s;line-height:1.5715;list-style:none;font-size:14px}.dumi-default-tree.rc-tree .rc-tree-treenode{position:relative;display:flex;align-items:flex-start}.dumi-default-tree.rc-tree .rc-tree-treenode:before{position:absolute;top:0;right:0;bottom:4px;left:0;transition:background .3s;content:""}.dumi-default-tree.rc-tree .rc-tree-treenode:hover:before{background:#eeeff0}[data-prefers-color=dark] .dumi-default-tree.rc-tree .rc-tree-treenode:hover:before{background:#1c1d1e}.dumi-default-tree.rc-tree .rc-tree-treenode>*{z-index:1}.dumi-default-tree.rc-tree .rc-tree-treenode span.rc-tree-switcher{display:flex;align-items:center;justify-content:center;width:24px;height:28px;margin-right:2px;line-height:28px;background:transparent;cursor:pointer;flex-shrink:0}.dumi-default-tree.rc-tree .rc-tree-treenode .rc-tree-node-content-wrapper{flex:auto;min-height:28px;margin:0;padding:0 4px;line-height:28px;cursor:pointer;white-space:nowrap}.dumi-default-tree.rc-tree .rc-tree-treenode .rc-tree-node-content-wrapper .rc-tree-iconEle{margin-right:6px;vertical-align:0}.dumi-default-tree.rc-tree.rc-tree-show-line .rc-tree-indent{display:inline-block;height:0;vertical-align:bottom;flex-shrink:0}.dumi-default-tree.rc-tree.rc-tree-show-line .rc-tree-indent-unit{position:relative;display:inline-block;width:24px;height:28px}.dumi-default-tree.rc-tree.rc-tree-show-line .rc-tree-indent-unit:before{position:absolute;top:0;right:12px;bottom:-4px;border-right:1px solid #d9d9d9;content:""}.dumi-default-tree.rc-tree.rc-tree-show-line .rc-tree-indent-unit-end:before{display:none}.dumi-default-tree.rc-tree.rc-tree-show-line .tree-switcher-leaf-line{position:relative;z-index:1;display:inline-block;width:100%;height:100%;text-align:center}.dumi-default-tree.rc-tree.rc-tree-show-line .tree-switcher-leaf-line:before{position:absolute;top:0;bottom:-4px;margin-left:-1px;border-left:1px solid #d9d9d9;content:" "}.dumi-default-tree.rc-tree.rc-tree-show-line .tree-switcher-leaf-line:after{position:absolute;top:0;bottom:14px;width:12px;margin-left:-1px;border-bottom:1px solid #d9d9d9;content:" "}.dumi-default-tree.rc-tree.rc-tree-show-line .rc-tree-treenode-leaf-last .tree-switcher-leaf-line:before{height:14px}.dumi-default-tree-icon{width:16px;color:#30363f;vertical-align:-.225em;display:inline-block}[data-prefers-color=dark] .dumi-default-tree-icon{color:#c6c9cd}.ant-motion-collapse{overflow:hidden;transition:height .2s ease-in-out,opacity .2s ease-in-out!important}
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
"use strict";(self.webpackChunk_vtx_components=self.webpackChunk_vtx_components||[]).push([[4711],{49630:function(l,a,t){t.r(a);var s=t(85616),i=t(75006),o=t(95498),x=t(67603),n=t(19376),h=t(98920),c=t(96244),r=t(23804),u=t(44194),d=t(47143),e=t(31549);function _(){return(0,e.jsx)(c.dY,{children:(0,e.jsx)(u.Suspense,{fallback:(0,e.jsx)(r.Z,{}),children:(0,e.jsx)(e.Fragment,{children:(0,e.jsxs)("div",{className:"markdown",children:[(0,e.jsxs)("h1",{id:"vtxsearch-\u67E5\u8BE2\u5E03\u5C40",children:[(0,e.jsx)("a",{"aria-hidden":"true",tabIndex:"-1",href:"#vtxsearch-\u67E5\u8BE2\u5E03\u5C40",children:(0,e.jsx)("span",{className:"icon icon-link"})}),"VtxSearch \u67E5\u8BE2\u5E03\u5C40"]}),(0,e.jsx)("p",{children:d.texts[0].value}),(0,e.jsxs)("h2",{id:"\u4EE3\u7801\u6F14\u793A",children:[(0,e.jsx)("a",{"aria-hidden":"true",tabIndex:"-1",href:"#\u4EE3\u7801\u6F14\u793A",children:(0,e.jsx)("span",{className:"icon icon-link"})}),"\u4EE3\u7801\u6F14\u793A"]}),(0,e.jsxs)("h3",{id:"\u57FA\u672C\u7528\u6CD5",children:[(0,e.jsx)("a",{"aria-hidden":"true",tabIndex:"-1",href:"#\u57FA\u672C\u7528\u6CD5",children:(0,e.jsx)("span",{className:"icon icon-link"})}),"\u57FA\u672C\u7528\u6CD5"]}),(0,e.jsxs)("code",{src:"./demo/demo1.jsx",children:[(0,e.jsxs)("h3",{id:"\u81EA\u5B9A\u4E49\u6309\u94AE\u5757",children:[(0,e.jsx)("a",{"aria-hidden":"true",tabIndex:"-1",href:"#\u81EA\u5B9A\u4E49\u6309\u94AE\u5757",children:(0,e.jsx)("span",{className:"icon icon-link"})}),"\u81EA\u5B9A\u4E49\u6309\u94AE\u5757"]}),(0,e.jsxs)("code",{src:"./demo/demo2.jsx",children:[(0,e.jsxs)("h3",{id:"\u7EB5\u5411\u5E03\u5C40",children:[(0,e.jsx)("a",{"aria-hidden":"true",tabIndex:"-1",href:"#\u7EB5\u5411\u5E03\u5C40",children:(0,e.jsx)("span",{className:"icon icon-link"})}),"\u7EB5\u5411\u5E03\u5C40"]}),(0,e.jsxs)("code",{src:"./demo/demo4.jsx",children:[(0,e.jsxs)("h2",{id:"api",children:[(0,e.jsx)("a",{"aria-hidden":"true",tabIndex:"-1",href:"#api",children:(0,e.jsx)("span",{className:"icon icon-link"})}),"API"]}),(0,e.jsxs)("h3",{id:"vtxsearch",children:[(0,e.jsx)("a",{"aria-hidden":"true",tabIndex:"-1",href:"#vtxsearch",children:(0,e.jsx)("span",{className:"icon icon-link"})}),"VtxSearch"]}),(0,e.jsxs)(n.Z,{children:[(0,e.jsx)("thead",{children:(0,e.jsxs)("tr",{children:[(0,e.jsx)("th",{children:d.texts[1].value}),(0,e.jsx)("th",{children:d.texts[2].value}),(0,e.jsx)("th",{children:d.texts[3].value}),(0,e.jsx)("th",{children:d.texts[4].value}),(0,e.jsx)("th",{children:d.texts[5].value})]})}),(0,e.jsxs)("tbody",{children:[(0,e.jsxs)("tr",{children:[(0,e.jsx)("td",{children:d.texts[6].value}),(0,e.jsx)("td",{children:d.texts[7].value}),(0,e.jsx)("td",{children:d.texts[8].value}),(0,e.jsx)("td",{children:d.texts[9].value}),(0,e.jsx)("td",{})]}),(0,e.jsxs)("tr",{children:[(0,e.jsx)("td",{children:d.texts[10].value}),(0,e.jsx)("td",{children:d.texts[11].value}),(0,e.jsx)("td",{children:d.texts[12].value}),(0,e.jsx)("td",{children:d.texts[13].value}),(0,e.jsx)("td",{})]}),(0,e.jsxs)("tr",{children:[(0,e.jsx)("td",{children:d.texts[14].value}),(0,e.jsx)("td",{children:d.texts[15].value}),(0,e.jsx)("td",{children:d.texts[16].value}),(0,e.jsx)("td",{}),(0,e.jsx)("td",{})]}),(0,e.jsxs)("tr",{children:[(0,e.jsx)("td",{children:d.texts[17].value}),(0,e.jsx)("td",{children:d.texts[18].value}),(0,e.jsx)("td",{children:d.texts[19].value}),(0,e.jsx)("td",{}),(0,e.jsx)("td",{})]}),(0,e.jsxs)("tr",{children:[(0,e.jsx)("td",{children:d.texts[20].value}),(0,e.jsx)("td",{children:d.texts[21].value}),(0,e.jsx)("td",{children:d.texts[22].value}),(0,e.jsx)("td",{children:d.texts[23].value}),(0,e.jsx)("td",{})]}),(0,e.jsxs)("tr",{children:[(0,e.jsx)("td",{children:d.texts[24].value}),(0,e.jsx)("td",{children:d.texts[25].value}),(0,e.jsx)("td",{children:d.texts[26].value}),(0,e.jsx)("td",{children:d.texts[27].value}),(0,e.jsx)("td",{})]}),(0,e.jsxs)("tr",{children:[(0,e.jsx)("td",{children:d.texts[28].value}),(0,e.jsx)("td",{children:d.texts[29].value}),(0,e.jsx)("td",{children:d.texts[30].value}),(0,e.jsx)("td",{children:d.texts[31].value}),(0,e.jsx)("td",{})]}),(0,e.jsxs)("tr",{children:[(0,e.jsx)("td",{children:d.texts[32].value}),(0,e.jsx)("td",{children:d.texts[33].value}),(0,e.jsx)("td",{children:d.texts[34].value}),(0,e.jsx)("td",{children:d.texts[35].value}),(0,e.jsx)("td",{})]}),(0,e.jsxs)("tr",{children:[(0,e.jsx)("td",{children:d.texts[36].value}),(0,e.jsx)("td",{children:d.texts[37].value}),(0,e.jsx)("td",{children:d.texts[38].value}),(0,e.jsx)("td",{children:d.texts[39].value}),(0,e.jsx)("td",{})]}),(0,e.jsxs)("tr",{children:[(0,e.jsx)("td",{children:d.texts[40].value}),(0,e.jsx)("td",{children:d.texts[41].value}),(0,e.jsx)("td",{children:d.texts[42].value}),(0,e.jsx)("td",{children:d.texts[43].value}),(0,e.jsx)("td",{})]}),(0,e.jsxs)("tr",{children:[(0,e.jsx)("td",{children:d.texts[44].value}),(0,e.jsx)("td",{children:d.texts[45].value}),(0,e.jsx)("td",{children:d.texts[46].value}),(0,e.jsx)("td",{children:d.texts[47].value}),(0,e.jsx)("td",{})]}),(0,e.jsxs)("tr",{children:[(0,e.jsx)("td",{children:d.texts[48].value}),(0,e.jsx)("td",{children:d.texts[49].value}),(0,e.jsx)("td",{children:d.texts[50].value}),(0,e.jsx)("td",{}),(0,e.jsx)("td",{})]}),(0,e.jsxs)("tr",{children:[(0,e.jsx)("td",{children:d.texts[51].value}),(0,e.jsx)("td",{children:d.texts[52].value}),(0,e.jsx)("td",{children:d.texts[53].value}),(0,e.jsx)("td",{}),(0,e.jsx)("td",{})]}),(0,e.jsxs)("tr",{children:[(0,e.jsx)("td",{children:d.texts[54].value}),(0,e.jsx)("td",{children:d.texts[55].value}),(0,e.jsx)("td",{children:d.texts[56].value}),(0,e.jsx)("td",{children:d.texts[57].value}),(0,e.jsx)("td",{})]}),(0,e.jsxs)("tr",{children:[(0,e.jsx)("td",{children:d.texts[58].value}),(0,e.jsx)("td",{children:d.texts[59].value}),(0,e.jsx)("td",{children:d.texts[60].value}),(0,e.jsx)("td",{children:d.texts[61].value}),(0,e.jsx)("td",{})]}),(0,e.jsxs)("tr",{children:[(0,e.jsx)("td",{children:d.texts[62].value}),(0,e.jsx)("td",{children:d.texts[63].value}),(0,e.jsx)("td",{children:d.texts[64].value}),(0,e.jsx)("td",{}),(0,e.jsx)("td",{})]}),(0,e.jsxs)("tr",{children:[(0,e.jsx)("td",{children:d.texts[65].value}),(0,e.jsx)("td",{children:d.texts[66].value}),(0,e.jsx)("td",{children:d.texts[67].value}),(0,e.jsx)("td",{}),(0,e.jsx)("td",{children:d.texts[68].value})]})]})]}),(0,e.jsxs)("h3",{id:"customenumtext",children:[(0,e.jsx)("a",{"aria-hidden":"true",tabIndex:"-1",href:"#customenumtext",children:(0,e.jsx)("span",{className:"icon icon-link"})}),"customEnumText"]}),(0,e.jsx)(x.Z,{lang:"code",children:d.texts[69].value}),(0,e.jsxs)(n.Z,{children:[(0,e.jsx)("thead",{children:(0,e.jsxs)("tr",{children:[(0,e.jsx)("th",{children:d.texts[70].value}),(0,e.jsx)("th",{children:d.texts[71].value}),(0,e.jsx)("th",{children:d.texts[72].value})]})}),(0,e.jsxs)("tbody",{children:[(0,e.jsxs)("tr",{children:[(0,e.jsx)("td",{children:d.texts[73].value}),(0,e.jsx)("td",{children:d.texts[74].value}),(0,e.jsx)("td",{children:d.texts[75].value})]}),(0,e.jsxs)("tr",{children:[(0,e.jsx)("td",{children:d.texts[76].value}),(0,e.jsx)("td",{children:d.texts[77].value}),(0,e.jsx)("td",{children:d.texts[78].value})]})]})]})]})]})]})]})})})})}a.default=_},47143:function(l,a,t){t.r(a),t.d(a,{texts:function(){return s}});const s=[{value:"\u6839\u636E\u914D\u7F6E\uFF0C\u81EA\u52A8\u6E32\u67D3 CRUD \u67E5\u8BE2\u6761\u4EF6\u6392\u7248\u6837\u5F0F",paraId:0,tocIndex:0},{value:"\u53C2\u6570",paraId:1,tocIndex:6},{value:"\u8BF4\u660E",paraId:1,tocIndex:6},{value:"\u7C7B\u578B",paraId:1,tocIndex:6},{value:"\u9ED8\u8BA4\u503C",paraId:1,tocIndex:6},{value:"\u7248\u672C",paraId:1,tocIndex:6},{value:"titles",paraId:1,tocIndex:6},{value:"\u641C\u7D22\u6761\u4EF6\u540D\u79F0",paraId:1,tocIndex:6},{value:"Array[String]",paraId:1,tocIndex:6},{value:"[]",paraId:1,tocIndex:6},{value:"gridWeight",paraId:1,tocIndex:6},{value:"\u641C\u7D22\u6761\u4EF6\u5360\u4F4D\u6743\u91CD",paraId:1,tocIndex:6},{value:"Array[number]",paraId:1,tocIndex:6},{value:"[] \uFF0C\u56E0\u4E3A\u73B0\u5728\u628A\u6309\u94AE\u653E\u8FDB\u53BB\uFF0C\u6240\u6709\u7B2C\u4E00\u4E2A\u5FC5\u987B\u662F1\uFF0C\u5C0F\u5C4F \u603B\u5171\u4E24\u5217 1\u5217\u67E5\u8BE2\u6761\u4EF6 1\u5217\u6309\u94AE",paraId:1,tocIndex:6},{value:"onConfirm",paraId:1,tocIndex:6},{value:"\u70B9\u51FB\u786E\u8BA4\u56DE\u8C03\u51FD\u6570",paraId:1,tocIndex:6},{value:"function",paraId:1,tocIndex:6},{value:"onClear",paraId:1,tocIndex:6},{value:"\u70B9\u51FB\u6E05\u7A7A\u56DE\u8C03\u51FD\u6570",paraId:1,tocIndex:6},{value:"function",paraId:1,tocIndex:6},{value:"confirmText",paraId:1,tocIndex:6},{value:"\u786E\u8BA4\u6309\u94AE\u6587\u5B57",paraId:1,tocIndex:6},{value:"String",paraId:1,tocIndex:6},{value:"\u786E\u8BA4",paraId:1,tocIndex:6},{value:"clearText",paraId:1,tocIndex:6},{value:"\u6E05\u7A7A\u6309\u94AE\u6587\u5B57",paraId:1,tocIndex:6},{value:"String",paraId:1,tocIndex:6},{value:"\u91CD\u7F6E",paraId:1,tocIndex:6},{value:"showAll",paraId:1,tocIndex:6},{value:"\u662F\u5426\u5C55\u793A\u6240\u6709\u6761\u4EF6",paraId:1,tocIndex:6},{value:"boolean",paraId:1,tocIndex:6},{value:"false",paraId:1,tocIndex:6},{value:"isConfirmButton",paraId:1,tocIndex:6},{value:"\u662F\u5426\u5C55\u793A\u786E\u8BA4\u6309\u94AE",paraId:1,tocIndex:6},{value:"boolean",paraId:1,tocIndex:6},{value:"true",paraId:1,tocIndex:6},{value:"isClearButton",paraId:1,tocIndex:6},{value:"\u662F\u5426\u5C55\u793A\u6E05\u7A7A\u6309\u94AE",paraId:1,tocIndex:6},{value:"boolean",paraId:1,tocIndex:6},{value:"true",paraId:1,tocIndex:6},{value:"isMoreButton",paraId:1,tocIndex:6},{value:"\u662F\u5426\u663E\u793A\u66F4\u591A\u6309\u94AE",paraId:1,tocIndex:6},{value:"boolean",paraId:1,tocIndex:6},{value:"true",paraId:1,tocIndex:6},{value:"labelWidth",paraId:1,tocIndex:6},{value:"\u67E5\u8BE2\u6761\u4EF6\u540D\u5BBD\u5EA6",paraId:1,tocIndex:6},{value:"number",paraId:1,tocIndex:6},{value:"84",paraId:1,tocIndex:6},{value:"renderButtons",paraId:1,tocIndex:6},{value:"\u81EA\u5B9A\u4E49\u6309\u94AE\u5757",paraId:1,tocIndex:6},{value:"ReactNode",paraId:1,tocIndex:6},{value:"wrapClassName",paraId:1,tocIndex:6},{value:"\u5916\u90E8 className",paraId:1,tocIndex:6},{value:"--",paraId:1,tocIndex:6},{value:"layout",paraId:1,tocIndex:6},{value:"\u7EB5\u5411\u5E03\u5C40\u6216\u6A2A\u5411\u5E03\u5C40",paraId:1,tocIndex:6},{value:"'horizonal' | 'vertical'",paraId:1,tocIndex:6},{value:"horizonal",paraId:1,tocIndex:6},{value:"column",paraId:1,tocIndex:6},{value:"\u4E00\u884C\u663E\u793A\u5217\u6570\uFF0Clg\uFF08>=1370\uFF09sm\uFF081370~992\uFF09sm\uFF08<992\uFF09",paraId:1,tocIndex:6},{value:"Object",paraId:1,tocIndex:6},{value:"{lg: 4, md: 3, sm: 2}",paraId:1,tocIndex:6},{value:"onToggleShow",paraId:1,tocIndex:6},{value:"\u70B9\u51FB\u663E\u793A\u5168\u90E8\u6309\u94AE\u56DE\u8C03",paraId:1,tocIndex:6},{value:"function(height)",paraId:1,tocIndex:6},{value:"customEnumText",paraId:1,tocIndex:6},{value:"\u81EA\u5B9A\u4E49\u7EC4\u4EF6\u6587\u5B57",paraId:1,tocIndex:6},{value:"object",paraId:1,tocIndex:6},{value:"3.1.50",paraId:1,tocIndex:6},{value:`{
|
|
2
|
-
expandText: '\u5C55\u5F00',
|
|
3
|
-
collapseText: '\u6536\u8D77',
|
|
4
|
-
}
|
|
5
|
-
`,paraId:2,tocIndex:7},{value:"\u5C5E\u6027",paraId:3,tocIndex:7},{value:"\u8BF4\u660E",paraId:3,tocIndex:7},{value:"\u9ED8\u8BA4\u503C",paraId:3,tocIndex:7},{value:"expandText",paraId:3,tocIndex:7},{value:"\u6269\u5C55\u67E5\u8BE2\u6587\u5B57",paraId:3,tocIndex:7},{value:"\u5C55\u5F00",paraId:3,tocIndex:7},{value:"collapseText",paraId:3,tocIndex:7},{value:"\u6269\u5C55\u67E5\u8BE2\u6587\u5B57",paraId:3,tocIndex:7},{value:"\u6536\u8D77",paraId:3,tocIndex:7}]}}]);
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
<!DOCTYPE html>
|
|
2
|
-
<html>
|
|
3
|
-
<head>
|
|
4
|
-
<meta charset="utf-8">
|
|
5
|
-
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
|
|
6
|
-
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
7
|
-
<link rel="shortcut icon" href>
|
|
8
|
-
<title>@vtx/components</title>
|
|
9
|
-
<style>.markdown table{table-layout: fixed;}</style>
|
|
10
|
-
<link rel="stylesheet" href="/react-components/umi.f49a7748.css">
|
|
11
|
-
<script src="/react-components/preload_helper.214f203a.js"></script>
|
|
12
|
-
</head>
|
|
13
|
-
<body>
|
|
14
|
-
<div id="root"></div>
|
|
15
|
-
<script src="/react-components/umi.f610424c.js"></script>
|
|
16
|
-
</body>
|
|
17
|
-
</html>
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
<!DOCTYPE html>
|
|
2
|
-
<html>
|
|
3
|
-
<head>
|
|
4
|
-
<meta charset="utf-8">
|
|
5
|
-
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
|
|
6
|
-
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
7
|
-
<link rel="shortcut icon" href>
|
|
8
|
-
<title>@vtx/components</title>
|
|
9
|
-
<style>.markdown table{table-layout: fixed;}</style>
|
|
10
|
-
<link rel="stylesheet" href="/react-components/umi.f49a7748.css">
|
|
11
|
-
<script src="/react-components/preload_helper.214f203a.js"></script>
|
|
12
|
-
</head>
|
|
13
|
-
<body>
|
|
14
|
-
<div id="root"></div>
|
|
15
|
-
<script src="/react-components/umi.f610424c.js"></script>
|
|
16
|
-
</body>
|
|
17
|
-
</html>
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
<!DOCTYPE html>
|
|
2
|
-
<html>
|
|
3
|
-
<head>
|
|
4
|
-
<meta charset="utf-8">
|
|
5
|
-
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
|
|
6
|
-
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
7
|
-
<link rel="shortcut icon" href>
|
|
8
|
-
<title>@vtx/components</title>
|
|
9
|
-
<style>.markdown table{table-layout: fixed;}</style>
|
|
10
|
-
<link rel="stylesheet" href="/react-components/umi.f49a7748.css">
|
|
11
|
-
<script src="/react-components/preload_helper.214f203a.js"></script>
|
|
12
|
-
</head>
|
|
13
|
-
<body>
|
|
14
|
-
<div id="root"></div>
|
|
15
|
-
<script src="/react-components/umi.f610424c.js"></script>
|
|
16
|
-
</body>
|
|
17
|
-
</html>
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
<!DOCTYPE html>
|
|
2
|
-
<html>
|
|
3
|
-
<head>
|
|
4
|
-
<meta charset="utf-8">
|
|
5
|
-
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
|
|
6
|
-
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
7
|
-
<link rel="shortcut icon" href>
|
|
8
|
-
<title>@vtx/components</title>
|
|
9
|
-
<style>.markdown table{table-layout: fixed;}</style>
|
|
10
|
-
<link rel="stylesheet" href="/react-components/umi.f49a7748.css">
|
|
11
|
-
<script src="/react-components/preload_helper.214f203a.js"></script>
|
|
12
|
-
</head>
|
|
13
|
-
<body>
|
|
14
|
-
<div id="root"></div>
|
|
15
|
-
<script src="/react-components/umi.f610424c.js"></script>
|
|
16
|
-
</body>
|
|
17
|
-
</html>
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
<!DOCTYPE html>
|
|
2
|
-
<html>
|
|
3
|
-
<head>
|
|
4
|
-
<meta charset="utf-8">
|
|
5
|
-
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
|
|
6
|
-
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
7
|
-
<link rel="shortcut icon" href>
|
|
8
|
-
<title>@vtx/components</title>
|
|
9
|
-
<style>.markdown table{table-layout: fixed;}</style>
|
|
10
|
-
<link rel="stylesheet" href="/react-components/umi.f49a7748.css">
|
|
11
|
-
<script src="/react-components/preload_helper.214f203a.js"></script>
|
|
12
|
-
</head>
|
|
13
|
-
<body>
|
|
14
|
-
<div id="root"></div>
|
|
15
|
-
<script src="/react-components/umi.f610424c.js"></script>
|
|
16
|
-
</body>
|
|
17
|
-
</html>
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
<!DOCTYPE html>
|
|
2
|
-
<html>
|
|
3
|
-
<head>
|
|
4
|
-
<meta charset="utf-8">
|
|
5
|
-
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
|
|
6
|
-
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
7
|
-
<link rel="shortcut icon" href>
|
|
8
|
-
<title>@vtx/components</title>
|
|
9
|
-
<style>.markdown table{table-layout: fixed;}</style>
|
|
10
|
-
<link rel="stylesheet" href="/react-components/umi.f49a7748.css">
|
|
11
|
-
<script src="/react-components/preload_helper.214f203a.js"></script>
|
|
12
|
-
</head>
|
|
13
|
-
<body>
|
|
14
|
-
<div id="root"></div>
|
|
15
|
-
<script src="/react-components/umi.f610424c.js"></script>
|
|
16
|
-
</body>
|
|
17
|
-
</html>
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
<!DOCTYPE html>
|
|
2
|
-
<html>
|
|
3
|
-
<head>
|
|
4
|
-
<meta charset="utf-8">
|
|
5
|
-
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
|
|
6
|
-
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
7
|
-
<link rel="shortcut icon" href>
|
|
8
|
-
<title>@vtx/components</title>
|
|
9
|
-
<style>.markdown table{table-layout: fixed;}</style>
|
|
10
|
-
<link rel="stylesheet" href="/react-components/umi.f49a7748.css">
|
|
11
|
-
<script src="/react-components/preload_helper.214f203a.js"></script>
|
|
12
|
-
</head>
|
|
13
|
-
<body>
|
|
14
|
-
<div id="root"></div>
|
|
15
|
-
<script src="/react-components/umi.f610424c.js"></script>
|
|
16
|
-
</body>
|
|
17
|
-
</html>
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
<!DOCTYPE html>
|
|
2
|
-
<html>
|
|
3
|
-
<head>
|
|
4
|
-
<meta charset="utf-8">
|
|
5
|
-
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
|
|
6
|
-
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
7
|
-
<link rel="shortcut icon" href>
|
|
8
|
-
<title>@vtx/components</title>
|
|
9
|
-
<style>.markdown table{table-layout: fixed;}</style>
|
|
10
|
-
<link rel="stylesheet" href="/react-components/umi.f49a7748.css">
|
|
11
|
-
<script src="/react-components/preload_helper.214f203a.js"></script>
|
|
12
|
-
</head>
|
|
13
|
-
<body>
|
|
14
|
-
<div id="root"></div>
|
|
15
|
-
<script src="/react-components/umi.f610424c.js"></script>
|
|
16
|
-
</body>
|
|
17
|
-
</html>
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
<!DOCTYPE html>
|
|
2
|
-
<html>
|
|
3
|
-
<head>
|
|
4
|
-
<meta charset="utf-8">
|
|
5
|
-
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
|
|
6
|
-
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
7
|
-
<link rel="shortcut icon" href>
|
|
8
|
-
<title>@vtx/components</title>
|
|
9
|
-
<style>.markdown table{table-layout: fixed;}</style>
|
|
10
|
-
<link rel="stylesheet" href="/react-components/umi.f49a7748.css">
|
|
11
|
-
<script src="/react-components/preload_helper.214f203a.js"></script>
|
|
12
|
-
</head>
|
|
13
|
-
<body>
|
|
14
|
-
<div id="root"></div>
|
|
15
|
-
<script src="/react-components/umi.f610424c.js"></script>
|
|
16
|
-
</body>
|
|
17
|
-
</html>
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
<!DOCTYPE html>
|
|
2
|
-
<html>
|
|
3
|
-
<head>
|
|
4
|
-
<meta charset="utf-8">
|
|
5
|
-
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
|
|
6
|
-
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
7
|
-
<link rel="shortcut icon" href>
|
|
8
|
-
<title>@vtx/components</title>
|
|
9
|
-
<style>.markdown table{table-layout: fixed;}</style>
|
|
10
|
-
<link rel="stylesheet" href="/react-components/umi.f49a7748.css">
|
|
11
|
-
<script src="/react-components/preload_helper.214f203a.js"></script>
|
|
12
|
-
</head>
|
|
13
|
-
<body>
|
|
14
|
-
<div id="root"></div>
|
|
15
|
-
<script src="/react-components/umi.f610424c.js"></script>
|
|
16
|
-
</body>
|
|
17
|
-
</html>
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
<!DOCTYPE html>
|
|
2
|
-
<html>
|
|
3
|
-
<head>
|
|
4
|
-
<meta charset="utf-8">
|
|
5
|
-
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
|
|
6
|
-
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
7
|
-
<link rel="shortcut icon" href>
|
|
8
|
-
<title>@vtx/components</title>
|
|
9
|
-
<style>.markdown table{table-layout: fixed;}</style>
|
|
10
|
-
<link rel="stylesheet" href="/react-components/umi.f49a7748.css">
|
|
11
|
-
<script src="/react-components/preload_helper.214f203a.js"></script>
|
|
12
|
-
</head>
|
|
13
|
-
<body>
|
|
14
|
-
<div id="root"></div>
|
|
15
|
-
<script src="/react-components/umi.f610424c.js"></script>
|
|
16
|
-
</body>
|
|
17
|
-
</html>
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
<!DOCTYPE html>
|
|
2
|
-
<html>
|
|
3
|
-
<head>
|
|
4
|
-
<meta charset="utf-8">
|
|
5
|
-
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
|
|
6
|
-
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
7
|
-
<link rel="shortcut icon" href>
|
|
8
|
-
<title>@vtx/components</title>
|
|
9
|
-
<style>.markdown table{table-layout: fixed;}</style>
|
|
10
|
-
<link rel="stylesheet" href="/react-components/umi.f49a7748.css">
|
|
11
|
-
<script src="/react-components/preload_helper.214f203a.js"></script>
|
|
12
|
-
</head>
|
|
13
|
-
<body>
|
|
14
|
-
<div id="root"></div>
|
|
15
|
-
<script src="/react-components/umi.f610424c.js"></script>
|
|
16
|
-
</body>
|
|
17
|
-
</html>
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
<!DOCTYPE html>
|
|
2
|
-
<html>
|
|
3
|
-
<head>
|
|
4
|
-
<meta charset="utf-8">
|
|
5
|
-
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
|
|
6
|
-
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
7
|
-
<link rel="shortcut icon" href>
|
|
8
|
-
<title>@vtx/components</title>
|
|
9
|
-
<style>.markdown table{table-layout: fixed;}</style>
|
|
10
|
-
<link rel="stylesheet" href="/react-components/umi.f49a7748.css">
|
|
11
|
-
<script src="/react-components/preload_helper.214f203a.js"></script>
|
|
12
|
-
</head>
|
|
13
|
-
<body>
|
|
14
|
-
<div id="root"></div>
|
|
15
|
-
<script src="/react-components/umi.f610424c.js"></script>
|
|
16
|
-
</body>
|
|
17
|
-
</html>
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
<!DOCTYPE html>
|
|
2
|
-
<html>
|
|
3
|
-
<head>
|
|
4
|
-
<meta charset="utf-8">
|
|
5
|
-
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
|
|
6
|
-
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
7
|
-
<link rel="shortcut icon" href>
|
|
8
|
-
<title>@vtx/components</title>
|
|
9
|
-
<style>.markdown table{table-layout: fixed;}</style>
|
|
10
|
-
<link rel="stylesheet" href="/react-components/umi.f49a7748.css">
|
|
11
|
-
<script src="/react-components/preload_helper.214f203a.js"></script>
|
|
12
|
-
</head>
|
|
13
|
-
<body>
|
|
14
|
-
<div id="root"></div>
|
|
15
|
-
<script src="/react-components/umi.f610424c.js"></script>
|
|
16
|
-
</body>
|
|
17
|
-
</html>
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
<!DOCTYPE html>
|
|
2
|
-
<html>
|
|
3
|
-
<head>
|
|
4
|
-
<meta charset="utf-8">
|
|
5
|
-
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
|
|
6
|
-
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
7
|
-
<link rel="shortcut icon" href>
|
|
8
|
-
<title>@vtx/components</title>
|
|
9
|
-
<style>.markdown table{table-layout: fixed;}</style>
|
|
10
|
-
<link rel="stylesheet" href="/react-components/umi.f49a7748.css">
|
|
11
|
-
<script src="/react-components/preload_helper.214f203a.js"></script>
|
|
12
|
-
</head>
|
|
13
|
-
<body>
|
|
14
|
-
<div id="root"></div>
|
|
15
|
-
<script src="/react-components/umi.f610424c.js"></script>
|
|
16
|
-
</body>
|
|
17
|
-
</html>
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
<!DOCTYPE html>
|
|
2
|
-
<html>
|
|
3
|
-
<head>
|
|
4
|
-
<meta charset="utf-8">
|
|
5
|
-
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
|
|
6
|
-
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
7
|
-
<link rel="shortcut icon" href>
|
|
8
|
-
<title>@vtx/components</title>
|
|
9
|
-
<style>.markdown table{table-layout: fixed;}</style>
|
|
10
|
-
<link rel="stylesheet" href="/react-components/umi.f49a7748.css">
|
|
11
|
-
<script src="/react-components/preload_helper.214f203a.js"></script>
|
|
12
|
-
</head>
|
|
13
|
-
<body>
|
|
14
|
-
<div id="root"></div>
|
|
15
|
-
<script src="/react-components/umi.f610424c.js"></script>
|
|
16
|
-
</body>
|
|
17
|
-
</html>
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
<!DOCTYPE html>
|
|
2
|
-
<html>
|
|
3
|
-
<head>
|
|
4
|
-
<meta charset="utf-8">
|
|
5
|
-
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
|
|
6
|
-
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
7
|
-
<link rel="shortcut icon" href>
|
|
8
|
-
<title>@vtx/components</title>
|
|
9
|
-
<style>.markdown table{table-layout: fixed;}</style>
|
|
10
|
-
<link rel="stylesheet" href="/react-components/umi.f49a7748.css">
|
|
11
|
-
<script src="/react-components/preload_helper.214f203a.js"></script>
|
|
12
|
-
</head>
|
|
13
|
-
<body>
|
|
14
|
-
<div id="root"></div>
|
|
15
|
-
<script src="/react-components/umi.f610424c.js"></script>
|
|
16
|
-
</body>
|
|
17
|
-
</html>
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
<!DOCTYPE html>
|
|
2
|
-
<html>
|
|
3
|
-
<head>
|
|
4
|
-
<meta charset="utf-8">
|
|
5
|
-
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
|
|
6
|
-
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
7
|
-
<link rel="shortcut icon" href>
|
|
8
|
-
<title>@vtx/components</title>
|
|
9
|
-
<style>.markdown table{table-layout: fixed;}</style>
|
|
10
|
-
<link rel="stylesheet" href="/react-components/umi.f49a7748.css">
|
|
11
|
-
<script src="/react-components/preload_helper.214f203a.js"></script>
|
|
12
|
-
</head>
|
|
13
|
-
<body>
|
|
14
|
-
<div id="root"></div>
|
|
15
|
-
<script src="/react-components/umi.f610424c.js"></script>
|
|
16
|
-
</body>
|
|
17
|
-
</html>
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
<!DOCTYPE html>
|
|
2
|
-
<html>
|
|
3
|
-
<head>
|
|
4
|
-
<meta charset="utf-8">
|
|
5
|
-
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
|
|
6
|
-
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
7
|
-
<link rel="shortcut icon" href>
|
|
8
|
-
<title>@vtx/components</title>
|
|
9
|
-
<style>.markdown table{table-layout: fixed;}</style>
|
|
10
|
-
<link rel="stylesheet" href="/react-components/umi.f49a7748.css">
|
|
11
|
-
<script src="/react-components/preload_helper.214f203a.js"></script>
|
|
12
|
-
</head>
|
|
13
|
-
<body>
|
|
14
|
-
<div id="root"></div>
|
|
15
|
-
<script src="/react-components/umi.f610424c.js"></script>
|
|
16
|
-
</body>
|
|
17
|
-
</html>
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
<!DOCTYPE html>
|
|
2
|
-
<html>
|
|
3
|
-
<head>
|
|
4
|
-
<meta charset="utf-8">
|
|
5
|
-
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
|
|
6
|
-
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
7
|
-
<link rel="shortcut icon" href>
|
|
8
|
-
<title>@vtx/components</title>
|
|
9
|
-
<style>.markdown table{table-layout: fixed;}</style>
|
|
10
|
-
<link rel="stylesheet" href="/react-components/umi.f49a7748.css">
|
|
11
|
-
<script src="/react-components/preload_helper.214f203a.js"></script>
|
|
12
|
-
</head>
|
|
13
|
-
<body>
|
|
14
|
-
<div id="root"></div>
|
|
15
|
-
<script src="/react-components/umi.f610424c.js"></script>
|
|
16
|
-
</body>
|
|
17
|
-
</html>
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
<!DOCTYPE html>
|
|
2
|
-
<html>
|
|
3
|
-
<head>
|
|
4
|
-
<meta charset="utf-8">
|
|
5
|
-
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
|
|
6
|
-
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
7
|
-
<link rel="shortcut icon" href>
|
|
8
|
-
<title>@vtx/components</title>
|
|
9
|
-
<style>.markdown table{table-layout: fixed;}</style>
|
|
10
|
-
<link rel="stylesheet" href="/react-components/umi.f49a7748.css">
|
|
11
|
-
<script src="/react-components/preload_helper.214f203a.js"></script>
|
|
12
|
-
</head>
|
|
13
|
-
<body>
|
|
14
|
-
<div id="root"></div>
|
|
15
|
-
<script src="/react-components/umi.f610424c.js"></script>
|
|
16
|
-
</body>
|
|
17
|
-
</html>
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
<!DOCTYPE html>
|
|
2
|
-
<html>
|
|
3
|
-
<head>
|
|
4
|
-
<meta charset="utf-8">
|
|
5
|
-
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
|
|
6
|
-
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
7
|
-
<link rel="shortcut icon" href>
|
|
8
|
-
<title>@vtx/components</title>
|
|
9
|
-
<style>.markdown table{table-layout: fixed;}</style>
|
|
10
|
-
<link rel="stylesheet" href="/react-components/umi.f49a7748.css">
|
|
11
|
-
<script src="/react-components/preload_helper.214f203a.js"></script>
|
|
12
|
-
</head>
|
|
13
|
-
<body>
|
|
14
|
-
<div id="root"></div>
|
|
15
|
-
<script src="/react-components/umi.f610424c.js"></script>
|
|
16
|
-
</body>
|
|
17
|
-
</html>
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
<!DOCTYPE html>
|
|
2
|
-
<html>
|
|
3
|
-
<head>
|
|
4
|
-
<meta charset="utf-8">
|
|
5
|
-
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
|
|
6
|
-
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
7
|
-
<link rel="shortcut icon" href>
|
|
8
|
-
<title>@vtx/components</title>
|
|
9
|
-
<style>.markdown table{table-layout: fixed;}</style>
|
|
10
|
-
<link rel="stylesheet" href="/react-components/umi.f49a7748.css">
|
|
11
|
-
<script src="/react-components/preload_helper.214f203a.js"></script>
|
|
12
|
-
</head>
|
|
13
|
-
<body>
|
|
14
|
-
<div id="root"></div>
|
|
15
|
-
<script src="/react-components/umi.f610424c.js"></script>
|
|
16
|
-
</body>
|
|
17
|
-
</html>
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
<!DOCTYPE html>
|
|
2
|
-
<html>
|
|
3
|
-
<head>
|
|
4
|
-
<meta charset="utf-8">
|
|
5
|
-
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
|
|
6
|
-
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
7
|
-
<link rel="shortcut icon" href>
|
|
8
|
-
<title>@vtx/components</title>
|
|
9
|
-
<style>.markdown table{table-layout: fixed;}</style>
|
|
10
|
-
<link rel="stylesheet" href="/react-components/umi.f49a7748.css">
|
|
11
|
-
<script src="/react-components/preload_helper.214f203a.js"></script>
|
|
12
|
-
</head>
|
|
13
|
-
<body>
|
|
14
|
-
<div id="root"></div>
|
|
15
|
-
<script src="/react-components/umi.f610424c.js"></script>
|
|
16
|
-
</body>
|
|
17
|
-
</html>
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
<!DOCTYPE html>
|
|
2
|
-
<html>
|
|
3
|
-
<head>
|
|
4
|
-
<meta charset="utf-8">
|
|
5
|
-
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
|
|
6
|
-
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
7
|
-
<link rel="shortcut icon" href>
|
|
8
|
-
<title>@vtx/components</title>
|
|
9
|
-
<style>.markdown table{table-layout: fixed;}</style>
|
|
10
|
-
<link rel="stylesheet" href="/react-components/umi.f49a7748.css">
|
|
11
|
-
<script src="/react-components/preload_helper.214f203a.js"></script>
|
|
12
|
-
</head>
|
|
13
|
-
<body>
|
|
14
|
-
<div id="root"></div>
|
|
15
|
-
<script src="/react-components/umi.f610424c.js"></script>
|
|
16
|
-
</body>
|
|
17
|
-
</html>
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
<!DOCTYPE html>
|
|
2
|
-
<html>
|
|
3
|
-
<head>
|
|
4
|
-
<meta charset="utf-8">
|
|
5
|
-
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
|
|
6
|
-
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
7
|
-
<link rel="shortcut icon" href>
|
|
8
|
-
<title>@vtx/components</title>
|
|
9
|
-
<style>.markdown table{table-layout: fixed;}</style>
|
|
10
|
-
<link rel="stylesheet" href="/react-components/umi.f49a7748.css">
|
|
11
|
-
<script src="/react-components/preload_helper.214f203a.js"></script>
|
|
12
|
-
</head>
|
|
13
|
-
<body>
|
|
14
|
-
<div id="root"></div>
|
|
15
|
-
<script src="/react-components/umi.f610424c.js"></script>
|
|
16
|
-
</body>
|
|
17
|
-
</html>
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
<!DOCTYPE html>
|
|
2
|
-
<html>
|
|
3
|
-
<head>
|
|
4
|
-
<meta charset="utf-8">
|
|
5
|
-
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
|
|
6
|
-
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
7
|
-
<link rel="shortcut icon" href>
|
|
8
|
-
<title>@vtx/components</title>
|
|
9
|
-
<style>.markdown table{table-layout: fixed;}</style>
|
|
10
|
-
<link rel="stylesheet" href="/react-components/umi.f49a7748.css">
|
|
11
|
-
<script src="/react-components/preload_helper.214f203a.js"></script>
|
|
12
|
-
</head>
|
|
13
|
-
<body>
|
|
14
|
-
<div id="root"></div>
|
|
15
|
-
<script src="/react-components/umi.f610424c.js"></script>
|
|
16
|
-
</body>
|
|
17
|
-
</html>
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
<!DOCTYPE html>
|
|
2
|
-
<html>
|
|
3
|
-
<head>
|
|
4
|
-
<meta charset="utf-8">
|
|
5
|
-
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
|
|
6
|
-
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
7
|
-
<link rel="shortcut icon" href>
|
|
8
|
-
<title>@vtx/components</title>
|
|
9
|
-
<style>.markdown table{table-layout: fixed;}</style>
|
|
10
|
-
<link rel="stylesheet" href="/react-components/umi.f49a7748.css">
|
|
11
|
-
<script src="/react-components/preload_helper.214f203a.js"></script>
|
|
12
|
-
</head>
|
|
13
|
-
<body>
|
|
14
|
-
<div id="root"></div>
|
|
15
|
-
<script src="/react-components/umi.f610424c.js"></script>
|
|
16
|
-
</body>
|
|
17
|
-
</html>
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
<!DOCTYPE html>
|
|
2
|
-
<html>
|
|
3
|
-
<head>
|
|
4
|
-
<meta charset="utf-8">
|
|
5
|
-
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
|
|
6
|
-
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
7
|
-
<link rel="shortcut icon" href>
|
|
8
|
-
<title>@vtx/components</title>
|
|
9
|
-
<style>.markdown table{table-layout: fixed;}</style>
|
|
10
|
-
<link rel="stylesheet" href="/react-components/umi.f49a7748.css">
|
|
11
|
-
<script src="/react-components/preload_helper.214f203a.js"></script>
|
|
12
|
-
</head>
|
|
13
|
-
<body>
|
|
14
|
-
<div id="root"></div>
|
|
15
|
-
<script src="/react-components/umi.f610424c.js"></script>
|
|
16
|
-
</body>
|
|
17
|
-
</html>
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
<!DOCTYPE html>
|
|
2
|
-
<html>
|
|
3
|
-
<head>
|
|
4
|
-
<meta charset="utf-8">
|
|
5
|
-
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
|
|
6
|
-
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
7
|
-
<link rel="shortcut icon" href>
|
|
8
|
-
<title>@vtx/components</title>
|
|
9
|
-
<style>.markdown table{table-layout: fixed;}</style>
|
|
10
|
-
<link rel="stylesheet" href="/react-components/umi.f49a7748.css">
|
|
11
|
-
<script src="/react-components/preload_helper.214f203a.js"></script>
|
|
12
|
-
</head>
|
|
13
|
-
<body>
|
|
14
|
-
<div id="root"></div>
|
|
15
|
-
<script src="/react-components/umi.f610424c.js"></script>
|
|
16
|
-
</body>
|
|
17
|
-
</html>
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
<!DOCTYPE html>
|
|
2
|
-
<html>
|
|
3
|
-
<head>
|
|
4
|
-
<meta charset="utf-8">
|
|
5
|
-
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
|
|
6
|
-
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
7
|
-
<link rel="shortcut icon" href>
|
|
8
|
-
<title>@vtx/components</title>
|
|
9
|
-
<style>.markdown table{table-layout: fixed;}</style>
|
|
10
|
-
<link rel="stylesheet" href="/react-components/umi.f49a7748.css">
|
|
11
|
-
<script src="/react-components/preload_helper.214f203a.js"></script>
|
|
12
|
-
</head>
|
|
13
|
-
<body>
|
|
14
|
-
<div id="root"></div>
|
|
15
|
-
<script src="/react-components/umi.f610424c.js"></script>
|
|
16
|
-
</body>
|
|
17
|
-
</html>
|