ids-enterprise-typings 20.2.0 → 20.2.1
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.
package/index.d.ts
CHANGED
|
@@ -79,6 +79,7 @@
|
|
|
79
79
|
/// <reference path='lib/tabs/soho-tabs.d.ts' />
|
|
80
80
|
/// <reference path='lib/tag/soho-tag.d.ts' />
|
|
81
81
|
/// <reference path='lib/textarea/soho-textarea.d.ts' />
|
|
82
|
+
/// <reference path='lib/timeline/soho-timeline.d.ts' />
|
|
82
83
|
/// <reference path='lib/timepicker/soho-timepicker.d.ts' />
|
|
83
84
|
/// <reference path='lib/toast/soho-toast.d.ts' />
|
|
84
85
|
/// <reference path='lib/toolbar/soho-toolbar.d.ts' />
|
|
@@ -1059,6 +1059,9 @@ interface SohoDataGridColumn {
|
|
|
1059
1059
|
/** Disable tooltip for this column */
|
|
1060
1060
|
disableTooltip?: boolean;
|
|
1061
1061
|
|
|
1062
|
+
/** If true, disables the automatic `<p class="datagrid-text-content">` wrapper for cell content. */
|
|
1063
|
+
disableCellWrapper?: boolean;
|
|
1064
|
+
|
|
1062
1065
|
/** Placeholder text to display in the field **/
|
|
1063
1066
|
placeholder?: string | Function;
|
|
1064
1067
|
|
|
@@ -1082,7 +1085,6 @@ interface SohoDataGridColumn {
|
|
|
1082
1085
|
|
|
1083
1086
|
/* summary text placement */
|
|
1084
1087
|
summaryTextPlacement?: string;
|
|
1085
|
-
|
|
1086
1088
|
}
|
|
1087
1089
|
|
|
1088
1090
|
interface SohoDataGridColumnNumberFormat {
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Soho Timeline.
|
|
3
|
+
*
|
|
4
|
+
* This file contains the Typescript mappings for the public
|
|
5
|
+
* interface of the Soho jQuery Timeline control.
|
|
6
|
+
*/
|
|
7
|
+
|
|
8
|
+
/**
|
|
9
|
+
* Timeline Options
|
|
10
|
+
*/
|
|
11
|
+
interface SohoTimelineOptions {
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
/**
|
|
15
|
+
* Timeline Api.
|
|
16
|
+
*/
|
|
17
|
+
interface SohoTimelineStatic {
|
|
18
|
+
/** The settings option */
|
|
19
|
+
settings: SohoTimelineOptions;
|
|
20
|
+
|
|
21
|
+
/** Updates the timeline with any new settings */
|
|
22
|
+
updated(settings?: SohoTimelineOptions): void;
|
|
23
|
+
|
|
24
|
+
/** Destroys the control on completion. */
|
|
25
|
+
destroy(): void;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
interface JQuery<TElement = HTMLElement> extends Iterable<TElement> {
|
|
29
|
+
timeline(options?: SohoTimelineOptions): JQuery;
|
|
30
|
+
}
|