ids-enterprise-typings 15.4.2 → 15.4.4
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.
|
@@ -159,6 +159,12 @@ interface SohoAccordionStatic {
|
|
|
159
159
|
/** Makes an accordion header appear with a "selected" state */
|
|
160
160
|
select(element?: SohoAccordionHeaderAnyGroup): void;
|
|
161
161
|
|
|
162
|
+
/** Makes an accordion header appear with a "deselected" state */
|
|
163
|
+
deselect(element?: SohoAccordionHeaderAnyGroup): void;
|
|
164
|
+
|
|
165
|
+
/** Makes all accordion headers deselected */
|
|
166
|
+
deselectAll(): void;
|
|
167
|
+
|
|
162
168
|
/** Gets a reference to currently-selected accordion headers */
|
|
163
169
|
getSelected(): SohoAccordionHeaderGroup;
|
|
164
170
|
|
|
@@ -14,7 +14,10 @@ type SohoModuleNavSwitcherIconSetting = string | ((api: SohoModuleNavSwitcherSta
|
|
|
14
14
|
/** Defines options present in the Soho Module Nav Switcher */
|
|
15
15
|
interface SohoModuleNavSwitcherOptions {
|
|
16
16
|
displayMode?: SohoModuleNavDisplayMode;
|
|
17
|
+
generate?: boolean;
|
|
17
18
|
icon?: SohoModuleNavSwitcherIconSetting;
|
|
19
|
+
moduleButtonText?: string;
|
|
20
|
+
roleDropdownLabel?: string;
|
|
18
21
|
roles?: Array<SohoModuleNavSwitcherRoleRecord>;
|
|
19
22
|
}
|
|
20
23
|
|
|
@@ -62,6 +65,9 @@ interface SohoModuleNavSwitcherStatic {
|
|
|
62
65
|
/** Re-renders jQuery child component APIs */
|
|
63
66
|
renderChildComponents(): void;
|
|
64
67
|
|
|
68
|
+
/** Changes the focus of the Module Button */
|
|
69
|
+
toggleModuleButtonFocus(doFocus?: boolean): void;
|
|
70
|
+
|
|
65
71
|
/** Tear down the markup for the control */
|
|
66
72
|
teardown(): void;
|
|
67
73
|
|