cx 24.11.4 → 25.1.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.
- package/dist/charts.js +18 -17
- package/dist/data.js +11 -3
- package/dist/manifest.js +845 -836
- package/dist/ui.js +5 -4
- package/dist/util.js +40 -10
- package/dist/widgets.js +50 -34
- package/package.json +1 -1
- package/src/charts/axis/TimeAxis.js +18 -17
- package/src/data/Expression.js +9 -1
- package/src/data/Expression.spec.js +12 -0
- package/src/data/StringTemplate.js +92 -92
- package/src/data/StringTemplate.spec.js +22 -0
- package/src/ui/Culture.d.ts +2 -0
- package/src/ui/Format.js +108 -107
- package/src/ui/HoverSync.js +147 -147
- package/src/util/Format.js +3 -2
- package/src/util/date/encodeDate.d.ts +1 -0
- package/src/util/date/encodeDate.js +8 -0
- package/src/util/date/encodeDateWithTimezoneOffset.d.ts +1 -1
- package/src/util/date/index.d.ts +11 -9
- package/src/util/date/index.js +11 -9
- package/src/util/date/parseDateInvariant.d.ts +3 -0
- package/src/util/date/parseDateInvariant.js +20 -0
- package/src/widgets/form/Calendar.js +618 -617
- package/src/widgets/form/DateTimeField.js +8 -5
- package/src/widgets/form/DateTimePicker.js +392 -391
- package/src/widgets/form/MonthField.d.ts +99 -95
- package/src/widgets/form/MonthField.js +16 -9
- package/src/widgets/form/MonthPicker.d.ts +76 -74
- package/src/widgets/form/MonthPicker.js +640 -632
- package/src/widgets/grid/Grid.d.ts +1 -1
- package/src/widgets/grid/Grid.js +3414 -3413
- package/src/widgets/grid/GridRow.js +228 -228
|
@@ -397,7 +397,7 @@ interface GridProps<T = unknown> extends StyledContainerProps {
|
|
|
397
397
|
hoverChannel?: string;
|
|
398
398
|
|
|
399
399
|
/** A value used to uniquely identify the record within the hover sync group. */
|
|
400
|
-
rowHoverId?:
|
|
400
|
+
rowHoverId?: Prop<string | number>;
|
|
401
401
|
|
|
402
402
|
/** Set to true or false to explicitly define if grid is allowed to receive focus. */
|
|
403
403
|
focusable?: boolean;
|