mirror of
https://github.com/gosticks/react-table.git
synced 2026-01-29 21:07:35 +00:00
* Use separate columns for Pivots and Expanders, more render options * Better expanding and aggregation control * Updated Renderer Keys and Stories (+ story cleanup) * Fixed Typo * Resizing Fixes, custom sorting, new api names * +Key constants, prop/callback changes, controllable filters and resizing, subRow + pivoting expansion * Remove console.log * Trying generalize expanders to work on any column * Fix up stories. * Better custom sorting * Finish fixing up stories with better source * Fix SubComponent Story * Updated Changelog * 6.0.0 * Use Correct PivotingOptions source * Handle edge cases in expandable hover states and event handlers * Add defaultExpanded prop * Rename sorting->sorted, onSortingChange->onSortedChange, defaultSorting->defaultSorted * filtering->filtered, onFilteringChange->onFilteredChange, defaultFiltering->defaultFiltered * Rename expandedRows->expanded, onExpandRow->onExpanded * Rename resizing->resized, defaultResizing->defaultResized, onResize->onResizedChange * Rename onExpanded->onExpandedChange * Cleanup Readme * Standardize global and column level resizable and sortable properties * Rename showFilters->filterable, hideFilter->filterable * Cleanup Changelog and lint errors * Remove unused prop * Remove unused prop from readme.
44 lines
1.2 KiB
HTML
44 lines
1.2 KiB
HTML
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<meta name="storybook-version" content="2.35.3">
|
|
<title>React Storybook</title>
|
|
<style>
|
|
/*
|
|
When resizing panels, the drag event breaks if the cursor
|
|
moves over the iframe. Add the 'dragging' class to the body
|
|
at drag start and remove it when the drag ends.
|
|
*/
|
|
.dragging iframe {
|
|
pointer-events: none;
|
|
}
|
|
|
|
/* Styling the fuzzy search box placeholders */
|
|
.searchBox::-webkit-input-placeholder { /* Chrome/Opera/Safari */
|
|
color: #ddd;
|
|
font-size: 16px;
|
|
}
|
|
|
|
.searchBox::-moz-placeholder { /* Firefox 19+ */
|
|
color: #ddd;
|
|
font-size: 16px;
|
|
}
|
|
|
|
.searchBox:focus{
|
|
border-color: #EEE !important;
|
|
}
|
|
|
|
.btn:hover{
|
|
background-color: #eee
|
|
}
|
|
</style>
|
|
</head>
|
|
<body style="margin: 0;">
|
|
<div id="root"></div>
|
|
<script src="static/manager.9a120eb2943ac2bf0331.bundle.js"></script>
|
|
</body>
|
|
</html>
|
|
|