@dxos/react-ui-grid 0.9.1-main.c7dcc2e112 → 0.10.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dxos/react-ui-grid",
3
- "version": "0.9.1-main.c7dcc2e112",
3
+ "version": "0.10.0",
4
4
  "description": "React component which manages a `dx-grid` Lit web component.",
5
5
  "homepage": "https://dxos.org",
6
6
  "bugs": "https://github.com/dxos/dxos/issues",
@@ -33,29 +33,29 @@
33
33
  "@radix-ui/react-context": "1.1.1",
34
34
  "@radix-ui/react-popper": "1.2.2",
35
35
  "@radix-ui/react-use-controllable-state": "1.1.0",
36
- "@dxos/react-ui-editor": "0.9.1-main.c7dcc2e112",
37
- "@dxos/util": "0.9.1-main.c7dcc2e112",
38
- "@dxos/lit-grid": "0.9.1-main.c7dcc2e112",
39
- "@dxos/ui-editor": "0.9.1-main.c7dcc2e112"
36
+ "@dxos/react-ui-editor": "0.10.0",
37
+ "@dxos/lit-grid": "0.10.0",
38
+ "@dxos/util": "0.10.0",
39
+ "@dxos/ui-editor": "0.10.0"
40
40
  },
41
41
  "devDependencies": {
42
- "@types/react": "~19.2.7",
42
+ "@types/react": "~19.2.17",
43
43
  "@types/react-dom": "~19.2.3",
44
- "react": "~19.2.3",
45
- "react-dom": "~19.2.3",
44
+ "react": "~19.2.7",
45
+ "react-dom": "~19.2.7",
46
46
  "vite": "^8.0.16",
47
- "@dxos/random": "0.9.1-main.c7dcc2e112",
48
- "@dxos/react-ui": "0.9.1-main.c7dcc2e112",
49
- "@dxos/react-ui-list": "0.9.1-main.c7dcc2e112",
50
- "@dxos/react-ui-search": "0.9.1-main.c7dcc2e112",
51
- "@dxos/ui-theme": "0.9.1-main.c7dcc2e112",
52
- "@dxos/storybook-utils": "0.9.1-main.c7dcc2e112"
47
+ "@dxos/random": "0.10.0",
48
+ "@dxos/react-ui": "0.10.0",
49
+ "@dxos/storybook-utils": "0.10.0",
50
+ "@dxos/react-ui-list": "0.10.0",
51
+ "@dxos/ui-theme": "0.10.0",
52
+ "@dxos/react-ui-search": "0.10.0"
53
53
  },
54
54
  "peerDependencies": {
55
- "react": "~19.2.3",
56
- "react-dom": "~19.2.3",
57
- "@dxos/ui-theme": "0.9.1-main.c7dcc2e112",
58
- "@dxos/react-ui": "0.9.1-main.c7dcc2e112"
55
+ "react": "~19.2.7",
56
+ "react-dom": "~19.2.7",
57
+ "@dxos/react-ui": "0.10.0",
58
+ "@dxos/ui-theme": "0.10.0"
59
59
  },
60
60
  "publishConfig": {
61
61
  "access": "public"
@@ -155,7 +155,7 @@ export const CellEditor = ({ value, extensions, box, gridId, autoFocus, slots, o
155
155
  slots: {
156
156
  editor: {
157
157
  className: mx(
158
- 'min-w-full! w-min! !max-w-(--dx-grid-cell-editor-max-w-size) min-h-full! !max-h-(--dx-grid-cell-editor-max-h-size)',
158
+ 'min-w-full! w-min! !max-w-(--dx-grid-cell-editor-max-inline-size) min-h-full! !max-h-(--dx-grid-cell-editor-max-block-size)',
159
159
  slots?.editor?.className,
160
160
  ),
161
161
  },
package/src/Grid/Grid.tsx CHANGED
@@ -168,33 +168,33 @@ export const Grid = {
168
168
  Content: GridContent,
169
169
  };
170
170
 
171
- export { GridRoot, GridContent, createGridScope, gridSeparatorInlineEnd, gridSeparatorBlockEnd, useGridContext };
171
+ export { GridContent, GridRoot, createGridScope, gridSeparatorBlockEnd, gridSeparatorInlineEnd, useGridContext };
172
172
 
173
- export type { GridRootProps, GridContentProps, GridEditing, GridEditBox, GridScopedProps, DxGridElement };
173
+ export type { DxGridElement, GridContentProps, GridEditBox, GridEditing, GridRootProps, GridScopedProps };
174
174
 
175
175
  export {
176
- colToA1Notation,
177
- rowToA1Notation,
176
+ DxEditRequest,
177
+ cellQuery,
178
178
  closestCell,
179
+ colToA1Notation,
179
180
  commentedClassName,
180
- toPlaneCellIndex,
181
181
  parseCellIndex,
182
- cellQuery,
183
- DxEditRequest,
182
+ rowToA1Notation,
183
+ toPlaneCellIndex,
184
184
  } from '@dxos/lit-grid';
185
185
 
186
186
  export type {
187
- DxGridRange,
188
- DxGridAxisMeta,
189
187
  DxAxisResize,
190
- DxGridCells,
191
- DxGridPlaneRange,
192
- DxGridPlaneCells,
188
+ DxGridAxis,
189
+ DxGridAxisMeta,
193
190
  DxGridCellIndex,
194
- DxGridPlaneCellIndex,
191
+ DxGridCells,
195
192
  DxGridCellValue,
196
193
  DxGridPlane,
197
- DxGridPosition,
194
+ DxGridPlaneCellIndex,
195
+ DxGridPlaneCells,
198
196
  DxGridPlanePosition,
199
- DxGridAxis,
197
+ DxGridPlaneRange,
198
+ DxGridPosition,
199
+ DxGridRange,
200
200
  } from '@dxos/lit-grid';