@papernote/ui 1.10.3 → 1.10.4

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/styles.css CHANGED
@@ -3772,11 +3772,6 @@ input:checked + .slider:before{
3772
3772
  padding: 2rem;
3773
3773
  }
3774
3774
 
3775
- .px-0\.5{
3776
- padding-left: 0.125rem;
3777
- padding-right: 0.125rem;
3778
- }
3779
-
3780
3775
  .px-1{
3781
3776
  padding-left: 0.25rem;
3782
3777
  padding-right: 0.25rem;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@papernote/ui",
3
- "version": "1.10.3",
3
+ "version": "1.10.4",
4
4
  "type": "module",
5
5
  "description": "A modern React component library with a paper notebook aesthetic - minimal, professional, and expressive",
6
6
  "main": "dist/index.js",
@@ -1429,7 +1429,7 @@ export default function DataTable<T extends BaseDataItem = BaseDataItem>({
1429
1429
  </th>
1430
1430
  )}
1431
1431
  {allActions.length > 0 && (
1432
- <th className={`sticky left-0 bg-paper-100 px-0.5 ${currentDensity.header} text-center text-xs font-medium text-ink-700 uppercase tracking-wider border-b ${borderColor} z-20 ${bordered ? `border ${borderColor}` : ''}`} style={{ width: '28px' }}>
1432
+ <th className={`sticky left-0 bg-paper-100 ${currentDensity.header} text-center text-xs font-medium text-ink-700 uppercase tracking-wider border-b ${borderColor} z-20 ${bordered ? `border ${borderColor}` : ''}`} style={{ width: '28px', padding: 0 }}>
1433
1433
  {/* Actions column header */}
1434
1434
  </th>
1435
1435
  )}