Skip to content

Commit c412dcc

Browse files
Build: fix SelectionRect sticky-left prop, bump to 4.11.6-grid.1, commit dist/
- src/components/DataSheetGrid.tsx: pass the missing stickyLeftColumnNumber prop into <SelectionRect> (tsc caught this as a required-prop error after merging PR nick-keller#350's JSX changes on top of PR nick-keller#386's SelectionContextType). - package.json: version -> 4.11.6-grid.1 to mark this as the patched line (sticky left columns + resizable columns) built on top of the upstream 4.11.6 release. - dist/: force-added (normally gitignored) since this fork is consumed as a git dependency and needs the built output present in the repo. Verified npm run build and npm test both pass (16 suites / 100 tests, including tests/stickyColumns.test.tsx), and dist/types.d.ts exposes stickyLeftColumnNumber, onColumnsResize, and initialColumnWidths.
1 parent 37ca9dc commit c412dcc

139 files changed

Lines changed: 4484 additions & 1 deletion

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

dist/columns/checkboxColumn.d.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
import { Column } from '../types';
2+
export declare const checkboxColumn: Partial<Column<boolean, any, string>>;
3+
//# sourceMappingURL=checkboxColumn.d.ts.map

dist/columns/checkboxColumn.d.ts.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/columns/checkboxColumn.js

Lines changed: 74 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/columns/checkboxColumn.js.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/columns/dateColumn.d.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
import { Column } from '../types';
2+
export declare const dateColumn: Partial<Column<Date | null, any, string>>;
3+
//# sourceMappingURL=dateColumn.d.ts.map

dist/columns/dateColumn.d.ts.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/columns/dateColumn.js

Lines changed: 76 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/columns/dateColumn.js.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/columns/floatColumn.d.ts

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
export declare const floatColumn: Partial<import("../types").Column<number | null, {
2+
placeholder?: string | undefined;
3+
alignRight: boolean;
4+
continuousUpdates: boolean;
5+
parseUserInput: (value: string) => number | null;
6+
formatBlurredInput: (value: number | null) => string;
7+
formatInputOnFocus: (value: number | null) => string;
8+
}, string>>;
9+
//# sourceMappingURL=floatColumn.d.ts.map

dist/columns/floatColumn.d.ts.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)