@infinite-table/infinite-react 6.0.5 → 6.0.6
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/index.css +5 -1
- package/index.d.ts +1 -0
- package/index.dev.js +8933 -8912
- package/index.dev.mjs +9247 -9226
- package/index.js +8933 -8912
- package/index.mjs +9247 -9226
- package/package.json +2 -2
package/index.css
CHANGED
|
@@ -1794,7 +1794,11 @@
|
|
|
1794
1794
|
height: var(--infinite-header-cell-icon-size);
|
|
1795
1795
|
}
|
|
1796
1796
|
|
|
1797
|
-
/* vanilla-extract-css-ns:src/components/InfiniteTable/components/icons/ExpanderIcon.css.ts.vanilla.css?source= */
|
|
1797
|
+
/* vanilla-extract-css-ns:src/components/InfiniteTable/components/icons/ExpanderIcon.css.ts.vanilla.css?source=LkV4cGFuZGVySWNvbl9FeHBhbmRlckljb25DbHNWYXJpYW50c19kaXNhYmxlZF90cnVlX18xOTh6OTc4NiB7CiAgY3Vyc29yOiBhdXRvOwogIG9wYWNpdHk6IDAuNDsKfQ== */
|
|
1798
|
+
.ExpanderIcon_ExpanderIconClsVariants_disabled_true__198z9786 {
|
|
1799
|
+
cursor: auto;
|
|
1800
|
+
opacity: 0.4;
|
|
1801
|
+
}
|
|
1798
1802
|
|
|
1799
1803
|
/* vanilla-extract-css-ns:src/components/InfiniteTable/components/InfiniteTableRow/row.css.ts.vanilla.css?source=#H4sIAAAAAAAAA9WSQUvDQBCF7/0Ve2wKW4qKlfYYRM/Fe1h3x3TpdGaZbBJB/O9lI9EaC+lJ2vO8ffPtmzcXbosNt8/cgORYFcUy1KFZLNTHRCmtPb158hG0cKtfjd2VwjW5lWqMTAfjbfI4EmXrvxYVINgIbszrW3eOKbtRvxM2n5N5+vyTcB023D6+B0PuKwSDvqSiikZiH8hNF0gwznkqtSf0BLpTrJQ1aKeDpY4p6rRUvAOdloYOhKCKyQGByrjN1GxI+yO1jPWe+hfZOcgWKIL0zLdXwQzkeuC7U8CQTvrfuC8CkHfDHBBHunF/QTmPgf9uyPKKyI968nABPTkAUfJweDoFAAA= */
|
|
1800
1804
|
.row_RowHoverCls__7pupv00 {
|
package/index.d.ts
CHANGED
|
@@ -2226,6 +2226,7 @@ declare class DataSourceCache<DataType, PrimaryKeyType = string> {
|
|
|
2226
2226
|
|
|
2227
2227
|
declare type TreeExpandStateApi<T> = {
|
|
2228
2228
|
isNodeExpanded(nodePath: any[]): boolean;
|
|
2229
|
+
isNodeExpandable(nodePath: any[]): boolean;
|
|
2229
2230
|
expandNode(nodePath: any[]): void;
|
|
2230
2231
|
collapseNode(nodePath: any[]): void;
|
|
2231
2232
|
toggleNode(nodePath: any[]): void;
|