@turquoisehealth/pit-viper 2.57.1 → 2.59.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.
@@ -176,6 +176,10 @@ declare interface PvDataTableProps<T> {
176
176
  /**
177
177
  * Enables pagination
178
178
  */
179
+ leftPinnedColumnName?: string;
180
+ /**
181
+ * Specifies the column to pin to the left of the table if at least one row grouping is enabled.
182
+ */
179
183
  pagination?: boolean;
180
184
  /**
181
185
  * Set the pagination page size. Defaults to 50.
@@ -197,6 +201,10 @@ declare interface PvDataTableProps<T> {
197
201
  * Hide the table rows (but still show the filter panel)
198
202
  */
199
203
  hideTable?: boolean;
204
+ /**
205
+ * DOM location to use for relocating the filter panel
206
+ */
207
+ filterTeleportLocation?: string;
200
208
  }
201
209
 
202
210
  declare interface PvDataTablePublicInterface {