@aloudata/aloudata-design 1.6.4 → 1.7.0
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/dist/DataPreviewTable/index.js +2 -2
- package/dist/Tag/index.d.ts +3 -0
- package/dist/Tag/index.js +2 -0
- package/dist/Tag/style/index.d.ts +2 -0
- package/dist/Tag/style/index.js +2 -0
- package/dist/Tag/style/index.less +1 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +1 -0
- package/package.json +1 -1
|
@@ -41,8 +41,8 @@ var DataPreviewTable = /*#__PURE__*/forwardRef(function (props, ref) {
|
|
|
41
41
|
var _wrapRef$current;
|
|
42
42
|
|
|
43
43
|
// 实现scrollTo方法
|
|
44
|
-
|
|
45
|
-
|
|
44
|
+
var columnPos = columnLayout[columnId];
|
|
45
|
+
if (!columnPos) return; // 根据容器的宽度,容器的scrollLeft,columnPos,判断当前列是否在可视区域内
|
|
46
46
|
|
|
47
47
|
var _ref = wrapRef.current,
|
|
48
48
|
scrollLeft = _ref.scrollLeft;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import '../../style/index.less';
|
package/dist/index.d.ts
CHANGED
|
@@ -82,6 +82,8 @@ export { default as Table } from './Table';
|
|
|
82
82
|
export type { IColumn, ISort, ITableProps, TSortOrder, } from './Table/interface';
|
|
83
83
|
export { default as Tabs } from './Tabs';
|
|
84
84
|
export type { ITabsProps as TabsProps, TabsSize } from './Tabs';
|
|
85
|
+
export { default as Tag } from './Tag';
|
|
86
|
+
export type { TagProps, TagType } from './Tag';
|
|
85
87
|
export { default as Tooltip } from './Tooltip';
|
|
86
88
|
export type { ActionType as TooltipActionType, ITooltipProps as TooltipProps, } from './Tooltip';
|
|
87
89
|
export { default as Tree } from './Tree';
|
package/dist/index.js
CHANGED
|
@@ -46,6 +46,7 @@ export { default as Steps } from "./Steps";
|
|
|
46
46
|
export { default as Switch } from "./Switch";
|
|
47
47
|
export { default as Table } from "./Table";
|
|
48
48
|
export { default as Tabs } from "./Tabs";
|
|
49
|
+
export { default as Tag } from "./Tag";
|
|
49
50
|
export { default as Tooltip } from "./Tooltip";
|
|
50
51
|
export { default as Tree } from "./Tree";
|
|
51
52
|
export { default as Typography } from "./Typography";
|