@ng-nest/ui 13.1.6 → 13.1.7

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.
Files changed (37) hide show
  1. package/core/config/config.d.ts +5 -0
  2. package/esm2020/auto-complete/auto-complete.component.mjs +3 -2
  3. package/esm2020/core/config/config.mjs +1 -1
  4. package/esm2020/core/interfaces/identify.type.mjs +1 -1
  5. package/esm2020/description/description.component.mjs +3 -3
  6. package/esm2020/table/table-body.component.mjs +14 -7
  7. package/esm2020/table/table.component.mjs +65 -17
  8. package/esm2020/table/table.module.mjs +5 -1
  9. package/esm2020/table/table.property.mjs +44 -3
  10. package/esm2020/upload/upload.component.mjs +9 -4
  11. package/esm2020/upload/upload.property.mjs +15 -3
  12. package/fesm2015/ng-nest-ui-auto-complete.mjs +2 -1
  13. package/fesm2015/ng-nest-ui-auto-complete.mjs.map +1 -1
  14. package/fesm2015/ng-nest-ui-core.mjs.map +1 -1
  15. package/fesm2015/ng-nest-ui-description.mjs +2 -2
  16. package/fesm2015/ng-nest-ui-description.mjs.map +1 -1
  17. package/fesm2015/ng-nest-ui-table.mjs +124 -22
  18. package/fesm2015/ng-nest-ui-table.mjs.map +1 -1
  19. package/fesm2015/ng-nest-ui-upload.mjs +22 -5
  20. package/fesm2015/ng-nest-ui-upload.mjs.map +1 -1
  21. package/fesm2020/ng-nest-ui-auto-complete.mjs +2 -1
  22. package/fesm2020/ng-nest-ui-auto-complete.mjs.map +1 -1
  23. package/fesm2020/ng-nest-ui-core.mjs.map +1 -1
  24. package/fesm2020/ng-nest-ui-description.mjs +2 -2
  25. package/fesm2020/ng-nest-ui-description.mjs.map +1 -1
  26. package/fesm2020/ng-nest-ui-table.mjs +122 -22
  27. package/fesm2020/ng-nest-ui-table.mjs.map +1 -1
  28. package/fesm2020/ng-nest-ui-upload.mjs +22 -5
  29. package/fesm2020/ng-nest-ui-upload.mjs.map +1 -1
  30. package/package.json +1 -1
  31. package/table/examples/en_US/default/expand/README.md +8 -0
  32. package/table/examples/zh_CN/default/expand/README.md +8 -0
  33. package/table/table-body.component.d.ts +1 -0
  34. package/table/table.component.d.ts +10 -2
  35. package/table/table.module.d.ts +5 -4
  36. package/table/table.property.d.ts +60 -5
  37. package/upload/upload.property.d.ts +16 -1
@@ -42,6 +42,16 @@ export declare class XUploadProperty extends XControlValueAccessor<XUploadNode[]
42
42
  * @en_US Multiple file upload
43
43
  */
44
44
  multiple?: XBoolean;
45
+ /**
46
+ * @zh_CN 点击下载
47
+ * @en_US click download
48
+ */
49
+ download: XBoolean;
50
+ /**
51
+ * @zh_CN 多次上传的模式,cover 覆盖现有 add 继续添加
52
+ * @en_US For many upload mode, 'cover' covers the existing, 'add' continue to add
53
+ */
54
+ multipleModel: XUploadMultipleModel;
45
55
  /**
46
56
  * @zh_CN 删除按钮的事件
47
57
  * @en_US Delete button event
@@ -71,7 +81,7 @@ export declare class XUploadProperty extends XControlValueAccessor<XUploadNode[]
71
81
  */
72
82
  uploadError: EventEmitter<XUploadNode>;
73
83
  static ɵfac: i0.ɵɵFactoryDeclaration<XUploadProperty, never>;
74
- static ɵcmp: i0.ɵɵComponentDeclaration<XUploadProperty, "ng-component", never, { "text": "text"; "action": "action"; "accept": "accept"; "type": "type"; "imgCut": "imgCut"; "multiple": "multiple"; }, { "removeClick": "removeClick"; "uploadReady": "uploadReady"; "uploading": "uploading"; "uploadSuccess": "uploadSuccess"; "uploadError": "uploadError"; }, never, never>;
84
+ static ɵcmp: i0.ɵɵComponentDeclaration<XUploadProperty, "ng-component", never, { "text": "text"; "action": "action"; "accept": "accept"; "type": "type"; "imgCut": "imgCut"; "multiple": "multiple"; "download": "download"; "multipleModel": "multipleModel"; }, { "removeClick": "removeClick"; "uploadReady": "uploadReady"; "uploading": "uploading"; "uploadSuccess": "uploadSuccess"; "uploadError": "uploadError"; }, never, never>;
75
85
  }
76
86
  /**
77
87
  * @zh_CN Upload 数据对象
@@ -104,6 +114,11 @@ export declare type XStateType = 'ready' | 'uploading' | 'success' | 'error';
104
114
  * @en_US File display type
105
115
  */
106
116
  export declare type XUploadType = 'list' | 'img';
117
+ /**
118
+ * @zh_CN 多次上传的模式,cover 覆盖现有 add 继续添加
119
+ * @en_US For many upload mode, 'cover' covers the existing, 'add' continue to add
120
+ */
121
+ export declare type XUploadMultipleModel = 'cover' | 'add';
107
122
  /**
108
123
  * @zh_CN 剪裁的方位
109
124
  * @en_US Tailored orientation