ids-enterprise-typings 16.6.1 → 16.7.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.
@@ -1002,6 +1002,11 @@ interface SohoDataGridColumn {
1002
1002
  */
1003
1003
  selectChildren?: boolean;
1004
1004
 
1005
+ /**
1006
+ * Disable the filter area
1007
+ */
1008
+ filterDisabled?: boolean;
1009
+
1005
1010
  /** Enforce a max length when editing this column */
1006
1011
  maxLength?: number;
1007
1012
 
@@ -217,6 +217,15 @@ interface SohoDropDownStatic {
217
217
  */
218
218
  settings: SohoDropDownOptions;
219
219
 
220
+ /** Provides an array of selected values */
221
+ readonly selectedValues: Array<string>
222
+
223
+ /** Provides an array of selected HTMLOptionElements */
224
+ readonly selectedOptions: Array<HTMLOptionElement>
225
+
226
+ /** Provides the true "value" of the Dropdown input (different depending on single vs multiple) */
227
+ readonly value: Array<string> | string
228
+
220
229
  /**
221
230
  * Mark the contro as readonly.
222
231
  */
@@ -32,6 +32,13 @@ interface SohoModalOptions {
32
32
  /** The string used as the title for the dialog - not defaulted. */
33
33
  title?: string;
34
34
 
35
+ /** The icon to add to the the title for the dialog - name without icon- */
36
+ icon?: string;
37
+
38
+ /** The class to add for example `info` for color and placement */
39
+ iconClass?: string;
40
+
41
+
35
42
  // The content, can be 'html' or a selector.
36
43
  content?: JQuery | string;
37
44
 
@@ -67,6 +67,10 @@ interface SohoModuleNavSwitcherStatic {
67
67
  /** Sets visible */
68
68
  setRoles(val?: SohoModuleNavSwitcherRoleRecord[], doUpdate?: boolean): void;
69
69
 
70
+ /** Selects a role in the dropdown based on its value,
71
+ * keeping all Module Nav Switcher elements synced */
72
+ selectRole(val: string): void;
73
+
70
74
  /** Re-renders jQuery child component APIs */
71
75
  renderChildComponents(): void;
72
76
 
@@ -1,10 +1,16 @@
1
1
  /// <reference path='./soho-module-nav-common.d.ts' />
2
2
  /// <reference path='../accordion/soho-accordion.d.ts' />
3
3
 
4
+ interface SohoModuleNavDisplayModeChangeEvent {
5
+ e: JQuery.TriggeredEvent,
6
+ val: SohoModuleNavDisplayMode
7
+ }
8
+
4
9
  /** Defines options present in the Soho Module Nav */
5
10
  interface SohoModuleNavOptions {
6
11
  accordionSettings?: SohoAccordionOptions;
7
12
  displayMode?: SohoModuleNavDisplayMode;
13
+ enableOutsideClick?: boolean;
8
14
  filterable?: boolean;
9
15
  initChildren?: boolean;
10
16
  pinSections?: boolean;
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.6.1",
4
+ "version": "16.7.0",
5
5
  "declaration": true,
6
6
  "types": "index.d.ts",
7
7
  "dependencies": {