@snowpact/react-tanstack-query-table 1.6.1 → 1.6.2
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.cjs +12 -12
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +2 -0
- package/dist/index.js +1202 -1201
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -339,6 +339,8 @@ export declare type SnowColumnMeta = {
|
|
|
339
339
|
minWidth?: string | number;
|
|
340
340
|
/** Column maximum width (CSS value) */
|
|
341
341
|
maxWidth?: string | number;
|
|
342
|
+
/** Skip width/minWidth/maxWidth in responsive mode (mobile) */
|
|
343
|
+
skipWidthOnResponsive?: boolean;
|
|
342
344
|
/** Whether the column is hidden by default in column configuration */
|
|
343
345
|
defaultHidden?: boolean;
|
|
344
346
|
/** Disable row click handler for this column (e.g., for action columns) */
|