ids-enterprise-typings 13.1.1 → 13.3.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.
@@ -9,14 +9,6 @@ type SohoButtonOptionsStyle = 'default' | 'btn' | 'btn-primary' | 'btn-secondary
9
9
  type SohoButtonOptionsType = 'default' | 'btn-icon' | 'btn-menu' | 'btn-actions' | 'btn-toggle' |
10
10
  'icon-favorite' | 'btn-editor' | 'input' | null | undefined;
11
11
 
12
- interface SohoBadgeOptions {
13
- /** The placement of notification badge. */
14
- position?: SohoNotificationBadgePosition;
15
-
16
- /** The color of the notification badge. */
17
- color?: SohoNotificationBadgeColor;
18
- }
19
-
20
12
  /**
21
13
  * Button Options
22
14
  */
@@ -374,6 +374,8 @@ interface SohoDataGridOptions {
374
374
  /* summary row columns settings*/
375
375
  summaryRowColumns?: SohoDataGridSummaryRowColumnSettings[];
376
376
 
377
+ /* Icon name for fallbacks if the image does not load */
378
+ fallbackImage?: string;
377
379
  }
378
380
 
379
381
  interface SohoDataGridModifiedRows {
@@ -821,6 +823,9 @@ interface SohoDataGridColumn {
821
823
  /** Name of the editor to instantiate (using new), or a SohoDataGridColumnEditorFunction. */
822
824
  editor?: SohoDataGridColumnEditorFunction | string;
823
825
 
826
+ // Do not blank out the cell when editing
827
+ doNotEmptyCellWhenEditing?: boolean;
828
+
824
829
  /** Options associated with the associated editor type, e.g. SohoDropDownOptions. */
825
830
  editorOptions?: any;
826
831
 
@@ -1586,4 +1591,4 @@ interface SohoDataGridFilterOperatorChangedEvent {
1586
1591
  defaultOperator: string;
1587
1592
  value?: string;
1588
1593
  columnId: string;
1589
- }
1594
+ }
@@ -97,6 +97,12 @@ interface SohoLookupAutoComplete {
97
97
 
98
98
  /** Menu template, appropriate markup is expected. */
99
99
  template?: string;
100
+
101
+ change?(event: any): void;
102
+
103
+ selected?(selected: any[]): void;
104
+
105
+ beforeopen?(event: SohoAutoCompleteEvent): void;
100
106
  }
101
107
 
102
108
  /** Selection criteria. */
@@ -19,6 +19,12 @@ interface SohoSwapListItem {
19
19
  disabled?: boolean;
20
20
  }
21
21
 
22
+ interface SohoSwapSections {
23
+ available?: boolean;
24
+ selected?: boolean;
25
+ additional?: boolean;
26
+ }
27
+
22
28
  /**
23
29
  * Swap List Options
24
30
  */
@@ -37,6 +43,12 @@ interface SohoSwapListOptions {
37
43
 
38
44
  /** Add extra attributes like id's to the component **/
39
45
  attributes?: Array<Object> | Object;
46
+
47
+ /** Disable dragging (all true by default) **/
48
+ draggable?: SohoSwapSections | undefined;
49
+
50
+ /** Keep items in the section when moving (all false by default) **/
51
+ keepInList?: SohoSwapSections | undefined;
40
52
  }
41
53
 
42
54
  /**
@@ -72,6 +72,11 @@ interface SohoTabsOptions {
72
72
  */
73
73
  multiTabsTooltips?: boolean;
74
74
 
75
+ /**
76
+ * If true, will display a tooltip on Multi Tabs with cut-off text content.
77
+ */
78
+ countsPosition?: undefined | 'top' | 'bottom';
79
+
75
80
  /**
76
81
  * If defined, will serve as a way of pulling in external content to fill tabs.
77
82
  */
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ids-enterprise-typings",
3
3
  "slug": "ids-enterprise-typings",
4
- "version": "13.1.1",
4
+ "version": "13.3.0",
5
5
  "declaration": true,
6
6
  "types": "index.d.ts",
7
7
  "dependencies": {