@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/dist/index.js
CHANGED
|
@@ -325,7 +325,7 @@ var SpreadsheetCell = ({
|
|
|
325
325
|
autoCapitalize: "off",
|
|
326
326
|
spellCheck: false,
|
|
327
327
|
className: cn(
|
|
328
|
-
"w-full border border-gray-300 rounded text-xs focus:outline-none focus:ring-1 focus:ring-blue-500 bg-
|
|
328
|
+
"w-full border border-gray-300 rounded text-xs focus:outline-none focus:ring-1 focus:ring-blue-500 bg-blue-50",
|
|
329
329
|
compactMode ? "px-1 py-0.5" : "px-2 py-1"
|
|
330
330
|
)
|
|
331
331
|
}
|
|
@@ -375,7 +375,7 @@ var SpreadsheetCell = ({
|
|
|
375
375
|
{
|
|
376
376
|
className: cn(
|
|
377
377
|
"flex-1 truncate",
|
|
378
|
-
isEditable && "cursor-text hover:bg-gray-50 px-0.5 rounded min-h-[18px] flex items-center bg-
|
|
378
|
+
isEditable && "cursor-text hover:bg-gray-50 px-0.5 rounded min-h-[18px] flex items-center bg-blue-50"
|
|
379
379
|
),
|
|
380
380
|
title: String(value ?? ""),
|
|
381
381
|
children: renderContent()
|