@dmsi/wedgekit-react 0.0.133 → 0.0.134
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.
|
@@ -2854,7 +2854,7 @@ function DataGrid({
|
|
|
2854
2854
|
)
|
|
2855
2855
|
) : null,
|
|
2856
2856
|
virtualColumns.map((virtualColumn) => {
|
|
2857
|
-
var _a2, _b2, _c2, _d2
|
|
2857
|
+
var _a2, _b2, _c2, _d2;
|
|
2858
2858
|
const header = headerGroup.headers[virtualColumn.index];
|
|
2859
2859
|
if (!header) {
|
|
2860
2860
|
return;
|
|
@@ -2916,7 +2916,7 @@ function DataGrid({
|
|
|
2916
2916
|
id: id ? `${id}-header-${header.id}` : void 0,
|
|
2917
2917
|
type: "header",
|
|
2918
2918
|
component: "checkbox",
|
|
2919
|
-
locked:
|
|
2919
|
+
locked: true,
|
|
2920
2920
|
children: /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
|
|
2921
2921
|
Checkbox,
|
|
2922
2922
|
{
|
package/dist/components/index.js
CHANGED
|
@@ -828,7 +828,7 @@ function DataGrid({
|
|
|
828
828
|
)
|
|
829
829
|
) : null,
|
|
830
830
|
virtualColumns.map((virtualColumn) => {
|
|
831
|
-
var _a2, _b2, _c2, _d2
|
|
831
|
+
var _a2, _b2, _c2, _d2;
|
|
832
832
|
const header = headerGroup.headers[virtualColumn.index];
|
|
833
833
|
if (!header) {
|
|
834
834
|
return;
|
|
@@ -890,7 +890,7 @@ function DataGrid({
|
|
|
890
890
|
id: id ? `${id}-header-${header.id}` : void 0,
|
|
891
891
|
type: "header",
|
|
892
892
|
component: "checkbox",
|
|
893
|
-
locked:
|
|
893
|
+
locked: true,
|
|
894
894
|
children: /* @__PURE__ */ jsx8(
|
|
895
895
|
Checkbox,
|
|
896
896
|
{
|
package/package.json
CHANGED
|
@@ -443,8 +443,7 @@ export function DataGrid<T extends Record<string, unknown>>({
|
|
|
443
443
|
<DataGridCell
|
|
444
444
|
id={id ? `${id}-header-${header.id}` : undefined}
|
|
445
445
|
type="header"
|
|
446
|
-
component="checkbox"
|
|
447
|
-
locked={header.column.columnDef.meta?.locked}
|
|
446
|
+
component="checkbox" locked
|
|
448
447
|
>
|
|
449
448
|
<Checkbox
|
|
450
449
|
id={
|