@linzjs/step-ag-grid 30.4.2 → 30.4.4
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/GridTheme.scss +5 -1
- package/dist/step-ag-grid.cjs +1 -2
- package/dist/step-ag-grid.cjs.map +1 -1
- package/dist/step-ag-grid.esm.js +1 -2
- package/dist/step-ag-grid.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/components/Grid.tsx +1 -2
- package/src/stories/grid/GridSorting.stories.tsx +5 -13
- package/src/stories/grid/GridViewSelectableList.stories.tsx +121 -0
- package/src/styles/GridTheme.scss +5 -1
package/dist/GridTheme.scss
CHANGED
|
@@ -279,6 +279,10 @@ $grid-base-font-size: calc(#{lui.$base-font-size} - 1px);
|
|
|
279
279
|
|
|
280
280
|
.ag-theme-step-view-list-default.theme-specific {
|
|
281
281
|
|
|
282
|
+
.ag-header-hide-default-select .ag-labeled {
|
|
283
|
+
display: none;
|
|
284
|
+
}
|
|
285
|
+
|
|
282
286
|
.ag-header-cell {
|
|
283
287
|
font-size: 14px;
|
|
284
288
|
font-weight: 600;
|
|
@@ -295,4 +299,4 @@ $grid-base-font-size: calc(#{lui.$base-font-size} - 1px);
|
|
|
295
299
|
.ag-header-cell {
|
|
296
300
|
font-size: 14px;
|
|
297
301
|
}
|
|
298
|
-
}
|
|
302
|
+
}
|
package/dist/step-ag-grid.cjs
CHANGED
|
@@ -61597,8 +61597,7 @@ maxInitialWidth,
|
|
|
61597
61597
|
else {
|
|
61598
61598
|
r = compareNaturalInsensitive(value1, value2);
|
|
61599
61599
|
}
|
|
61600
|
-
|
|
61601
|
-
return r === 0 ? compareNaturalInsensitive(node1.data?.id, node2.data?.id) : r;
|
|
61600
|
+
return r;
|
|
61602
61601
|
};
|
|
61603
61602
|
}
|
|
61604
61603
|
const adjustedColDef = {
|