ids-enterprise-typings 21.0.0 → 21.0.2

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 {
@@ -1473,6 +1475,14 @@ interface SohoDataGridSelectedEvent {
1473
1475
  rowData?: SohoDataGridSelectedRow[] | SohoDataGridSelectedRow;
1474
1476
  }
1475
1477
 
1478
+ type SohoDataGridDeselectedEventType = 'deselectall' | 'deselect' | undefined;
1479
+
1480
+ interface SohoDataGridDeselectedEvent {
1481
+ e: JQuery.TriggeredEvent;
1482
+ deselectedRows: SohoDataGridSelectedRow[];
1483
+ action: SohoDataGridDeselectedEventType;
1484
+ }
1485
+
1476
1486
  interface SohoDataGridCellChangeEvent {
1477
1487
  api?: any;
1478
1488
  rowData?: any;
@@ -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
+ }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ids-enterprise-typings",
3
3
  "slug": "ids-enterprise-typings",
4
- "version": "21.0.0",
4
+ "version": "21.0.2",
5
5
  "declaration": true,
6
6
  "types": "index.d.ts",
7
7
  "peerDependencies": {