fantasy-ngzorro 2.1.51 → 2.1.53
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/README.md +2 -0
- package/bundles/fantasy-ngzorro.umd.js +78 -17
- package/bundles/fantasy-ngzorro.umd.js.map +1 -1
- package/bundles/fantasy-ngzorro.umd.min.js +2 -2
- package/bundles/fantasy-ngzorro.umd.min.js.map +1 -1
- package/esm2015/hd-button/hd-button.component.js +1 -1
- package/esm2015/hd-button-group/hd-button-group.component.js +1 -1
- package/esm2015/hd-current-table/hd-current-table.component.js +1 -1
- package/esm2015/hd-detail-form/hd-detail-form.component.js +1 -1
- package/esm2015/hd-detail-lines/hd-detail-lines.component.js +1 -1
- package/esm2015/hd-detail-lines-page/hd-detail-lines-page.component.js +1 -1
- package/esm2015/hd-detail-tip/hd-detail-tip.component.js +1 -1
- package/esm2015/hd-filter/hd-filter.component.js +20 -3
- package/esm2015/hd-filter/hd-filter.service.js +7 -1
- package/esm2015/hd-form/hd-form.component.js +20 -3
- package/esm2015/hd-form/hd-form.service.js +7 -2
- package/esm2015/hd-form-lines/hd-form-lines.component.js +1 -1
- package/esm2015/hd-popconfirm/hd-popconfirm.component.js +1 -1
- package/esm2015/hd-status/hd-status.component.js +1 -1
- package/esm2015/hd-table/hd-table.component.js +1 -1
- package/esm2015/hd-tip/hd-tip.component.js +1 -1
- package/esm5/hd-button/hd-button.component.js +1 -1
- package/esm5/hd-button-group/hd-button-group.component.js +1 -1
- package/esm5/hd-current-table/hd-current-table.component.js +1 -1
- package/esm5/hd-detail-form/hd-detail-form.component.js +1 -1
- package/esm5/hd-detail-lines/hd-detail-lines.component.js +1 -1
- package/esm5/hd-detail-lines-page/hd-detail-lines-page.component.js +1 -1
- package/esm5/hd-detail-tip/hd-detail-tip.component.js +1 -1
- package/esm5/hd-filter/hd-filter.component.js +28 -3
- package/esm5/hd-filter/hd-filter.service.js +7 -1
- package/esm5/hd-form/hd-form.component.js +28 -3
- package/esm5/hd-form/hd-form.service.js +7 -2
- package/esm5/hd-form-lines/hd-form-lines.component.js +1 -1
- package/esm5/hd-popconfirm/hd-popconfirm.component.js +1 -1
- package/esm5/hd-status/hd-status.component.js +1 -1
- package/esm5/hd-table/hd-table.component.js +1 -1
- package/esm5/hd-tip/hd-tip.component.js +1 -1
- package/fantasy-ngzorro.metadata.json +1 -1
- package/fesm2015/fantasy-ngzorro.js +62 -17
- package/fesm2015/fantasy-ngzorro.js.map +1 -1
- package/fesm5/fantasy-ngzorro.js +78 -17
- package/fesm5/fantasy-ngzorro.js.map +1 -1
- package/hd-filter/hd-filter.component.d.ts +4 -0
- package/hd-filter/hd-filter.service.d.ts +5 -0
- package/hd-form/hd-form.component.d.ts +4 -0
- package/hd-form/hd-form.service.d.ts +5 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -844,6 +844,7 @@ selectOption: {
|
|
|
844
844
|
| placeholder | string | — | 占位符 |
|
|
845
845
|
| require | boolean | false | 是否必填 |
|
|
846
846
|
| show | boolean | — | 是否显示 |
|
|
847
|
+
| hdAllowClear | boolean | true | 是否允许清空;不传默认 true。Select 未配此项时可回退 `selectOption.hdAllowClear` |
|
|
847
848
|
| selectOption | SelectOption | — | Select / MultipleSelect 配置 |
|
|
848
849
|
| inputNumber | InputNumber | — | InputNumber 配置 |
|
|
849
850
|
| cascaderOption | CascaderOption | — | Cascader 配置 |
|
|
@@ -868,6 +869,7 @@ selectOption: {
|
|
|
868
869
|
| require | boolean | false | 是否必填 |
|
|
869
870
|
| width | number | 1 | 占据列数(总宽 4 列) |
|
|
870
871
|
| hide | boolean | false | 隐藏字段 |
|
|
872
|
+
| hdAllowClear | boolean | true | 是否允许清空;不传默认 true。Select 未配此项时可回退 `selectOption.hdAllowClear` |
|
|
871
873
|
| value | any | null | 初始值 |
|
|
872
874
|
| placeholder | string | — | 占位符 |
|
|
873
875
|
| disabled | boolean | — | 是否禁用 |
|