@osdk/react-components 0.2.0-beta.1 → 0.2.0-beta.3

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 (330) hide show
  1. package/CHANGELOG.md +35 -0
  2. package/README.md +21 -5
  3. package/build/browser/base-components/action-button/ActionButton.js +31 -0
  4. package/build/browser/base-components/action-button/ActionButton.js.map +1 -0
  5. package/build/browser/base-components/action-button/ActionButton.module.css +70 -0
  6. package/build/browser/base-components/action-button/ActionButton.module.css.js +8 -0
  7. package/build/browser/base-components/checkbox/Checkbox.js +27 -32
  8. package/build/browser/base-components/checkbox/Checkbox.module.css +79 -0
  9. package/build/browser/base-components/checkbox/Checkbox.module.css.js +7 -0
  10. package/build/browser/base-components/combobox/Combobox.js +124 -0
  11. package/build/browser/base-components/combobox/Combobox.js.map +1 -0
  12. package/build/browser/base-components/combobox/Combobox.module.css +177 -0
  13. package/build/browser/base-components/combobox/Combobox.module.css.js +16 -0
  14. package/build/browser/base-components/dialog/Dialog.js +52 -0
  15. package/build/browser/base-components/dialog/Dialog.js.map +1 -0
  16. package/build/browser/base-components/dialog/Dialog.module.css +101 -0
  17. package/build/browser/base-components/dialog/Dialog.module.css.js +13 -0
  18. package/build/browser/base-components/draggable-list/DraggableList.js +155 -0
  19. package/build/browser/base-components/draggable-list/DraggableList.js.map +1 -0
  20. package/build/browser/base-components/draggable-list/DraggableList.module.css +108 -0
  21. package/build/browser/base-components/draggable-list/DraggableList.module.css.js +11 -0
  22. package/build/browser/base-components/search-bar/SearchBar.js +44 -0
  23. package/build/browser/base-components/search-bar/SearchBar.js.map +1 -0
  24. package/build/browser/base-components/search-bar/SearchBar.module.css +53 -0
  25. package/build/browser/base-components/search-bar/SearchBar.module.css.js +8 -0
  26. package/build/browser/base-components/select/Select.js +89 -0
  27. package/build/browser/base-components/select/Select.js.map +1 -0
  28. package/build/browser/base-components/select/Select.module.css +138 -0
  29. package/build/browser/base-components/select/Select.module.css.js +11 -0
  30. package/build/browser/base-components/switch/Switch.js +33 -0
  31. package/build/browser/base-components/switch/Switch.js.map +1 -0
  32. package/build/browser/base-components/switch/Switch.module.css +91 -0
  33. package/build/browser/base-components/switch/Switch.module.css.js +7 -0
  34. package/build/browser/filter-list/FilterListApi.js.map +1 -1
  35. package/build/browser/filter-list/FilterListItemApi.js.map +1 -1
  36. package/build/browser/filter-list/__tests__/filterStateToWhereClause.test.js +296 -0
  37. package/build/browser/filter-list/__tests__/filterStateToWhereClause.test.js.map +1 -0
  38. package/build/browser/filter-list/__tests__/getFilterKey.test.js +53 -0
  39. package/build/browser/filter-list/__tests__/getFilterKey.test.js.map +1 -0
  40. package/build/browser/filter-list/__tests__/testUtils.js +192 -0
  41. package/build/browser/filter-list/__tests__/testUtils.js.map +1 -0
  42. package/build/browser/filter-list/hooks/__tests__/useFilterListState.test.js +128 -0
  43. package/build/browser/filter-list/hooks/__tests__/useFilterListState.test.js.map +1 -0
  44. package/build/browser/filter-list/hooks/useDebouncedValue.js +52 -0
  45. package/build/browser/filter-list/hooks/useDebouncedValue.js.map +1 -0
  46. package/build/browser/filter-list/hooks/useFilterListState.js +119 -0
  47. package/build/browser/filter-list/hooks/useFilterListState.js.map +1 -0
  48. package/build/browser/filter-list/hooks/usePropertyAggregation.js +92 -0
  49. package/build/browser/filter-list/hooks/usePropertyAggregation.js.map +1 -0
  50. package/build/browser/filter-list/types/AddFilterMenuTypes.js +2 -0
  51. package/build/browser/filter-list/types/AddFilterMenuTypes.js.map +1 -0
  52. package/build/browser/filter-list/types/CustomRendererTypes.js +2 -0
  53. package/build/browser/filter-list/types/CustomRendererTypes.js.map +1 -0
  54. package/build/browser/filter-list/types/KeywordSearchTypes.js +2 -0
  55. package/build/browser/filter-list/types/KeywordSearchTypes.js.map +1 -0
  56. package/build/browser/filter-list/types/LinkedFilterTypes.js +2 -0
  57. package/build/browser/filter-list/types/LinkedFilterTypes.js.map +1 -0
  58. package/build/browser/filter-list/types/index.js +21 -0
  59. package/build/browser/filter-list/types/index.js.map +1 -0
  60. package/build/browser/filter-list/utils/assertUnreachable.js +25 -0
  61. package/build/browser/filter-list/utils/assertUnreachable.js.map +1 -0
  62. package/build/browser/filter-list/utils/coerceFilterValue.js +33 -0
  63. package/build/browser/filter-list/utils/coerceFilterValue.js.map +1 -0
  64. package/build/browser/filter-list/utils/filterStateToWhereClause.js +337 -0
  65. package/build/browser/filter-list/utils/filterStateToWhereClause.js.map +1 -0
  66. package/build/browser/filter-list/utils/filterValues.js +55 -0
  67. package/build/browser/filter-list/utils/filterValues.js.map +1 -0
  68. package/build/browser/filter-list/utils/getFilterKey.js +34 -0
  69. package/build/browser/filter-list/utils/getFilterKey.js.map +1 -0
  70. package/build/browser/object-table/CellContextMenu.js +23 -20
  71. package/build/browser/object-table/CellContextMenu.module.css +20 -0
  72. package/build/browser/object-table/CellContextMenu.module.css.js +6 -0
  73. package/build/browser/object-table/ColumnConfigDialog.js +259 -0
  74. package/build/browser/object-table/ColumnConfigDialog.js.map +1 -0
  75. package/build/browser/object-table/ColumnConfigDialog.module.css +247 -0
  76. package/build/browser/object-table/ColumnConfigDialog.module.css.js +29 -0
  77. package/build/browser/object-table/LoadingCell.js +24 -29
  78. package/build/browser/object-table/LoadingCell.module.css +48 -0
  79. package/build/browser/object-table/LoadingCell.module.css.js +8 -0
  80. package/build/browser/object-table/LoadingRow.js +24 -50
  81. package/build/browser/object-table/LoadingStateTable.js +49 -343
  82. package/build/browser/object-table/LoadingStateTable.js.map +1 -1
  83. package/build/browser/object-table/MultiColumnSortDialog.js +178 -0
  84. package/build/browser/object-table/MultiColumnSortDialog.js.map +1 -0
  85. package/build/browser/object-table/MultiColumnSortDialog.module.css +195 -0
  86. package/build/browser/object-table/MultiColumnSortDialog.module.css.js +22 -0
  87. package/build/browser/object-table/NonIdealState.js +23 -20
  88. package/build/browser/object-table/NonIdealState.module.css +27 -0
  89. package/build/browser/object-table/NonIdealState.module.css.js +7 -0
  90. package/build/browser/object-table/ObjectTable.js +43 -13
  91. package/build/browser/object-table/ObjectTable.js.map +1 -1
  92. package/build/browser/object-table/ObjectTableApi.js.map +1 -1
  93. package/build/browser/object-table/SortableItemsList.js +35 -0
  94. package/build/browser/object-table/SortableItemsList.js.map +1 -0
  95. package/build/browser/object-table/Table.js +54 -934
  96. package/build/browser/object-table/Table.js.map +1 -1
  97. package/build/browser/object-table/Table.module.css +29 -0
  98. package/build/browser/object-table/Table.module.css.js +6 -0
  99. package/build/browser/object-table/TableBody.js +36 -260
  100. package/build/browser/object-table/TableBody.module.css +20 -0
  101. package/build/browser/object-table/TableBody.module.css.js +6 -0
  102. package/build/browser/object-table/TableCell.js +31 -111
  103. package/build/browser/object-table/TableCell.module.css +73 -0
  104. package/build/browser/object-table/TableCell.module.css.js +8 -0
  105. package/build/browser/object-table/TableHeader.js +126 -216
  106. package/build/browser/object-table/TableHeader.js.map +1 -1
  107. package/build/browser/object-table/TableHeader.module.css +106 -0
  108. package/build/browser/object-table/TableHeader.module.css.js +10 -0
  109. package/build/browser/object-table/TableHeaderContent.js +21 -18
  110. package/build/browser/object-table/TableHeaderContent.module.css +30 -0
  111. package/build/browser/object-table/TableHeaderContent.module.css.js +6 -0
  112. package/build/browser/object-table/TableHeaderWithPopover.js +110 -93
  113. package/build/browser/object-table/TableHeaderWithPopover.js.map +1 -1
  114. package/build/browser/object-table/TableHeaderWithPopover.module.css +141 -0
  115. package/build/browser/object-table/TableHeaderWithPopover.module.css.js +17 -0
  116. package/build/browser/object-table/TableRow.js +26 -144
  117. package/build/browser/object-table/TableRow.module.css +60 -0
  118. package/build/browser/object-table/TableRow.module.css.js +6 -0
  119. package/build/browser/object-table/hooks/__tests__/useColumnVisibility.test.js +160 -138
  120. package/build/browser/object-table/hooks/__tests__/useColumnVisibility.test.js.map +1 -1
  121. package/build/browser/object-table/hooks/__tests__/useRowSelection.test.js +3 -0
  122. package/build/browser/object-table/hooks/__tests__/useRowSelection.test.js.map +1 -1
  123. package/build/browser/object-table/hooks/__tests__/useSelectionColumn.test.js +27 -82
  124. package/build/browser/object-table/hooks/__tests__/useSelectionColumn.test.js.map +1 -1
  125. package/build/browser/object-table/hooks/__tests__/useTableSorting.test.js +290 -0
  126. package/build/browser/object-table/hooks/__tests__/useTableSorting.test.js.map +1 -1
  127. package/build/browser/object-table/hooks/useColumnDefs.js +7 -2
  128. package/build/browser/object-table/hooks/useColumnDefs.js.map +1 -1
  129. package/build/browser/object-table/hooks/useColumnResize.js +45 -0
  130. package/build/browser/object-table/hooks/useColumnResize.js.map +1 -0
  131. package/build/browser/object-table/hooks/useColumnVisibility.js +52 -20
  132. package/build/browser/object-table/hooks/useColumnVisibility.js.map +1 -1
  133. package/build/browser/object-table/hooks/useRowSelection.js +8 -7
  134. package/build/browser/object-table/hooks/useRowSelection.js.map +1 -1
  135. package/build/browser/object-table/hooks/useSelectionColumn.js +15 -6
  136. package/build/browser/object-table/hooks/useSelectionColumn.js.map +1 -1
  137. package/build/browser/object-table/utils/types.js +2 -0
  138. package/build/browser/object-table/utils/types.js.map +1 -0
  139. package/build/browser/public/experimental.js +1 -0
  140. package/build/browser/public/experimental.js.map +1 -1
  141. package/build/browser/styles.css +1875 -0
  142. package/build/cjs/public/experimental.cjs +1036 -197
  143. package/build/cjs/public/experimental.cjs.map +1 -1
  144. package/build/cjs/public/experimental.css +659 -29
  145. package/build/cjs/public/experimental.css.map +1 -1
  146. package/build/cjs/public/experimental.d.cts +435 -44
  147. package/build/esm/base-components/action-button/ActionButton.js +31 -0
  148. package/build/esm/base-components/action-button/ActionButton.js.map +1 -0
  149. package/build/esm/base-components/action-button/ActionButton.module.css +70 -0
  150. package/build/esm/base-components/checkbox/Checkbox.module.css +1 -1
  151. package/build/esm/base-components/combobox/Combobox.js +124 -0
  152. package/build/esm/base-components/combobox/Combobox.js.map +1 -0
  153. package/build/esm/base-components/combobox/Combobox.module.css +177 -0
  154. package/build/esm/base-components/dialog/Dialog.js +52 -0
  155. package/build/esm/base-components/dialog/Dialog.js.map +1 -0
  156. package/build/esm/base-components/dialog/Dialog.module.css +101 -0
  157. package/build/esm/base-components/draggable-list/DraggableList.js +155 -0
  158. package/build/esm/base-components/draggable-list/DraggableList.js.map +1 -0
  159. package/build/esm/base-components/draggable-list/DraggableList.module.css +108 -0
  160. package/build/esm/base-components/search-bar/SearchBar.js +44 -0
  161. package/build/esm/base-components/search-bar/SearchBar.js.map +1 -0
  162. package/build/esm/base-components/search-bar/SearchBar.module.css +53 -0
  163. package/build/esm/base-components/select/Select.js +89 -0
  164. package/build/esm/base-components/select/Select.js.map +1 -0
  165. package/build/esm/base-components/select/Select.module.css +138 -0
  166. package/build/esm/base-components/switch/Switch.js +33 -0
  167. package/build/esm/base-components/switch/Switch.js.map +1 -0
  168. package/build/esm/base-components/switch/Switch.module.css +91 -0
  169. package/build/esm/filter-list/FilterListApi.js.map +1 -1
  170. package/build/esm/filter-list/FilterListItemApi.js.map +1 -1
  171. package/build/esm/filter-list/__tests__/filterStateToWhereClause.test.js +296 -0
  172. package/build/esm/filter-list/__tests__/filterStateToWhereClause.test.js.map +1 -0
  173. package/build/esm/filter-list/__tests__/getFilterKey.test.js +53 -0
  174. package/build/esm/filter-list/__tests__/getFilterKey.test.js.map +1 -0
  175. package/build/esm/filter-list/__tests__/testUtils.js +192 -0
  176. package/build/esm/filter-list/__tests__/testUtils.js.map +1 -0
  177. package/build/esm/filter-list/hooks/__tests__/useFilterListState.test.js +128 -0
  178. package/build/esm/filter-list/hooks/__tests__/useFilterListState.test.js.map +1 -0
  179. package/build/esm/filter-list/hooks/useDebouncedValue.js +52 -0
  180. package/build/esm/filter-list/hooks/useDebouncedValue.js.map +1 -0
  181. package/build/esm/filter-list/hooks/useFilterListState.js +119 -0
  182. package/build/esm/filter-list/hooks/useFilterListState.js.map +1 -0
  183. package/build/esm/filter-list/hooks/usePropertyAggregation.js +92 -0
  184. package/build/esm/filter-list/hooks/usePropertyAggregation.js.map +1 -0
  185. package/build/esm/filter-list/types/AddFilterMenuTypes.js +2 -0
  186. package/build/esm/filter-list/types/AddFilterMenuTypes.js.map +1 -0
  187. package/build/esm/filter-list/types/CustomRendererTypes.js +2 -0
  188. package/build/esm/filter-list/types/CustomRendererTypes.js.map +1 -0
  189. package/build/esm/filter-list/types/KeywordSearchTypes.js +2 -0
  190. package/build/esm/filter-list/types/KeywordSearchTypes.js.map +1 -0
  191. package/build/esm/filter-list/types/LinkedFilterTypes.js +2 -0
  192. package/build/esm/filter-list/types/LinkedFilterTypes.js.map +1 -0
  193. package/build/esm/filter-list/types/index.js +21 -0
  194. package/build/esm/filter-list/types/index.js.map +1 -0
  195. package/build/esm/filter-list/utils/assertUnreachable.js +25 -0
  196. package/build/esm/filter-list/utils/assertUnreachable.js.map +1 -0
  197. package/build/esm/filter-list/utils/coerceFilterValue.js +33 -0
  198. package/build/esm/filter-list/utils/coerceFilterValue.js.map +1 -0
  199. package/build/esm/filter-list/utils/filterStateToWhereClause.js +337 -0
  200. package/build/esm/filter-list/utils/filterStateToWhereClause.js.map +1 -0
  201. package/build/esm/filter-list/utils/filterValues.js +55 -0
  202. package/build/esm/filter-list/utils/filterValues.js.map +1 -0
  203. package/build/esm/filter-list/utils/getFilterKey.js +34 -0
  204. package/build/esm/filter-list/utils/getFilterKey.js.map +1 -0
  205. package/build/esm/object-table/ColumnConfigDialog.js +259 -0
  206. package/build/esm/object-table/ColumnConfigDialog.js.map +1 -0
  207. package/build/esm/object-table/ColumnConfigDialog.module.css +247 -0
  208. package/build/esm/object-table/LoadingStateTable.js +4 -4
  209. package/build/esm/object-table/LoadingStateTable.js.map +1 -1
  210. package/build/esm/object-table/MultiColumnSortDialog.js +178 -0
  211. package/build/esm/object-table/MultiColumnSortDialog.js.map +1 -0
  212. package/build/esm/object-table/MultiColumnSortDialog.module.css +195 -0
  213. package/build/esm/object-table/NonIdealState.module.css +2 -3
  214. package/build/esm/object-table/ObjectTable.js +43 -13
  215. package/build/esm/object-table/ObjectTable.js.map +1 -1
  216. package/build/esm/object-table/ObjectTableApi.js.map +1 -1
  217. package/build/esm/object-table/SortableItemsList.js +35 -0
  218. package/build/esm/object-table/SortableItemsList.js.map +1 -0
  219. package/build/esm/object-table/Table.js +9 -7
  220. package/build/esm/object-table/Table.js.map +1 -1
  221. package/build/esm/object-table/Table.module.css +9 -2
  222. package/build/esm/object-table/TableCell.module.css +11 -0
  223. package/build/esm/object-table/TableHeader.js +93 -6
  224. package/build/esm/object-table/TableHeader.js.map +1 -1
  225. package/build/esm/object-table/TableHeader.module.css +7 -2
  226. package/build/esm/object-table/TableHeaderWithPopover.js +53 -22
  227. package/build/esm/object-table/TableHeaderWithPopover.js.map +1 -1
  228. package/build/esm/object-table/TableHeaderWithPopover.module.css +54 -23
  229. package/build/esm/object-table/hooks/__tests__/useColumnVisibility.test.js +160 -138
  230. package/build/esm/object-table/hooks/__tests__/useColumnVisibility.test.js.map +1 -1
  231. package/build/esm/object-table/hooks/__tests__/useRowSelection.test.js +3 -0
  232. package/build/esm/object-table/hooks/__tests__/useRowSelection.test.js.map +1 -1
  233. package/build/esm/object-table/hooks/__tests__/useSelectionColumn.test.js +27 -82
  234. package/build/esm/object-table/hooks/__tests__/useSelectionColumn.test.js.map +1 -1
  235. package/build/esm/object-table/hooks/__tests__/useTableSorting.test.js +290 -0
  236. package/build/esm/object-table/hooks/__tests__/useTableSorting.test.js.map +1 -1
  237. package/build/esm/object-table/hooks/useColumnDefs.js +7 -2
  238. package/build/esm/object-table/hooks/useColumnDefs.js.map +1 -1
  239. package/build/esm/object-table/hooks/useColumnResize.js +45 -0
  240. package/build/esm/object-table/hooks/useColumnResize.js.map +1 -0
  241. package/build/esm/object-table/hooks/useColumnVisibility.js +52 -20
  242. package/build/esm/object-table/hooks/useColumnVisibility.js.map +1 -1
  243. package/build/esm/object-table/hooks/useRowSelection.js +8 -7
  244. package/build/esm/object-table/hooks/useRowSelection.js.map +1 -1
  245. package/build/esm/object-table/hooks/useSelectionColumn.js +15 -6
  246. package/build/esm/object-table/hooks/useSelectionColumn.js.map +1 -1
  247. package/build/esm/object-table/utils/types.js +2 -0
  248. package/build/esm/object-table/utils/types.js.map +1 -0
  249. package/build/esm/public/experimental.js +1 -0
  250. package/build/esm/public/experimental.js.map +1 -1
  251. package/build/types/base-components/action-button/ActionButton.d.ts +5 -0
  252. package/build/types/base-components/action-button/ActionButton.d.ts.map +1 -0
  253. package/build/types/base-components/combobox/Combobox.d.ts +52 -0
  254. package/build/types/base-components/combobox/Combobox.d.ts.map +1 -0
  255. package/build/types/base-components/dialog/Dialog.d.ts +10 -0
  256. package/build/types/base-components/dialog/Dialog.d.ts.map +1 -0
  257. package/build/types/base-components/draggable-list/DraggableList.d.ts +17 -0
  258. package/build/types/base-components/draggable-list/DraggableList.d.ts.map +1 -0
  259. package/build/types/base-components/search-bar/SearchBar.d.ts +11 -0
  260. package/build/types/base-components/search-bar/SearchBar.d.ts.map +1 -0
  261. package/build/types/base-components/select/Select.d.ts +34 -0
  262. package/build/types/base-components/select/Select.d.ts.map +1 -0
  263. package/build/types/base-components/switch/Switch.d.ts +10 -0
  264. package/build/types/base-components/switch/Switch.d.ts.map +1 -0
  265. package/build/types/filter-list/FilterListApi.d.ts +63 -12
  266. package/build/types/filter-list/FilterListApi.d.ts.map +1 -1
  267. package/build/types/filter-list/FilterListItemApi.d.ts +101 -53
  268. package/build/types/filter-list/FilterListItemApi.d.ts.map +1 -1
  269. package/build/types/filter-list/__tests__/filterStateToWhereClause.test.d.ts +1 -0
  270. package/build/types/filter-list/__tests__/filterStateToWhereClause.test.d.ts.map +1 -0
  271. package/build/types/filter-list/__tests__/getFilterKey.test.d.ts +1 -0
  272. package/build/types/filter-list/__tests__/getFilterKey.test.d.ts.map +1 -0
  273. package/build/types/filter-list/__tests__/testUtils.d.ts +59 -0
  274. package/build/types/filter-list/__tests__/testUtils.d.ts.map +1 -0
  275. package/build/types/filter-list/hooks/__tests__/useFilterListState.test.d.ts +1 -0
  276. package/build/types/filter-list/hooks/__tests__/useFilterListState.test.d.ts.map +1 -0
  277. package/build/types/filter-list/hooks/useDebouncedValue.d.ts +11 -0
  278. package/build/types/filter-list/hooks/useDebouncedValue.d.ts.map +1 -0
  279. package/build/types/filter-list/hooks/useFilterListState.d.ts +11 -0
  280. package/build/types/filter-list/hooks/useFilterListState.d.ts.map +1 -0
  281. package/build/types/filter-list/hooks/usePropertyAggregation.d.ts +20 -0
  282. package/build/types/filter-list/hooks/usePropertyAggregation.d.ts.map +1 -0
  283. package/build/types/filter-list/types/AddFilterMenuTypes.d.ts +61 -0
  284. package/build/types/filter-list/types/AddFilterMenuTypes.d.ts.map +1 -0
  285. package/build/types/filter-list/types/CustomRendererTypes.d.ts +76 -0
  286. package/build/types/filter-list/types/CustomRendererTypes.d.ts.map +1 -0
  287. package/build/types/filter-list/types/KeywordSearchTypes.d.ts +56 -0
  288. package/build/types/filter-list/types/KeywordSearchTypes.d.ts.map +1 -0
  289. package/build/types/filter-list/types/LinkedFilterTypes.d.ts +70 -0
  290. package/build/types/filter-list/types/LinkedFilterTypes.d.ts.map +1 -0
  291. package/build/types/filter-list/types/index.d.ts +4 -0
  292. package/build/types/filter-list/types/index.d.ts.map +1 -0
  293. package/build/types/filter-list/utils/assertUnreachable.d.ts +6 -0
  294. package/build/types/filter-list/utils/assertUnreachable.d.ts.map +1 -0
  295. package/build/types/filter-list/utils/coerceFilterValue.d.ts +11 -0
  296. package/build/types/filter-list/utils/coerceFilterValue.d.ts.map +1 -0
  297. package/build/types/filter-list/utils/filterStateToWhereClause.d.ts +16 -0
  298. package/build/types/filter-list/utils/filterStateToWhereClause.d.ts.map +1 -0
  299. package/build/types/filter-list/utils/filterValues.d.ts +5 -0
  300. package/build/types/filter-list/utils/filterValues.d.ts.map +1 -0
  301. package/build/types/filter-list/utils/getFilterKey.d.ts +3 -0
  302. package/build/types/filter-list/utils/getFilterKey.d.ts.map +1 -0
  303. package/build/types/object-table/ColumnConfigDialog.d.ts +18 -0
  304. package/build/types/object-table/ColumnConfigDialog.d.ts.map +1 -0
  305. package/build/types/object-table/LoadingStateTable.d.ts.map +1 -1
  306. package/build/types/object-table/MultiColumnSortDialog.d.ts +15 -0
  307. package/build/types/object-table/MultiColumnSortDialog.d.ts.map +1 -0
  308. package/build/types/object-table/ObjectTable.d.ts +1 -1
  309. package/build/types/object-table/ObjectTable.d.ts.map +1 -1
  310. package/build/types/object-table/ObjectTableApi.d.ts +41 -6
  311. package/build/types/object-table/ObjectTableApi.d.ts.map +1 -1
  312. package/build/types/object-table/SortableItemsList.d.ts +13 -0
  313. package/build/types/object-table/SortableItemsList.d.ts.map +1 -0
  314. package/build/types/object-table/Table.d.ts +12 -1
  315. package/build/types/object-table/Table.d.ts.map +1 -1
  316. package/build/types/object-table/TableHeader.d.ts +3 -1
  317. package/build/types/object-table/TableHeader.d.ts.map +1 -1
  318. package/build/types/object-table/TableHeaderWithPopover.d.ts +30 -6
  319. package/build/types/object-table/TableHeaderWithPopover.d.ts.map +1 -1
  320. package/build/types/object-table/hooks/useColumnResize.d.ts +10 -0
  321. package/build/types/object-table/hooks/useColumnResize.d.ts.map +1 -0
  322. package/build/types/object-table/hooks/useColumnVisibility.d.ts +18 -7
  323. package/build/types/object-table/hooks/useColumnVisibility.d.ts.map +1 -1
  324. package/build/types/object-table/hooks/useRowSelection.d.ts +5 -4
  325. package/build/types/object-table/hooks/useRowSelection.d.ts.map +1 -1
  326. package/build/types/object-table/utils/types.d.ts +5 -0
  327. package/build/types/object-table/utils/types.d.ts.map +1 -0
  328. package/build/types/public/experimental.d.ts +2 -0
  329. package/build/types/public/experimental.d.ts.map +1 -1
  330. package/package.json +16 -8
