@snowpact/react-tanstack-query-table 1.6.1 → 1.6.3

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/dist/index.d.ts CHANGED
@@ -333,11 +333,11 @@ export declare type SnowColumnConfig<T extends object> = {
333
333
  * Column metadata for customizing column appearance and behavior
334
334
  */
335
335
  export declare type SnowColumnMeta = {
336
- /** Column width (CSS value, e.g., '200px', '20%', 'auto') */
336
+ /** Column width (CSS value, e.g., '200px', '20%', 'auto') - only applied in desktop mode */
337
337
  width?: string | number;
338
- /** Column minimum width (CSS value) */
338
+ /** Column minimum width (CSS value) - only applied in desktop mode */
339
339
  minWidth?: string | number;
340
- /** Column maximum width (CSS value) */
340
+ /** Column maximum width (CSS value) - only applied in desktop mode */
341
341
  maxWidth?: string | number;
342
342
  /** Whether the column is hidden by default in column configuration */
343
343
  defaultHidden?: boolean;