@xcelsior/ui-spreadsheets 1.0.9 → 1.0.11
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.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/components/SpreadsheetCell.tsx +2 -2
package/package.json
CHANGED
|
@@ -171,7 +171,7 @@ const SpreadsheetCell: React.FC<SpreadsheetCellProps> = ({
|
|
|
171
171
|
autoCapitalize="off"
|
|
172
172
|
spellCheck={false}
|
|
173
173
|
className={cn(
|
|
174
|
-
'w-full border border-gray-300 rounded text-xs focus:outline-none focus:ring-1 focus:ring-blue-500 bg-
|
|
174
|
+
'w-full border border-gray-300 rounded text-xs focus:outline-none focus:ring-1 focus:ring-blue-500 bg-blue-50',
|
|
175
175
|
compactMode ? 'px-1 py-0.5' : 'px-2 py-1'
|
|
176
176
|
)}
|
|
177
177
|
/>
|
|
@@ -230,7 +230,7 @@ const SpreadsheetCell: React.FC<SpreadsheetCellProps> = ({
|
|
|
230
230
|
className={cn(
|
|
231
231
|
'flex-1 truncate',
|
|
232
232
|
isEditable &&
|
|
233
|
-
'cursor-text hover:bg-gray-50 px-0.5 rounded min-h-[18px] flex items-center bg-
|
|
233
|
+
'cursor-text hover:bg-gray-50 px-0.5 rounded min-h-[18px] flex items-center bg-blue-50'
|
|
234
234
|
)}
|
|
235
235
|
title={String(value ?? '')}
|
|
236
236
|
>
|