simple-table-core 3.0.0-beta.18 → 3.0.0-beta.19

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.
Files changed (28) hide show
  1. package/dist/cjs/index.js +1 -1
  2. package/dist/cjs/src/managers/DimensionManager.d.ts +1 -0
  3. package/dist/cjs/src/utils/filters/createDropdown.d.ts +17 -0
  4. package/dist/cjs/src/utils/filters/createFilterActions.d.ts +1 -0
  5. package/dist/cjs/src/utils/headerCell/resizing.d.ts +1 -1
  6. package/dist/cjs/src/utils/headerCell/styling.d.ts +3 -3
  7. package/dist/cjs/src/utils/headerWidthUtils.d.ts +2 -0
  8. package/dist/cjs/src/utils/resizeUtils/index.d.ts +18 -1
  9. package/dist/cjs/stories/examples/spreadsheet/SpreadsheetExample.d.ts +4 -0
  10. package/dist/cjs/stories/tests/13-ColumnResizeTests.stories.d.ts +3 -0
  11. package/dist/cjs/stories/tests/39-AutoExpandColumnsTests.stories.d.ts +12 -0
  12. package/dist/cjs/styles.css +1 -1
  13. package/dist/index.es.js +1 -1
  14. package/dist/src/managers/DimensionManager.d.ts +1 -0
  15. package/dist/src/utils/filters/createDropdown.d.ts +17 -0
  16. package/dist/src/utils/filters/createFilterActions.d.ts +1 -0
  17. package/dist/src/utils/headerCell/resizing.d.ts +1 -1
  18. package/dist/src/utils/headerCell/styling.d.ts +3 -3
  19. package/dist/src/utils/headerWidthUtils.d.ts +2 -0
  20. package/dist/src/utils/resizeUtils/index.d.ts +18 -1
  21. package/dist/stories/examples/spreadsheet/SpreadsheetExample.d.ts +4 -0
  22. package/dist/stories/tests/13-ColumnResizeTests.stories.d.ts +3 -0
  23. package/dist/stories/tests/39-AutoExpandColumnsTests.stories.d.ts +12 -0
  24. package/dist/styles.css +1 -1
  25. package/package.json +1 -1
  26. package/src/styles/base.css +38 -11
  27. package/src/styles/themes/modern-dark.css +4 -4
  28. package/src/styles/themes/modern-light.css +4 -4
@@ -5,7 +5,7 @@
5
5
  * - Dark gray base with lighter text for reduced eye strain
6
6
  * - Hover states with subtle brightness changes
7
7
  * - Generous padding (12px) for better readability
8
- * - Rounded corners (8px) for a softer appearance
8
+ * - Rounded corners (4px) for a clean, compact appearance
9
9
  * - Modern blue accent (#60a5fa) for interactive elements (lighter for dark mode)
10
10
  * - High contrast text for accessibility
11
11
  * - Lightweight visual hierarchy
@@ -14,7 +14,7 @@
14
14
  */
15
15
  .theme-modern-dark {
16
16
  /* Layout/Structure variables - Tighter, more compact */
17
- --st-border-radius: 8px;
17
+ --st-border-radius: 4px;
18
18
  --st-cell-padding: 12px;
19
19
 
20
20
  /* Spacing variables - Reduced for cleaner look */
@@ -205,7 +205,7 @@
205
205
 
206
206
  /* Cleaner pagination buttons - more compact */
207
207
  .theme-modern-dark .st-page-btn {
208
- border-radius: 6px;
208
+ border-radius: 4px;
209
209
  font-size: 13px;
210
210
  font-weight: 500;
211
211
  color: #d1d5db;
@@ -229,7 +229,7 @@
229
229
  /* Next/Prev buttons */
230
230
  .theme-modern-dark .st-next-prev-btn {
231
231
  padding: 6px 8px;
232
- border-radius: 6px;
232
+ border-radius: 4px;
233
233
  transition: all 0.15s ease;
234
234
  margin-left: 4px;
235
235
  flex-shrink: 0;
@@ -5,7 +5,7 @@
5
5
  * - White backgrounds with minimal color variation
6
6
  * - Hover states instead of alternating row colors
7
7
  * - Generous padding (12px) for better readability
8
- * - Rounded corners (8px) for a softer appearance
8
+ * - Rounded corners (4px) for a clean, compact appearance
9
9
  * - Modern blue accent (#3b82f6) for interactive elements
10
10
  * - High contrast text (#111827) for accessibility
11
11
  * - Lightweight visual hierarchy
@@ -14,7 +14,7 @@
14
14
  */
15
15
  .theme-modern-light {
16
16
  /* Layout/Structure variables - Tighter, more compact */
17
- --st-border-radius: 8px;
17
+ --st-border-radius: 4px;
18
18
  --st-cell-padding: 12px;
19
19
 
20
20
  /* Spacing variables - Reduced for cleaner look */
@@ -205,7 +205,7 @@
205
205
 
206
206
  /* Cleaner pagination buttons - more compact */
207
207
  .theme-modern-light .st-page-btn {
208
- border-radius: 6px;
208
+ border-radius: 4px;
209
209
  font-size: 13px;
210
210
  font-weight: 500;
211
211
  color: #374151;
@@ -229,7 +229,7 @@
229
229
  /* Next/Prev buttons */
230
230
  .theme-modern-light .st-next-prev-btn {
231
231
  padding: 6px 8px;
232
- border-radius: 6px;
232
+ border-radius: 4px;
233
233
  transition: all 0.15s ease;
234
234
  margin-left: 4px;
235
235
  flex-shrink: 0;