@@ -0,0 +1,1875 @@
1
+ /* @osdk/react-components - Combined styles */
2
+
3
+ /* base-components/action-button/ActionButton.module.css */
4
+ /*
5
+ * Copyright 2025 Palantir Technologies, Inc. All rights reserved.
6
+ *
7
+ * Licensed under the Apache License, Version 2.0 (the "License");
8
+ * you may not use this file except in compliance with the License.
9
+ * You may obtain a copy of the License at
10
+ *
11
+ * http://www.apache.org/licenses/LICENSE-2.0
12
+ *
13
+ * Unless required by applicable law or agreed to in writing, software
14
+ * distributed under the License is distributed on an "AS IS" BASIS,
15
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16
+ * See the License for the specific language governing permissions and
17
+ * limitations under the License.
18
+ */
19
+
20
+ .ActionButton-module__button___ml7q5klp {
21
+ padding: calc(var(--osdk-surface-spacing) * 2)
22
+ calc(var(--osdk-surface-spacing) * 4);
23
+ border-radius: var(--osdk-surface-border-radius);
24
+ font-size: var(--osdk-typography-size-body-medium);
25
+ cursor: pointer;
26
+
27
+ &:focus {
28
+ outline: none;
29
+ }
30
+
31
+ &:focus-visible {
32
+ outline: var(--osdk-focus-outline);
33
+ outline-offset: var(--osdk-focus-visible-outline-offset);
34
+ }
35
+ }
36
+
37
+ .ActionButton-module__secondaryButton___9ADrh8W1 {
38
+ background-color: var(--osdk-button-secondary-bg);
39
+ border: var(--osdk-surface-border);
40
+ color: var(--osdk-button-secondary-color);
41
+
42
+ &:hover:not(:disabled) {
43
+ background-color: var(--osdk-button-secondary-bg-hover);
44
+ }
45
+
46
+ &:active:not(:disabled) {
47
+ background-color: var(--osdk-button-secondary-bg-active);
48
+ }
49
+
50
+ &:disabled {
51
+ opacity: 0.5;
52
+ cursor: not-allowed;
53
+ }
54
+ }
55
+
56
+ .ActionButton-module__primaryButton___26uDwmR6 {
57
+ background-color: var(--osdk-button-primary-bg);
58
+ border: none;
59
+ color: var(--osdk-button-primary-color);
60
+
61
+ &:hover:not(:disabled) {
62
+ background-color: var(--osdk-button-primary-bg-hover);
63
+ }
64
+
65
+ &:active:not(:disabled) {
66
+ background-color: var(--osdk-button-primary-bg-active);
67
+ }
68
+
69
+ &:disabled {
70
+ opacity: 0.5;
71
+ cursor: not-allowed;
72
+ }
73
+ }
74
+
75
+
76
+ /* base-components/checkbox/Checkbox.module.css */
77
+ /*
78
+ * Copyright 2025 Palantir Technologies, Inc. All rights reserved.
79
+ *
80
+ * Licensed under the Apache License, Version 2.0 (the "License");
81
+ * you may not use this file except in compliance with the License.
82
+ * You may obtain a copy of the License at
83
+ *
84
+ * http://www.apache.org/licenses/LICENSE-2.0
85
+ *
86
+ * Unless required by applicable law or agreed to in writing, software
87
+ * distributed under the License is distributed on an "AS IS" BASIS,
88
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
89
+ * See the License for the specific language governing permissions and
90
+ * limitations under the License.
91
+ */
92
+
93
+ .Checkbox-module__osdkCheckboxRoot___puTtZ6zA {
94
+ display: flex;
95
+ align-items: center;
96
+ justify-content: center;
97
+ min-width: calc(
98
+ var(--osdk-checkbox-icon-size) + var(--osdk-checkbox-padding) * 2
99
+ );
100
+ min-height: calc(
101
+ var(--osdk-checkbox-icon-size) + var(--osdk-checkbox-padding) * 2
102
+ );
103
+ padding: var(--osdk-checkbox-padding);
104
+ box-sizing: border-box;
105
+ cursor: pointer;
106
+ border-radius: var(--osdk-surface-border-radius);
107
+ border: var(--osdk-checkbox-border);
108
+
109
+ &[data-unchecked] {
110
+ background-color: var(--osdk-checkbox-bg);
111
+
112
+ &:hover {
113
+ background-color: var(--osdk-checkbox-bg-hover);
114
+ }
115
+
116
+ &:active {
117
+ background-color: var(--osdk-checkbox-bg-active);
118
+ }
119
+ }
120
+
121
+ &[data-checked],
122
+ &[data-indeterminate] {
123
+ background-color: var(--osdk-checkbox-bg-checked);
124
+
125
+ &:hover {
126
+ background-color: var(--osdk-checkbox-bg-checked-hover);
127
+ }
128
+
129
+ &:active {
130
+ background-color: var(--osdk-checkbox-bg-checked-active);
131
+ }
132
+ }
133
+
134
+ &:focus {
135
+ outline: none;
136
+ }
137
+
138
+ &:focus-visible {
139
+ outline: var(--osdk-focus-outline);
140
+ outline-offset: calc(-1 * var(--osdk-focus-visible-outline-offset));
141
+ }
142
+ }
143
+
144
+ .Checkbox-module__osdkCheckboxIndicator___WOhQM8rb {
145
+ display: flex;
146
+ justify-content: center;
147
+ align-items: center;
148
+ color: var(--osdk-checkbox-checked-foreground);
149
+ width: var(--osdk-checkbox-icon-size);
150
+ height: var(--osdk-checkbox-icon-size);
151
+
152
+ &[data-unchecked] {
153
+ display: none;
154
+ }
155
+ }
156
+
157
+
158
+ /* base-components/combobox/Combobox.module.css */
159
+ /*
160
+ * Copyright 2025 Palantir Technologies, Inc. All rights reserved.
161
+ *
162
+ * Licensed under the Apache License, Version 2.0 (the "License");
163
+ * you may not use this file except in compliance with the License.
164
+ * You may obtain a copy of the License at
165
+ *
166
+ * http://www.apache.org/licenses/LICENSE-2.0
167
+ *
168
+ * Unless required by applicable law or agreed to in writing, software
169
+ * distributed under the License is distributed on an "AS IS" BASIS,
170
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
171
+ * See the License for the specific language governing permissions and
172
+ * limitations under the License.
173
+ */
174
+
175
+ .Combobox-module__osdkComboboxInputWrapper___QJ-WZal7 {
176
+ display: flex;
177
+ align-items: center;
178
+ gap: var(--osdk-combobox-spacing, var(--bp-surface-spacing));
179
+ width: 100%;
180
+ min-height: 30px;
181
+ padding: calc(var(--osdk-combobox-spacing, var(--bp-surface-spacing)) * 1.5)
182
+ calc(var(--osdk-combobox-spacing, var(--bp-surface-spacing)) * 2);
183
+ box-sizing: border-box;
184
+ border-radius: var(--osdk-combobox-border-radius, var(--bp-surface-borderRadius));
185
+ border: var(--osdk-combobox-border-width, var(--bp-surface-borderWidth)) solid
186
+ var(--osdk-combobox-border-color, var(--bp-surface-borderColor-default));
187
+ background-color: var(--osdk-combobox-input-bg, var(--bp-surface-colorRest-default));
188
+ transition: border-color var(--osdk-combobox-transition-duration, var(--bp-emphasis-transitionDuration))
189
+ var(--osdk-combobox-transition-ease, var(--bp-emphasis-ease-default));
190
+
191
+ &:focus-within {
192
+ border-color: var(--osdk-combobox-focus-border-color, var(--bp-intent-primary-rest));
193
+ outline: var(--osdk-combobox-focus-width, var(--bp-emphasis-focusWidth)) solid
194
+ var(--osdk-combobox-focus-color, var(--bp-emphasis-focusColor));
195
+ outline-offset: var(--osdk-combobox-focus-offset, var(--bp-emphasis-focusOffset));
196
+ }
197
+ }
198
+
199
+ .Combobox-module__osdkComboboxSearchIcon___jepAa-OV {
200
+ flex-shrink: 0;
201
+ color: var(--osdk-combobox-icon-color, var(--bp-iconography-colorMuted));
202
+ }
203
+
204
+ .Combobox-module__osdkComboboxInput___9516ISdK {
205
+ flex: 1;
206
+ min-width: 0;
207
+ border: none;
208
+ background: transparent;
209
+ font-family: var(--osdk-combobox-font-family, var(--bp-typography-family-default));
210
+ font-size: var(--osdk-combobox-font-size, var(--bp-typography-size-bodyMedium));
211
+ line-height: var(--osdk-combobox-line-height, var(--bp-typography-lineHeight-default));
212
+ color: var(--osdk-combobox-input-color, var(--bp-typography-colorRest-default));
213
+ outline: none;
214
+
215
+ &::placeholder {
216
+ color: var(--osdk-combobox-placeholder-color, var(--bp-typography-colorMuted));
217
+ }
218
+ }
219
+
220
+ .Combobox-module__osdkComboboxPositioner___hKb8oXuo {
221
+ z-index: var(--osdk-combobox-z-index, var(--bp-surface-zIndex-3));
222
+ }
223
+
224
+ .Combobox-module__osdkComboboxPopup___J-p7AW55 {
225
+ display: flex;
226
+ flex-direction: column;
227
+ min-width: var(--anchor-width);
228
+ max-height: var(--available-height);
229
+ overflow-y: auto;
230
+ padding: calc(var(--osdk-combobox-spacing, var(--bp-surface-spacing)) * 1.5);
231
+ box-sizing: border-box;
232
+ border-radius: var(--osdk-combobox-border-radius, var(--bp-surface-borderRadius));
233
+ border: var(--osdk-combobox-border-width, var(--bp-surface-borderWidth)) solid
234
+ var(--osdk-combobox-border-color, var(--bp-surface-borderColor-default));
235
+ background-color: var(--osdk-combobox-popup-bg, var(--bp-surface-colorRest-default));
236
+ box-shadow: var(--osdk-combobox-popup-shadow, var(--bp-surface-shadow-2));
237
+ }
238
+
239
+ .Combobox-module__osdkComboboxItem___aw0l3CKj {
240
+ display: flex;
241
+ align-items: center;
242
+ padding: calc(var(--osdk-combobox-spacing, var(--bp-surface-spacing)) * 1.5)
243
+ calc(var(--osdk-combobox-spacing, var(--bp-surface-spacing)) * 2);
244
+ border-radius: var(--osdk-combobox-border-radius, var(--bp-surface-borderRadius));
245
+ cursor: pointer;
246
+ font-family: var(--osdk-combobox-font-family, var(--bp-typography-family-default));
247
+ font-size: var(--osdk-combobox-font-size, var(--bp-typography-size-bodyMedium));
248
+ line-height: var(--osdk-combobox-line-height, var(--bp-typography-lineHeight-default));
249
+ color: var(--osdk-combobox-item-color, var(--bp-typography-colorRest-default));
250
+ transition: background-color var(--osdk-combobox-transition-duration, var(--bp-emphasis-transitionDuration))
251
+ var(--osdk-combobox-transition-ease, var(--bp-emphasis-ease-default));
252
+
253
+ &[data-highlighted] {
254
+ background-color: var(--osdk-combobox-item-bg-highlighted, var(--bp-surface-colorHover-default));
255
+ outline: none;
256
+ }
257
+
258
+ &[data-selected] {
259
+ background-color: var(--osdk-combobox-item-bg-selected, var(--bp-surface-depthLayer-primary));
260
+ color: var(--osdk-combobox-item-color-selected, var(--bp-intent-primary-rest));
261
+ }
262
+
263
+ &[data-disabled] {
264
+ cursor: not-allowed;
265
+ opacity: 0.5;
266
+ }
267
+ }
268
+
269
+ .Combobox-module__osdkComboboxChips___LX40CFj- {
270
+ display: flex;
271
+ flex-wrap: wrap;
272
+ gap: calc(var(--osdk-combobox-spacing, var(--bp-surface-spacing)) * 1.5);
273
+ margin-bottom: calc(var(--osdk-combobox-spacing, var(--bp-surface-spacing)) * 2);
274
+ }
275
+
276
+ .Combobox-module__osdkComboboxChip___9O7-N50F {
277
+ display: inline-flex;
278
+ align-items: center;
279
+ gap: var(--osdk-combobox-spacing, var(--bp-surface-spacing));
280
+ padding: calc(var(--osdk-combobox-spacing, var(--bp-surface-spacing)) * 0.5)
281
+ calc(var(--osdk-combobox-spacing, var(--bp-surface-spacing)) * 1.5);
282
+ border-radius: var(--osdk-combobox-border-radius, var(--bp-surface-borderRadius));
283
+ background-color: var(--osdk-combobox-chip-bg, var(--bp-surface-colorHover-default));
284
+ font-family: var(--osdk-combobox-font-family, var(--bp-typography-family-default));
285
+ font-size: var(--osdk-combobox-chip-font-size, var(--bp-typography-size-bodySmall));
286
+ line-height: var(--osdk-combobox-line-height, var(--bp-typography-lineHeight-default));
287
+ color: var(--osdk-combobox-chip-color, var(--bp-typography-colorRest-default));
288
+ }
289
+
290
+ .Combobox-module__osdkComboboxChipRemove___QTqMJiEh {
291
+ display: flex;
292
+ align-items: center;
293
+ justify-content: center;
294
+ padding: 0;
295
+ border: none;
296
+ background: transparent;
297
+ cursor: pointer;
298
+ color: var(--osdk-combobox-chip-remove-color, var(--bp-iconography-colorMuted));
299
+ transition: color var(--osdk-combobox-transition-duration, var(--bp-emphasis-transitionDuration))
300
+ var(--osdk-combobox-transition-ease, var(--bp-emphasis-ease-default));
301
+
302
+ &:hover {
303
+ color: var(--osdk-combobox-chip-remove-color-hover, var(--bp-typography-colorRest-default));
304
+ }
305
+ }
306
+
307
+ .Combobox-module__osdkComboboxClear___ylbP7z6a {
308
+ display: flex;
309
+ align-items: center;
310
+ justify-content: center;
311
+ padding: calc(var(--osdk-combobox-spacing, var(--bp-surface-spacing)) * 0.5);
312
+ border: none;
313
+ background: transparent;
314
+ cursor: pointer;
315
+ color: var(--osdk-combobox-clear-color, var(--bp-iconography-colorMuted));
316
+ border-radius: var(--osdk-combobox-border-radius, var(--bp-surface-borderRadius));
317
+ transition: color var(--osdk-combobox-transition-duration, var(--bp-emphasis-transitionDuration))
318
+ var(--osdk-combobox-transition-ease, var(--bp-emphasis-ease-default)),
319
+ background-color var(--osdk-combobox-transition-duration, var(--bp-emphasis-transitionDuration))
320
+ var(--osdk-combobox-transition-ease, var(--bp-emphasis-ease-default));
321
+
322
+ &:hover {
323
+ color: var(--osdk-combobox-clear-color-hover, var(--bp-typography-colorRest-default));
324
+ background-color: var(--osdk-combobox-clear-bg-hover, var(--bp-surface-colorHover-default));
325
+ }
326
+ }
327
+
328
+ .Combobox-module__osdkComboboxEmpty___rfSN-zlQ {
329
+ padding: calc(var(--osdk-combobox-spacing, var(--bp-surface-spacing)) * 3)
330
+ calc(var(--osdk-combobox-spacing, var(--bp-surface-spacing)) * 2);
331
+ text-align: center;
332
+ color: var(--osdk-combobox-empty-color, var(--bp-typography-colorMuted));
333
+ font-family: var(--osdk-combobox-font-family, var(--bp-typography-family-default));
334
+ font-size: var(--osdk-combobox-font-size, var(--bp-typography-size-bodyMedium));
335
+ }
336
+
337
+
338
+ /* base-components/dialog/Dialog.module.css */
339
+ /*
340
+ * Copyright 2025 Palantir Technologies, Inc. All rights reserved.
341
+ *
342
+ * Licensed under the Apache License, Version 2.0 (the "License");
343
+ * you may not use this file except in compliance with the License.
344
+ * You may obtain a copy of the License at
345
+ *
346
+ * http://www.apache.org/licenses/LICENSE-2.0
347
+ *
348
+ * Unless required by applicable law or agreed to in writing, software
349
+ * distributed under the License is distributed on an "AS IS" BASIS,
350
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
351
+ * See the License for the specific language governing permissions and
352
+ * limitations under the License.
353
+ */
354
+
355
+ .Dialog-module__backdrop___LaM-OTQa {
356
+ position: fixed;
357
+ inset: 0;
358
+ background-color: var(--osdk-dialog-backdrop-bg);
359
+ z-index: var(--osdk-surface-z-index-1);
360
+ }
361
+
362
+ .Dialog-module__popup___7Hd9wHIO {
363
+ position: fixed;
364
+ top: 50%;
365
+ left: 50%;
366
+ transform: translate(-50%, -50%);
367
+ min-width: var(--osdk-dialog-min-width);
368
+ max-width: var(--osdk-dialog-max-width);
369
+ min-height: var(--osdk-dialog-min-height);
370
+ max-height: var(--osdk-dialog-max-height);
371
+ background-color: var(--osdk-dialog-bg);
372
+ border-radius: var(--osdk-surface-border-radius);
373
+ box-shadow: var(--osdk-dialog-shadow);
374
+ z-index: var(--osdk-surface-z-index-2);
375
+ display: flex;
376
+ flex-direction: column;
377
+
378
+ &:focus {
379
+ outline: none;
380
+ }
381
+ }
382
+
383
+ .Dialog-module__header___uvnNEIbj {
384
+ display: flex;
385
+ justify-content: space-between;
386
+ align-items: center;
387
+ padding: var(--osdk-dialog-header-padding);
388
+ border-bottom: var(--osdk-surface-border);
389
+ }
390
+
391
+ .Dialog-module__title___fyskXl6s {
392
+ font-size: var(--osdk-dialog-title-font-size);
393
+ font-weight: var(--osdk-dialog-title-font-weight);
394
+ }
395
+
396
+ .Dialog-module__body___pHE35h4X {
397
+ display: flex;
398
+ padding: var(--osdk-dialog-body-padding);
399
+ overflow-y: auto;
400
+ flex: 1;
401
+ }
402
+
403
+ .Dialog-module__footer___H9pEEz3w {
404
+ display: flex;
405
+ justify-content: flex-end;
406
+ gap: calc(var(--osdk-surface-spacing) * 2);
407
+ padding: var(--osdk-dialog-footer-padding);
408
+ border-top: var(--osdk-surface-border);
409
+ }
410
+
411
+ .Dialog-module__closeButton___vnkQctUO {
412
+ background: none;
413
+ border: none;
414
+ padding: calc(var(--osdk-surface-spacing) * 0.5);
415
+ cursor: pointer;
416
+ display: flex;
417
+ align-items: center;
418
+ justify-content: center;
419
+ border-radius: var(--osdk-surface-border-radius);
420
+
421
+ &:hover {
422
+ background-color: var(--osdk-surface-background-color-default-hover);
423
+ }
424
+
425
+ &:focus {
426
+ outline: none;
427
+ }
428
+
429
+ &:focus-visible {
430
+ outline: var(--osdk-focus-outline);
431
+ outline-offset: var(--osdk-focus-visible-outline-offset);
432
+ }
433
+ }
434
+
435
+ .Dialog-module__closeIcon___L7JMZyxZ {
436
+ width: var(--osdk-iconography-size-small);
437
+ height: var(--osdk-iconography-size-small);
438
+ color: var(--osdk-typography-color-muted);
439
+ }
440
+
441
+
442
+ /* base-components/draggable-list/DraggableList.module.css */
443
+ /*
444
+ * Copyright 2025 Palantir Technologies, Inc. All rights reserved.
445
+ *
446
+ * Licensed under the Apache License, Version 2.0 (the "License");
447
+ * you may not use this file except in compliance with the License.
448
+ * You may obtain a copy of the License at
449
+ *
450
+ * http://www.apache.org/licenses/LICENSE-2.0
451
+ *
452
+ * Unless required by applicable law or agreed to in writing, software
453
+ * distributed under the License is distributed on an "AS IS" BASIS,
454
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
455
+ * See the License for the specific language governing permissions and
456
+ * limitations under the License.
457
+ */
458
+
459
+ .DraggableList-module__draggableListContainer___78U2PaLj {
460
+ display: flex;
461
+ flex-direction: column;
462
+ gap: var(--osdk-draggable-item-gap);
463
+ overflow-y: auto;
464
+ }
465
+
466
+ .DraggableList-module__draggableItem___yzxaMynW {
467
+ display: flex;
468
+ align-items: center;
469
+ gap: var(--osdk-draggable-item-gap);
470
+ padding: var(--osdk-draggable-item-padding);
471
+ background-color: var(--osdk-draggable-item-bg);
472
+ border: var(--osdk-draggable-item-border);
473
+ border-radius: var(--osdk-draggable-item-border-radius);
474
+ width: 100%;
475
+ touch-action: none;
476
+ user-select: none;
477
+ }
478
+
479
+ .DraggableList-module__draggableItem___yzxaMynW[data-dragging="true"] {
480
+ opacity: 0.5;
481
+ }
482
+
483
+ .DraggableList-module__dragHandle___Ds-CeRi4 {
484
+ display: flex;
485
+ cursor: grab;
486
+ color: var(--osdk-draggable-item-drag-icon-color);
487
+
488
+ &:hover {
489
+ color: var(--osdk-draggable-item-drag-icon-color-hover);
490
+ }
491
+
492
+ &:active {
493
+ cursor: grabbing;
494
+ }
495
+
496
+ &:focus {
497
+ outline: none;
498
+ }
499
+
500
+ &:focus-visible {
501
+ outline: var(--osdk-focus-outline);
502
+ outline-offset: var(--osdk-focus-visible-outline-offset);
503
+ }
504
+ }
505
+
506
+ .DraggableList-module__itemContent___lUjVl8eM {
507
+ flex: 1;
508
+ overflow: hidden;
509
+ text-overflow: ellipsis;
510
+ white-space: nowrap;
511
+ }
512
+
513
+ .DraggableList-module__removeButton___--alST9G {
514
+ background: none;
515
+ border: none;
516
+ padding: var(--osdk-surface-spacing);
517
+ cursor: pointer;
518
+ display: flex;
519
+ align-items: center;
520
+ justify-content: center;
521
+ color: var(--osdk-draggable-item-drag-icon-color);
522
+ border-radius: var(--osdk-surface-border-radius);
523
+
524
+ &:hover {
525
+ color: var(--osdk-typography-color-danger-rest);
526
+ }
527
+
528
+ &:active {
529
+ color: var(--osdk-typography-color-danger-rest);
530
+ background: oklch(
531
+ from var(--osdk-surface-background-color-danger-hover) l c h / 0.2
532
+ );
533
+ }
534
+
535
+ &:focus {
536
+ outline: none;
537
+ }
538
+
539
+ &:focus-visible {
540
+ outline: var(--osdk-focus-outline);
541
+ outline-offset: var(--osdk-focus-visible-outline-offset);
542
+ }
543
+ }
544
+
545
+ .DraggableList-module__emptyState___l25Qs23u {
546
+ padding: calc(var(--osdk-surface-spacing) * 5);
547
+ text-align: center;
548
+ color: var(--osdk-typography-color-muted);
549
+ font-style: italic;
550
+ }
551
+
552
+
553
+ /* base-components/search-bar/SearchBar.module.css */
554
+ /*
555
+ * Copyright 2025 Palantir Technologies, Inc. All rights reserved.
556
+ *
557
+ * Licensed under the Apache License, Version 2.0 (the "License");
558
+ * you may not use this file except in compliance with the License.
559
+ * You may obtain a copy of the License at
560
+ *
561
+ * http://www.apache.org/licenses/LICENSE-2.0
562
+ *
563
+ * Unless required by applicable law or agreed to in writing, software
564
+ * distributed under the License is distributed on an "AS IS" BASIS,
565
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
566
+ * See the License for the specific language governing permissions and
567
+ * limitations under the License.
568
+ */
569
+
570
+ .SearchBar-module__searchBar___kiAvod6c {
571
+ display: flex;
572
+ align-items: center;
573
+ gap: var(--osdk-surface-spacing);
574
+ padding: var(--osdk-surface-spacing) calc(var(--osdk-surface-spacing) * 1.5);
575
+ border: var(--osdk-surface-border);
576
+ border-radius: var(--osdk-surface-border-radius);
577
+
578
+ &:focus-within {
579
+ outline: var(--osdk-focus-outline);
580
+ outline-offset: calc(-1 * var(--osdk-focus-visible-outline-offset));
581
+ }
582
+ }
583
+
584
+ .SearchBar-module__searchIcon___-Wrqbvrk {
585
+ width: var(--osdk-iconography-size-small);
586
+ height: var(--osdk-iconography-size-small);
587
+ color: var(--osdk-typography-color-muted);
588
+ pointer-events: none;
589
+ flex-shrink: 0;
590
+ }
591
+
592
+ .SearchBar-module__searchInput___rscXv48l {
593
+ border: none;
594
+ width: 100%;
595
+ padding: var(--osdk-surface-spacing) 0;
596
+ font-size: var(--osdk-typography-size-body-medium);
597
+ background: transparent;
598
+
599
+ &:focus {
600
+ outline: none;
601
+ }
602
+
603
+ &::placeholder {
604
+ color: var(--osdk-typography-color-muted);
605
+ }
606
+ }
607
+
608
+
609
+ /* base-components/select/Select.module.css */
610
+ /*
611
+ * Copyright 2025 Palantir Technologies, Inc. All rights reserved.
612
+ *
613
+ * Licensed under the Apache License, Version 2.0 (the "License");
614
+ * you may not use this file except in compliance with the License.
615
+ * You may obtain a copy of the License at
616
+ *
617
+ * http://www.apache.org/licenses/LICENSE-2.0
618
+ *
619
+ * Unless required by applicable law or agreed to in writing, software
620
+ * distributed under the License is distributed on an "AS IS" BASIS,
621
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
622
+ * See the License for the specific language governing permissions and
623
+ * limitations under the License.
624
+ */
625
+
626
+ .Select-module__osdkSelectTrigger___Gvh4NMeE {
627
+ display: inline-flex;
628
+ align-items: center;
629
+ justify-content: space-between;
630
+ gap: var(--osdk-select-spacing, var(--bp-surface-spacing));
631
+ width: 100%;
632
+ min-height: 30px;
633
+ padding: calc(var(--osdk-select-spacing, var(--bp-surface-spacing)) * 1.5)
634
+ calc(var(--osdk-select-spacing, var(--bp-surface-spacing)) * 2.5);
635
+ box-sizing: border-box;
636
+ cursor: pointer;
637
+ border-radius: var(--osdk-select-border-radius, var(--bp-surface-borderRadius));
638
+ border: var(--osdk-select-border-width, var(--bp-surface-borderWidth)) solid
639
+ var(--osdk-select-border-color, var(--bp-surface-borderColor-default));
640
+ background-color: var(--osdk-select-trigger-bg, var(--bp-surface-colorRest-default));
641
+ color: var(--osdk-select-trigger-color, var(--bp-typography-colorRest-default));
642
+ font-family: var(--osdk-select-font-family, var(--bp-typography-family-default));
643
+ font-size: var(--osdk-select-font-size, var(--bp-typography-size-bodyMedium));
644
+ line-height: var(--osdk-select-line-height, var(--bp-typography-lineHeight-default));
645
+ transition: background-color var(--osdk-select-transition-duration, var(--bp-emphasis-transitionDuration))
646
+ var(--osdk-select-transition-ease, var(--bp-emphasis-ease-default)),
647
+ border-color var(--osdk-select-transition-duration, var(--bp-emphasis-transitionDuration))
648
+ var(--osdk-select-transition-ease, var(--bp-emphasis-ease-default));
649
+
650
+ &:hover {
651
+ background-color: var(--osdk-select-trigger-bg-hover, var(--bp-surface-colorHover-default));
652
+ }
653
+
654
+ &:active {
655
+ background-color: var(--osdk-select-trigger-bg-active, var(--bp-surface-colorActive-default));
656
+ }
657
+
658
+ &:focus-visible {
659
+ outline: var(--osdk-select-focus-width, var(--bp-emphasis-focusWidth)) solid
660
+ var(--osdk-select-focus-color, var(--bp-emphasis-focusColor));
661
+ outline-offset: var(--osdk-select-focus-offset, var(--bp-emphasis-focusOffset));
662
+ }
663
+
664
+ &[data-disabled] {
665
+ cursor: not-allowed;
666
+ opacity: 0.5;
667
+ }
668
+
669
+ &[data-popup-open] {
670
+ border-color: var(--osdk-select-border-color-active, var(--bp-intent-primary-rest));
671
+ }
672
+ }
673
+
674
+ .Select-module__osdkSelectValue___RVgvlerI {
675
+ flex: 1;
676
+ text-align: left;
677
+ overflow: hidden;
678
+ text-overflow: ellipsis;
679
+ white-space: nowrap;
680
+
681
+ &[data-placeholder] {
682
+ color: var(--osdk-select-placeholder-color, var(--bp-typography-colorMuted));
683
+ }
684
+ }
685
+
686
+ .Select-module__osdkSelectIcon___wBYDb-yy {
687
+ display: flex;
688
+ align-items: center;
689
+ justify-content: center;
690
+ color: var(--osdk-select-icon-color, var(--bp-iconography-colorMuted));
691
+ flex-shrink: 0;
692
+ transition: transform var(--osdk-select-transition-duration, var(--bp-emphasis-transitionDuration))
693
+ var(--osdk-select-transition-ease, var(--bp-emphasis-ease-default));
694
+
695
+ [data-popup-open] > & {
696
+ transform: rotate(180deg);
697
+ }
698
+ }
699
+
700
+ .Select-module__osdkSelectPositioner___isn6y3d0 {
701
+ z-index: var(--osdk-select-z-index, var(--bp-surface-zIndex-3));
702
+ }
703
+
704
+ .Select-module__osdkSelectPopup___mKufWAKp {
705
+ display: flex;
706
+ flex-direction: column;
707
+ min-width: var(--anchor-width);
708
+ max-height: var(--available-height);
709
+ overflow-y: auto;
710
+ padding: calc(var(--osdk-select-spacing, var(--bp-surface-spacing)) * 1.5);
711
+ box-sizing: border-box;
712
+ border-radius: var(--osdk-select-border-radius, var(--bp-surface-borderRadius));
713
+ border: var(--osdk-select-border-width, var(--bp-surface-borderWidth)) solid
714
+ var(--osdk-select-border-color, var(--bp-surface-borderColor-default));
715
+ background-color: var(--osdk-select-popup-bg, var(--bp-surface-colorRest-default));
716
+ box-shadow: var(--osdk-select-popup-shadow, var(--bp-surface-shadow-2));
717
+ }
718
+
719
+ .Select-module__osdkSelectItem___OVOZPohZ {
720
+ display: flex;
721
+ align-items: center;
722
+ padding: calc(var(--osdk-select-spacing, var(--bp-surface-spacing)) * 1.5)
723
+ calc(var(--osdk-select-spacing, var(--bp-surface-spacing)) * 2);
724
+ border-radius: var(--osdk-select-border-radius, var(--bp-surface-borderRadius));
725
+ cursor: pointer;
726
+ font-family: var(--osdk-select-font-family, var(--bp-typography-family-default));
727
+ font-size: var(--osdk-select-font-size, var(--bp-typography-size-bodyMedium));
728
+ line-height: var(--osdk-select-line-height, var(--bp-typography-lineHeight-default));
729
+ color: var(--osdk-select-item-color, var(--bp-typography-colorRest-default));
730
+ transition: background-color var(--osdk-select-transition-duration, var(--bp-emphasis-transitionDuration))
731
+ var(--osdk-select-transition-ease, var(--bp-emphasis-ease-default));
732
+
733
+ &[data-highlighted] {
734
+ background-color: var(--osdk-select-item-bg-highlighted, var(--bp-surface-colorHover-default));
735
+ outline: none;
736
+ }
737
+
738
+ &[data-selected] {
739
+ background-color: var(--osdk-select-item-bg-selected, var(--bp-surface-depthLayer-primary));
740
+ color: var(--osdk-select-item-color-selected, var(--bp-intent-primary-rest));
741
+ }
742
+
743
+ &[data-disabled] {
744
+ cursor: not-allowed;
745
+ opacity: 0.5;
746
+ }
747
+ }
748
+
749
+
750
+ /* base-components/switch/Switch.module.css */
751
+ /*
752
+ * Copyright 2025 Palantir Technologies, Inc. All rights reserved.
753
+ *
754
+ * Licensed under the Apache License, Version 2.0 (the "License");
755
+ * you may not use this file except in compliance with the License.
756
+ * You may obtain a copy of the License at
757
+ *
758
+ * http://www.apache.org/licenses/LICENSE-2.0
759
+ *
760
+ * Unless required by applicable law or agreed to in writing, software
761
+ * distributed under the License is distributed on an "AS IS" BASIS,
762
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
763
+ * See the License for the specific language governing permissions and
764
+ * limitations under the License.
765
+ */
766
+
767
+ .Switch-module__osdkSwitchRoot___Jp9OHtZ1 {
768
+ --osdk-switch-track-width: var(--osdk-switch-track-width-override, 28px);
769
+ --osdk-switch-track-height: var(--osdk-switch-track-height-override, 16px);
770
+ --osdk-switch-thumb-size: var(--osdk-switch-thumb-size-override, 12px);
771
+ --osdk-switch-thumb-offset: var(--osdk-switch-thumb-offset-override, 2px);
772
+
773
+ display: inline-flex;
774
+ align-items: center;
775
+ width: var(--osdk-switch-track-width);
776
+ height: var(--osdk-switch-track-height);
777
+ padding: 0;
778
+ box-sizing: border-box;
779
+ cursor: pointer;
780
+ border-radius: var(--osdk-switch-border-radius, var(--osdk-surface-border-radius));
781
+ position: relative;
782
+ border: none;
783
+ transition: background-color var(--osdk-switch-transition-duration, var(--bp-emphasis-transitionDuration))
784
+ var(--osdk-switch-transition-ease, var(--bp-emphasis-ease-default));
785
+
786
+ &[data-unchecked] {
787
+ background-color: var(--osdk-switch-track-bg, var(--bp-intent-default-rest));
788
+
789
+ &:hover {
790
+ background-color: var(--osdk-switch-track-bg-hover, var(--bp-intent-default-hover));
791
+ }
792
+
793
+ &:active {
794
+ background-color: var(--osdk-switch-track-bg-active, var(--bp-intent-default-active));
795
+ }
796
+ }
797
+
798
+ &[data-checked] {
799
+ background-color: var(--osdk-switch-track-bg-checked, var(--bp-intent-primary-rest));
800
+
801
+ &:hover {
802
+ background-color: var(--osdk-switch-track-bg-checked-hover, var(--bp-intent-primary-hover));
803
+ }
804
+
805
+ &:active {
806
+ background-color: var(--osdk-switch-track-bg-checked-active, var(--bp-intent-primary-active));
807
+ }
808
+ }
809
+
810
+ &[data-disabled] {
811
+ cursor: not-allowed;
812
+ opacity: 0.5;
813
+ }
814
+
815
+ &:focus-visible {
816
+ outline: var(--osdk-switch-focus-width, var(--bp-emphasis-focusWidth)) solid
817
+ var(--osdk-switch-focus-color, var(--bp-emphasis-focusColor));
818
+ outline-offset: var(--osdk-switch-focus-offset, var(--bp-emphasis-focusOffset));
819
+ }
820
+ }
821
+
822
+ .Switch-module__osdkSwitchThumb___eXBSyINB {
823
+ display: block;
824
+ width: var(--osdk-switch-thumb-size);
825
+ height: var(--osdk-switch-thumb-size);
826
+ background-color: var(--osdk-switch-thumb-bg, var(--bp-palette-gray-100));
827
+ border-radius: 50%;
828
+ position: absolute;
829
+ top: 50%;
830
+ transform: translateY(-50%);
831
+ transition: left var(--osdk-switch-transition-duration, var(--bp-emphasis-transitionDuration))
832
+ var(--osdk-switch-transition-ease, var(--bp-emphasis-ease-default));
833
+
834
+ &[data-unchecked] {
835
+ left: var(--osdk-switch-thumb-offset);
836
+ }
837
+
838
+ &[data-checked] {
839
+ left: calc(var(--osdk-switch-track-width) - var(--osdk-switch-thumb-size) - var(--osdk-switch-thumb-offset));
840
+ }
841
+ }
842
+
843
+
844
+ /* object-table/CellContextMenu.module.css */
845
+ /*
846
+ * Copyright 2025 Palantir Technologies, Inc. All rights reserved.
847
+ *
848
+ * Licensed under the Apache License, Version 2.0 (the "License");
849
+ * you may not use this file except in compliance with the License.
850
+ * You may obtain a copy of the License at
851
+ *
852
+ * http://www.apache.org/licenses/LICENSE-2.0
853
+ *
854
+ * Unless required by applicable law or agreed to in writing, software
855
+ * distributed under the License is distributed on an "AS IS" BASIS,
856
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
857
+ * See the License for the specific language governing permissions and
858
+ * limitations under the License.
859
+ */
860
+
861
+ .CellContextMenu-module__osdkCellContextMenu___lZrHhShI {
862
+ position: fixed;
863
+ z-index: var(--osdk-surface-z-index-2);
864
+ }
865
+
866
+
867
+ /* object-table/ColumnConfigDialog.module.css */
868
+ /*
869
+ * Copyright 2025 Palantir Technologies, Inc. All rights reserved.
870
+ *
871
+ * Licensed under the Apache License, Version 2.0 (the "License");
872
+ * you may not use this file except in compliance with the License.
873
+ * You may obtain a copy of the License at
874
+ *
875
+ * http://www.apache.org/licenses/LICENSE-2.0
876
+ *
877
+ * Unless required by applicable law or agreed to in writing, software
878
+ * distributed under the License is distributed on an "AS IS" BASIS,
879
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
880
+ * See the License for the specific language governing permissions and
881
+ * limitations under the License.
882
+ */
883
+
884
+ .ColumnConfigDialog-module__title___-eLUgB-0 {
885
+ display: flex;
886
+ align-items: center;
887
+ gap: var(--osdk-surface-spacing);
888
+ }
889
+
890
+ /* Override dialog styling */
891
+ .ColumnConfigDialog-module__columnConfigDialog___RteuzCJ2 {
892
+ --osdk-dialog-min-width: var(--osdk-table-column-config-dialog-min-width);
893
+ --osdk-dialog-min-height: var(--osdk-table-column-config-dialog-min-height);
894
+ --osdk-dialog-body-padding: 0;
895
+ }
896
+
897
+ .ColumnConfigDialog-module__dialogLayout___fynnW1wM {
898
+ display: flex;
899
+ flex-direction: row;
900
+ gap: 0;
901
+ flex: 1;
902
+ min-height: 0;
903
+ overflow: hidden;
904
+ }
905
+
906
+ .ColumnConfigDialog-module__visibleColumnsContainer___0ay4nqjq {
907
+ flex: 1.5;
908
+ display: flex;
909
+ flex-direction: column;
910
+ overflow: hidden;
911
+ padding: calc(var(--osdk-surface-spacing) * 5);
912
+ background: var(--osdk-table-column-config-visible-columns-bg);
913
+ border-right: 1px solid var(--osdk-surface-border-color-default);
914
+ }
915
+
916
+ .ColumnConfigDialog-module__availableColumnsContainer___CP3JCm7s {
917
+ flex: 1;
918
+ display: flex;
919
+ flex-direction: column;
920
+ overflow: hidden;
921
+ padding: calc(var(--osdk-surface-spacing) * 5)
922
+ calc(var(--osdk-surface-spacing) * 3);
923
+ }
924
+
925
+ .ColumnConfigDialog-module__sectionHeader___jWPS3Qnr {
926
+ display: flex;
927
+ align-items: center;
928
+ justify-content: space-between;
929
+ margin-bottom: calc(var(--osdk-surface-spacing) * 5);
930
+ }
931
+
932
+ .ColumnConfigDialog-module__sectionTitle___m1qCEPdS {
933
+ display: flex;
934
+ justify-content: flex-start;
935
+ align-items: flex-start;
936
+ font-size: var(--osdk-typography-size-body-medium);
937
+ font-weight: var(--osdk-typography-weight-bold);
938
+ color: var(--osdk-typography-color-muted);
939
+ flex-shrink: 0;
940
+ gap: var(--osdk-surface-spacing);
941
+ }
942
+
943
+ .ColumnConfigDialog-module__countTag___t-3WvBqR {
944
+ display: inline-flex;
945
+ align-items: center;
946
+ justify-content: center;
947
+ background: var(--osdk-custom-color-gray-3);
948
+ padding: calc(var(--osdk-surface-spacing) / 2)
949
+ calc(var(--osdk-surface-spacing) * 1.5);
950
+ border-radius: var(--osdk-surface-border-radius);
951
+ font-size: var(--osdk-typography-size-body-small);
952
+ font-weight: var(--osdk-typography-weight-default);
953
+ color: var(--osdk-typography-color-default-rest);
954
+ }
955
+
956
+ .ColumnConfigDialog-module__sectionHint___FF20XJsO {
957
+ font-size: var(--osdk-typography-size-body-small);
958
+ color: var(--osdk-typography-color-muted);
959
+ }
960
+
961
+ .ColumnConfigDialog-module__columnList___56WfmgqM {
962
+ flex: 1;
963
+ min-height: 0;
964
+ overflow-y: auto;
965
+ overscroll-behavior: contain;
966
+ }
967
+
968
+ .ColumnConfigDialog-module__searchContainer___FJGpQP-l {
969
+ margin-bottom: calc(var(--osdk-surface-spacing) * 2);
970
+ flex-shrink: 0;
971
+ }
972
+
973
+ .ColumnConfigDialog-module__propertiesList___mxu4p6xi {
974
+ flex: 1;
975
+ min-height: 0;
976
+ display: flex;
977
+ flex-direction: column;
978
+ width: 100%;
979
+ }
980
+
981
+ .ColumnConfigDialog-module__categoryHeader___lP0lZbIe {
982
+ display: flex;
983
+ align-items: center;
984
+ justify-content: flex-start;
985
+ width: 100%;
986
+ padding: calc(var(--osdk-surface-spacing) * 2)
987
+ calc(var(--osdk-surface-spacing) * 3);
988
+ background: none;
989
+ border: none;
990
+ margin: 0;
991
+ gap: calc(var(--osdk-surface-spacing) * 3);
992
+ flex-shrink: 0;
993
+ }
994
+
995
+ .ColumnConfigDialog-module__categoryTrigger___M2XqiHkC {
996
+ display: flex;
997
+ align-items: center;
998
+ flex: 1;
999
+ background: none;
1000
+ border: none;
1001
+ cursor: pointer;
1002
+ padding: 0;
1003
+
1004
+ &:focus {
1005
+ outline: none;
1006
+ }
1007
+
1008
+ &:focus-visible {
1009
+ outline: var(--osdk-focus-outline);
1010
+ outline-offset: var(--osdk-focus-visible-outline-offset);
1011
+ }
1012
+ }
1013
+
1014
+ .ColumnConfigDialog-module__categoryTitle___cezyOg9g {
1015
+ flex: 1;
1016
+ color: var(--osdk-typography-color-muted);
1017
+ font-size: var(--osdk-typography-size-body-small);
1018
+ font-weight: var(--osdk-typography-weight-bold);
1019
+ text-align: left;
1020
+ }
1021
+
1022
+ .ColumnConfigDialog-module__categoryCount___ETEehPDA {
1023
+ color: var(--osdk-typography-color-muted);
1024
+ font-size: var(--osdk-typography-size-body-small);
1025
+ margin-left: var(--osdk-surface-spacing);
1026
+ }
1027
+
1028
+ .ColumnConfigDialog-module__caretIcon___swDdhJ5M {
1029
+ color: var(--osdk-typography-color-muted);
1030
+ display: flex;
1031
+ justify-content: center;
1032
+ align-items: center;
1033
+ }
1034
+
1035
+ .ColumnConfigDialog-module__categoryTrigger___M2XqiHkC[data-panel-open] .ColumnConfigDialog-module__caretIcon___swDdhJ5M {
1036
+ transform: rotate(180deg);
1037
+ }
1038
+
1039
+ .ColumnConfigDialog-module__checkbox___aD9y9eMZ {
1040
+ width: var(--osdk-checkbox-icon-size);
1041
+ height: var(--osdk-checkbox-icon-size);
1042
+ }
1043
+
1044
+ .ColumnConfigDialog-module__propertyList___Z-uizzUM {
1045
+ display: flex;
1046
+ flex-direction: column;
1047
+ flex: 1;
1048
+ min-height: 0;
1049
+ overflow-y: auto;
1050
+ overscroll-behavior: contain;
1051
+ }
1052
+
1053
+ .ColumnConfigDialog-module__propertyItem___u41rBMbM {
1054
+ display: flex;
1055
+ align-items: center;
1056
+ flex-direction: row;
1057
+ width: 100%;
1058
+ gap: calc(var(--osdk-surface-spacing) * 3);
1059
+ padding: calc(var(--osdk-surface-spacing) * 2)
1060
+ calc(var(--osdk-surface-spacing) * 3);
1061
+ background: none;
1062
+ border: none;
1063
+ cursor: pointer;
1064
+ text-align: left;
1065
+ border-radius: var(--osdk-surface-border-radius);
1066
+
1067
+ &:hover {
1068
+ background-color: var(--osdk-surface-background-color-default-hover);
1069
+ }
1070
+ }
1071
+
1072
+ .ColumnConfigDialog-module__checkboxIndicator___zO12iDjb {
1073
+ color: var(--osdk-intent-primary-foreground);
1074
+ display: flex;
1075
+ align-items: center;
1076
+ justify-content: center;
1077
+ }
1078
+
1079
+ .ColumnConfigDialog-module__propertyName___zHUrcS9I {
1080
+ text-align: left;
1081
+ flex: 1;
1082
+ font-size: var(--osdk-typography-size-body-medium);
1083
+ font-weight: 400;
1084
+ color: var(--osdk-typography-color-default-rest);
1085
+ padding: 0;
1086
+ overflow: hidden;
1087
+ text-overflow: ellipsis;
1088
+ white-space: nowrap;
1089
+ background: none;
1090
+ border: none;
1091
+
1092
+ &:focus {
1093
+ outline: none;
1094
+ }
1095
+
1096
+ &:focus-visible {
1097
+ outline: var(--osdk-focus-outline);
1098
+ outline-offset: var(--osdk-focus-visible-outline-offset);
1099
+ }
1100
+ }
1101
+
1102
+ .ColumnConfigDialog-module__infoIcon___DJouN8cT {
1103
+ color: var(--osdk-typography-color-muted);
1104
+ flex-shrink: 0;
1105
+ width: calc(var(--osdk-checkbox-icon-size) * 0.75);
1106
+ height: calc(var(--osdk-checkbox-icon-size) * 0.75);
1107
+ }
1108
+
1109
+ .ColumnConfigDialog-module__emptyState___MrcWvWgf {
1110
+ padding: calc(var(--osdk-surface-spacing) * 5);
1111
+ text-align: center;
1112
+ color: var(--osdk-typography-color-muted);
1113
+ font-style: italic;
1114
+ }
1115
+
1116
+
1117
+ /* object-table/LoadingCell.module.css */
1118
+ /*
1119
+ * Copyright 2025 Palantir Technologies, Inc. All rights reserved.
1120
+ *
1121
+ * Licensed under the Apache License, Version 2.0 (the "License");
1122
+ * you may not use this file except in compliance with the License.
1123
+ * You may obtain a copy of the License at
1124
+ *
1125
+ * http://www.apache.org/licenses/LICENSE-2.0
1126
+ *
1127
+ * Unless required by applicable law or agreed to in writing, software
1128
+ * distributed under the License is distributed on an "AS IS" BASIS,
1129
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1130
+ * See the License for the specific language governing permissions and
1131
+ * limitations under the License.
1132
+ */
1133
+
1134
+ .LoadingCell-module__osdkLoadingCell___XLlRWu8h {
1135
+ height: var(--osdk-table-cell-fontSize);
1136
+ border-radius: calc(var(--osdk-surface-border-radius) * 0.5);
1137
+ flex: 1;
1138
+ }
1139
+
1140
+ /* Blueprint skeleton animation keyframes */
1141
+ @keyframes LoadingCell-module__skeleton-glow___pznGbRk6 {
1142
+ from {
1143
+ background: var(--osdk-table-skeleton-color-from);
1144
+ border-color: var(--osdk-table-skeleton-color-from);
1145
+ }
1146
+
1147
+ to {
1148
+ background: var(--osdk-table-skeleton-color-to);
1149
+ border-color: var(--osdk-table-skeleton-color-to);
1150
+ }
1151
+ }
1152
+
1153
+ .LoadingCell-module__osdkCellSkeleton___LJKGtJS1 {
1154
+ animation: 1000ms linear infinite alternate LoadingCell-module__skeleton-glow___pznGbRk6;
1155
+ background: var(--osdk-table-skeleton-color-from);
1156
+ background-clip: padding-box;
1157
+ border-color: var(--osdk-table-skeleton-color-from);
1158
+ border-radius: calc(var(--osdk-surface-border-radius) * 0.5);
1159
+ border: 1px solid var(--osdk-table-skeleton-border-color);
1160
+ box-shadow: none;
1161
+ color: transparent;
1162
+ cursor: default;
1163
+ pointer-events: none;
1164
+ user-select: none;
1165
+ }
1166
+
1167
+
1168
+ /* object-table/MultiColumnSortDialog.module.css */
1169
+ /*
1170
+ * Copyright 2025 Palantir Technologies, Inc. All rights reserved.
1171
+ *
1172
+ * Licensed under the Apache License, Version 2.0 (the "License");
1173
+ * you may not use this file except in compliance with the License.
1174
+ * You may obtain a copy of the License at
1175
+ *
1176
+ * http://www.apache.org/licenses/LICENSE-2.0
1177
+ *
1178
+ * Unless required by applicable law or agreed to in writing, software
1179
+ * distributed under the License is distributed on an "AS IS" BASIS,
1180
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1181
+ * See the License for the specific language governing permissions and
1182
+ * limitations under the License.
1183
+ */
1184
+
1185
+ .MultiColumnSortDialog-module__title___flQIoSfn {
1186
+ display: flex;
1187
+ align-items: center;
1188
+ gap: var(--osdk-surface-spacing);
1189
+ }
1190
+
1191
+ .MultiColumnSortDialog-module__sortColumnsList___v3PCk33R {
1192
+ display: flex;
1193
+ flex-direction: column;
1194
+ gap: var(--osdk-surface-spacing);
1195
+ flex: 1;
1196
+ justify-content: space-between;
1197
+ overflow-x: hidden;
1198
+ }
1199
+
1200
+ .MultiColumnSortDialog-module__sortableList___hi3POlPa {
1201
+ flex: 1;
1202
+ }
1203
+
1204
+ .MultiColumnSortDialog-module__selectedColumnsContainer___NhRIvQf4 {
1205
+ margin-bottom: calc(var(--osdk-surface-spacing) * 2);
1206
+ }
1207
+
1208
+ .MultiColumnSortDialog-module__sortColumnItem___cOKfBI-p {
1209
+ display: flex;
1210
+ align-items: center;
1211
+ justify-content: space-between;
1212
+ min-width: 0;
1213
+ width: 100%;
1214
+ }
1215
+
1216
+ .MultiColumnSortDialog-module__sortColumnName___hEJuoVvM {
1217
+ min-width: 0;
1218
+ flex-shrink: 1;
1219
+ }
1220
+
1221
+ .MultiColumnSortDialog-module__sortDirectionButton___B0FpU9RX {
1222
+ flex-shrink: 0;
1223
+ background: none;
1224
+ border: none;
1225
+ padding: var(--osdk-surface-spacing);
1226
+ cursor: pointer;
1227
+ display: flex;
1228
+ align-items: center;
1229
+ justify-content: center;
1230
+ border-radius: var(--osdk-surface-border-radius);
1231
+
1232
+ &:hover {
1233
+ background-color: var(--osdk-button-secondary-bg-hover);
1234
+ }
1235
+
1236
+ &:focus {
1237
+ outline: none;
1238
+ }
1239
+
1240
+ &:focus-visible {
1241
+ outline: var(--osdk-focus-outline);
1242
+ outline-offset: calc(-1 * var(--osdk-focus-visible-outline-offset));
1243
+ }
1244
+ }
1245
+
1246
+ .MultiColumnSortDialog-module__sortIcon___ZI5QlXMB {
1247
+ color: var(--osdk-typography-color-muted);
1248
+ }
1249
+
1250
+ .MultiColumnSortDialog-module__addColumnButton___8QIWAnvz {
1251
+ display: flex;
1252
+ align-items: center;
1253
+ gap: calc(var(--osdk-surface-spacing) * 2);
1254
+ width: 100%;
1255
+ padding: calc(var(--osdk-surface-spacing) * 2)
1256
+ calc(var(--osdk-surface-spacing) * 3);
1257
+ background-color: var(--osdk-button-secondary-bg);
1258
+ border: var(--osdk-surface-border);
1259
+ border-radius: var(--osdk-surface-border-radius);
1260
+ cursor: pointer;
1261
+ color: var(--osdk-button-secondary-color);
1262
+ margin-top: calc(var(--osdk-surface-spacing) * 2);
1263
+
1264
+ &:hover:not(:disabled) {
1265
+ background-color: var(--osdk-button-secondary-bg-hover);
1266
+ }
1267
+
1268
+ &:disabled {
1269
+ opacity: 0.5;
1270
+ cursor: not-allowed;
1271
+ }
1272
+
1273
+ &:focus {
1274
+ outline: none;
1275
+ }
1276
+
1277
+ &:focus-visible {
1278
+ outline: var(--osdk-focus-outline);
1279
+ outline-offset: calc(-1 * var(--osdk-focus-visible-outline-offset));
1280
+ }
1281
+ }
1282
+
1283
+ .MultiColumnSortDialog-module__addIcon___RN4RnncD {
1284
+ width: var(--osdk-iconography-size-small);
1285
+ height: var(--osdk-iconography-size-small);
1286
+ color: currentColor;
1287
+ }
1288
+
1289
+ .MultiColumnSortDialog-module__addColumnText___odD8TcY0 {
1290
+ flex: 1;
1291
+ text-align: left;
1292
+ }
1293
+
1294
+ .MultiColumnSortDialog-module__menuPositioner___Tgrl7GHh {
1295
+ z-index: var(--osdk-surface-z-index-2);
1296
+ }
1297
+
1298
+ .MultiColumnSortDialog-module__dropdownMenu___2I4WitTB {
1299
+ background-color: var(--osdk-surface-background-color-default-rest);
1300
+ border: var(--osdk-surface-border);
1301
+ border-radius: var(--osdk-surface-border-radius);
1302
+ box-shadow: var(--osdk-surface-shadow-2);
1303
+ max-height: calc(var(--osdk-dialog-max-height) * 0.5);
1304
+ overflow-y: auto;
1305
+ width: var(--anchor-width);
1306
+
1307
+ &:focus {
1308
+ outline: none;
1309
+ }
1310
+
1311
+ &:focus-visible {
1312
+ outline: var(--osdk-focus-outline);
1313
+ outline-offset: var(--osdk-focus-visible-outline-offset);
1314
+ }
1315
+ }
1316
+
1317
+ .MultiColumnSortDialog-module__menuSearchContainer___W9VUGPnt {
1318
+ border: none;
1319
+ border-bottom: var(--osdk-surface-border);
1320
+ border-radius: 0;
1321
+ position: sticky;
1322
+ top: 0;
1323
+ background-color: var(--osdk-surface-background-color-default-rest);
1324
+ }
1325
+
1326
+ .MultiColumnSortDialog-module__menuEmptyState___YK6rPQwQ {
1327
+ padding: calc(var(--osdk-surface-spacing) * 3);
1328
+ text-align: center;
1329
+ color: var(--osdk-typography-color-muted);
1330
+ font-size: var(--osdk-typography-size-body-medium);
1331
+ }
1332
+
1333
+ .MultiColumnSortDialog-module__dropdownItem___ktRdXIQ8 {
1334
+ display: block;
1335
+ width: 100%;
1336
+ text-align: left;
1337
+ padding: calc(var(--osdk-surface-spacing) * 2)
1338
+ calc(var(--osdk-surface-spacing) * 3);
1339
+ background: none;
1340
+ border: none;
1341
+ cursor: pointer;
1342
+ font-size: var(--osdk-typography-size-body-medium);
1343
+ color: var(--osdk-typography-color-default-rest);
1344
+
1345
+ &:hover {
1346
+ background-color: var(--osdk-surface-background-color-default-hover);
1347
+ }
1348
+
1349
+ &:focus {
1350
+ outline: none;
1351
+ }
1352
+
1353
+ &:focus-visible {
1354
+ outline: var(--osdk-focus-outline);
1355
+ outline-offset: calc(-1 * var(--osdk-focus-visible-outline-offset));
1356
+ }
1357
+ }
1358
+
1359
+ .MultiColumnSortDialog-module__truncate___CXIHooZw {
1360
+ overflow: hidden;
1361
+ text-overflow: ellipsis;
1362
+ white-space: nowrap;
1363
+ }
1364
+
1365
+
1366
+ /* object-table/NonIdealState.module.css */
1367
+ /*
1368
+ * Copyright 2025 Palantir Technologies, Inc. All rights reserved.
1369
+ *
1370
+ * Licensed under the Apache License, Version 2.0 (the "License");
1371
+ * you may not use this file except in compliance with the License.
1372
+ * You may obtain a copy of the License at
1373
+ *
1374
+ * http://www.apache.org/licenses/LICENSE-2.0
1375
+ *
1376
+ * Unless required by applicable law or agreed to in writing, software
1377
+ * distributed under the License is distributed on an "AS IS" BASIS,
1378
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1379
+ * See the License for the specific language governing permissions and
1380
+ * limitations under the License.
1381
+ */
1382
+
1383
+ .NonIdealState-module__container___43YWBKdO {
1384
+ display: flex;
1385
+ align-items: center;
1386
+ justify-content: center;
1387
+ }
1388
+
1389
+ .NonIdealState-module__message___6OFyA4q- {
1390
+ padding: calc(var(--osdk-surface-spacing) * 5);
1391
+ color: var(--osdk-typography-color-muted);
1392
+ font-style: italic;
1393
+ }
1394
+
1395
+
1396
+ /* object-table/Table.module.css */
1397
+ /*
1398
+ * Copyright 2025 Palantir Technologies, Inc. All rights reserved.
1399
+ *
1400
+ * Licensed under the Apache License, Version 2.0 (the "License");
1401
+ * you may not use this file except in compliance with the License.
1402
+ * You may obtain a copy of the License at
1403
+ *
1404
+ * http://www.apache.org/licenses/LICENSE-2.0
1405
+ *
1406
+ * Unless required by applicable law or agreed to in writing, software
1407
+ * distributed under the License is distributed on an "AS IS" BASIS,
1408
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1409
+ * See the License for the specific language governing permissions and
1410
+ * limitations under the License.
1411
+ */
1412
+
1413
+ .Table-module__osdkTableContainer___QBj68RD- {
1414
+ flex: 1;
1415
+ height: 100%;
1416
+ min-height: 0;
1417
+ overflow: auto;
1418
+ position: relative;
1419
+ }
1420
+
1421
+ .Table-module__osdkTableContainer___QBj68RD- table {
1422
+ border-collapse: collapse;
1423
+ display: grid;
1424
+ table-layout: fixed;
1425
+ }
1426
+
1427
+
1428
+ /* object-table/TableBody.module.css */
1429
+ /*
1430
+ * Copyright 2025 Palantir Technologies, Inc. All rights reserved.
1431
+ *
1432
+ * Licensed under the Apache License, Version 2.0 (the "License");
1433
+ * you may not use this file except in compliance with the License.
1434
+ * You may obtain a copy of the License at
1435
+ *
1436
+ * http://www.apache.org/licenses/LICENSE-2.0
1437
+ *
1438
+ * Unless required by applicable law or agreed to in writing, software
1439
+ * distributed under the License is distributed on an "AS IS" BASIS,
1440
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1441
+ * See the License for the specific language governing permissions and
1442
+ * limitations under the License.
1443
+ */
1444
+
1445
+ .TableBody-module__osdkTableBody___YC9dMzce {
1446
+ display: grid;
1447
+ position: relative;
1448
+ }
1449
+
1450
+
1451
+ /* object-table/TableCell.module.css */
1452
+ /*
1453
+ * Copyright 2025 Palantir Technologies, Inc. All rights reserved.
1454
+ *
1455
+ * Licensed under the Apache License, Version 2.0 (the "License");
1456
+ * you may not use this file except in compliance with the License.
1457
+ * You may obtain a copy of the License at
1458
+ *
1459
+ * http://www.apache.org/licenses/LICENSE-2.0
1460
+ *
1461
+ * Unless required by applicable law or agreed to in writing, software
1462
+ * distributed under the License is distributed on an "AS IS" BASIS,
1463
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1464
+ * See the License for the specific language governing permissions and
1465
+ * limitations under the License.
1466
+ */
1467
+
1468
+ .TableCell-module__osdkTableCell___gVl6jToJ {
1469
+ display: flex;
1470
+ align-items: center;
1471
+ height: 100%;
1472
+ text-align: left;
1473
+ position: relative;
1474
+ padding: var(--osdk-table-cell-padding);
1475
+ font-size: var(--osdk-table-cell-fontSize);
1476
+ color: var(--osdk-table-cell-color);
1477
+ background-color: inherit;
1478
+ border-right: var(--osdk-table-cell-divider);
1479
+
1480
+ &:first-child {
1481
+ border-left: var(--osdk-table-border);
1482
+ }
1483
+
1484
+ &:last-child {
1485
+ border-right: var(--osdk-table-border);
1486
+ }
1487
+ }
1488
+
1489
+ .TableCell-module__osdkTableCell___gVl6jToJ[data-pinned="left"],
1490
+ .TableCell-module__osdkTableCell___gVl6jToJ[data-pinned="right"] {
1491
+ position: sticky;
1492
+ z-index: var(--osdk-surface-z-index-1);
1493
+ background-color: inherit;
1494
+ }
1495
+
1496
+ /* Last left-pinned column - no left-pinned siblings after it */
1497
+ .TableCell-module__osdkTableCell___gVl6jToJ[data-pinned="left"]:not(:has(~ [data-pinned="left"])) {
1498
+ border-right: var(--osdk-table-pinned-column-border);
1499
+ }
1500
+
1501
+ /* First right-pinned column - no right-pinned siblings before it */
1502
+ .TableCell-module__osdkTableCell___gVl6jToJ[data-pinned="right"]:not(:has(~ [data-pinned="right"]):nth-child(n+2)) {
1503
+ border-left: var(--osdk-table-pinned-column-border);
1504
+ }
1505
+
1506
+ .TableCell-module__osdkTableCell___gVl6jToJ:has([role="checkbox"]) {
1507
+ justify-content: center;
1508
+ padding: 0;
1509
+ }
1510
+
1511
+ .TableCell-module__osdkTableCellContent___tcj6DRaU:not(:has([role="checkbox"])) {
1512
+ overflow: hidden;
1513
+ text-overflow: ellipsis;
1514
+ white-space: nowrap;
1515
+ text-align: left;
1516
+ }
1517
+
1518
+ .TableCell-module__osdkCheckboxContainer___Ex-KJho3 {
1519
+ display: flex;
1520
+ align-items: center;
1521
+ justify-content: center;
1522
+ width: 100%;
1523
+ height: 100%;
1524
+ }
1525
+
1526
+
1527
+ /* object-table/TableHeader.module.css */
1528
+ /*
1529
+ * Copyright 2025 Palantir Technologies, Inc. All rights reserved.
1530
+ *
1531
+ * Licensed under the Apache License, Version 2.0 (the "License");
1532
+ * you may not use this file except in compliance with the License.
1533
+ * You may obtain a copy of the License at
1534
+ *
1535
+ * http://www.apache.org/licenses/LICENSE-2.0
1536
+ *
1537
+ * Unless required by applicable law or agreed to in writing, software
1538
+ * distributed under the License is distributed on an "AS IS" BASIS,
1539
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1540
+ * See the License for the specific language governing permissions and
1541
+ * limitations under the License.
1542
+ */
1543
+
1544
+ .TableHeader-module__osdkTableHeader___4Wzqkog9 {
1545
+ display: grid;
1546
+ position: sticky;
1547
+ top: 0;
1548
+ width: 100%;
1549
+ height: var(--osdk-table-header-height);
1550
+ z-index: var(--osdk-surface-z-index-1);
1551
+ background-color: var(--osdk-table-header-bg);
1552
+ }
1553
+
1554
+ .TableHeader-module__osdkTableHeader___4Wzqkog9[data-resizing="true"] {
1555
+ cursor: col-resize;
1556
+ user-select: none;
1557
+ }
1558
+
1559
+ .TableHeader-module__osdkTableHeaderRow___lUjQpm91 {
1560
+ display: flex;
1561
+ width: 100%;
1562
+ border-bottom: var(--osdk-table-border);
1563
+ }
1564
+
1565
+ .TableHeader-module__osdkTableHeaderCell___iS9lGU8Z {
1566
+ display: flex;
1567
+ align-items: center;
1568
+ text-align: left;
1569
+ position: relative;
1570
+ padding: var(--osdk-table-cell-padding);
1571
+ font-weight: var(--osdk-table-header-fontWeight);
1572
+ font-size: var(--osdk-table-header-fontSize);
1573
+ color: var(--osdk-table-header-color);
1574
+ border-top: var(--osdk-table-border);
1575
+ border-right: var(--osdk-table-header-divider);
1576
+ background-color: inherit;
1577
+
1578
+ &:first-child {
1579
+ border-left: var(--osdk-table-border);
1580
+ }
1581
+
1582
+ &:last-child {
1583
+ border-right: var(--osdk-table-border);
1584
+ }
1585
+ }
1586
+
1587
+ .TableHeader-module__osdkTableHeaderCell___iS9lGU8Z[data-pinned="left"],
1588
+ .TableHeader-module__osdkTableHeaderCell___iS9lGU8Z[data-pinned="right"] {
1589
+ position: sticky;
1590
+ z-index: var(--osdk-surface-z-index-2);
1591
+ background-color: var(--osdk-table-header-bg);
1592
+ }
1593
+
1594
+ /* Last left-pinned column - no left-pinned siblings after it */
1595
+ .TableHeader-module__osdkTableHeaderCell___iS9lGU8Z[data-pinned="left"]:not(:has(~ [data-pinned="left"])) {
1596
+ border-right: var(--osdk-table-pinned-column-border);
1597
+ }
1598
+
1599
+ /* First right-pinned column - no right-pinned siblings before it */
1600
+ .TableHeader-module__osdkTableHeaderCell___iS9lGU8Z[data-pinned="right"]:not(
1601
+ :has(~ [data-pinned="right"]):nth-child(n + 2)
1602
+ ) {
1603
+ border-left: var(--osdk-table-pinned-column-border);
1604
+ }
1605
+
1606
+ .TableHeader-module__osdkTableHeaderCell___iS9lGU8Z:has([role="checkbox"]) {
1607
+ justify-content: center;
1608
+ }
1609
+
1610
+ .TableHeader-module__osdkTableHeaderResizer___qpjGLncF {
1611
+ background: none;
1612
+ cursor: col-resize;
1613
+ height: 100%;
1614
+ position: absolute;
1615
+ right: calc(-1 * var(--osdk-table-border-width));
1616
+ top: 0;
1617
+ touch-action: none;
1618
+ width: 3px;
1619
+ z-index: var(--osdk-surface-z-index-2);
1620
+
1621
+ &:hover {
1622
+ background: var(--osdk-table-resizer-color-hover);
1623
+ }
1624
+
1625
+ &:active {
1626
+ background: var(--osdk-table-resizer-color-active);
1627
+ }
1628
+ }
1629
+
1630
+ .TableHeader-module__osdkLoadingHeaderCell___gohWQuYX {
1631
+ height: var(--osdk-table-header-fontSize);
1632
+ flex: 1;
1633
+ }
1634
+
1635
+
1636
+ /* object-table/TableHeaderContent.module.css */
1637
+ /*
1638
+ * Copyright 2025 Palantir Technologies, Inc. All rights reserved.
1639
+ *
1640
+ * Licensed under the Apache License, Version 2.0 (the "License");
1641
+ * you may not use this file except in compliance with the License.
1642
+ * You may obtain a copy of the License at
1643
+ *
1644
+ * http://www.apache.org/licenses/LICENSE-2.0
1645
+ *
1646
+ * Unless required by applicable law or agreed to in writing, software
1647
+ * distributed under the License is distributed on an "AS IS" BASIS,
1648
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1649
+ * See the License for the specific language governing permissions and
1650
+ * limitations under the License.
1651
+ */
1652
+
1653
+ .TableHeaderContent-module__osdkHeaderContent___UQM9R9VU {
1654
+ display: -webkit-box;
1655
+ -webkit-box-orient: vertical;
1656
+ -webkit-line-clamp: 2;
1657
+ line-clamp: 2;
1658
+ text-align: left;
1659
+ overflow: hidden;
1660
+ text-overflow: ellipsis;
1661
+ }
1662
+
1663
+ .TableHeaderContent-module__osdkHeaderContent___UQM9R9VU:has([role="checkbox"]) {
1664
+ display: flex;
1665
+ justify-content: center;
1666
+ }
1667
+
1668
+
1669
+ /* object-table/TableHeaderWithPopover.module.css */
1670
+ /*
1671
+ * Copyright 2025 Palantir Technologies, Inc. All rights reserved.
1672
+ *
1673
+ * Licensed under the Apache License, Version 2.0 (the "License");
1674
+ * you may not use this file except in compliance with the License.
1675
+ * You may obtain a copy of the License at
1676
+ *
1677
+ * http://www.apache.org/licenses/LICENSE-2.0
1678
+ *
1679
+ * Unless required by applicable law or agreed to in writing, software
1680
+ * distributed under the License is distributed on an "AS IS" BASIS,
1681
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1682
+ * See the License for the specific language governing permissions and
1683
+ * limitations under the License.
1684
+ */
1685
+
1686
+ .TableHeaderWithPopover-module__osdkCenterContainer___7EQ0efaV {
1687
+ display: flex;
1688
+ align-items: center;
1689
+ justify-content: center;
1690
+ }
1691
+
1692
+ .TableHeaderWithPopover-module__osdkContentGap___ydRnh6Gk {
1693
+ display: flex;
1694
+ gap: var(--osdk-surface-spacing);
1695
+ }
1696
+
1697
+ .TableHeaderWithPopover-module__osdkHeaderContainer___Yp1FKb-z {
1698
+ justify-content: space-between;
1699
+ flex: 1;
1700
+ min-width: 0;
1701
+ align-self: stretch;
1702
+ }
1703
+
1704
+ .TableHeaderWithPopover-module__osdkHeaderContentLeft___PpdFKG5D {
1705
+ min-width: 0;
1706
+ flex-shrink: 1;
1707
+ }
1708
+
1709
+ .TableHeaderWithPopover-module__osdkHeaderContentRight___-cSZMBVb {
1710
+ flex-shrink: 0;
1711
+ }
1712
+
1713
+ .TableHeaderWithPopover-module__osdkHeaderText___VnBa1IL3 {
1714
+ display: -webkit-box;
1715
+ -webkit-box-orient: vertical;
1716
+ -webkit-line-clamp: 3;
1717
+ line-clamp: 3;
1718
+ overflow: hidden;
1719
+ text-overflow: ellipsis;
1720
+ flex-grow: 1;
1721
+ }
1722
+
1723
+ .TableHeaderWithPopover-module__osdkHeaderPopoverTrigger___Y5Q22NIE {
1724
+ padding: var(--osdk-table-header-menu-padding);
1725
+ flex-shrink: 0;
1726
+ flex-grow: 0;
1727
+ background-color: var(--osdk-table-header-menu-bg);
1728
+ border: var(--osdk-table-header-menu-border);
1729
+ border-radius: var(--osdk-surface-border-radius);
1730
+ color: var(--osdk-table-header-menu-color);
1731
+ cursor: pointer;
1732
+ user-select: none;
1733
+
1734
+ &:hover {
1735
+ background-color: var(--osdk-table-header-menu-bg-hover);
1736
+ }
1737
+
1738
+ &[data-popup-open] {
1739
+ background-color: var(--osdk-table-header-menu-bg-active);
1740
+ color: var(--osdk-table-header-menu-color-active);
1741
+ }
1742
+
1743
+ &:focus {
1744
+ outline: none;
1745
+ }
1746
+
1747
+ &:focus-visible {
1748
+ outline: var(--osdk-focus-outline);
1749
+ outline-offset: var(--osdk-focus-visible-outline-offset);
1750
+ }
1751
+ }
1752
+
1753
+ .TableHeaderWithPopover-module__osdkHeaderIcon___lgyu9GmV {
1754
+ width: var(--osdk-iconography-size-small);
1755
+ height: var(--osdk-iconography-size-small);
1756
+ }
1757
+
1758
+ .TableHeaderWithPopover-module__osdkHeaderPopup___TMO39wLW {
1759
+ box-sizing: border-box;
1760
+ padding: var(--osdk-surface-spacing);
1761
+ border-radius: var(--osdk-surface-border-radius);
1762
+ border: var(--osdk-surface-border);
1763
+ background-color: var(--osdk-surface-background-color-default-rest);
1764
+ color: var(--osdk-typography-color-default-rest);
1765
+ box-shadow: var(--osdk-surface-shadow-2);
1766
+ font-size: var(--osdk-typography-size-body-medium);
1767
+
1768
+ &:focus {
1769
+ outline: none;
1770
+ }
1771
+ }
1772
+
1773
+ .TableHeaderWithPopover-module__osdkHeaderMenuItem___f-D5iGwi {
1774
+ justify-content: flex-start;
1775
+ padding: var(--osdk-surface-spacing);
1776
+ cursor: pointer;
1777
+
1778
+ &:hover {
1779
+ background-color: var(--osdk-surface-background-color-default-hover);
1780
+ border-radius: var(--osdk-surface-border-radius);
1781
+ }
1782
+
1783
+ &:focus {
1784
+ outline: none;
1785
+ }
1786
+
1787
+ &:focus-visible {
1788
+ outline: var(--osdk-focus-outline);
1789
+ outline-offset: var(--osdk-focus-visible-outline-offset);
1790
+ }
1791
+ }
1792
+
1793
+ .TableHeaderWithPopover-module__osdkHeaderMenuItem___f-D5iGwi .TableHeaderWithPopover-module__osdkHeaderActiveMenuItem___K007KHkr {
1794
+ background-color: var(--osdk-intent-primary-rest);
1795
+ color: var(--osdk-intent-primary-foreground);
1796
+
1797
+ &:hover {
1798
+ background-color: var(--osdk-intent-primary-hover);
1799
+ }
1800
+
1801
+ &:active {
1802
+ background-color: var(--osdk-intent-primary-active);
1803
+ }
1804
+ }
1805
+
1806
+ .TableHeaderWithPopover-module__sortIndex___WDA6gCRz {
1807
+ font-size: var(--osdk-typography-size-body-x-small);
1808
+ margin-left: var(--osdk-surface-spacing);
1809
+ color: var(--osdk-typography-color-muted);
1810
+ }
1811
+
1812
+
1813
+ /* object-table/TableRow.module.css */
1814
+ /*
1815
+ * Copyright 2025 Palantir Technologies, Inc. All rights reserved.
1816
+ *
1817
+ * Licensed under the Apache License, Version 2.0 (the "License");
1818
+ * you may not use this file except in compliance with the License.
1819
+ * You may obtain a copy of the License at
1820
+ *
1821
+ * http://www.apache.org/licenses/LICENSE-2.0
1822
+ *
1823
+ * Unless required by applicable law or agreed to in writing, software
1824
+ * distributed under the License is distributed on an "AS IS" BASIS,
1825
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1826
+ * See the License for the specific language governing permissions and
1827
+ * limitations under the License.
1828
+ */
1829
+
1830
+ .TableRow-module__osdkTableRow___sjVwZnzA {
1831
+ position: absolute;
1832
+ display: flex;
1833
+ background-color: var(--osdk-table-row-bg-default);
1834
+ border-top: var(--osdk-table-row-divider);
1835
+ border-bottom: var(--osdk-table-border-width) solid transparent;
1836
+
1837
+ &:last-child {
1838
+ border-bottom: var(--osdk-table-border);
1839
+ }
1840
+
1841
+ /* Zebra rows */
1842
+ &:nth-child(even) {
1843
+ background-color: var(
1844
+ --osdk-table-row-bg-alternate,
1845
+ var(--osdk-table-row-bg-default)
1846
+ );
1847
+ }
1848
+
1849
+ &:hover {
1850
+ z-index: 1;
1851
+ background-color: var(
1852
+ --osdk-table-row-bg-hover,
1853
+ var(--osdk-surface-background-color-default-hover)
1854
+ );
1855
+ border-top-color: var(--osdk-table-row-border-color-hover);
1856
+ border-bottom-color: var(--osdk-table-row-border-color-hover);
1857
+ }
1858
+
1859
+ &[data-selected="true"] {
1860
+ z-index: 2;
1861
+ background-color: var(--osdk-table-row-bg-active);
1862
+ border-top-color: var(--osdk-table-row-border-color-active);
1863
+ border-bottom-color: var(--osdk-table-row-border-color-active);
1864
+ }
1865
+
1866
+ &[data-selected="true"] + &[data-selected="true"] {
1867
+ border-top-color: transparent;
1868
+ }
1869
+
1870
+ &[data-selected="true"]:has(+ &[data-selected="true"]) {
1871
+ border-bottom-color: transparent;
1872
+ }
1873
+ }
1874
+
1875
+