@vtx/components 6.0.0-beta.1 → 6.0.0-beta.2
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/vtx-datagrid/Store/Provide.js +1 -1
- package/es/vtx-datagrid/index.js +2 -2
- package/lib/vtx-datagrid/Store/Provide.js +1 -1
- package/lib/vtx-datagrid/index.js +2 -2
- package/package.json +5 -5
- /package/es/vtx-datagrid/{components/Alert → Alert}/index.js +0 -0
- /package/es/vtx-datagrid/{components/Alert → Alert}/style.js +0 -0
- /package/es/vtx-datagrid/{components/ToolBar → ToolBar}/components/ColumnSetting/index.js +0 -0
- /package/es/vtx-datagrid/{components/ToolBar → ToolBar}/components/ColumnSetting/style.js +0 -0
- /package/es/vtx-datagrid/{components/ToolBar → ToolBar}/components/Density/index.js +0 -0
- /package/es/vtx-datagrid/{components/ToolBar → ToolBar}/components/Fullscreen/index.js +0 -0
- /package/es/vtx-datagrid/{components/ToolBar → ToolBar}/components/TableStyle/index.js +0 -0
- /package/es/vtx-datagrid/{components/ToolBar → ToolBar}/index.js +0 -0
- /package/es/vtx-datagrid/{components/ToolBar → ToolBar}/style.js +0 -0
- /package/es/vtx-datagrid/{components/renderColumnButtons.js → renderColumnButtons.js} +0 -0
- /package/lib/vtx-datagrid/{components/Alert → Alert}/index.js +0 -0
- /package/lib/vtx-datagrid/{components/Alert → Alert}/style.js +0 -0
- /package/lib/vtx-datagrid/{components/ToolBar → ToolBar}/components/ColumnSetting/index.js +0 -0
- /package/lib/vtx-datagrid/{components/ToolBar → ToolBar}/components/ColumnSetting/style.js +0 -0
- /package/lib/vtx-datagrid/{components/ToolBar → ToolBar}/components/Density/index.js +0 -0
- /package/lib/vtx-datagrid/{components/ToolBar → ToolBar}/components/Fullscreen/index.js +0 -0
- /package/lib/vtx-datagrid/{components/ToolBar → ToolBar}/components/TableStyle/index.js +0 -0
- /package/lib/vtx-datagrid/{components/ToolBar → ToolBar}/index.js +0 -0
- /package/lib/vtx-datagrid/{components/ToolBar → ToolBar}/style.js +0 -0
- /package/lib/vtx-datagrid/{components/renderColumnButtons.js → renderColumnButtons.js} +0 -0
|
@@ -21,7 +21,7 @@ import { createContext, useEffect, useMemo, useRef, useState } from 'react';
|
|
|
21
21
|
import { useIntl } from "../../vtx-provider";
|
|
22
22
|
import { message } from 'antd';
|
|
23
23
|
import { genColumnKey, isFunction, sortByGivenOrder, useDeepCompareEffectDebounce } from "../../utils";
|
|
24
|
-
import renderColumnButtons from "../
|
|
24
|
+
import renderColumnButtons from "../renderColumnButtons";
|
|
25
25
|
import { getVtxToken } from '@vtx/utils';
|
|
26
26
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
27
27
|
export var indexColumnKey = '_serialNum';
|
package/es/vtx-datagrid/index.js
CHANGED
|
@@ -20,8 +20,8 @@ import PropTypes from 'prop-types';
|
|
|
20
20
|
import React, { useContext, useEffect, useLayoutEffect, useMemo, useRef } from 'react';
|
|
21
21
|
import { ErrorBoundary, genColumnKey, sortByKeyArrayExtract } from "../utils";
|
|
22
22
|
import useSet from "../utils/useSet";
|
|
23
|
-
import Alert from "./
|
|
24
|
-
import ToolBar from "./
|
|
23
|
+
import Alert from "./Alert";
|
|
24
|
+
import ToolBar from "./ToolBar";
|
|
25
25
|
import { useIntl } from "../vtx-provider";
|
|
26
26
|
import { Container, TableContext } from "./Store/Provide";
|
|
27
27
|
import { useStyle } from "./style/index";
|
|
@@ -12,7 +12,7 @@ var _react = require("react");
|
|
|
12
12
|
var _vtxProvider = require("../../vtx-provider");
|
|
13
13
|
var _antd = require("antd");
|
|
14
14
|
var _utils2 = require("../../utils");
|
|
15
|
-
var _renderColumnButtons = _interopRequireDefault(require("../
|
|
15
|
+
var _renderColumnButtons = _interopRequireDefault(require("../renderColumnButtons"));
|
|
16
16
|
var _jsxRuntime = require("react/jsx-runtime");
|
|
17
17
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
18
18
|
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
|
@@ -13,8 +13,8 @@ var _propTypes = _interopRequireDefault(require("prop-types"));
|
|
|
13
13
|
var _react = _interopRequireWildcard(require("react"));
|
|
14
14
|
var _utils = require("../utils");
|
|
15
15
|
var _useSet3 = _interopRequireDefault(require("../utils/useSet"));
|
|
16
|
-
var _Alert = _interopRequireDefault(require("./
|
|
17
|
-
var _ToolBar = _interopRequireDefault(require("./
|
|
16
|
+
var _Alert = _interopRequireDefault(require("./Alert"));
|
|
17
|
+
var _ToolBar = _interopRequireDefault(require("./ToolBar"));
|
|
18
18
|
var _vtxProvider = require("../vtx-provider");
|
|
19
19
|
var _Provide = require("./Store/Provide");
|
|
20
20
|
var _index = require("./style/index");
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vtx/components",
|
|
3
|
-
"version": "6.0.0-beta.
|
|
3
|
+
"version": "6.0.0-beta.2",
|
|
4
4
|
"description": "React components for Vortex",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"react",
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
"test:update": "cross-env TZ=UTC vitest -u",
|
|
48
48
|
"tsc": "tsc --noEmit",
|
|
49
49
|
"publish": "npm publish",
|
|
50
|
-
"publish:beta": "npm publish --tag beta",
|
|
50
|
+
"publish:beta": "npm publish --tag beta --access public",
|
|
51
51
|
"update:deps": "pnpm up --latest"
|
|
52
52
|
},
|
|
53
53
|
"browserslist": [
|
|
@@ -99,7 +99,7 @@
|
|
|
99
99
|
"@wangeditor/editor-for-react": "^1.0.6",
|
|
100
100
|
"@wangeditor/plugin-upload-attachment": "^1.1.0",
|
|
101
101
|
"xgplayer": "^3.0.23",
|
|
102
|
-
"react-antd-column-resize":"^1.0.3"
|
|
102
|
+
"react-antd-column-resize": "^1.0.3"
|
|
103
103
|
},
|
|
104
104
|
"devDependencies": {
|
|
105
105
|
"@ant-design/antd-theme-variable": "^1.0.0",
|
|
@@ -191,7 +191,7 @@
|
|
|
191
191
|
"yorkie": "^2.0.0",
|
|
192
192
|
"zustand": "^4.5.7",
|
|
193
193
|
"lodash-es": "^4.17.21",
|
|
194
|
-
"@ant-design/icons": "^
|
|
194
|
+
"@ant-design/icons": "^6.0.0",
|
|
195
195
|
"@types/minimatch": "^6.0.0",
|
|
196
196
|
"minimatch": "^10.0.3"
|
|
197
197
|
},
|
|
@@ -199,7 +199,7 @@
|
|
|
199
199
|
"antd": "^6.0.0",
|
|
200
200
|
"react": ">=18.0.0",
|
|
201
201
|
"react-dom": ">=18.0.0",
|
|
202
|
-
"@ant-design/icons": "^
|
|
202
|
+
"@ant-design/icons": "^6.0.0",
|
|
203
203
|
"lodash-es": "^4.17.21"
|
|
204
204
|
},
|
|
205
205
|
"packageManager": "pnpm@9.6.0",
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|