Skip to content

Commit 4161a2d

Browse files
committed
update changelog
1 parent 77a42a5 commit 4161a2d

File tree

1 file changed

+16
-18
lines changed

1 file changed

+16
-18
lines changed

packages/sit-onyx/CHANGELOG.md

Lines changed: 16 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,18 @@
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
17+
- block input typing when popover exists
18+
- manage open state + close on outside click
19+
- support `popoverOptions` property
20+
- apply focus styles when popover is open
2121
- db6f050: feat(OnyxPageLayout): add smooth scroll behavior to main content / scroll area
2222
- 984ce9e: feat(OnyxDataGrid): Added base row type 'select'
23+
- 984ce9e: feat(OnyxDataGrid): Extended feature API with new 'enhanceCells' and 'enhanceRow' hooks
24+
These allow modifying render details per cell/row.
25+
The provided function is called for each cell/row, after the matching typeRenderer was applied.
2326
- 984ce9e: feat(OnyxDataGrid): Implemented basic `useEditing()` inline editing feature
2427

2528
For all base column `typeRenderers` editing is supported.
@@ -33,14 +36,14 @@
3336
export const MY_CUSTOM_RENDERER = DataGridFeatures.createTypeRenderer({
3437
header: { component: HeaderCell },
3538
cell: {
36-
component: ({ column, row, metadata, modelValue, ...rest }) =>
39+
// The *rest* property includes `modelValue` and the `onUpdate:modelValue` event handler
40+
component: ({ column, row, metadata, ...rest }) =>
3741
metadata?.editable
3842
? h(EditingComponent, {
39-
...rest,
4043
label: `${column} with id ${row.id}`,
41-
modelValue,
44+
...rest,
4245
})
43-
: h(DisplayComponent, { modelValue, ...metadata?.typeOptions }),
46+
: h(DisplayComponent, { ...metadata?.typeOptions, ...rest }),
4447
},
4548
});
4649
```
@@ -51,22 +54,17 @@
5154
- Filtering and Sorting features are always using the original value, not the edited value.
5255

5356
- f61969f: feat(OnyxSlider): support new `mark` slot for custom mark label content
54-
- 3084837: feat(OnyxFormElementV2): improve popover handling and styles
55-
- block input typing when popover exists
56-
- manage open state + close on outside click
57-
- support `popoverOptions` property
58-
- apply focus styles when popover is open
5957

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)