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.
- package/dist/cjs/index.js +1 -1
- package/dist/cjs/src/managers/DimensionManager.d.ts +1 -0
- package/dist/cjs/src/utils/filters/createDropdown.d.ts +17 -0
- package/dist/cjs/src/utils/filters/createFilterActions.d.ts +1 -0
- package/dist/cjs/src/utils/headerCell/resizing.d.ts +1 -1
- package/dist/cjs/src/utils/headerCell/styling.d.ts +3 -3
- package/dist/cjs/src/utils/headerWidthUtils.d.ts +2 -0
- package/dist/cjs/src/utils/resizeUtils/index.d.ts +18 -1
- package/dist/cjs/stories/examples/spreadsheet/SpreadsheetExample.d.ts +4 -0
- package/dist/cjs/stories/tests/13-ColumnResizeTests.stories.d.ts +3 -0
- package/dist/cjs/stories/tests/39-AutoExpandColumnsTests.stories.d.ts +12 -0
- package/dist/cjs/styles.css +1 -1
- package/dist/index.es.js +1 -1
- package/dist/src/managers/DimensionManager.d.ts +1 -0
- package/dist/src/utils/filters/createDropdown.d.ts +17 -0
- package/dist/src/utils/filters/createFilterActions.d.ts +1 -0
- package/dist/src/utils/headerCell/resizing.d.ts +1 -1
- package/dist/src/utils/headerCell/styling.d.ts +3 -3
- package/dist/src/utils/headerWidthUtils.d.ts +2 -0
- package/dist/src/utils/resizeUtils/index.d.ts +18 -1
- package/dist/stories/examples/spreadsheet/SpreadsheetExample.d.ts +4 -0
- package/dist/stories/tests/13-ColumnResizeTests.stories.d.ts +3 -0
- package/dist/stories/tests/39-AutoExpandColumnsTests.stories.d.ts +12 -0
- package/dist/styles.css +1 -1
- package/package.json +1 -1
- package/src/styles/base.css +38 -11
- package/src/styles/themes/modern-dark.css +4 -4
- 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 (
|
|
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:
|
|
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:
|
|
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:
|
|
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 (
|
|
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:
|
|
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:
|
|
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:
|
|
232
|
+
border-radius: 4px;
|
|
233
233
|
transition: all 0.15s ease;
|
|
234
234
|
margin-left: 4px;
|
|
235
235
|
flex-shrink: 0;
|