@snowpact/react-tanstack-query-table 1.6.4 → 1.7.1

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/README.md CHANGED
@@ -110,20 +110,20 @@ Override CSS variables to match your design. Variables use `@property` so they w
110
110
  /* Base colors */
111
111
  --snow-table-background: #ffffff;
112
112
  --snow-table-foreground: #0a0a0a;
113
- --snow-table-border: #e5e5e5;
114
- --snow-table-ring: #a3a3a3;
113
+ --snow-table-border: #e5e5e5; /* Table borders, row separators */
114
+ --snow-table-input-border: #e5e5e5; /* Inputs, buttons, dropdowns */
115
+ --snow-table-active-ring: #a3a3a3;
115
116
 
116
117
  /* UI-specific colors */
117
118
  --snow-table-header: #f5f5f5; /* Table headers, tab list */
118
119
  --snow-table-hover: #f5f5f5; /* Hover states */
119
120
  --snow-table-skeleton: #f5f5f5; /* Skeleton loader */
120
- --snow-table-separator: #e5e5e5; /* Dropdown separators */
121
- --snow-table-placeholder: #a3a3a3; /* Input placeholders, icons */
122
- --snow-table-text: #737373; /* Secondary text (labels, counts) */
121
+ --snow-table-placeholder: #a3a3a3; /* Input placeholders */
122
+ --snow-table-muted: #737373; /* Secondary text (counts, pagination, inactive tabs) */
123
123
 
124
124
  /* Optional (transparent/inherited by default) */
125
- --snow-table-row-even: #fafafa; /* Alternating rows - only set if you want zebra striping */
126
- --snow-table-button: #f0f0f0; /* Button background - falls back to --snow-table-background */
125
+ --snow-table-row-even: #fafafa; /* Alternating rows - zebra striping */
126
+ --snow-table-action-button: #f0f0f0; /* Action button background */
127
127
 
128
128
  /* Other */
129
129
  --snow-table-radius: 0.375rem;
@@ -135,15 +135,15 @@ Override CSS variables to match your design. Variables use `@property` so they w
135
135
  --snow-table-background: #1a1a2e;
136
136
  --snow-table-foreground: #eaeaea;
137
137
  --snow-table-border: #0f3460;
138
- --snow-table-ring: #3b82f6;
138
+ --snow-table-input-border: #0f3460;
139
+ --snow-table-active-ring: #3b82f6;
139
140
  --snow-table-header: #16213e;
140
141
  --snow-table-hover: #16213e;
141
142
  --snow-table-skeleton: #16213e;
142
- --snow-table-separator: #0f3460;
143
143
  --snow-table-row-even: #1f1f3a;
144
144
  --snow-table-placeholder: #6b7280;
145
- --snow-table-text: #a0a0a0;
146
- --snow-table-button: #16213e;
145
+ --snow-table-muted: #a0a0a0;
146
+ --snow-table-action-button: #16213e;
147
147
  }
148
148
  ```
149
149