fantasy-ngzorro 1.2.1 → 1.2.2
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/bundles/fantasy-ngzorro.umd.js +78 -2
- 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/fantasy-ngzorro.js +2 -2
- package/esm2015/hd-form-lines/hd-form-lines.component.js +48 -3
- package/esm2015/index.js +2 -2
- package/esm2015/model/colWidth.js +3 -1
- package/esm2015/model/common-type.js +17 -1
- package/esm2015/public-api.js +2 -2
- package/esm5/fantasy-ngzorro.js +2 -2
- package/esm5/hd-form-lines/hd-form-lines.component.js +57 -3
- package/esm5/index.js +2 -2
- package/esm5/model/colWidth.js +3 -1
- package/esm5/model/common-type.js +21 -1
- package/esm5/public-api.js +2 -2
- package/fantasy-ngzorro.metadata.json +1 -1
- package/fesm2015/fantasy-ngzorro.js +66 -3
- package/fesm2015/fantasy-ngzorro.js.map +1 -1
- package/fesm5/fantasy-ngzorro.js +78 -3
- package/fesm5/fantasy-ngzorro.js.map +1 -1
- package/hd-form-lines/hd-form-lines.component.d.ts +3 -0
- package/model/colWidth.d.ts +1 -0
- package/model/common-type.d.ts +8 -0
- package/package.json +1 -1
|
@@ -76,4 +76,7 @@ export declare class HdFormLinesComponent implements OnInit {
|
|
|
76
76
|
resetForm(): void;
|
|
77
77
|
inputClean(formItem: any, line: any): void;
|
|
78
78
|
selectValue(id: string): void;
|
|
79
|
+
private textWidthCache;
|
|
80
|
+
isTextOverflow(text: string, maxWidth: number): boolean;
|
|
81
|
+
judgeColEmpty(str: any): any;
|
|
79
82
|
}
|
package/model/colWidth.d.ts
CHANGED
package/model/common-type.d.ts
CHANGED
|
@@ -22,6 +22,14 @@ export declare class SelectOption {
|
|
|
22
22
|
hdDropdownMatchSelectWidth?: boolean;
|
|
23
23
|
hdServerSearch?: boolean;
|
|
24
24
|
hdShowItemCode?: boolean;
|
|
25
|
+
tableColumns?: Array<SelectOptionTableColumn>;
|
|
26
|
+
}
|
|
27
|
+
export declare class SelectOptionTableColumn {
|
|
28
|
+
width: number;
|
|
29
|
+
label: string;
|
|
30
|
+
name: string;
|
|
31
|
+
pictureName?: string;
|
|
32
|
+
render?: (value: any) => string;
|
|
25
33
|
}
|
|
26
34
|
export declare class InputNumber {
|
|
27
35
|
min?: number;
|