@unifiedsoftware/react-ui 2.0.0-alpha.5 → 2.0.0-alpha.6
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/dist/index.d.ts +5 -5
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1474,22 +1474,22 @@ type DescriptionsLayout = 'row' | 'col';
|
|
|
1474
1474
|
type DescriptionsSize = 'sm' | 'md' | 'lg';
|
|
1475
1475
|
interface DescriptionItemString {
|
|
1476
1476
|
type?: 'string';
|
|
1477
|
-
value?: string;
|
|
1477
|
+
value?: string | null;
|
|
1478
1478
|
}
|
|
1479
1479
|
interface DescriptionItemNumber {
|
|
1480
1480
|
type: 'number';
|
|
1481
|
-
value?: number | string;
|
|
1481
|
+
value?: number | string | null;
|
|
1482
1482
|
}
|
|
1483
1483
|
interface DescriptionItemDate {
|
|
1484
1484
|
type: 'date';
|
|
1485
|
-
value?: Date | string | number;
|
|
1485
|
+
value?: Date | string | number | null;
|
|
1486
1486
|
format?: 'datetime' | 'short datetime' | 'date' | 'time';
|
|
1487
1487
|
locales?: Intl.LocalesArgument;
|
|
1488
1488
|
options?: Intl.DateTimeFormatOptions;
|
|
1489
1489
|
}
|
|
1490
1490
|
interface DescriptionItemBoolean {
|
|
1491
1491
|
type: 'boolean';
|
|
1492
|
-
value?: boolean;
|
|
1492
|
+
value?: boolean | null;
|
|
1493
1493
|
labels?: {
|
|
1494
1494
|
true?: string;
|
|
1495
1495
|
false?: string;
|
|
@@ -1497,7 +1497,7 @@ interface DescriptionItemBoolean {
|
|
|
1497
1497
|
}
|
|
1498
1498
|
interface DescriptionItemCurrency {
|
|
1499
1499
|
type: 'currency';
|
|
1500
|
-
value?: number | bigint | Intl.StringNumericLiteral;
|
|
1500
|
+
value?: number | bigint | Intl.StringNumericLiteral | null;
|
|
1501
1501
|
currency?: string;
|
|
1502
1502
|
locales?: Intl.LocalesArgument;
|
|
1503
1503
|
options?: Intl.NumberFormatOptions;
|