@para-ui/core 2.2.17 → 2.2.18

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.
@@ -95,6 +95,8 @@ export interface TableHeadBodyPublicProps {
95
95
  showColumns?: 'outside' | 'inside' | false;
96
96
  /** 是否等分表格,出滚动条 */
97
97
  fixedTable?: boolean;
98
+ /** 是否具有固定列 */
99
+ fixedColumn?: boolean;
98
100
  /** 排序字段 */
99
101
  orderFieldArr?: string[];
100
102
  /** 排序方式 */
@@ -8,8 +8,6 @@ import './index.scss';
8
8
  export interface TableElementProps {
9
9
  className?: string;
10
10
  style?: React.CSSProperties;
11
- /** 是否固定表格 */
12
- sticky?: boolean;
13
11
  children?: any;
14
12
  [name: string]: any;
15
13
  }