ids-enterprise-typings 14.3.1 → 14.4.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.
|
@@ -580,6 +580,11 @@ interface SohoDataGridCellEditor {
|
|
|
580
580
|
focus(): void;
|
|
581
581
|
}
|
|
582
582
|
|
|
583
|
+
type SohoDataGridAriaDescribedByFunction = (
|
|
584
|
+
row?: any,
|
|
585
|
+
cell?: any
|
|
586
|
+
) => string;
|
|
587
|
+
|
|
583
588
|
type SohoDataGridColumnEditorFunction = (
|
|
584
589
|
row?: any,
|
|
585
590
|
cell?: any,
|
|
@@ -634,6 +639,7 @@ interface SohoStatic {
|
|
|
634
639
|
Favorite: SohoDataGridColumnFormatterFunction;
|
|
635
640
|
Status: SohoDataGridColumnFormatterFunction;
|
|
636
641
|
TargetedAchievement: SohoDataGridColumnFormatterFunction;
|
|
642
|
+
Fileupload: SohoDataGridColumnFormatterFunction;
|
|
637
643
|
};
|
|
638
644
|
Editors: {
|
|
639
645
|
// Supports, Text, Numeric, Integer via mask
|
|
@@ -713,6 +719,7 @@ declare var Formatters: {
|
|
|
713
719
|
Favorite: SohoDataGridColumnFormatterFunction;
|
|
714
720
|
Status: SohoDataGridColumnFormatterFunction;
|
|
715
721
|
TargetedAchievement: SohoDataGridColumnFormatterFunction;
|
|
722
|
+
Fileupload: SohoDataGridColumnFormatterFunction;
|
|
716
723
|
};
|
|
717
724
|
|
|
718
725
|
type SohoDataGridColumnHrefFunction = (
|
|
@@ -955,6 +962,9 @@ interface SohoDataGridColumn {
|
|
|
955
962
|
/** Adds an extra class to the header for formatting */
|
|
956
963
|
headerCssClass?: string;
|
|
957
964
|
|
|
965
|
+
/** Adds the ability to set/override the aria-describedby attribute on the cells. */
|
|
966
|
+
ariaDescribedBy?: SohoDataGridAriaDescribedByFunction;
|
|
967
|
+
|
|
958
968
|
/** Content visible function*/
|
|
959
969
|
contentVisible?: SohoDataGridColumnContentVisibleFunction;
|
|
960
970
|
|
|
@@ -1006,6 +1016,9 @@ interface SohoDataGridColumn {
|
|
|
1006
1016
|
/* Array of objects with a value and label to be used as options in the filter row dropdown. */
|
|
1007
1017
|
filterRowEditorOptions?: SohoGridCellOption[];
|
|
1008
1018
|
|
|
1019
|
+
/* Add row span or not */
|
|
1020
|
+
rowspan?: boolean;
|
|
1021
|
+
|
|
1009
1022
|
/* formatter summary */
|
|
1010
1023
|
summaryRowFormatter?: SohoDataGridColumnFormatterFunction | string;
|
|
1011
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
|
|