ids-enterprise-typings 17.4.4 → 17.5.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,6 +32,9 @@ interface SohoContextualActionPanelOptions {
|
|
|
32
32
|
/** The string used as the title for the panel - not defaulted. */
|
|
33
33
|
title?: string;
|
|
34
34
|
|
|
35
|
+
/** The id of the detail element that will be used to display the detail content. */
|
|
36
|
+
detailRefId?: string | undefined;
|
|
37
|
+
|
|
35
38
|
/** Settings to pass through to the modal */
|
|
36
39
|
modalSettings?: SohoModalOptions;
|
|
37
40
|
|
package/lib/tabs/soho-tabs.d.ts
CHANGED
|
@@ -93,6 +93,11 @@ interface SohoTabsOptions {
|
|
|
93
93
|
*/
|
|
94
94
|
tabCounts?: boolean;
|
|
95
95
|
|
|
96
|
+
/**
|
|
97
|
+
* If not null, set the initial width of the tabs.
|
|
98
|
+
*/
|
|
99
|
+
maxWidth?: number | undefined;
|
|
100
|
+
|
|
96
101
|
/**
|
|
97
102
|
* If Vertical Tabs & true, will automatically switch to Horizontal Tabs on smaller breakpoints.
|
|
98
103
|
*/
|