ids-enterprise-typings 16.5.0 → 16.6.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.
|
@@ -772,8 +772,8 @@ interface SohoDataGridColumnClickData {
|
|
|
772
772
|
/** Index of the row clicked. */
|
|
773
773
|
row: number;
|
|
774
774
|
|
|
775
|
-
/**
|
|
776
|
-
cell:
|
|
775
|
+
/** Cell index. */
|
|
776
|
+
cell: number | null;
|
|
777
777
|
|
|
778
778
|
/** Row data */
|
|
779
779
|
item: any;
|
|
@@ -829,6 +829,9 @@ interface SohoDataGridColumn {
|
|
|
829
829
|
/** Tooltip for the column header. */
|
|
830
830
|
headerTooltip?: string;
|
|
831
831
|
|
|
832
|
+
/** Tooltip Options for the columns of the datagrid */
|
|
833
|
+
tooltipOptions?: SohoTooltipOptions;
|
|
834
|
+
|
|
832
835
|
/** Column formatter function or a string. */
|
|
833
836
|
formatter?: SohoDataGridColumnFormatterFunction | string;
|
|
834
837
|
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
*/
|
|
10
10
|
type SohoModuleNavSwitcherRoleRecord = Record<string, unknown>;
|
|
11
11
|
|
|
12
|
-
type SohoModuleNavSwitcherIconSetting = string | ((api: SohoModuleNavSwitcherStatic) => string) | undefined;
|
|
12
|
+
type SohoModuleNavSwitcherIconSetting = string | ((api: SohoModuleNavSwitcherStatic) => string) | undefined | false;
|
|
13
13
|
|
|
14
14
|
/** Defines options present in the Soho Module Nav Switcher */
|
|
15
15
|
interface SohoModuleNavSwitcherOptions {
|
|
@@ -18,6 +18,8 @@ interface SohoModuleNavSwitcherOptions {
|
|
|
18
18
|
icon?: SohoModuleNavSwitcherIconSetting;
|
|
19
19
|
moduleButtonText?: string;
|
|
20
20
|
roleDropdownLabel?: string;
|
|
21
|
+
changeIconOnSelect?: boolean;
|
|
22
|
+
noSearch?: boolean;
|
|
21
23
|
roles?: Array<SohoModuleNavSwitcherRoleRecord>;
|
|
22
24
|
}
|
|
23
25
|
|
|
@@ -38,6 +40,9 @@ interface SohoModuleNavSwitcherStatic {
|
|
|
38
40
|
/** Reference to the Module Button's Container Element */
|
|
39
41
|
moduleButtonContainerEl?: HTMLElement;
|
|
40
42
|
|
|
43
|
+
/** Reference to the Module Button's Icon Element */
|
|
44
|
+
moduleButtonIconEl?: HTMLElement | SVGElement;
|
|
45
|
+
|
|
41
46
|
/** Reference to the Module Button element */
|
|
42
47
|
moduleButtonEl?: HTMLElement;
|
|
43
48
|
|