ids-enterprise-typings 13.1.0-dev.20220307 → 13.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.
@@ -32,8 +32,6 @@ interface SohoContextualActionPanelOptions {
32
32
  /** The string used as the title for the panel - not defaulted. */
33
33
  title?: string;
34
34
 
35
- cssClass?: string;
36
-
37
35
  /** Settings to pass through to the modal */
38
36
  modalSettings?: SohoModalOptions;
39
37
 
@@ -97,6 +97,12 @@ interface SohoLookupAutoComplete {
97
97
 
98
98
  /** Menu template, appropriate markup is expected. */
99
99
  template?: string;
100
+
101
+ change?(event: any): void;
102
+
103
+ selected?(selected: any[]): void;
104
+
105
+ beforeopen?(event: SohoAutoCompleteEvent): void;
100
106
  }
101
107
 
102
108
  /** Selection criteria. */
@@ -19,6 +19,12 @@ interface SohoSwapListItem {
19
19
  disabled?: boolean;
20
20
  }
21
21
 
22
+ interface SohoSwapSections {
23
+ available?: boolean;
24
+ selected?: boolean;
25
+ additional?: boolean;
26
+ }
27
+
22
28
  /**
23
29
  * Swap List Options
24
30
  */
@@ -37,6 +43,12 @@ interface SohoSwapListOptions {
37
43
 
38
44
  /** Add extra attributes like id's to the component **/
39
45
  attributes?: Array<Object> | Object;
46
+
47
+ /** Disable dragging (all true by default) **/
48
+ draggable?: SohoSwapSections | undefined;
49
+
50
+ /** Keep items in the section when moving (all false by default) **/
51
+ keepInList?: SohoSwapSections | undefined;
40
52
  }
41
53
 
42
54
  /**
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ids-enterprise-typings",
3
3
  "slug": "ids-enterprise-typings",
4
- "version": "13.1.0-dev.20220307",
4
+ "version": "13.2.0",
5
5
  "declaration": true,
6
6
  "types": "index.d.ts",
7
7
  "dependencies": {