@pisell/materials 6.12.4 → 6.12.5
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/build/lowcode/assets-daily.json +11 -11
- package/build/lowcode/assets-dev.json +2 -2
- package/build/lowcode/assets-prod.json +11 -11
- package/build/lowcode/meta.js +1 -1
- package/build/lowcode/render/default/view.js +1 -1
- package/package.json +1 -1
- package/es/components/pisellRecordBoard/PisellRecordBoard.d.ts +0 -9
- package/es/components/pisellRecordBoard/layouts/GridLayout/Grid.d.ts +0 -14
- package/lib/components/pisellRecordBoard/PisellRecordBoard.d.ts +0 -9
- package/lib/components/pisellRecordBoard/layouts/GridLayout/Grid.d.ts +0 -14
package/package.json
CHANGED
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import type { RecordBoardProps } from './types';
|
|
3
|
-
/**
|
|
4
|
-
* RecordBoard 容器:提供统一的 data / pagination / search 上下文。
|
|
5
|
-
* 打散 props:列表/分页/搜索/多选、grid/toolBar/…;可选根级 **floorMap**(兼容透传)。
|
|
6
|
-
* 平面图推荐在 ShellFrame 内使用 **PisellRecordBoard.FloorMap** 声明,与根级 `floorMap` 合并(子优先)。
|
|
7
|
-
*/
|
|
8
|
-
declare const PisellRecordBoard: React.FC<RecordBoardProps>;
|
|
9
|
-
export default PisellRecordBoard;
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import type { TableProps } from 'antd';
|
|
3
|
-
import type { RecordBoardContextValue } from '../../types';
|
|
4
|
-
import './Grid.less';
|
|
5
|
-
export interface RecordBoardGridViewProps extends Omit<TableProps<any>, 'dataSource' | 'loading' | 'pagination'>, Partial<Pick<RecordBoardContextValue, 'data' | 'loading'>> {
|
|
6
|
-
/** 列配置,同 antd Table columns */
|
|
7
|
-
columns?: TableProps<any>['columns'];
|
|
8
|
-
className?: string;
|
|
9
|
-
style?: React.CSSProperties;
|
|
10
|
-
/** 自定义渲染,传入后不再使用内置 Table */
|
|
11
|
-
render?: (ctx: RecordBoardContextValue) => React.ReactNode;
|
|
12
|
-
}
|
|
13
|
-
declare const RecordBoardGridView: React.FC<RecordBoardGridViewProps>;
|
|
14
|
-
export default RecordBoardGridView;
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import type { RecordBoardProps } from './types';
|
|
3
|
-
/**
|
|
4
|
-
* RecordBoard 容器:提供统一的 data / pagination / search 上下文。
|
|
5
|
-
* 打散 props:列表/分页/搜索/多选、grid/toolBar/…;可选根级 **floorMap**(兼容透传)。
|
|
6
|
-
* 平面图推荐在 ShellFrame 内使用 **PisellRecordBoard.FloorMap** 声明,与根级 `floorMap` 合并(子优先)。
|
|
7
|
-
*/
|
|
8
|
-
declare const PisellRecordBoard: React.FC<RecordBoardProps>;
|
|
9
|
-
export default PisellRecordBoard;
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import type { TableProps } from 'antd';
|
|
3
|
-
import type { RecordBoardContextValue } from '../../types';
|
|
4
|
-
import './Grid.less';
|
|
5
|
-
export interface RecordBoardGridViewProps extends Omit<TableProps<any>, 'dataSource' | 'loading' | 'pagination'>, Partial<Pick<RecordBoardContextValue, 'data' | 'loading'>> {
|
|
6
|
-
/** 列配置,同 antd Table columns */
|
|
7
|
-
columns?: TableProps<any>['columns'];
|
|
8
|
-
className?: string;
|
|
9
|
-
style?: React.CSSProperties;
|
|
10
|
-
/** 自定义渲染,传入后不再使用内置 Table */
|
|
11
|
-
render?: (ctx: RecordBoardContextValue) => React.ReactNode;
|
|
12
|
-
}
|
|
13
|
-
declare const RecordBoardGridView: React.FC<RecordBoardGridViewProps>;
|
|
14
|
-
export default RecordBoardGridView;
|