Skip to content

Commit

Permalink
feat: Sticky columns part 2 (backend)
Browse files Browse the repository at this point in the history
  • Loading branch information
lee-to committed Dec 26, 2024
1 parent 4b4cc74 commit a4b3f7e
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/UI/FieldContract.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,10 @@ public function columnSelection(bool $active = true): static;

public function isColumnSelection(): bool;

public function sticky(): static;

public function isStickyColumn(): bool;

public function nullable(Closure|bool|null $condition = null): static;

public function isNullable(): bool;
Expand Down
6 changes: 6 additions & 0 deletions src/UI/TableBuilderContract.php
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,12 @@ public function sticky(): static;

public function isSticky(): bool;

public function stickyButtons(): static;

public function isStickyButtons(): bool;

public function calculateStickyClass(): string;

public function columnSelection(): static;

public function isColumnSelection(): bool;
Expand Down

0 comments on commit a4b3f7e

Please sign in to comment.