ids-enterprise-typings 21.0.0-beta.1 → 21.0.0-patch.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.
@@ -396,6 +396,9 @@ interface SohoDataGridOptions {
396
396
 
397
397
  /* Tooltip to show if it the fallback appears */
398
398
  fallbackTooltip?: SohoFallbackTooltipOptions;
399
+
400
+ /** If true, shows an icon next to ellipsis text to indicate more content. */
401
+ ellipsisWithIcon?: boolean;
399
402
  }
400
403
 
401
404
  interface SohoDataGridModifiedRows {
@@ -814,7 +817,7 @@ type SohoDataGridColumnContentVisibleFunction = (
814
817
 
815
818
  type SohoDataGridRevealableTextData = {
816
819
  revealCharacters?: number
817
- initialState?: 'hide' | 'hide',
820
+ initialState?: 'show' | 'hide',
818
821
  revealBtn?: 'default' | 'icon' | 'text',
819
822
  maskingType?: 'default' | `email` | `phone` | `address` | `card` | `ssn` | `birthday` | `digit`;
820
823
  }
@@ -48,6 +48,9 @@ interface SohoListViewOptions {
48
48
  /** If true when an item is activated the user should not be able to deactivate it by clicking on the activated item. */
49
49
  disableItemDeactivation?: boolean;
50
50
 
51
+ /** If false an item cannot be deselected */
52
+ allowDeselect?: boolean;
53
+
51
54
  /** Add extra attributes like id's to the component **/
52
55
  attributes?: Array<Object> | Object;
53
56
 
@@ -58,7 +61,7 @@ interface SohoListViewOptions {
58
61
  type SohoListViewRevealableTextData = {
59
62
  [key: string]: {
60
63
  revealCharacters?: number;
61
- initialState?: 'hide' | 'show';
64
+ initialState?: 'show' | 'show';
62
65
  revealBtn?: 'default' | 'icon' | 'text';
63
66
  maskingType?: 'default' | 'email' | 'phone' | 'address' | 'card' | 'ssn' | 'birthday' | 'digit';
64
67
  };
@@ -83,6 +83,9 @@ interface SohoModalOptions {
83
83
  // Optional width to set the text of the buttonset.
84
84
  buttonsetTextWidth?: number | string;
85
85
 
86
+ // If true, adds tabindex="0" to the modal body wrapper for keyboard navigation of scrollable content.
87
+ contentFocusable?: boolean;
88
+
86
89
  // Force the modal to go full size.
87
90
  fullsize?: SohoModalFullSize;
88
91
 
@@ -38,6 +38,9 @@ interface SohoSearchFieldOptions extends SohoAutoCompleteOptions {
38
38
 
39
39
  /* Set the trigger inputs to tabbable */
40
40
  tabbable?: boolean;
41
+
42
+ /** Enable truncated/collapsed behavior for searchfield */
43
+ truncated?: boolean;
41
44
  }
42
45
 
43
46
  interface SohoSearchFieldExtraButton {
@@ -86,6 +89,12 @@ interface SohoSearchFieldStatic {
86
89
  updated(settings?: SohoSearchFieldOptions): void;
87
90
 
88
91
  checkContents(): void;
92
+
93
+ /** Expand the searchfield (for collapsible searchfields) */
94
+ expand(): void;
95
+
96
+ /** Collapse the searchfield (for collapsible searchfields) */
97
+ collapse(): void;
89
98
  }
90
99
 
91
100
  /**
@@ -18,6 +18,9 @@ interface SohoWizardButtonBarButton {
18
18
  /** the button's icon */
19
19
  icon?: string, // the name of the icon to use
20
20
 
21
+ /** the button's type (matches Angular SohoButtonType) */
22
+ type?: 'btn' | 'primary' | 'secondary' | 'tertiary' | 'icon' | 'favorite' | 'modal' | 'modal-primary' | 'primary-destructive' | 'tertiary-destructive' | 'primary-generative' | 'tertiary-generative' | 'icon-generative',
23
+
21
24
  /** the click callback for the button */
22
25
  click: () => void,
23
26
 
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "ids-enterprise-typings",
3
3
  "slug": "ids-enterprise-typings",
4
- "version": "21.0.0-beta.1",
4
+ "version": "21.0.0-patch.1",
5
5
  "declaration": true,
6
6
  "types": "index.d.ts",
7
7
  "peerDependencies": {
8
- "@types/jquery": "3.5.16",
9
- "@types/d3": "7.4.0"
8
+ "@types/jquery": "3.5.33",
9
+ "@types/d3": "7.4.3"
10
10
  },
11
11
  "description": "Infor Design System (IDS) Enterprise Widget Typings",
12
12
  "repository": {