Skip to content

Commit fcf9a5f

Browse files
committed
update changelog
1 parent 77a42a5 commit fcf9a5f

File tree

1 file changed

+12
-14
lines changed

1 file changed

+12
-14
lines changed

packages/sit-onyx/CHANGELOG.md

Lines changed: 12 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,14 @@
1111
For now, the OnyxUnstableDatePickerV2 component is marked as experimental/unstable which means that it is still under active development and the API might change in patch or minor releases. Keep an eye on the [changelog](https://onyx.schwarz/development/packages/changelogs/sit-onyx.html) when using it.
1212

1313
- 661b343: feat(OnyxTimePicker): implemented range mode
14-
- 984ce9e: feat(OnyxDataGrid): Extended feature API with new 'enhanceCells' and 'enhanceRow' hooks
15-
16-
These allow modifying render details per cell/row.
17-
The provided function is called for each cell/row, after the matching typeRenderer was applied.
18-
1914
- 5ffe689: feat(OnyxFormElementV2): implement `skeleton` property
2015
- 79b76de: feat(OnyxFormElementV2): support `loading` property and fix height to align with other form elements
16+
- 3084837: feat(OnyxFormElementV2): improve popover handling and styles
2117
- db6f050: feat(OnyxPageLayout): add smooth scroll behavior to main content / scroll area
2218
- 984ce9e: feat(OnyxDataGrid): Added base row type 'select'
19+
- 984ce9e: feat(OnyxDataGrid): Extended feature API with new 'enhanceCells' and 'enhanceRow' hooks
20+
These allow modifying render details per cell/row.
21+
The provided function is called for each cell/row, after the matching typeRenderer was applied.
2322
- 984ce9e: feat(OnyxDataGrid): Implemented basic `useEditing()` inline editing feature
2423

2524
For all base column `typeRenderers` editing is supported.
@@ -33,14 +32,14 @@
3332
export const MY_CUSTOM_RENDERER = DataGridFeatures.createTypeRenderer({
3433
header: { component: HeaderCell },
3534
cell: {
36-
component: ({ column, row, metadata, modelValue, ...rest }) =>
35+
// The *rest* property includes `modelValue` and the `onUpdate:modelValue` event handler
36+
component: ({ column, row, metadata, ...rest }) =>
3737
metadata?.editable
3838
? h(EditingComponent, {
39-
...rest,
4039
label: `${column} with id ${row.id}`,
41-
modelValue,
40+
...rest,
4241
})
43-
: h(DisplayComponent, { modelValue, ...metadata?.typeOptions }),
42+
: h(DisplayComponent, { ...metadata?.typeOptions, ...rest }),
4443
},
4544
});
4645
```
@@ -51,7 +50,6 @@
5150
- Filtering and Sorting features are always using the original value, not the edited value.
5251

5352
- f61969f: feat(OnyxSlider): support new `mark` slot for custom mark label content
54-
- 3084837: feat(OnyxFormElementV2): improve popover handling and styles
5553
- block input typing when popover exists
5654
- manage open state + close on outside click
5755
- support `popoverOptions` property
@@ -60,13 +58,13 @@
6058
### Patch Changes
6159

6260
- 7e193bd: fix(OnyxTab): fix incorrect underline color
63-
- 0f03aa9: fix: prevent hydration mismatch errors in SSR
61+
- 0f03aa9: fix: Resolve hydration mismatch errors in SSR
6462
- b62e57c: fix(OnyxBasicDialog): Fix 'nonDismissible' modal dialogs loosing their background after pressing escape twice
6563
- 984ce9e: fix(OnyxDataGrid): Fix increased row height for columnType "boolean" caused by icon
6664
- e76203e: refactor(OnyxUnstableFormElementV2): rename type `FormElementPopoverOptions` to `FormElementV2PopoverOptions`
67-
- fix(OnyxUnstableFormElementV2): correctly determine inside elements for closing on outside click
68-
- fix(OnyxBasicPopover): prevent toggle when disabled
69-
- 4b31bbd: fix(OnyxPageLayout): correctly disable centering of nested `onyx-grid-layout` when a sidebar exsists
65+
- fix(OnyxUnstableFormElementV2): Correctly determine inside elements for closing on outside click
66+
- fix(OnyxBasicPopover): Prevent toggle when disabled
67+
- 4b31bbd: fix(OnyxPageLayout): Correctly disable centering of nested `onyx-grid-layout` when a sidebar exsists
7068

7169
## 1.9.0
7270

0 commit comments

Comments
 (0)