ids-enterprise-typings 20.1.4 → 20.1.7-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.
@@ -1061,6 +1061,9 @@ interface SohoDataGridColumn {
1061
1061
  /* aggregator */
1062
1062
  aggregator?: string;
1063
1063
 
1064
+ /** If true the cell value will not be sanitized. Purpose of this is to show the complete HTML content */
1065
+ skipValueSanitization?: boolean;
1066
+
1064
1067
  /* summary Text */
1065
1068
  summaryText?: string;
1066
1069
 
@@ -0,0 +1,24 @@
1
+ /**
2
+ * Soho Field Options.
3
+ *
4
+ * This file contains the Typescript mappings for the public
5
+ * interface of the Soho jQuery Field Options control.
6
+ *
7
+ * Which has no options at this time.
8
+ */
9
+
10
+ interface SohoFieldSetOptionStaticSettings {
11
+
12
+ }
13
+
14
+ interface SohoFieldSetOptionStatic {
15
+ /** Access to the control's options block. */
16
+ settings: SohoFieldSetOptionStaticSettings;
17
+
18
+ /** Destructor. */
19
+ destroy(): void;
20
+ }
21
+
22
+ interface JQuery<TElement = HTMLElement> extends Iterable<TElement> {
23
+ fieldoptions(options?: SohoFieldSetOptionStaticSettings): JQuery;
24
+ }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ids-enterprise-typings",
3
3
  "slug": "ids-enterprise-typings",
4
- "version": "20.1.4",
4
+ "version": "20.1.7-patch.1",
5
5
  "declaration": true,
6
6
  "types": "index.d.ts",
7
7
  "peerDependencies": {