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.
|
@@ -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
|
/**
|