ids-enterprise-typings 18.1.4 → 18.2.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.
|
@@ -258,6 +258,12 @@ interface SohoDataGridOptions {
|
|
|
258
258
|
/** Display as a tree grid? */
|
|
259
259
|
treeGrid?: boolean;
|
|
260
260
|
|
|
261
|
+
/** Allow Tab overrides? */
|
|
262
|
+
overrideTabbing?: boolean;
|
|
263
|
+
|
|
264
|
+
/** Show icons in the editors always */
|
|
265
|
+
showEditorIcons?: boolean;
|
|
266
|
+
|
|
261
267
|
/**
|
|
262
268
|
* Used to hold an object that can be referenced in formatters
|
|
263
269
|
* and editors or anywhere else a datagrid reference is available
|
package/lib/mask/soho-mask.d.ts
CHANGED
|
@@ -52,6 +52,9 @@ interface SohoMaskPatternOptions {
|
|
|
52
52
|
/** When true, adds the thousands separator symbol to the correct location in a formatted number. */
|
|
53
53
|
allowThousandsSeparator?: boolean;
|
|
54
54
|
|
|
55
|
+
/** When true, shows trailing decimal zeroes in a formatter number. */
|
|
56
|
+
allowTrailingDecimalZeros?: boolean;
|
|
57
|
+
|
|
55
58
|
/** The maximum number of digits to the left of the decimal separator symbol in a formatted number. */
|
|
56
59
|
decimalLimit?: number;
|
|
57
60
|
|