ids-enterprise-typings 17.8.1 → 18.0.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.
|
@@ -107,6 +107,12 @@ interface SohoModalOptions {
|
|
|
107
107
|
/** If true, causes the modal's trigger element not to become focused once the modal is closed. **/
|
|
108
108
|
noRefocus?: boolean;
|
|
109
109
|
|
|
110
|
+
/** If true, add classes for modal body for propagate style. **/
|
|
111
|
+
propagateStyle?: boolean;
|
|
112
|
+
|
|
113
|
+
/** If true, add classes for modal body for compact panel. **/
|
|
114
|
+
compactPanel?: boolean;
|
|
115
|
+
|
|
110
116
|
/** The modal's trigger element to keep refocused once the modal is closed. **/
|
|
111
117
|
triggerButton?: any;
|
|
112
118
|
|
|
@@ -66,6 +66,9 @@ interface SohoMonthViewRenderEvent {
|
|
|
66
66
|
interface SohoMonthView {
|
|
67
67
|
settings: SohoMonthViewOptions;
|
|
68
68
|
|
|
69
|
+
/** Updates the monthview with any new settings and data. */
|
|
70
|
+
updated(settings?: SohoMonthViewOptions): void;
|
|
71
|
+
|
|
69
72
|
/** Set range selection */
|
|
70
73
|
setRangeSelection(): void;
|
|
71
74
|
|