ids-enterprise-typings 17.1.2 → 17.2.0
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.
|
@@ -644,6 +644,7 @@ interface SohoStatic {
|
|
|
644
644
|
Status: SohoDataGridColumnFormatterFunction;
|
|
645
645
|
TargetedAchievement: SohoDataGridColumnFormatterFunction;
|
|
646
646
|
Fileupload: SohoDataGridColumnFormatterFunction;
|
|
647
|
+
MultiSelect: SohoDataGridColumnFormatterFunction;
|
|
647
648
|
};
|
|
648
649
|
Editors: {
|
|
649
650
|
// Supports, Text, Numeric, Integer via mask
|
|
@@ -725,6 +726,7 @@ declare var Formatters: {
|
|
|
725
726
|
Status: SohoDataGridColumnFormatterFunction;
|
|
726
727
|
TargetedAchievement: SohoDataGridColumnFormatterFunction;
|
|
727
728
|
Fileupload: SohoDataGridColumnFormatterFunction;
|
|
729
|
+
MultiSelect: SohoDataGridColumnFormatterFunction;
|
|
728
730
|
};
|
|
729
731
|
|
|
730
732
|
type SohoDataGridColumnHrefFunction = (
|
|
@@ -26,6 +26,9 @@ interface SohoModuleNavOptions {
|
|
|
26
26
|
mobileBehavior?: boolean;
|
|
27
27
|
breakpoint?: SohoModuleNavBreakPoint,
|
|
28
28
|
showOverlay?: boolean;
|
|
29
|
+
showModuleSwitcher?: boolean;
|
|
30
|
+
showGuestSection?: boolean;
|
|
31
|
+
showSearchBar?: boolean;
|
|
29
32
|
enableOutsideClick?: boolean;
|
|
30
33
|
}
|
|
31
34
|
|