@nocobase/client 2.0.0-alpha.40 → 2.0.0-alpha.42
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/flow/common/Markdown/Edit.d.ts +1 -0
- package/es/flow/models/actions/FilterActionModel.d.ts +1 -0
- package/es/flow/models/base/GridModel.d.ts +6 -2
- package/es/index.mjs +1482 -1417
- package/lib/{index-C3fHjsMw-DF2xqBmJ.js → index-C3fHjsMw-MCEKfX67.js} +224 -224
- package/lib/index.js +15 -15
- package/lib/locale/zh-CN.json +5 -4
- package/package.json +6 -6
|
@@ -52,8 +52,12 @@ export declare class GridModel<T extends {
|
|
|
52
52
|
handleDragEnd(_event: DragEndEvent): void;
|
|
53
53
|
handleDragCancel(_event: DragCancelEvent): void;
|
|
54
54
|
renderAddSubModelButton(): JSX.Element;
|
|
55
|
-
|
|
56
|
-
|
|
55
|
+
/**
|
|
56
|
+
* 运行态按可见 block 过滤行/列,避免“整行都是 hidden block”但依然保留行间距占位。
|
|
57
|
+
* - 配置态(flowSettings.enabled)保持原始 rows/sizes 以便拖拽和布局编辑。
|
|
58
|
+
* - 运行态仅在判断为“整列/整行都不可见”时做过滤,不写回 props/stepParams,布局元数据保持不变。
|
|
59
|
+
*/
|
|
60
|
+
private getVisibleLayout;
|
|
57
61
|
render(): React.JSX.Element;
|
|
58
62
|
}
|
|
59
63
|
/**
|