ids-enterprise-typings 16.5.1 → 16.6.1

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
- /** Element click. */
776
- cell: HTMLElement;
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
 
@@ -251,6 +251,11 @@ interface SohoDropDownStatic {
251
251
  * Set the selected option on the dropdown.
252
252
  */
253
253
  selectValue(value: any): void;
254
+
255
+ /**
256
+ * Set the selected option with icon.
257
+ */
258
+ setListIcon(): void;
254
259
  }
255
260
 
256
261
  /**
@@ -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
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ids-enterprise-typings",
3
3
  "slug": "ids-enterprise-typings",
4
- "version": "16.5.1",
4
+ "version": "16.6.1",
5
5
  "declaration": true,
6
6
  "types": "index.d.ts",
7
7
  "dependencies": {