@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.
- package/core/config/config.d.ts +5 -0
- package/esm2020/auto-complete/auto-complete.component.mjs +3 -2
- package/esm2020/core/config/config.mjs +1 -1
- package/esm2020/core/interfaces/identify.type.mjs +1 -1
- package/esm2020/description/description.component.mjs +3 -3
- package/esm2020/table/table-body.component.mjs +14 -7
- package/esm2020/table/table.component.mjs +65 -17
- package/esm2020/table/table.module.mjs +5 -1
- package/esm2020/table/table.property.mjs +44 -3
- package/esm2020/upload/upload.component.mjs +9 -4
- package/esm2020/upload/upload.property.mjs +15 -3
- package/fesm2015/ng-nest-ui-auto-complete.mjs +2 -1
- package/fesm2015/ng-nest-ui-auto-complete.mjs.map +1 -1
- package/fesm2015/ng-nest-ui-core.mjs.map +1 -1
- package/fesm2015/ng-nest-ui-description.mjs +2 -2
- package/fesm2015/ng-nest-ui-description.mjs.map +1 -1
- package/fesm2015/ng-nest-ui-table.mjs +124 -22
- package/fesm2015/ng-nest-ui-table.mjs.map +1 -1
- package/fesm2015/ng-nest-ui-upload.mjs +22 -5
- package/fesm2015/ng-nest-ui-upload.mjs.map +1 -1
- package/fesm2020/ng-nest-ui-auto-complete.mjs +2 -1
- package/fesm2020/ng-nest-ui-auto-complete.mjs.map +1 -1
- package/fesm2020/ng-nest-ui-core.mjs.map +1 -1
- package/fesm2020/ng-nest-ui-description.mjs +2 -2
- package/fesm2020/ng-nest-ui-description.mjs.map +1 -1
- package/fesm2020/ng-nest-ui-table.mjs +122 -22
- package/fesm2020/ng-nest-ui-table.mjs.map +1 -1
- package/fesm2020/ng-nest-ui-upload.mjs +22 -5
- package/fesm2020/ng-nest-ui-upload.mjs.map +1 -1
- package/package.json +1 -1
- package/table/examples/en_US/default/expand/README.md +8 -0
- package/table/examples/zh_CN/default/expand/README.md +8 -0
- package/table/table-body.component.d.ts +1 -0
- package/table/table.component.d.ts +10 -2
- package/table/table.module.d.ts +5 -4
- package/table/table.property.d.ts +60 -5
- 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
|