@infinite-table/infinite-react 6.0.4 → 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.
Files changed (7) hide show
  1. package/index.css +5 -1
  2. package/index.d.ts +2 -0
  3. package/index.dev.js +9199 -9127
  4. package/index.dev.mjs +9314 -9242
  5. package/index.js +9199 -9127
  6. package/index.mjs +9314 -9242
  7. 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
@@ -89,6 +89,7 @@ declare class DeepMap<KeyType, ValueType> {
89
89
  fill(initial?: [KeyType[], ValueType][]): void;
90
90
  getValuesStartingWith(keys: KeyType[], excludeSelf?: boolean, depthLimit?: number): ValueType[];
91
91
  getEntriesStartingWith(keys: KeyType[], excludeSelf?: boolean, depthLimit?: number): [KeyType[], ValueType][];
92
+ getUnnestedKeysStartingWith(keys: KeyType[], excludeSelf?: boolean, depthLimit?: number): KeyType[][];
92
93
  getKeysStartingWith(keys: KeyType[], excludeSelf?: boolean, depthLimit?: number): KeyType[][];
93
94
  private getStartingWith;
94
95
  private getMapAt;
@@ -2225,6 +2226,7 @@ declare class DataSourceCache<DataType, PrimaryKeyType = string> {
2225
2226
 
2226
2227
  declare type TreeExpandStateApi<T> = {
2227
2228
  isNodeExpanded(nodePath: any[]): boolean;
2229
+ isNodeExpandable(nodePath: any[]): boolean;
2228
2230
  expandNode(nodePath: any[]): void;
2229
2231
  collapseNode(nodePath: any[]): void;
2230
2232
  toggleNode(nodePath: any[]): void;