File tree Expand file tree Collapse file tree 3 files changed +9
-2
lines changed Expand file tree Collapse file tree 3 files changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,6 @@ import { ControlUIWidget } from '../../widget';
13
13
[error]="error"
14
14
[showTitle]="schema.title"
15
15
>
16
- min - {{ min }}, {{ max }}
17
16
<nz-input-number
18
17
[nzId]="id"
19
18
[ngModel]="value"
Original file line number Diff line number Diff line change 1
1
import { SFUISchemaItem } from '@delon/form' ;
2
- import { NzCascaderExpandTrigger , NzCascaderOption , NzShowSearchOptions } from 'ng-zorro-antd/cascader' ;
2
+ import type {
3
+ NzCascaderExpandTrigger ,
4
+ NzCascaderOption ,
5
+ NzCascaderPlacement ,
6
+ NzShowSearchOptions
7
+ } from 'ng-zorro-antd/cascader' ;
3
8
import { NgStyleInterface , NzSafeAny } from 'ng-zorro-antd/core/types' ;
4
9
5
10
import type { CascaderWidget } from './widget' ;
@@ -14,6 +19,8 @@ export interface SFCascaderWidgetSchema extends SFUISchemaItem {
14
19
*/
15
20
placeholder ?: string ;
16
21
22
+ placement ?: NzCascaderPlacement ;
23
+
17
24
/**
18
25
* 是否支持搜索,默认:`false`
19
26
*/
Original file line number Diff line number Diff line change @@ -36,6 +36,7 @@ import type { SFCascaderWidgetSchema } from './schema';
36
36
[nzValueProperty]="ui.valueProperty || 'value'"
37
37
[nzLoadData]="loadData"
38
38
[nzPlaceHolder]="ui.placeholder!"
39
+ [nzPlacement]="ui.placement ?? 'bottomLeft'"
39
40
[nzShowArrow]="showArrow"
40
41
[nzShowInput]="showInput"
41
42
[nzShowSearch]="ui.showSearch!"
You can’t perform that action at this time.
0 commit comments