ids-enterprise-typings 14.3.2 → 14.4.3
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.
|
@@ -639,6 +639,7 @@ interface SohoStatic {
|
|
|
639
639
|
Favorite: SohoDataGridColumnFormatterFunction;
|
|
640
640
|
Status: SohoDataGridColumnFormatterFunction;
|
|
641
641
|
TargetedAchievement: SohoDataGridColumnFormatterFunction;
|
|
642
|
+
Fileupload: SohoDataGridColumnFormatterFunction;
|
|
642
643
|
};
|
|
643
644
|
Editors: {
|
|
644
645
|
// Supports, Text, Numeric, Integer via mask
|
|
@@ -718,6 +719,7 @@ declare var Formatters: {
|
|
|
718
719
|
Favorite: SohoDataGridColumnFormatterFunction;
|
|
719
720
|
Status: SohoDataGridColumnFormatterFunction;
|
|
720
721
|
TargetedAchievement: SohoDataGridColumnFormatterFunction;
|
|
722
|
+
Fileupload: SohoDataGridColumnFormatterFunction;
|
|
721
723
|
};
|
|
722
724
|
|
|
723
725
|
type SohoDataGridColumnHrefFunction = (
|
|
@@ -1014,6 +1016,9 @@ interface SohoDataGridColumn {
|
|
|
1014
1016
|
/* Array of objects with a value and label to be used as options in the filter row dropdown. */
|
|
1015
1017
|
filterRowEditorOptions?: SohoGridCellOption[];
|
|
1016
1018
|
|
|
1019
|
+
/* Add row span or not */
|
|
1020
|
+
rowspan?: boolean;
|
|
1021
|
+
|
|
1017
1022
|
/* formatter summary */
|
|
1018
1023
|
summaryRowFormatter?: SohoDataGridColumnFormatterFunction | string;
|
|
1019
1024
|
|
|
@@ -41,6 +41,9 @@ interface SohoStandalonePagerOptions {
|
|
|
41
41
|
/** display page size selector field */
|
|
42
42
|
showPageSizeSelector?: boolean;
|
|
43
43
|
|
|
44
|
+
/** display page selector input field */
|
|
45
|
+
showPageSelectorInput?: boolean;
|
|
46
|
+
|
|
44
47
|
/** display small page size selector field */
|
|
45
48
|
smallPageSizeSelector?: boolean;
|
|
46
49
|
|