@osdk/react-components 0.1.0 → 0.2.0-beta.10

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 (609) hide show
  1. package/CHANGELOG.md +98 -19
  2. package/README.md +56 -23
  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__/LinkedPropertyInput.test.js +202 -0
  37. package/build/browser/filter-list/__tests__/LinkedPropertyInput.test.js.map +1 -0
  38. package/build/browser/filter-list/__tests__/dateUtils.test.js +55 -0
  39. package/build/browser/filter-list/__tests__/dateUtils.test.js.map +1 -0
  40. package/build/browser/filter-list/__tests__/filterStateToWhereClause.test.js +296 -0
  41. package/build/browser/filter-list/__tests__/filterStateToWhereClause.test.js.map +1 -0
  42. package/build/browser/filter-list/__tests__/getFilterKey.test.js +53 -0
  43. package/build/browser/filter-list/__tests__/getFilterKey.test.js.map +1 -0
  44. package/build/browser/filter-list/__tests__/testUtils.js +203 -0
  45. package/build/browser/filter-list/__tests__/testUtils.js.map +1 -0
  46. package/build/browser/filter-list/base/FilterInput.js +542 -0
  47. package/build/browser/filter-list/base/FilterInput.js.map +1 -0
  48. package/build/browser/filter-list/base/FilterList.js +77 -0
  49. package/build/browser/filter-list/base/FilterList.js.map +1 -0
  50. package/build/browser/filter-list/base/FilterList.module.css +67 -0
  51. package/build/browser/filter-list/base/FilterList.module.css.js +8 -0
  52. package/build/browser/filter-list/base/FilterListContent.js +57 -0
  53. package/build/browser/filter-list/base/FilterListContent.js.map +1 -0
  54. package/build/browser/filter-list/base/FilterListContent.module.css +27 -0
  55. package/build/browser/filter-list/base/FilterListContent.module.css.js +7 -0
  56. package/build/browser/filter-list/base/FilterListHeader.js +58 -0
  57. package/build/browser/filter-list/base/FilterListHeader.js.map +1 -0
  58. package/build/browser/filter-list/base/FilterListHeader.module.css +127 -0
  59. package/build/browser/filter-list/base/FilterListHeader.module.css.js +13 -0
  60. package/build/browser/filter-list/base/FilterListItem.js +75 -0
  61. package/build/browser/filter-list/base/FilterListItem.js.map +1 -0
  62. package/build/browser/filter-list/base/FilterListItem.module.css +38 -0
  63. package/build/browser/filter-list/base/FilterListItem.module.css.js +9 -0
  64. package/build/browser/filter-list/base/index.js +22 -0
  65. package/build/browser/filter-list/base/index.js.map +1 -0
  66. package/build/browser/filter-list/base/inputs/CheckboxListInput.js +75 -0
  67. package/build/browser/filter-list/base/inputs/CheckboxListInput.js.map +1 -0
  68. package/build/browser/filter-list/base/inputs/CheckboxListInput.module.css +42 -0
  69. package/build/browser/filter-list/base/inputs/CheckboxListInput.module.css.js +9 -0
  70. package/build/browser/filter-list/base/inputs/ContainsTextInput.js +85 -0
  71. package/build/browser/filter-list/base/inputs/ContainsTextInput.js.map +1 -0
  72. package/build/browser/filter-list/base/inputs/ContainsTextInput.module.css +91 -0
  73. package/build/browser/filter-list/base/inputs/ContainsTextInput.module.css.js +10 -0
  74. package/build/browser/filter-list/base/inputs/DateRangeInput.js +37 -0
  75. package/build/browser/filter-list/base/inputs/DateRangeInput.js.map +1 -0
  76. package/build/browser/filter-list/base/inputs/LinkedPropertyInput.js +237 -0
  77. package/build/browser/filter-list/base/inputs/LinkedPropertyInput.js.map +1 -0
  78. package/build/browser/filter-list/base/inputs/LinkedPropertyInput.module.css +20 -0
  79. package/build/browser/filter-list/base/inputs/LinkedPropertyInput.module.css.js +6 -0
  80. package/build/browser/filter-list/base/inputs/ListogramInput.js +98 -0
  81. package/build/browser/filter-list/base/inputs/ListogramInput.js.map +1 -0
  82. package/build/browser/filter-list/base/inputs/ListogramInput.module.css +88 -0
  83. package/build/browser/filter-list/base/inputs/ListogramInput.module.css.js +12 -0
  84. package/build/browser/filter-list/base/inputs/MultiDateInput.js +82 -0
  85. package/build/browser/filter-list/base/inputs/MultiDateInput.js.map +1 -0
  86. package/build/browser/filter-list/base/inputs/MultiDateInput.module.css +54 -0
  87. package/build/browser/filter-list/base/inputs/MultiDateInput.module.css.js +9 -0
  88. package/build/browser/filter-list/base/inputs/MultiSelectInput.js +100 -0
  89. package/build/browser/filter-list/base/inputs/MultiSelectInput.js.map +1 -0
  90. package/build/browser/filter-list/base/inputs/MultiSelectInput.module.css +35 -0
  91. package/build/browser/filter-list/base/inputs/MultiSelectInput.module.css.js +9 -0
  92. package/build/browser/filter-list/base/inputs/NullValueWrapper.js +76 -0
  93. package/build/browser/filter-list/base/inputs/NullValueWrapper.js.map +1 -0
  94. package/build/browser/filter-list/base/inputs/NullValueWrapper.module.css +49 -0
  95. package/build/browser/filter-list/base/inputs/NullValueWrapper.module.css.js +10 -0
  96. package/build/browser/filter-list/base/inputs/NumberRangeInput.js +48 -0
  97. package/build/browser/filter-list/base/inputs/NumberRangeInput.js.map +1 -0
  98. package/build/browser/filter-list/base/inputs/RangeInput.js +187 -0
  99. package/build/browser/filter-list/base/inputs/RangeInput.js.map +1 -0
  100. package/build/browser/filter-list/base/inputs/RangeInput.module.css +81 -0
  101. package/build/browser/filter-list/base/inputs/RangeInput.module.css.js +13 -0
  102. package/build/browser/filter-list/base/inputs/SingleDateInput.js +61 -0
  103. package/build/browser/filter-list/base/inputs/SingleDateInput.js.map +1 -0
  104. package/build/browser/filter-list/base/inputs/SingleDateInput.module.css +63 -0
  105. package/build/browser/filter-list/base/inputs/SingleDateInput.module.css.js +9 -0
  106. package/build/browser/filter-list/base/inputs/SingleSelectInput.js +95 -0
  107. package/build/browser/filter-list/base/inputs/SingleSelectInput.js.map +1 -0
  108. package/build/browser/filter-list/base/inputs/SingleSelectInput.module.css +55 -0
  109. package/build/browser/filter-list/base/inputs/SingleSelectInput.module.css.js +8 -0
  110. package/build/browser/filter-list/base/inputs/TextTagsInput.js +141 -0
  111. package/build/browser/filter-list/base/inputs/TextTagsInput.js.map +1 -0
  112. package/build/browser/filter-list/base/inputs/TextTagsInput.module.css +25 -0
  113. package/build/browser/filter-list/base/inputs/TextTagsInput.module.css.js +7 -0
  114. package/build/browser/filter-list/base/inputs/TimelineInput.js +74 -0
  115. package/build/browser/filter-list/base/inputs/TimelineInput.js.map +1 -0
  116. package/build/browser/filter-list/base/inputs/TimelineInput.module.css +73 -0
  117. package/build/browser/filter-list/base/inputs/TimelineInput.module.css.js +10 -0
  118. package/build/browser/filter-list/base/inputs/ToggleInput.js +43 -0
  119. package/build/browser/filter-list/base/inputs/ToggleInput.js.map +1 -0
  120. package/build/browser/filter-list/base/inputs/ToggleInput.module.css +34 -0
  121. package/build/browser/filter-list/base/inputs/ToggleInput.module.css.js +8 -0
  122. package/build/browser/filter-list/base/inputs/createHistogramBuckets.js +53 -0
  123. package/build/browser/filter-list/base/inputs/createHistogramBuckets.js.map +1 -0
  124. package/build/browser/filter-list/base/inputs/dateUtils.js +57 -0
  125. package/build/browser/filter-list/base/inputs/dateUtils.js.map +1 -0
  126. package/build/browser/filter-list/base/inputs/index.js +25 -0
  127. package/build/browser/filter-list/base/inputs/index.js.map +1 -0
  128. package/build/browser/filter-list/base/inputs/shared.module.css +79 -0
  129. package/build/browser/filter-list/base/inputs/shared.module.css.js +11 -0
  130. package/build/browser/filter-list/hooks/__tests__/useFilterListState.test.js +128 -0
  131. package/build/browser/filter-list/hooks/__tests__/useFilterListState.test.js.map +1 -0
  132. package/build/browser/filter-list/hooks/useFilterListState.js +119 -0
  133. package/build/browser/filter-list/hooks/useFilterListState.js.map +1 -0
  134. package/build/browser/filter-list/hooks/usePropertyAggregation.js +92 -0
  135. package/build/browser/filter-list/hooks/usePropertyAggregation.js.map +1 -0
  136. package/build/browser/filter-list/types/AddFilterMenuTypes.js +2 -0
  137. package/build/browser/filter-list/types/AddFilterMenuTypes.js.map +1 -0
  138. package/build/browser/filter-list/types/CustomRendererTypes.js +2 -0
  139. package/build/browser/filter-list/types/CustomRendererTypes.js.map +1 -0
  140. package/build/browser/filter-list/types/FilterPanelTypes.js +2 -0
  141. package/build/browser/filter-list/types/FilterPanelTypes.js.map +1 -0
  142. package/build/browser/filter-list/types/KeywordSearchTypes.js +2 -0
  143. package/build/browser/filter-list/types/KeywordSearchTypes.js.map +1 -0
  144. package/build/browser/filter-list/types/LinkedFilterTypes.js +2 -0
  145. package/build/browser/filter-list/types/LinkedFilterTypes.js.map +1 -0
  146. package/build/browser/filter-list/types/index.js +22 -0
  147. package/build/browser/filter-list/types/index.js.map +1 -0
  148. package/build/browser/filter-list/utils/aggregationHelpers.js +44 -0
  149. package/build/browser/filter-list/utils/aggregationHelpers.js.map +1 -0
  150. package/build/browser/filter-list/utils/assertUnreachable.js +25 -0
  151. package/build/browser/filter-list/utils/assertUnreachable.js.map +1 -0
  152. package/build/browser/filter-list/utils/coerceFilterValue.js +33 -0
  153. package/build/browser/filter-list/utils/coerceFilterValue.js.map +1 -0
  154. package/build/browser/filter-list/utils/filterStateToWhereClause.js +337 -0
  155. package/build/browser/filter-list/utils/filterStateToWhereClause.js.map +1 -0
  156. package/build/browser/filter-list/utils/filterValues.js +55 -0
  157. package/build/browser/filter-list/utils/filterValues.js.map +1 -0
  158. package/build/browser/filter-list/utils/getFilterKey.js +34 -0
  159. package/build/browser/filter-list/utils/getFilterKey.js.map +1 -0
  160. package/build/browser/object-table/CellContextMenu.js +23 -20
  161. package/build/browser/object-table/CellContextMenu.module.css +20 -0
  162. package/build/browser/object-table/CellContextMenu.module.css.js +6 -0
  163. package/build/browser/object-table/ColumnConfigDialog.js +259 -0
  164. package/build/browser/object-table/ColumnConfigDialog.js.map +1 -0
  165. package/build/browser/object-table/ColumnConfigDialog.module.css +247 -0
  166. package/build/browser/object-table/ColumnConfigDialog.module.css.js +29 -0
  167. package/build/browser/object-table/DefaultCellRenderer.js +43 -0
  168. package/build/browser/object-table/DefaultCellRenderer.js.map +1 -0
  169. package/build/browser/object-table/EditableCell.js +91 -0
  170. package/build/browser/object-table/EditableCell.js.map +1 -0
  171. package/build/browser/object-table/EditableCell.module.css +3 -0
  172. package/build/browser/object-table/EditableCell.module.css.js +6 -0
  173. package/build/browser/object-table/LoadingCell.js +24 -29
  174. package/build/browser/object-table/LoadingCell.module.css +48 -0
  175. package/build/browser/object-table/LoadingCell.module.css.js +8 -0
  176. package/build/browser/object-table/LoadingRow.js +24 -50
  177. package/build/browser/object-table/LoadingStateTable.js +49 -343
  178. package/build/browser/object-table/LoadingStateTable.js.map +1 -1
  179. package/build/browser/object-table/MultiColumnSortDialog.js +178 -0
  180. package/build/browser/object-table/MultiColumnSortDialog.js.map +1 -0
  181. package/build/browser/object-table/MultiColumnSortDialog.module.css +195 -0
  182. package/build/browser/object-table/MultiColumnSortDialog.module.css.js +22 -0
  183. package/build/browser/object-table/NonIdealState.js +23 -20
  184. package/build/browser/object-table/NonIdealState.module.css +27 -0
  185. package/build/browser/object-table/NonIdealState.module.css.js +7 -0
  186. package/build/browser/object-table/ObjectTable.js +74 -15
  187. package/build/browser/object-table/ObjectTable.js.map +1 -1
  188. package/build/browser/object-table/ObjectTableApi.js.map +1 -1
  189. package/build/browser/object-table/SelectionCells.js +15 -4
  190. package/build/browser/object-table/SelectionCells.js.map +1 -1
  191. package/build/browser/object-table/SortableItemsList.js +35 -0
  192. package/build/browser/object-table/SortableItemsList.js.map +1 -0
  193. package/build/browser/object-table/Table.js +70 -935
  194. package/build/browser/object-table/Table.js.map +1 -1
  195. package/build/browser/object-table/Table.module.css +45 -0
  196. package/build/browser/object-table/Table.module.css.js +8 -0
  197. package/build/browser/object-table/TableBody.js +36 -260
  198. package/build/browser/object-table/TableBody.module.css +22 -0
  199. package/build/browser/object-table/TableBody.module.css.js +6 -0
  200. package/build/browser/object-table/TableCell.js +31 -111
  201. package/build/browser/object-table/TableCell.module.css +83 -0
  202. package/build/browser/object-table/TableCell.module.css.js +8 -0
  203. package/build/browser/object-table/TableHeader.js +126 -216
  204. package/build/browser/object-table/TableHeader.js.map +1 -1
  205. package/build/browser/object-table/TableHeader.module.css +108 -0
  206. package/build/browser/object-table/TableHeader.module.css.js +10 -0
  207. package/build/browser/object-table/TableHeaderContent.js +21 -18
  208. package/build/browser/object-table/TableHeaderContent.module.css +30 -0
  209. package/build/browser/object-table/TableHeaderContent.module.css.js +6 -0
  210. package/build/browser/object-table/TableHeaderWithPopover.js +110 -93
  211. package/build/browser/object-table/TableHeaderWithPopover.js.map +1 -1
  212. package/build/browser/object-table/TableHeaderWithPopover.module.css +141 -0
  213. package/build/browser/object-table/TableHeaderWithPopover.module.css.js +17 -0
  214. package/build/browser/object-table/TableRow.js +26 -144
  215. package/build/browser/object-table/TableRow.module.css +62 -0
  216. package/build/browser/object-table/TableRow.module.css.js +6 -0
  217. package/build/browser/object-table/__tests__/useEditableTable.test.js +197 -0
  218. package/build/browser/object-table/__tests__/useEditableTable.test.js.map +1 -0
  219. package/build/browser/object-table/hooks/__tests__/useColumnDefs.test.js +14 -2
  220. package/build/browser/object-table/hooks/__tests__/useColumnDefs.test.js.map +1 -1
  221. package/build/browser/object-table/hooks/__tests__/useColumnVisibility.test.js +160 -138
  222. package/build/browser/object-table/hooks/__tests__/useColumnVisibility.test.js.map +1 -1
  223. package/build/browser/object-table/hooks/__tests__/useObjectTableData.test.js +113 -25
  224. package/build/browser/object-table/hooks/__tests__/useObjectTableData.test.js.map +1 -1
  225. package/build/browser/object-table/hooks/__tests__/useRowSelection.test.js +48 -0
  226. package/build/browser/object-table/hooks/__tests__/useRowSelection.test.js.map +1 -1
  227. package/build/browser/object-table/hooks/__tests__/useSelectionColumn.test.js +27 -82
  228. package/build/browser/object-table/hooks/__tests__/useSelectionColumn.test.js.map +1 -1
  229. package/build/browser/object-table/hooks/__tests__/useTableSorting.test.js +290 -0
  230. package/build/browser/object-table/hooks/__tests__/useTableSorting.test.js.map +1 -1
  231. package/build/browser/object-table/hooks/useColumnDefs.js +16 -3
  232. package/build/browser/object-table/hooks/useColumnDefs.js.map +1 -1
  233. package/build/browser/object-table/hooks/useColumnResize.js +45 -0
  234. package/build/browser/object-table/hooks/useColumnResize.js.map +1 -0
  235. package/build/browser/object-table/hooks/useColumnVisibility.js +52 -20
  236. package/build/browser/object-table/hooks/useColumnVisibility.js.map +1 -1
  237. package/build/browser/object-table/hooks/useEditableTable.js +57 -0
  238. package/build/browser/object-table/hooks/useEditableTable.js.map +1 -0
  239. package/build/browser/object-table/hooks/useObjectTableData.js +42 -7
  240. package/build/browser/object-table/hooks/useObjectTableData.js.map +1 -1
  241. package/build/browser/object-table/hooks/useRowSelection.js +31 -10
  242. package/build/browser/object-table/hooks/useRowSelection.js.map +1 -1
  243. package/build/browser/object-table/hooks/useSelectionColumn.js +15 -6
  244. package/build/browser/object-table/hooks/useSelectionColumn.js.map +1 -1
  245. package/build/browser/object-table/utils/getCellId.js +27 -0
  246. package/build/browser/object-table/utils/getCellId.js.map +1 -0
  247. package/build/browser/object-table/utils/types.js +2 -0
  248. package/build/browser/object-table/utils/types.js.map +1 -0
  249. package/build/browser/public/experimental.js +2 -0
  250. package/build/browser/public/experimental.js.map +1 -1
  251. package/build/browser/shared/ErrorBoundary.js +62 -0
  252. package/build/browser/shared/ErrorBoundary.js.map +1 -0
  253. package/build/browser/shared/ErrorBoundary.module.css +55 -0
  254. package/build/browser/shared/ErrorBoundary.module.css.js +8 -0
  255. package/build/browser/styles.css +3073 -0
  256. package/build/cjs/public/experimental.cjs +4026 -240
  257. package/build/cjs/public/experimental.cjs.map +1 -1
  258. package/build/cjs/public/experimental.css +1834 -154
  259. package/build/cjs/public/experimental.css.map +1 -1
  260. package/build/cjs/public/experimental.d.cts +453 -50
  261. package/build/esm/base-components/action-button/ActionButton.js +31 -0
  262. package/build/esm/base-components/action-button/ActionButton.js.map +1 -0
  263. package/build/esm/base-components/action-button/ActionButton.module.css +70 -0
  264. package/build/esm/base-components/checkbox/Checkbox.module.css +1 -1
  265. package/build/esm/base-components/combobox/Combobox.js +124 -0
  266. package/build/esm/base-components/combobox/Combobox.js.map +1 -0
  267. package/build/esm/base-components/combobox/Combobox.module.css +177 -0
  268. package/build/esm/base-components/dialog/Dialog.js +52 -0
  269. package/build/esm/base-components/dialog/Dialog.js.map +1 -0
  270. package/build/esm/base-components/dialog/Dialog.module.css +101 -0
  271. package/build/esm/base-components/draggable-list/DraggableList.js +155 -0
  272. package/build/esm/base-components/draggable-list/DraggableList.js.map +1 -0
  273. package/build/esm/base-components/draggable-list/DraggableList.module.css +108 -0
  274. package/build/esm/base-components/search-bar/SearchBar.js +44 -0
  275. package/build/esm/base-components/search-bar/SearchBar.js.map +1 -0
  276. package/build/esm/base-components/search-bar/SearchBar.module.css +53 -0
  277. package/build/esm/base-components/select/Select.js +89 -0
  278. package/build/esm/base-components/select/Select.js.map +1 -0
  279. package/build/esm/base-components/select/Select.module.css +138 -0
  280. package/build/esm/base-components/switch/Switch.js +33 -0
  281. package/build/esm/base-components/switch/Switch.js.map +1 -0
  282. package/build/esm/base-components/switch/Switch.module.css +91 -0
  283. package/build/esm/filter-list/FilterListApi.js.map +1 -1
  284. package/build/esm/filter-list/FilterListItemApi.js.map +1 -1
  285. package/build/esm/filter-list/__tests__/LinkedPropertyInput.test.js +202 -0
  286. package/build/esm/filter-list/__tests__/LinkedPropertyInput.test.js.map +1 -0
  287. package/build/esm/filter-list/__tests__/dateUtils.test.js +55 -0
  288. package/build/esm/filter-list/__tests__/dateUtils.test.js.map +1 -0
  289. package/build/esm/filter-list/__tests__/filterStateToWhereClause.test.js +296 -0
  290. package/build/esm/filter-list/__tests__/filterStateToWhereClause.test.js.map +1 -0
  291. package/build/esm/filter-list/__tests__/getFilterKey.test.js +53 -0
  292. package/build/esm/filter-list/__tests__/getFilterKey.test.js.map +1 -0
  293. package/build/esm/filter-list/__tests__/testUtils.js +203 -0
  294. package/build/esm/filter-list/__tests__/testUtils.js.map +1 -0
  295. package/build/esm/filter-list/base/FilterInput.js +542 -0
  296. package/build/esm/filter-list/base/FilterInput.js.map +1 -0
  297. package/build/esm/filter-list/base/FilterList.js +77 -0
  298. package/build/esm/filter-list/base/FilterList.js.map +1 -0
  299. package/build/esm/filter-list/base/FilterList.module.css +67 -0
  300. package/build/esm/filter-list/base/FilterListContent.js +57 -0
  301. package/build/esm/filter-list/base/FilterListContent.js.map +1 -0
  302. package/build/esm/filter-list/base/FilterListContent.module.css +27 -0
  303. package/build/esm/filter-list/base/FilterListHeader.js +58 -0
  304. package/build/esm/filter-list/base/FilterListHeader.js.map +1 -0
  305. package/build/esm/filter-list/base/FilterListHeader.module.css +127 -0
  306. package/build/esm/filter-list/base/FilterListItem.js +75 -0
  307. package/build/esm/filter-list/base/FilterListItem.js.map +1 -0
  308. package/build/esm/filter-list/base/FilterListItem.module.css +38 -0
  309. package/build/esm/filter-list/base/index.js +22 -0
  310. package/build/esm/filter-list/base/index.js.map +1 -0
  311. package/build/esm/filter-list/base/inputs/CheckboxListInput.js +75 -0
  312. package/build/esm/filter-list/base/inputs/CheckboxListInput.js.map +1 -0
  313. package/build/esm/filter-list/base/inputs/CheckboxListInput.module.css +42 -0
  314. package/build/esm/filter-list/base/inputs/ContainsTextInput.js +85 -0
  315. package/build/esm/filter-list/base/inputs/ContainsTextInput.js.map +1 -0
  316. package/build/esm/filter-list/base/inputs/ContainsTextInput.module.css +91 -0
  317. package/build/esm/filter-list/base/inputs/DateRangeInput.js +37 -0
  318. package/build/esm/filter-list/base/inputs/DateRangeInput.js.map +1 -0
  319. package/build/esm/filter-list/base/inputs/LinkedPropertyInput.js +237 -0
  320. package/build/esm/filter-list/base/inputs/LinkedPropertyInput.js.map +1 -0
  321. package/build/esm/filter-list/base/inputs/LinkedPropertyInput.module.css +20 -0
  322. package/build/esm/filter-list/base/inputs/ListogramInput.js +98 -0
  323. package/build/esm/filter-list/base/inputs/ListogramInput.js.map +1 -0
  324. package/build/esm/filter-list/base/inputs/ListogramInput.module.css +88 -0
  325. package/build/esm/filter-list/base/inputs/MultiDateInput.js +82 -0
  326. package/build/esm/filter-list/base/inputs/MultiDateInput.js.map +1 -0
  327. package/build/esm/filter-list/base/inputs/MultiDateInput.module.css +54 -0
  328. package/build/esm/filter-list/base/inputs/MultiSelectInput.js +100 -0
  329. package/build/esm/filter-list/base/inputs/MultiSelectInput.js.map +1 -0
  330. package/build/esm/filter-list/base/inputs/MultiSelectInput.module.css +35 -0
  331. package/build/esm/filter-list/base/inputs/NullValueWrapper.js +76 -0
  332. package/build/esm/filter-list/base/inputs/NullValueWrapper.js.map +1 -0
  333. package/build/esm/filter-list/base/inputs/NullValueWrapper.module.css +49 -0
  334. package/build/esm/filter-list/base/inputs/NumberRangeInput.js +48 -0
  335. package/build/esm/filter-list/base/inputs/NumberRangeInput.js.map +1 -0
  336. package/build/esm/filter-list/base/inputs/RangeInput.js +187 -0
  337. package/build/esm/filter-list/base/inputs/RangeInput.js.map +1 -0
  338. package/build/esm/filter-list/base/inputs/RangeInput.module.css +81 -0
  339. package/build/esm/filter-list/base/inputs/SingleDateInput.js +61 -0
  340. package/build/esm/filter-list/base/inputs/SingleDateInput.js.map +1 -0
  341. package/build/esm/filter-list/base/inputs/SingleDateInput.module.css +63 -0
  342. package/build/esm/filter-list/base/inputs/SingleSelectInput.js +95 -0
  343. package/build/esm/filter-list/base/inputs/SingleSelectInput.js.map +1 -0
  344. package/build/esm/filter-list/base/inputs/SingleSelectInput.module.css +55 -0
  345. package/build/esm/filter-list/base/inputs/TextTagsInput.js +141 -0
  346. package/build/esm/filter-list/base/inputs/TextTagsInput.js.map +1 -0
  347. package/build/esm/filter-list/base/inputs/TextTagsInput.module.css +25 -0
  348. package/build/esm/filter-list/base/inputs/TimelineInput.js +74 -0
  349. package/build/esm/filter-list/base/inputs/TimelineInput.js.map +1 -0
  350. package/build/esm/filter-list/base/inputs/TimelineInput.module.css +73 -0
  351. package/build/esm/filter-list/base/inputs/ToggleInput.js +43 -0
  352. package/build/esm/filter-list/base/inputs/ToggleInput.js.map +1 -0
  353. package/build/esm/filter-list/base/inputs/ToggleInput.module.css +34 -0
  354. package/build/esm/filter-list/base/inputs/createHistogramBuckets.js +53 -0
  355. package/build/esm/filter-list/base/inputs/createHistogramBuckets.js.map +1 -0
  356. package/build/esm/filter-list/base/inputs/dateUtils.js +57 -0
  357. package/build/esm/filter-list/base/inputs/dateUtils.js.map +1 -0
  358. package/build/esm/filter-list/base/inputs/index.js +25 -0
  359. package/build/esm/filter-list/base/inputs/index.js.map +1 -0
  360. package/build/esm/filter-list/base/inputs/shared.module.css +79 -0
  361. package/build/esm/filter-list/hooks/__tests__/useFilterListState.test.js +128 -0
  362. package/build/esm/filter-list/hooks/__tests__/useFilterListState.test.js.map +1 -0
  363. package/build/esm/filter-list/hooks/useFilterListState.js +119 -0
  364. package/build/esm/filter-list/hooks/useFilterListState.js.map +1 -0
  365. package/build/esm/filter-list/hooks/usePropertyAggregation.js +92 -0
  366. package/build/esm/filter-list/hooks/usePropertyAggregation.js.map +1 -0
  367. package/build/esm/filter-list/types/AddFilterMenuTypes.js +2 -0
  368. package/build/esm/filter-list/types/AddFilterMenuTypes.js.map +1 -0
  369. package/build/esm/filter-list/types/CustomRendererTypes.js +2 -0
  370. package/build/esm/filter-list/types/CustomRendererTypes.js.map +1 -0
  371. package/build/esm/filter-list/types/FilterPanelTypes.js +2 -0
  372. package/build/esm/filter-list/types/FilterPanelTypes.js.map +1 -0
  373. package/build/esm/filter-list/types/KeywordSearchTypes.js +2 -0
  374. package/build/esm/filter-list/types/KeywordSearchTypes.js.map +1 -0
  375. package/build/esm/filter-list/types/LinkedFilterTypes.js +2 -0
  376. package/build/esm/filter-list/types/LinkedFilterTypes.js.map +1 -0
  377. package/build/esm/filter-list/types/index.js +22 -0
  378. package/build/esm/filter-list/types/index.js.map +1 -0
  379. package/build/esm/filter-list/utils/aggregationHelpers.js +44 -0
  380. package/build/esm/filter-list/utils/aggregationHelpers.js.map +1 -0
  381. package/build/esm/filter-list/utils/assertUnreachable.js +25 -0
  382. package/build/esm/filter-list/utils/assertUnreachable.js.map +1 -0
  383. package/build/esm/filter-list/utils/coerceFilterValue.js +33 -0
  384. package/build/esm/filter-list/utils/coerceFilterValue.js.map +1 -0
  385. package/build/esm/filter-list/utils/filterStateToWhereClause.js +337 -0
  386. package/build/esm/filter-list/utils/filterStateToWhereClause.js.map +1 -0
  387. package/build/esm/filter-list/utils/filterValues.js +55 -0
  388. package/build/esm/filter-list/utils/filterValues.js.map +1 -0
  389. package/build/esm/filter-list/utils/getFilterKey.js +34 -0
  390. package/build/esm/filter-list/utils/getFilterKey.js.map +1 -0
  391. package/build/esm/object-table/ColumnConfigDialog.js +259 -0
  392. package/build/esm/object-table/ColumnConfigDialog.js.map +1 -0
  393. package/build/esm/object-table/ColumnConfigDialog.module.css +247 -0
  394. package/build/esm/object-table/DefaultCellRenderer.js +43 -0
  395. package/build/esm/object-table/DefaultCellRenderer.js.map +1 -0
  396. package/build/esm/object-table/EditableCell.js +91 -0
  397. package/build/esm/object-table/EditableCell.js.map +1 -0
  398. package/build/esm/object-table/EditableCell.module.css +3 -0
  399. package/build/esm/object-table/LoadingStateTable.js +4 -4
  400. package/build/esm/object-table/LoadingStateTable.js.map +1 -1
  401. package/build/esm/object-table/MultiColumnSortDialog.js +178 -0
  402. package/build/esm/object-table/MultiColumnSortDialog.js.map +1 -0
  403. package/build/esm/object-table/MultiColumnSortDialog.module.css +195 -0
  404. package/build/esm/object-table/NonIdealState.module.css +2 -3
  405. package/build/esm/object-table/ObjectTable.js +74 -15
  406. package/build/esm/object-table/ObjectTable.js.map +1 -1
  407. package/build/esm/object-table/ObjectTableApi.js.map +1 -1
  408. package/build/esm/object-table/SelectionCells.js +15 -4
  409. package/build/esm/object-table/SelectionCells.js.map +1 -1
  410. package/build/esm/object-table/SortableItemsList.js +35 -0
  411. package/build/esm/object-table/SortableItemsList.js.map +1 -0
  412. package/build/esm/object-table/Table.js +25 -8
  413. package/build/esm/object-table/Table.js.map +1 -1
  414. package/build/esm/object-table/Table.module.css +26 -3
  415. package/build/esm/object-table/TableBody.module.css +2 -0
  416. package/build/esm/object-table/TableCell.module.css +22 -1
  417. package/build/esm/object-table/TableHeader.js +93 -6
  418. package/build/esm/object-table/TableHeader.js.map +1 -1
  419. package/build/esm/object-table/TableHeader.module.css +9 -2
  420. package/build/esm/object-table/TableHeaderWithPopover.js +53 -22
  421. package/build/esm/object-table/TableHeaderWithPopover.js.map +1 -1
  422. package/build/esm/object-table/TableHeaderWithPopover.module.css +56 -25
  423. package/build/esm/object-table/TableRow.module.css +2 -0
  424. package/build/esm/object-table/__tests__/useEditableTable.test.js +197 -0
  425. package/build/esm/object-table/__tests__/useEditableTable.test.js.map +1 -0
  426. package/build/esm/object-table/hooks/__tests__/useColumnDefs.test.js +14 -2
  427. package/build/esm/object-table/hooks/__tests__/useColumnDefs.test.js.map +1 -1
  428. package/build/esm/object-table/hooks/__tests__/useColumnVisibility.test.js +160 -138
  429. package/build/esm/object-table/hooks/__tests__/useColumnVisibility.test.js.map +1 -1
  430. package/build/esm/object-table/hooks/__tests__/useObjectTableData.test.js +113 -25
  431. package/build/esm/object-table/hooks/__tests__/useObjectTableData.test.js.map +1 -1
  432. package/build/esm/object-table/hooks/__tests__/useRowSelection.test.js +48 -0
  433. package/build/esm/object-table/hooks/__tests__/useRowSelection.test.js.map +1 -1
  434. package/build/esm/object-table/hooks/__tests__/useSelectionColumn.test.js +27 -82
  435. package/build/esm/object-table/hooks/__tests__/useSelectionColumn.test.js.map +1 -1
  436. package/build/esm/object-table/hooks/__tests__/useTableSorting.test.js +290 -0
  437. package/build/esm/object-table/hooks/__tests__/useTableSorting.test.js.map +1 -1
  438. package/build/esm/object-table/hooks/useColumnDefs.js +16 -3
  439. package/build/esm/object-table/hooks/useColumnDefs.js.map +1 -1
  440. package/build/esm/object-table/hooks/useColumnResize.js +45 -0
  441. package/build/esm/object-table/hooks/useColumnResize.js.map +1 -0
  442. package/build/esm/object-table/hooks/useColumnVisibility.js +52 -20
  443. package/build/esm/object-table/hooks/useColumnVisibility.js.map +1 -1
  444. package/build/esm/object-table/hooks/useEditableTable.js +57 -0
  445. package/build/esm/object-table/hooks/useEditableTable.js.map +1 -0
  446. package/build/esm/object-table/hooks/useObjectTableData.js +42 -7
  447. package/build/esm/object-table/hooks/useObjectTableData.js.map +1 -1
  448. package/build/esm/object-table/hooks/useRowSelection.js +31 -10
  449. package/build/esm/object-table/hooks/useRowSelection.js.map +1 -1
  450. package/build/esm/object-table/hooks/useSelectionColumn.js +15 -6
  451. package/build/esm/object-table/hooks/useSelectionColumn.js.map +1 -1
  452. package/build/esm/object-table/utils/getCellId.js +27 -0
  453. package/build/esm/object-table/utils/getCellId.js.map +1 -0
  454. package/build/esm/object-table/utils/types.js +2 -0
  455. package/build/esm/object-table/utils/types.js.map +1 -0
  456. package/build/esm/public/experimental.js +2 -0
  457. package/build/esm/public/experimental.js.map +1 -1
  458. package/build/esm/shared/ErrorBoundary.js +62 -0
  459. package/build/esm/shared/ErrorBoundary.js.map +1 -0
  460. package/build/esm/shared/ErrorBoundary.module.css +55 -0
  461. package/build/types/base-components/action-button/ActionButton.d.ts +5 -0
  462. package/build/types/base-components/action-button/ActionButton.d.ts.map +1 -0
  463. package/build/types/base-components/combobox/Combobox.d.ts +52 -0
  464. package/build/types/base-components/combobox/Combobox.d.ts.map +1 -0
  465. package/build/types/base-components/dialog/Dialog.d.ts +10 -0
  466. package/build/types/base-components/dialog/Dialog.d.ts.map +1 -0
  467. package/build/types/base-components/draggable-list/DraggableList.d.ts +17 -0
  468. package/build/types/base-components/draggable-list/DraggableList.d.ts.map +1 -0
  469. package/build/types/base-components/search-bar/SearchBar.d.ts +11 -0
  470. package/build/types/base-components/search-bar/SearchBar.d.ts.map +1 -0
  471. package/build/types/base-components/select/Select.d.ts +34 -0
  472. package/build/types/base-components/select/Select.d.ts.map +1 -0
  473. package/build/types/base-components/switch/Switch.d.ts +10 -0
  474. package/build/types/base-components/switch/Switch.d.ts.map +1 -0
  475. package/build/types/filter-list/FilterListApi.d.ts +62 -17
  476. package/build/types/filter-list/FilterListApi.d.ts.map +1 -1
  477. package/build/types/filter-list/FilterListItemApi.d.ts +101 -53
  478. package/build/types/filter-list/FilterListItemApi.d.ts.map +1 -1
  479. package/build/types/filter-list/__tests__/LinkedPropertyInput.test.d.ts +1 -0
  480. package/build/types/filter-list/__tests__/LinkedPropertyInput.test.d.ts.map +1 -0
  481. package/build/types/filter-list/__tests__/dateUtils.test.d.ts +1 -0
  482. package/build/types/filter-list/__tests__/dateUtils.test.d.ts.map +1 -0
  483. package/build/types/filter-list/__tests__/filterStateToWhereClause.test.d.ts +1 -0
  484. package/build/types/filter-list/__tests__/filterStateToWhereClause.test.d.ts.map +1 -0
  485. package/build/types/filter-list/__tests__/getFilterKey.test.d.ts +1 -0
  486. package/build/types/filter-list/__tests__/getFilterKey.test.d.ts.map +1 -0
  487. package/build/types/filter-list/__tests__/testUtils.d.ts +65 -0
  488. package/build/types/filter-list/__tests__/testUtils.d.ts.map +1 -0
  489. package/build/types/filter-list/base/FilterInput.d.ts +15 -0
  490. package/build/types/filter-list/base/FilterInput.d.ts.map +1 -0
  491. package/build/types/filter-list/base/FilterList.d.ts +4 -0
  492. package/build/types/filter-list/base/FilterList.d.ts.map +1 -0
  493. package/build/types/filter-list/base/FilterListContent.d.ts +16 -0
  494. package/build/types/filter-list/base/FilterListContent.d.ts.map +1 -0
  495. package/build/types/filter-list/base/FilterListHeader.d.ts +14 -0
  496. package/build/types/filter-list/base/FilterListHeader.d.ts.map +1 -0
  497. package/build/types/filter-list/base/FilterListItem.d.ts +18 -0
  498. package/build/types/filter-list/base/FilterListItem.d.ts.map +1 -0
  499. package/build/types/filter-list/base/index.d.ts +5 -0
  500. package/build/types/filter-list/base/index.d.ts.map +1 -0
  501. package/build/types/filter-list/base/inputs/CheckboxListInput.d.ts +21 -0
  502. package/build/types/filter-list/base/inputs/CheckboxListInput.d.ts.map +1 -0
  503. package/build/types/filter-list/base/inputs/ContainsTextInput.d.ts +13 -0
  504. package/build/types/filter-list/base/inputs/ContainsTextInput.d.ts.map +1 -0
  505. package/build/types/filter-list/base/inputs/DateRangeInput.d.ts +22 -0
  506. package/build/types/filter-list/base/inputs/DateRangeInput.d.ts.map +1 -0
  507. package/build/types/filter-list/base/inputs/LinkedPropertyInput.d.ts +21 -0
  508. package/build/types/filter-list/base/inputs/LinkedPropertyInput.d.ts.map +1 -0
  509. package/build/types/filter-list/base/inputs/ListogramInput.d.ts +22 -0
  510. package/build/types/filter-list/base/inputs/ListogramInput.d.ts.map +1 -0
  511. package/build/types/filter-list/base/inputs/MultiDateInput.d.ts +12 -0
  512. package/build/types/filter-list/base/inputs/MultiDateInput.d.ts.map +1 -0
  513. package/build/types/filter-list/base/inputs/MultiSelectInput.d.ts +24 -0
  514. package/build/types/filter-list/base/inputs/MultiSelectInput.d.ts.map +1 -0
  515. package/build/types/filter-list/base/inputs/NullValueWrapper.d.ts +21 -0
  516. package/build/types/filter-list/base/inputs/NullValueWrapper.d.ts.map +1 -0
  517. package/build/types/filter-list/base/inputs/NumberRangeInput.d.ts +22 -0
  518. package/build/types/filter-list/base/inputs/NumberRangeInput.d.ts.map +1 -0
  519. package/build/types/filter-list/base/inputs/RangeInput.d.ts +37 -0
  520. package/build/types/filter-list/base/inputs/RangeInput.d.ts.map +1 -0
  521. package/build/types/filter-list/base/inputs/SingleDateInput.d.ts +13 -0
  522. package/build/types/filter-list/base/inputs/SingleDateInput.d.ts.map +1 -0
  523. package/build/types/filter-list/base/inputs/SingleSelectInput.d.ts +24 -0
  524. package/build/types/filter-list/base/inputs/SingleSelectInput.d.ts.map +1 -0
  525. package/build/types/filter-list/base/inputs/TextTagsInput.d.ts +24 -0
  526. package/build/types/filter-list/base/inputs/TextTagsInput.d.ts.map +1 -0
  527. package/build/types/filter-list/base/inputs/TimelineInput.d.ts +11 -0
  528. package/build/types/filter-list/base/inputs/TimelineInput.d.ts.map +1 -0
  529. package/build/types/filter-list/base/inputs/ToggleInput.d.ts +10 -0
  530. package/build/types/filter-list/base/inputs/ToggleInput.d.ts.map +1 -0
  531. package/build/types/filter-list/base/inputs/createHistogramBuckets.d.ts +16 -0
  532. package/build/types/filter-list/base/inputs/createHistogramBuckets.d.ts.map +1 -0
  533. package/build/types/filter-list/base/inputs/dateUtils.d.ts +17 -0
  534. package/build/types/filter-list/base/inputs/dateUtils.d.ts.map +1 -0
  535. package/build/types/filter-list/base/inputs/index.d.ts +8 -0
  536. package/build/types/filter-list/base/inputs/index.d.ts.map +1 -0
  537. package/build/types/filter-list/hooks/__tests__/useFilterListState.test.d.ts +1 -0
  538. package/build/types/filter-list/hooks/__tests__/useFilterListState.test.d.ts.map +1 -0
  539. package/build/types/filter-list/hooks/useFilterListState.d.ts +11 -0
  540. package/build/types/filter-list/hooks/useFilterListState.d.ts.map +1 -0
  541. package/build/types/filter-list/hooks/usePropertyAggregation.d.ts +20 -0
  542. package/build/types/filter-list/hooks/usePropertyAggregation.d.ts.map +1 -0
  543. package/build/types/filter-list/types/AddFilterMenuTypes.d.ts +56 -0
  544. package/build/types/filter-list/types/AddFilterMenuTypes.d.ts.map +1 -0
  545. package/build/types/filter-list/types/CustomRendererTypes.d.ts +76 -0
  546. package/build/types/filter-list/types/CustomRendererTypes.d.ts.map +1 -0
  547. package/build/types/filter-list/types/FilterPanelTypes.d.ts +18 -0
  548. package/build/types/filter-list/types/FilterPanelTypes.d.ts.map +1 -0
  549. package/build/types/filter-list/types/KeywordSearchTypes.d.ts +56 -0
  550. package/build/types/filter-list/types/KeywordSearchTypes.d.ts.map +1 -0
  551. package/build/types/filter-list/types/LinkedFilterTypes.d.ts +89 -0
  552. package/build/types/filter-list/types/LinkedFilterTypes.d.ts.map +1 -0
  553. package/build/types/filter-list/types/index.d.ts +5 -0
  554. package/build/types/filter-list/types/index.d.ts.map +1 -0
  555. package/build/types/filter-list/utils/aggregationHelpers.d.ts +9 -0
  556. package/build/types/filter-list/utils/aggregationHelpers.d.ts.map +1 -0
  557. package/build/types/filter-list/utils/assertUnreachable.d.ts +6 -0
  558. package/build/types/filter-list/utils/assertUnreachable.d.ts.map +1 -0
  559. package/build/types/filter-list/utils/coerceFilterValue.d.ts +11 -0
  560. package/build/types/filter-list/utils/coerceFilterValue.d.ts.map +1 -0
  561. package/build/types/filter-list/utils/filterStateToWhereClause.d.ts +16 -0
  562. package/build/types/filter-list/utils/filterStateToWhereClause.d.ts.map +1 -0
  563. package/build/types/filter-list/utils/filterValues.d.ts +5 -0
  564. package/build/types/filter-list/utils/filterValues.d.ts.map +1 -0
  565. package/build/types/filter-list/utils/getFilterKey.d.ts +3 -0
  566. package/build/types/filter-list/utils/getFilterKey.d.ts.map +1 -0
  567. package/build/types/object-table/ColumnConfigDialog.d.ts +18 -0
  568. package/build/types/object-table/ColumnConfigDialog.d.ts.map +1 -0
  569. package/build/types/object-table/DefaultCellRenderer.d.ts +3 -0
  570. package/build/types/object-table/DefaultCellRenderer.d.ts.map +1 -0
  571. package/build/types/object-table/EditableCell.d.ts +10 -0
  572. package/build/types/object-table/EditableCell.d.ts.map +1 -0
  573. package/build/types/object-table/LoadingStateTable.d.ts.map +1 -1
  574. package/build/types/object-table/MultiColumnSortDialog.d.ts +15 -0
  575. package/build/types/object-table/MultiColumnSortDialog.d.ts.map +1 -0
  576. package/build/types/object-table/ObjectTable.d.ts +1 -1
  577. package/build/types/object-table/ObjectTable.d.ts.map +1 -1
  578. package/build/types/object-table/ObjectTableApi.d.ts +79 -8
  579. package/build/types/object-table/ObjectTableApi.d.ts.map +1 -1
  580. package/build/types/object-table/SortableItemsList.d.ts +13 -0
  581. package/build/types/object-table/SortableItemsList.d.ts.map +1 -0
  582. package/build/types/object-table/Table.d.ts +26 -1
  583. package/build/types/object-table/Table.d.ts.map +1 -1
  584. package/build/types/object-table/TableHeader.d.ts +3 -1
  585. package/build/types/object-table/TableHeader.d.ts.map +1 -1
  586. package/build/types/object-table/TableHeaderWithPopover.d.ts +30 -6
  587. package/build/types/object-table/TableHeaderWithPopover.d.ts.map +1 -1
  588. package/build/types/object-table/__tests__/useEditableTable.test.d.ts +1 -0
  589. package/build/types/object-table/__tests__/useEditableTable.test.d.ts.map +1 -0
  590. package/build/types/object-table/hooks/useColumnDefs.d.ts.map +1 -1
  591. package/build/types/object-table/hooks/useColumnResize.d.ts +10 -0
  592. package/build/types/object-table/hooks/useColumnResize.d.ts.map +1 -0
  593. package/build/types/object-table/hooks/useColumnVisibility.d.ts +18 -7
  594. package/build/types/object-table/hooks/useColumnVisibility.d.ts.map +1 -1
  595. package/build/types/object-table/hooks/useEditableTable.d.ts +22 -0
  596. package/build/types/object-table/hooks/useEditableTable.d.ts.map +1 -0
  597. package/build/types/object-table/hooks/useObjectTableData.d.ts +6 -5
  598. package/build/types/object-table/hooks/useObjectTableData.d.ts.map +1 -1
  599. package/build/types/object-table/hooks/useRowSelection.d.ts +5 -4
  600. package/build/types/object-table/hooks/useRowSelection.d.ts.map +1 -1
  601. package/build/types/object-table/utils/getCellId.d.ts +3 -0
  602. package/build/types/object-table/utils/getCellId.d.ts.map +1 -0
  603. package/build/types/object-table/utils/types.d.ts +14 -0
  604. package/build/types/object-table/utils/types.d.ts.map +1 -0
  605. package/build/types/public/experimental.d.ts +6 -2
  606. package/build/types/public/experimental.d.ts.map +1 -1
  607. package/build/types/shared/ErrorBoundary.d.ts +19 -0
  608. package/build/types/shared/ErrorBoundary.d.ts.map +1 -0
  609. package/package.json +17 -9
@@ -0,0 +1,3073 @@
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(--osdk-surface-spacing));
179
+ width: 100%;
180
+ min-height: var(--osdk-combobox-min-height, 30px);
181
+ padding: calc(var(--osdk-combobox-spacing, var(--osdk-surface-spacing)) * 1.5)
182
+ calc(var(--osdk-combobox-spacing, var(--osdk-surface-spacing)) * 2);
183
+ box-sizing: border-box;
184
+ border-radius: var(--osdk-combobox-border-radius, var(--osdk-surface-border-radius));
185
+ border: var(--osdk-combobox-border-width, var(--osdk-surface-border-width)) solid
186
+ var(--osdk-combobox-border-color, var(--osdk-surface-border-color-default));
187
+ background-color: var(--osdk-combobox-input-bg, var(--osdk-surface-background-color-default-rest));
188
+ transition: border-color var(--osdk-combobox-transition-duration, var(--osdk-emphasis-transition-duration))
189
+ var(--osdk-combobox-transition-ease, var(--osdk-emphasis-ease-default));
190
+
191
+ &:focus-within {
192
+ border-color: var(--osdk-combobox-focus-border-color, var(--osdk-intent-primary-rest));
193
+ outline: var(--osdk-combobox-focus-width, var(--osdk-emphasis-focus-width)) solid
194
+ var(--osdk-combobox-focus-color, var(--osdk-emphasis-focus-color));
195
+ outline-offset: var(--osdk-combobox-focus-offset, var(--osdk-emphasis-focus-offset));
196
+ }
197
+ }
198
+
199
+ .Combobox-module__osdkComboboxSearchIcon___jepAa-OV {
200
+ flex-shrink: 0;
201
+ color: var(--osdk-combobox-icon-color, var(--osdk-iconography-color-muted));
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(--osdk-typography-family-default));
210
+ font-size: var(--osdk-combobox-font-size, var(--osdk-typography-size-body-medium));
211
+ line-height: var(--osdk-combobox-line-height, var(--osdk-typography-line-height-default));
212
+ color: var(--osdk-combobox-input-color, var(--osdk-typography-color-default-rest));
213
+ outline: none;
214
+
215
+ &::placeholder {
216
+ color: var(--osdk-combobox-placeholder-color, var(--osdk-typography-color-muted));
217
+ }
218
+ }
219
+
220
+ .Combobox-module__osdkComboboxPositioner___hKb8oXuo {
221
+ z-index: var(--osdk-combobox-z-index, var(--osdk-surface-z-index-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(--osdk-surface-spacing)) * 1.5);
231
+ box-sizing: border-box;
232
+ border-radius: var(--osdk-combobox-border-radius, var(--osdk-surface-border-radius));
233
+ border: var(--osdk-combobox-border-width, var(--osdk-surface-border-width)) solid
234
+ var(--osdk-combobox-border-color, var(--osdk-surface-border-color-default));
235
+ background-color: var(--osdk-combobox-popup-bg, var(--osdk-surface-background-color-default-rest));
236
+ box-shadow: var(--osdk-combobox-popup-shadow, var(--osdk-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(--osdk-surface-spacing)) * 1.5)
243
+ calc(var(--osdk-combobox-spacing, var(--osdk-surface-spacing)) * 2);
244
+ border-radius: var(--osdk-combobox-border-radius, var(--osdk-surface-border-radius));
245
+ cursor: pointer;
246
+ font-family: var(--osdk-combobox-font-family, var(--osdk-typography-family-default));
247
+ font-size: var(--osdk-combobox-font-size, var(--osdk-typography-size-body-medium));
248
+ line-height: var(--osdk-combobox-line-height, var(--osdk-typography-line-height-default));
249
+ color: var(--osdk-combobox-item-color, var(--osdk-typography-color-default-rest));
250
+ transition: background-color var(--osdk-combobox-transition-duration, var(--osdk-emphasis-transition-duration))
251
+ var(--osdk-combobox-transition-ease, var(--osdk-emphasis-ease-default));
252
+
253
+ &[data-highlighted] {
254
+ background-color: var(--osdk-combobox-item-bg-highlighted, var(--osdk-surface-background-color-default-hover));
255
+ outline: none;
256
+ }
257
+
258
+ &[data-selected] {
259
+ background-color: var(--osdk-combobox-item-bg-selected, var(--osdk-surface-layer-primary));
260
+ color: var(--osdk-combobox-item-color-selected, var(--osdk-intent-primary-rest));
261
+ }
262
+
263
+ &[data-disabled] {
264
+ cursor: not-allowed;
265
+ opacity: var(--osdk-disabled-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(--osdk-surface-spacing)) * 1.5);
273
+ margin-bottom: calc(var(--osdk-combobox-spacing, var(--osdk-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(--osdk-surface-spacing));
280
+ padding: calc(var(--osdk-combobox-spacing, var(--osdk-surface-spacing)) * 0.5)
281
+ calc(var(--osdk-combobox-spacing, var(--osdk-surface-spacing)) * 1.5);
282
+ border-radius: var(--osdk-combobox-border-radius, var(--osdk-surface-border-radius));
283
+ background-color: var(--osdk-combobox-chip-bg, var(--osdk-surface-background-color-default-hover));
284
+ font-family: var(--osdk-combobox-font-family, var(--osdk-typography-family-default));
285
+ font-size: var(--osdk-combobox-chip-font-size, var(--osdk-typography-size-body-small));
286
+ line-height: var(--osdk-combobox-line-height, var(--osdk-typography-line-height-default));
287
+ color: var(--osdk-combobox-chip-color, var(--osdk-typography-color-default-rest));
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(--osdk-iconography-color-muted));
299
+ transition: color var(--osdk-combobox-transition-duration, var(--osdk-emphasis-transition-duration))
300
+ var(--osdk-combobox-transition-ease, var(--osdk-emphasis-ease-default));
301
+
302
+ &:hover {
303
+ color: var(--osdk-combobox-chip-remove-color-hover, var(--osdk-typography-color-default-rest));
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(--osdk-surface-spacing)) * 0.5);
312
+ border: none;
313
+ background: transparent;
314
+ cursor: pointer;
315
+ color: var(--osdk-combobox-clear-color, var(--osdk-iconography-color-muted));
316
+ border-radius: var(--osdk-combobox-border-radius, var(--osdk-surface-border-radius));
317
+ transition: color var(--osdk-combobox-transition-duration, var(--osdk-emphasis-transition-duration))
318
+ var(--osdk-combobox-transition-ease, var(--osdk-emphasis-ease-default)),
319
+ background-color var(--osdk-combobox-transition-duration, var(--osdk-emphasis-transition-duration))
320
+ var(--osdk-combobox-transition-ease, var(--osdk-emphasis-ease-default));
321
+
322
+ &:hover {
323
+ color: var(--osdk-combobox-clear-color-hover, var(--osdk-typography-color-default-rest));
324
+ background-color: var(--osdk-combobox-clear-bg-hover, var(--osdk-surface-background-color-default-hover));
325
+ }
326
+ }
327
+
328
+ .Combobox-module__osdkComboboxEmpty___rfSN-zlQ {
329
+ padding: calc(var(--osdk-combobox-spacing, var(--osdk-surface-spacing)) * 3)
330
+ calc(var(--osdk-combobox-spacing, var(--osdk-surface-spacing)) * 2);
331
+ text-align: center;
332
+ color: var(--osdk-combobox-empty-color, var(--osdk-typography-color-muted));
333
+ font-family: var(--osdk-combobox-font-family, var(--osdk-typography-family-default));
334
+ font-size: var(--osdk-combobox-font-size, var(--osdk-typography-size-body-medium));
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(--osdk-surface-spacing));
631
+ width: 100%;
632
+ min-height: var(--osdk-select-min-height, 30px);
633
+ padding: calc(var(--osdk-select-spacing, var(--osdk-surface-spacing)) * 1.5)
634
+ calc(var(--osdk-select-spacing, var(--osdk-surface-spacing)) * 2.5);
635
+ box-sizing: border-box;
636
+ cursor: pointer;
637
+ border-radius: var(--osdk-select-border-radius, var(--osdk-surface-border-radius));
638
+ border: var(--osdk-select-border-width, var(--osdk-surface-border-width)) solid
639
+ var(--osdk-select-border-color, var(--osdk-surface-border-color-default));
640
+ background-color: var(--osdk-select-trigger-bg, var(--osdk-surface-background-color-default-rest));
641
+ color: var(--osdk-select-trigger-color, var(--osdk-typography-color-default-rest));
642
+ font-family: var(--osdk-select-font-family, var(--osdk-typography-family-default));
643
+ font-size: var(--osdk-select-font-size, var(--osdk-typography-size-body-medium));
644
+ line-height: var(--osdk-select-line-height, var(--osdk-typography-line-height-default));
645
+ transition: background-color var(--osdk-select-transition-duration, var(--osdk-emphasis-transition-duration))
646
+ var(--osdk-select-transition-ease, var(--osdk-emphasis-ease-default)),
647
+ border-color var(--osdk-select-transition-duration, var(--osdk-emphasis-transition-duration))
648
+ var(--osdk-select-transition-ease, var(--osdk-emphasis-ease-default));
649
+
650
+ &:hover {
651
+ background-color: var(--osdk-select-trigger-bg-hover, var(--osdk-surface-background-color-default-hover));
652
+ }
653
+
654
+ &:active {
655
+ background-color: var(--osdk-select-trigger-bg-active, var(--osdk-surface-background-color-default-active));
656
+ }
657
+
658
+ &:focus-visible {
659
+ outline: var(--osdk-select-focus-width, var(--osdk-emphasis-focus-width)) solid
660
+ var(--osdk-select-focus-color, var(--osdk-emphasis-focus-color));
661
+ outline-offset: var(--osdk-select-focus-offset, var(--osdk-emphasis-focus-offset));
662
+ }
663
+
664
+ &[data-disabled] {
665
+ cursor: not-allowed;
666
+ opacity: var(--osdk-disabled-opacity, 0.5);
667
+ }
668
+
669
+ &[data-popup-open] {
670
+ border-color: var(--osdk-select-border-color-active, var(--osdk-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(--osdk-typography-color-muted));
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(--osdk-iconography-color-muted));
691
+ flex-shrink: 0;
692
+ transition: transform var(--osdk-select-transition-duration, var(--osdk-emphasis-transition-duration))
693
+ var(--osdk-select-transition-ease, var(--osdk-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(--osdk-surface-z-index-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(--osdk-surface-spacing)) * 1.5);
711
+ box-sizing: border-box;
712
+ border-radius: var(--osdk-select-border-radius, var(--osdk-surface-border-radius));
713
+ border: var(--osdk-select-border-width, var(--osdk-surface-border-width)) solid
714
+ var(--osdk-select-border-color, var(--osdk-surface-border-color-default));
715
+ background-color: var(--osdk-select-popup-bg, var(--osdk-surface-background-color-default-rest));
716
+ box-shadow: var(--osdk-select-popup-shadow, var(--osdk-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(--osdk-surface-spacing)) * 1.5)
723
+ calc(var(--osdk-select-spacing, var(--osdk-surface-spacing)) * 2);
724
+ border-radius: var(--osdk-select-border-radius, var(--osdk-surface-border-radius));
725
+ cursor: pointer;
726
+ font-family: var(--osdk-select-font-family, var(--osdk-typography-family-default));
727
+ font-size: var(--osdk-select-font-size, var(--osdk-typography-size-body-medium));
728
+ line-height: var(--osdk-select-line-height, var(--osdk-typography-line-height-default));
729
+ color: var(--osdk-select-item-color, var(--osdk-typography-color-default-rest));
730
+ transition: background-color var(--osdk-select-transition-duration, var(--osdk-emphasis-transition-duration))
731
+ var(--osdk-select-transition-ease, var(--osdk-emphasis-ease-default));
732
+
733
+ &[data-highlighted] {
734
+ background-color: var(--osdk-select-item-bg-highlighted, var(--osdk-surface-background-color-default-hover));
735
+ outline: none;
736
+ }
737
+
738
+ &[data-selected] {
739
+ background-color: var(--osdk-select-item-bg-selected, var(--osdk-surface-layer-primary));
740
+ color: var(--osdk-select-item-color-selected, var(--osdk-intent-primary-rest));
741
+ }
742
+
743
+ &[data-disabled] {
744
+ cursor: not-allowed;
745
+ opacity: var(--osdk-disabled-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(--osdk-emphasis-transition-duration))
784
+ var(--osdk-switch-transition-ease, var(--osdk-emphasis-ease-default));
785
+
786
+ &[data-unchecked] {
787
+ background-color: var(--osdk-switch-track-bg, var(--osdk-intent-default-rest));
788
+
789
+ &:hover {
790
+ background-color: var(--osdk-switch-track-bg-hover, var(--osdk-intent-default-hover));
791
+ }
792
+
793
+ &:active {
794
+ background-color: var(--osdk-switch-track-bg-active, var(--osdk-intent-default-active));
795
+ }
796
+ }
797
+
798
+ &[data-checked] {
799
+ background-color: var(--osdk-switch-track-bg-checked, var(--osdk-intent-primary-rest));
800
+
801
+ &:hover {
802
+ background-color: var(--osdk-switch-track-bg-checked-hover, var(--osdk-intent-primary-hover));
803
+ }
804
+
805
+ &:active {
806
+ background-color: var(--osdk-switch-track-bg-checked-active, var(--osdk-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(--osdk-emphasis-focus-width)) solid
817
+ var(--osdk-switch-focus-color, var(--osdk-emphasis-focus-color));
818
+ outline-offset: var(--osdk-switch-focus-offset, var(--osdk-emphasis-focus-offset));
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(--osdk-palette-white));
827
+ border-radius: 50%;
828
+ position: absolute;
829
+ top: 50%;
830
+ transform: translateY(-50%);
831
+ transition: left var(--osdk-switch-transition-duration, var(--osdk-emphasis-transition-duration))
832
+ var(--osdk-switch-transition-ease, var(--osdk-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
+ /* filter-list/base/FilterList.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
+ .FilterList-module__filterList___wmzCNbkH {
862
+ display: flex;
863
+ flex-direction: column;
864
+ background: var(--osdk-filter-list-bg);
865
+ border: var(--osdk-filter-list-border);
866
+ border-radius: var(--osdk-filter-list-border-radius);
867
+ padding: var(--osdk-filter-list-padding);
868
+ gap: var(--osdk-filter-list-gap);
869
+ }
870
+
871
+ .FilterList-module__addButtonContainer___kq300FEV {
872
+ display: flex;
873
+ justify-content: center;
874
+ position: sticky;
875
+ bottom: 0;
876
+ padding-top: var(--osdk-filter-list-addButton-padding-top);
877
+ background: var(--osdk-filter-list-addButton-container-bg, var(--osdk-filter-list-bg));
878
+ }
879
+
880
+ .FilterList-module__addButtonContainer___kq300FEV > * {
881
+ flex: 1;
882
+ }
883
+
884
+ .FilterList-module__addButton___oD4yvwyZ {
885
+ font-family: var(--osdk-filter-header-font-family);
886
+ font-size: var(--osdk-filter-header-reset-font-size);
887
+ color: var(--osdk-filter-header-reset-color);
888
+ background: var(--osdk-filter-header-button-bg);
889
+ border: none;
890
+ cursor: pointer;
891
+ padding: var(--osdk-filter-header-reset-padding);
892
+ border-radius: var(--osdk-filter-header-button-border-radius);
893
+ transition: background-color var(--osdk-filter-header-button-transition);
894
+
895
+ &:hover {
896
+ background: var(--osdk-filter-header-button-bg-hover);
897
+ }
898
+
899
+ &:active {
900
+ background: var(--osdk-filter-header-button-bg-active);
901
+ }
902
+
903
+ &:focus-visible {
904
+ outline: var(--osdk-filter-input-focus-outline-width) solid var(--osdk-filter-input-focus-outline-color);
905
+ outline-offset: var(--osdk-filter-input-focus-outline-offset);
906
+ }
907
+
908
+ @media (prefers-reduced-motion: reduce) {
909
+ transition: none;
910
+ }
911
+ }
912
+
913
+
914
+ /* filter-list/base/FilterListContent.module.css */
915
+ /*
916
+ * Copyright 2025 Palantir Technologies, Inc. All rights reserved.
917
+ *
918
+ * Licensed under the Apache License, Version 2.0 (the "License");
919
+ * you may not use this file except in compliance with the License.
920
+ * You may obtain a copy of the License at
921
+ *
922
+ * http://www.apache.org/licenses/LICENSE-2.0
923
+ *
924
+ * Unless required by applicable law or agreed to in writing, software
925
+ * distributed under the License is distributed on an "AS IS" BASIS,
926
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
927
+ * See the License for the specific language governing permissions and
928
+ * limitations under the License.
929
+ */
930
+
931
+ .FilterListContent-module__content___fG0EgVp6 {
932
+ display: flex;
933
+ flex-direction: column;
934
+ gap: var(--osdk-filter-list-content-gap);
935
+ }
936
+
937
+ .FilterListContent-module__emptyMessage___9wdgSE9W {
938
+ margin: 0;
939
+ color: var(--osdk-filter-list-empty-text-color);
940
+ font-size: var(--osdk-filter-list-empty-font-size);
941
+ }
942
+
943
+
944
+ /* filter-list/base/FilterListHeader.module.css */
945
+ /*
946
+ * Copyright 2025 Palantir Technologies, Inc. All rights reserved.
947
+ *
948
+ * Licensed under the Apache License, Version 2.0 (the "License");
949
+ * you may not use this file except in compliance with the License.
950
+ * You may obtain a copy of the License at
951
+ *
952
+ * http://www.apache.org/licenses/LICENSE-2.0
953
+ *
954
+ * Unless required by applicable law or agreed to in writing, software
955
+ * distributed under the License is distributed on an "AS IS" BASIS,
956
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
957
+ * See the License for the specific language governing permissions and
958
+ * limitations under the License.
959
+ */
960
+
961
+ .FilterListHeader-module__header___dkKc0CO- {
962
+ display: flex;
963
+ align-items: center;
964
+ justify-content: space-between;
965
+ padding-bottom: var(--osdk-filter-header-padding-bottom);
966
+ border-bottom: var(--osdk-filter-header-border-bottom);
967
+ }
968
+
969
+ .FilterListHeader-module__titleContainer___KaePpQIx {
970
+ display: flex;
971
+ align-items: center;
972
+ gap: var(--osdk-filter-header-titleContainer-gap);
973
+ }
974
+
975
+ .FilterListHeader-module__title___xqfWfSzK {
976
+ font-family: var(--osdk-filter-header-font-family);
977
+ font-size: var(--osdk-filter-header-font-size);
978
+ font-weight: var(--osdk-filter-header-font-weight);
979
+ color: var(--osdk-filter-header-color);
980
+ margin: 0;
981
+ }
982
+
983
+ .FilterListHeader-module__titleIcon___MQy-dec8 {
984
+ color: var(--osdk-filter-header-icon-color);
985
+ display: flex;
986
+ align-items: center;
987
+ }
988
+
989
+ .FilterListHeader-module__activeCount___GyBsnsQL {
990
+ font-family: var(--osdk-filter-header-font-family);
991
+ font-size: var(--osdk-filter-header-activeCount-font-size);
992
+ color: var(--osdk-filter-header-activeCount-color);
993
+ font-variant-numeric: tabular-nums;
994
+ }
995
+
996
+ .FilterListHeader-module__collapseButton___N1-sj3B3 {
997
+ display: flex;
998
+ align-items: center;
999
+ justify-content: center;
1000
+ padding: var(--osdk-filter-header-button-padding);
1001
+ border: none;
1002
+ background: var(--osdk-filter-header-button-bg);
1003
+ cursor: pointer;
1004
+ border-radius: var(--osdk-filter-header-button-border-radius);
1005
+ transition: background-color var(--osdk-filter-header-button-transition);
1006
+
1007
+ &:hover {
1008
+ background: var(--osdk-filter-header-button-bg-hover);
1009
+ }
1010
+
1011
+ &:active {
1012
+ background: var(--osdk-filter-header-button-bg-active);
1013
+ }
1014
+
1015
+ &:focus-visible {
1016
+ outline: var(--osdk-filter-input-focus-outline-width) solid var(--osdk-filter-input-focus-outline-color);
1017
+ outline-offset: var(--osdk-filter-input-focus-outline-offset);
1018
+ }
1019
+
1020
+ @media (prefers-reduced-motion: reduce) {
1021
+ transition: none;
1022
+ }
1023
+ }
1024
+
1025
+ .FilterListHeader-module__collapseIcon___P4YOgKig {
1026
+ display: block;
1027
+ width: var(--osdk-filter-header-collapse-icon-size);
1028
+ height: var(--osdk-filter-header-collapse-icon-size);
1029
+ border-left: var(--osdk-filter-header-collapse-icon-border-width) solid var(--osdk-filter-header-collapse-icon-color);
1030
+ border-bottom: var(--osdk-filter-header-collapse-icon-border-width) solid var(--osdk-filter-header-collapse-icon-color);
1031
+ transform: rotate(-45deg);
1032
+ transition: transform var(--osdk-filter-header-button-transition);
1033
+
1034
+ @media (prefers-reduced-motion: reduce) {
1035
+ transition: none;
1036
+ }
1037
+ }
1038
+
1039
+ .FilterListHeader-module__collapseIcon___P4YOgKig[data-collapsed="true"] {
1040
+ transform: rotate(-135deg);
1041
+ }
1042
+
1043
+ .FilterListHeader-module__resetButton___jLcUypov {
1044
+ font-family: var(--osdk-filter-header-font-family);
1045
+ font-size: var(--osdk-filter-header-reset-font-size);
1046
+ color: var(--osdk-filter-header-reset-color);
1047
+ background: var(--osdk-filter-header-button-bg);
1048
+ border: none;
1049
+ cursor: pointer;
1050
+ padding: var(--osdk-filter-header-reset-padding);
1051
+ border-radius: var(--osdk-filter-header-button-border-radius);
1052
+ transition: background-color var(--osdk-filter-header-button-transition);
1053
+
1054
+ &:hover:not(:disabled) {
1055
+ background: var(--osdk-filter-header-button-bg-hover);
1056
+ }
1057
+
1058
+ &:disabled {
1059
+ color: var(--osdk-filter-header-reset-color-disabled);
1060
+ cursor: not-allowed;
1061
+ }
1062
+
1063
+ &:focus-visible {
1064
+ outline: var(--osdk-filter-input-focus-outline-width) solid var(--osdk-filter-input-focus-outline-color);
1065
+ outline-offset: var(--osdk-filter-input-focus-outline-offset);
1066
+ }
1067
+
1068
+ @media (prefers-reduced-motion: reduce) {
1069
+ transition: none;
1070
+ }
1071
+ }
1072
+
1073
+
1074
+ /* filter-list/base/FilterListItem.module.css */
1075
+ /*
1076
+ * Copyright 2025 Palantir Technologies, Inc. All rights reserved.
1077
+ *
1078
+ * Licensed under the Apache License, Version 2.0 (the "License");
1079
+ * you may not use this file except in compliance with the License.
1080
+ * You may obtain a copy of the License at
1081
+ *
1082
+ * http://www.apache.org/licenses/LICENSE-2.0
1083
+ *
1084
+ * Unless required by applicable law or agreed to in writing, software
1085
+ * distributed under the License is distributed on an "AS IS" BASIS,
1086
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1087
+ * See the License for the specific language governing permissions and
1088
+ * limitations under the License.
1089
+ */
1090
+
1091
+ .FilterListItem-module__filterItem___fDBkbb7u {
1092
+ display: flex;
1093
+ flex-direction: column;
1094
+ gap: var(--osdk-filter-item-gap);
1095
+ }
1096
+
1097
+ .FilterListItem-module__itemHeader___jp4epXg- {
1098
+ display: flex;
1099
+ align-items: center;
1100
+ }
1101
+
1102
+ .FilterListItem-module__itemLabel___cEnbqE59 {
1103
+ font-family: var(--osdk-filter-item-label-font-family);
1104
+ font-size: var(--osdk-filter-item-label-font-size);
1105
+ font-weight: var(--osdk-filter-item-label-font-weight);
1106
+ color: var(--osdk-filter-item-label-color);
1107
+ }
1108
+
1109
+ .FilterListItem-module__itemContent___PfVHHhIy {
1110
+ display: flex;
1111
+ flex-direction: column;
1112
+ }
1113
+
1114
+
1115
+ /* filter-list/base/inputs/CheckboxListInput.module.css */
1116
+ /*
1117
+ * Copyright 2025 Palantir Technologies, Inc. All rights reserved.
1118
+ *
1119
+ * Licensed under the Apache License, Version 2.0 (the "License");
1120
+ * you may not use this file except in compliance with the License.
1121
+ * You may obtain a copy of the License at
1122
+ *
1123
+ * http://www.apache.org/licenses/LICENSE-2.0
1124
+ *
1125
+ * Unless required by applicable law or agreed to in writing, software
1126
+ * distributed under the License is distributed on an "AS IS" BASIS,
1127
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1128
+ * See the License for the specific language governing permissions and
1129
+ * limitations under the License.
1130
+ */
1131
+
1132
+ .CheckboxListInput-module__checkboxList___NTBTd7DH {
1133
+ display: flex;
1134
+ flex-direction: column;
1135
+ gap: var(--osdk-filter-checkbox-list-gap);
1136
+ }
1137
+
1138
+ .CheckboxListInput-module__checkboxRow___ga-mvL9m {
1139
+ padding: var(--osdk-filter-checkbox-row-padding);
1140
+ }
1141
+
1142
+ .CheckboxListInput-module__checkboxLabel___iFH7C6-U {
1143
+ display: flex;
1144
+ align-items: center;
1145
+ gap: var(--osdk-filter-checkbox-label-gap);
1146
+ cursor: pointer;
1147
+ }
1148
+
1149
+ .CheckboxListInput-module__valueText___ohfVO74D {
1150
+ font-family: var(--osdk-filter-checkbox-value-font-family);
1151
+ font-size: var(--osdk-filter-checkbox-value-font-size);
1152
+ line-height: var(--osdk-filter-checkbox-value-line-height);
1153
+ color: var(--osdk-filter-checkbox-value-color);
1154
+ overflow: hidden;
1155
+ text-overflow: ellipsis;
1156
+ white-space: nowrap;
1157
+ }
1158
+
1159
+
1160
+ /* filter-list/base/inputs/ContainsTextInput.module.css */
1161
+ /*
1162
+ * Copyright 2025 Palantir Technologies, Inc. All rights reserved.
1163
+ *
1164
+ * Licensed under the Apache License, Version 2.0 (the "License");
1165
+ * you may not use this file except in compliance with the License.
1166
+ * You may obtain a copy of the License at
1167
+ *
1168
+ * http://www.apache.org/licenses/LICENSE-2.0
1169
+ *
1170
+ * Unless required by applicable law or agreed to in writing, software
1171
+ * distributed under the License is distributed on an "AS IS" BASIS,
1172
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1173
+ * See the License for the specific language governing permissions and
1174
+ * limitations under the License.
1175
+ */
1176
+
1177
+ .ContainsTextInput-module__textInput___VE1JFstL {
1178
+ position: relative;
1179
+ }
1180
+
1181
+ .ContainsTextInput-module__inputGroup___ww0O5kep {
1182
+ display: flex;
1183
+ align-items: center;
1184
+ background: var(--osdk-filter-input-bg);
1185
+ border: var(--osdk-filter-input-border);
1186
+ border-radius: var(--osdk-filter-input-border-radius);
1187
+ padding: var(--osdk-filter-input-padding);
1188
+ gap: var(--osdk-filter-input-gap);
1189
+ transition: border-color var(--osdk-filter-input-transition);
1190
+
1191
+ &:focus-within {
1192
+ border-color: var(--osdk-filter-input-focus-border);
1193
+ outline: var(--osdk-filter-input-focus-outline-width) solid var(--osdk-filter-input-focus-outline-color);
1194
+ outline-offset: var(--osdk-filter-input-focus-outline-offset);
1195
+ }
1196
+
1197
+ @media (prefers-reduced-motion: reduce) {
1198
+ transition: none;
1199
+ }
1200
+ }
1201
+
1202
+ .ContainsTextInput-module__searchIcon___O-6jW-zD {
1203
+ color: var(--osdk-filter-input-icon-color);
1204
+ flex-shrink: 0;
1205
+ display: flex;
1206
+ align-items: center;
1207
+ }
1208
+
1209
+ .ContainsTextInput-module__input___GP3qIOWL {
1210
+ flex: 1;
1211
+ border: none;
1212
+ background: transparent;
1213
+ font-family: var(--osdk-filter-input-font-family);
1214
+ font-size: var(--osdk-filter-input-font-size);
1215
+ color: var(--osdk-filter-input-color);
1216
+ outline: none;
1217
+
1218
+ &::placeholder {
1219
+ color: var(--osdk-filter-input-placeholder-color);
1220
+ }
1221
+ }
1222
+
1223
+ .ContainsTextInput-module__clearButton___4A9AsUvv {
1224
+ display: flex;
1225
+ align-items: center;
1226
+ justify-content: center;
1227
+ padding: var(--osdk-filter-input-clear-padding);
1228
+ border: none;
1229
+ background: var(--osdk-filter-input-clear-bg);
1230
+ color: var(--osdk-filter-input-icon-color);
1231
+ cursor: pointer;
1232
+ border-radius: var(--osdk-filter-input-clear-border-radius);
1233
+ transition: background-color var(--osdk-filter-input-transition);
1234
+
1235
+ &:hover {
1236
+ background: var(--osdk-filter-input-clear-bg-hover);
1237
+ }
1238
+
1239
+ &:active {
1240
+ background: var(--osdk-filter-input-clear-bg-active);
1241
+ }
1242
+
1243
+ &:focus-visible {
1244
+ outline: var(--osdk-filter-input-focus-outline-width) solid var(--osdk-filter-input-focus-outline-color);
1245
+ outline-offset: var(--osdk-filter-input-focus-outline-offset);
1246
+ }
1247
+
1248
+ @media (prefers-reduced-motion: reduce) {
1249
+ transition: none;
1250
+ }
1251
+ }
1252
+
1253
+
1254
+ /* filter-list/base/inputs/LinkedPropertyInput.module.css */
1255
+ /*
1256
+ * Copyright 2025 Palantir Technologies, Inc. All rights reserved.
1257
+ *
1258
+ * Licensed under the Apache License, Version 2.0 (the "License");
1259
+ * you may not use this file except in compliance with the License.
1260
+ * You may obtain a copy of the License at
1261
+ *
1262
+ * http://www.apache.org/licenses/LICENSE-2.0
1263
+ *
1264
+ * Unless required by applicable law or agreed to in writing, software
1265
+ * distributed under the License is distributed on an "AS IS" BASIS,
1266
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1267
+ * See the License for the specific language governing permissions and
1268
+ * limitations under the License.
1269
+ */
1270
+
1271
+ .LinkedPropertyInput-module__linkedProperty___aWk3D3GM {
1272
+ display: flex;
1273
+ flex-direction: column;
1274
+ }
1275
+
1276
+
1277
+ /* filter-list/base/inputs/ListogramInput.module.css */
1278
+ /*
1279
+ * Copyright 2025 Palantir Technologies, Inc. All rights reserved.
1280
+ *
1281
+ * Licensed under the Apache License, Version 2.0 (the "License");
1282
+ * you may not use this file except in compliance with the License.
1283
+ * You may obtain a copy of the License at
1284
+ *
1285
+ * http://www.apache.org/licenses/LICENSE-2.0
1286
+ *
1287
+ * Unless required by applicable law or agreed to in writing, software
1288
+ * distributed under the License is distributed on an "AS IS" BASIS,
1289
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1290
+ * See the License for the specific language governing permissions and
1291
+ * limitations under the License.
1292
+ */
1293
+
1294
+ .ListogramInput-module__listogram___QdvKag0g {
1295
+ display: flex;
1296
+ flex-direction: column;
1297
+ }
1298
+
1299
+ .ListogramInput-module__container___hMngsxor {
1300
+ display: flex;
1301
+ flex-direction: column;
1302
+ gap: var(--osdk-filter-listogram-gap, calc(var(--osdk-surface-spacing) * 1));
1303
+ }
1304
+
1305
+ .ListogramInput-module__row___rps-rpjo {
1306
+ display: flex;
1307
+ align-items: center;
1308
+ gap: var(--osdk-filter-listogram-row-gap, calc(var(--osdk-surface-spacing) * 2));
1309
+ padding: var(--osdk-filter-listogram-row-padding, calc(var(--osdk-surface-spacing) * 1));
1310
+ border: none;
1311
+ background: transparent;
1312
+ cursor: pointer;
1313
+ border-radius: var(--osdk-surface-border-radius);
1314
+ text-align: left;
1315
+ width: 100%;
1316
+ transition: background-color var(--osdk-emphasis-transition-duration) var(--osdk-emphasis-ease-default);
1317
+
1318
+ &:hover {
1319
+ background: var(--osdk-surface-background-color-default-hover);
1320
+ }
1321
+
1322
+ &:focus-visible {
1323
+ outline: var(--osdk-emphasis-focus-width) solid var(--osdk-emphasis-focus-color);
1324
+ outline-offset: var(--osdk-emphasis-focus-offset);
1325
+ }
1326
+ }
1327
+
1328
+ .ListogramInput-module__row___rps-rpjo[aria-pressed="true"] {
1329
+ background: var(--osdk-surface-background-color-default-active);
1330
+ }
1331
+
1332
+ .ListogramInput-module__label___hQ3nLEpx {
1333
+ flex: 1;
1334
+ font-size: var(--osdk-typography-size-body-medium);
1335
+ color: var(--osdk-typography-color-default-rest);
1336
+ overflow: hidden;
1337
+ text-overflow: ellipsis;
1338
+ white-space: nowrap;
1339
+ }
1340
+
1341
+ .ListogramInput-module__bar___iUqTfYSm {
1342
+ flex: 2;
1343
+ height: var(--osdk-filter-listogram-bar-height, 8px);
1344
+ background: var(--osdk-custom-color-gray-2);
1345
+ border-radius: var(--osdk-surface-border-radius);
1346
+ overflow: hidden;
1347
+ }
1348
+
1349
+ .ListogramInput-module__barFill___za7KWtcm {
1350
+ height: 100%;
1351
+ background: var(--osdk-filter-listogram-bar-color);
1352
+ transition: width var(--osdk-emphasis-transition-duration) var(--osdk-emphasis-ease-default);
1353
+ }
1354
+
1355
+ .ListogramInput-module__row___rps-rpjo[aria-pressed="true"] .ListogramInput-module__barFill___za7KWtcm {
1356
+ background: var(--osdk-filter-listogram-selected-color);
1357
+ }
1358
+
1359
+ .ListogramInput-module__count___81M2s4eq {
1360
+ font-size: var(--osdk-typography-size-body-small);
1361
+ font-variant-numeric: tabular-nums;
1362
+ color: var(--osdk-typography-color-muted);
1363
+ min-width: 3ch;
1364
+ text-align: right;
1365
+ }
1366
+
1367
+
1368
+ /* filter-list/base/inputs/MultiDateInput.module.css */
1369
+ /*
1370
+ * Copyright 2025 Palantir Technologies, Inc. All rights reserved.
1371
+ *
1372
+ * Licensed under the Apache License, Version 2.0 (the "License");
1373
+ * you may not use this file except in compliance with the License.
1374
+ * You may obtain a copy of the License at
1375
+ *
1376
+ * http://www.apache.org/licenses/LICENSE-2.0
1377
+ *
1378
+ * Unless required by applicable law or agreed to in writing, software
1379
+ * distributed under the License is distributed on an "AS IS" BASIS,
1380
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1381
+ * See the License for the specific language governing permissions and
1382
+ * limitations under the License.
1383
+ */
1384
+
1385
+ .MultiDateInput-module__multiDate___iR6FxhLx {
1386
+ display: flex;
1387
+ flex-direction: column;
1388
+ gap: var(--osdk-filter-multiselect-gap);
1389
+ }
1390
+
1391
+ .MultiDateInput-module__clearAll___D8NKeHuy {
1392
+ font-size: var(--osdk-typography-size-body-small);
1393
+ color: var(--osdk-intent-primary-rest);
1394
+ background: transparent;
1395
+ border: none;
1396
+ cursor: pointer;
1397
+ padding: calc(var(--osdk-surface-spacing) * 0.5);
1398
+
1399
+ &:hover {
1400
+ text-decoration: underline;
1401
+ }
1402
+ }
1403
+
1404
+ .MultiDateInput-module__calendarContainer___w1g1yBwS {
1405
+ display: flex;
1406
+ }
1407
+
1408
+ .MultiDateInput-module__input___TcOQZD9Z {
1409
+ flex: 1;
1410
+ font-size: var(--osdk-typography-size-body-medium);
1411
+ padding: var(--osdk-filter-input-padding);
1412
+ border: var(--osdk-filter-input-border);
1413
+ border-radius: var(--osdk-filter-input-border-radius);
1414
+ background: var(--osdk-filter-input-bg);
1415
+ color: var(--osdk-filter-input-color);
1416
+
1417
+ &:focus {
1418
+ border-color: var(--osdk-filter-input-focus-border);
1419
+ outline: var(--osdk-filter-input-focus-outline-width) solid var(--osdk-filter-input-focus-outline-color);
1420
+ outline-offset: var(--osdk-filter-input-focus-outline-offset);
1421
+ }
1422
+ }
1423
+
1424
+
1425
+ /* filter-list/base/inputs/MultiSelectInput.module.css */
1426
+ /*
1427
+ * Copyright 2025 Palantir Technologies, Inc. All rights reserved.
1428
+ *
1429
+ * Licensed under the Apache License, Version 2.0 (the "License");
1430
+ * you may not use this file except in compliance with the License.
1431
+ * You may obtain a copy of the License at
1432
+ *
1433
+ * http://www.apache.org/licenses/LICENSE-2.0
1434
+ *
1435
+ * Unless required by applicable law or agreed to in writing, software
1436
+ * distributed under the License is distributed on an "AS IS" BASIS,
1437
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1438
+ * See the License for the specific language governing permissions and
1439
+ * limitations under the License.
1440
+ */
1441
+
1442
+ .MultiSelectInput-module__multiSelect___QW1VndMR {
1443
+ display: flex;
1444
+ flex-direction: column;
1445
+ gap: var(--osdk-filter-multiselect-gap);
1446
+ }
1447
+
1448
+ .MultiSelectInput-module__inputRow___rWRIzWSC {
1449
+ display: flex;
1450
+ align-items: center;
1451
+ gap: var(--osdk-filter-multiselect-inputRow-gap);
1452
+ }
1453
+
1454
+ .MultiSelectInput-module__clearButton___tSH63Y1q {
1455
+ flex-shrink: 0;
1456
+ }
1457
+
1458
+ .MultiSelectInput-module__count___QykG01go {
1459
+ font-variant-numeric: tabular-nums;
1460
+ }
1461
+
1462
+
1463
+ /* filter-list/base/inputs/NullValueWrapper.module.css */
1464
+ /*
1465
+ * Copyright 2025 Palantir Technologies, Inc. All rights reserved.
1466
+ *
1467
+ * Licensed under the Apache License, Version 2.0 (the "License");
1468
+ * you may not use this file except in compliance with the License.
1469
+ * You may obtain a copy of the License at
1470
+ *
1471
+ * http://www.apache.org/licenses/LICENSE-2.0
1472
+ *
1473
+ * Unless required by applicable law or agreed to in writing, software
1474
+ * distributed under the License is distributed on an "AS IS" BASIS,
1475
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1476
+ * See the License for the specific language governing permissions and
1477
+ * limitations under the License.
1478
+ */
1479
+
1480
+ .NullValueWrapper-module__nullWrapper___hfIurJcX {
1481
+ display: flex;
1482
+ flex-direction: column;
1483
+ gap: var(--osdk-filter-null-wrapper-gap);
1484
+ }
1485
+
1486
+ .NullValueWrapper-module__nullValueRow___sHIqcE89 {
1487
+ display: flex;
1488
+ align-items: center;
1489
+ justify-content: space-between;
1490
+ padding: var(--osdk-filter-null-row-padding);
1491
+ border-top: var(--osdk-filter-null-row-border-top);
1492
+ }
1493
+
1494
+ .NullValueWrapper-module__nullLabel___D-f1K2Aq {
1495
+ display: flex;
1496
+ align-items: center;
1497
+ gap: var(--osdk-filter-null-label-gap);
1498
+ cursor: pointer;
1499
+ }
1500
+
1501
+ .NullValueWrapper-module__nullLabelText___jzAptlbZ {
1502
+ font-family: var(--osdk-filter-null-label-font-family);
1503
+ font-size: var(--osdk-filter-null-label-font-size);
1504
+ line-height: var(--osdk-filter-null-label-line-height);
1505
+ color: var(--osdk-filter-null-label-color);
1506
+ }
1507
+
1508
+ .NullValueWrapper-module__count___-Rsq7EuS {
1509
+ font-size: var(--osdk-typography-size-body-small);
1510
+ font-variant-numeric: tabular-nums;
1511
+ color: var(--osdk-typography-color-muted);
1512
+ }
1513
+
1514
+
1515
+ /* filter-list/base/inputs/RangeInput.module.css */
1516
+ /*
1517
+ * Copyright 2025 Palantir Technologies, Inc. All rights reserved.
1518
+ *
1519
+ * Licensed under the Apache License, Version 2.0 (the "License");
1520
+ * you may not use this file except in compliance with the License.
1521
+ * You may obtain a copy of the License at
1522
+ *
1523
+ * http://www.apache.org/licenses/LICENSE-2.0
1524
+ *
1525
+ * Unless required by applicable law or agreed to in writing, software
1526
+ * distributed under the License is distributed on an "AS IS" BASIS,
1527
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1528
+ * See the License for the specific language governing permissions and
1529
+ * limitations under the License.
1530
+ */
1531
+
1532
+ .RangeInput-module__rangeInput___5IlnpUfs {
1533
+ display: flex;
1534
+ flex-direction: column;
1535
+ gap: var(--osdk-filter-range-gap, calc(var(--osdk-surface-spacing) * 2));
1536
+ }
1537
+
1538
+ .RangeInput-module__histogramContainer___suD4IT5D {
1539
+ display: flex;
1540
+ align-items: flex-end;
1541
+ height: var(--osdk-filter-range-histogram-height, 60px);
1542
+ gap: var(--osdk-filter-range-histogram-bar-gap, 2px);
1543
+ }
1544
+
1545
+ .RangeInput-module__histogramBar___togsImv0 {
1546
+ flex: 1;
1547
+ background: var(--osdk-filter-range-histogram-bar-color, var(--osdk-custom-color-gray-3));
1548
+ min-width: var(--osdk-filter-range-histogram-bar-min-width, 4px);
1549
+ transition: background-color var(--osdk-emphasis-transition-duration) var(--osdk-emphasis-ease-default);
1550
+ }
1551
+
1552
+ .RangeInput-module__histogramBar___togsImv0[data-in-range="true"] {
1553
+ background: var(--osdk-filter-range-histogram-bar-active-color, var(--osdk-intent-primary-rest));
1554
+ }
1555
+
1556
+ .RangeInput-module__rangeInputs___6f6mnjwL {
1557
+ display: flex;
1558
+ align-items: flex-end;
1559
+ gap: var(--osdk-filter-range-inputs-gap, calc(var(--osdk-surface-spacing) * 2));
1560
+ }
1561
+
1562
+ .RangeInput-module__inputWrapper___1sk8iEjt {
1563
+ flex: 1;
1564
+ display: flex;
1565
+ flex-direction: column;
1566
+ gap: var(--osdk-filter-range-input-wrapper-gap, calc(var(--osdk-surface-spacing) * 1));
1567
+ }
1568
+
1569
+ .RangeInput-module__inputLabel___-fR6-r3z {
1570
+ font-size: var(--osdk-typography-size-body-small);
1571
+ color: var(--osdk-typography-color-muted);
1572
+ }
1573
+
1574
+ .RangeInput-module__input___e4XWn2rB {
1575
+ font-size: var(--osdk-typography-size-body-small);
1576
+ padding: var(--osdk-filter-input-padding);
1577
+ border: var(--osdk-filter-input-border);
1578
+ border-radius: var(--osdk-filter-input-border-radius);
1579
+ background: var(--osdk-filter-input-bg);
1580
+ color: var(--osdk-filter-input-color);
1581
+
1582
+ &:focus {
1583
+ border-color: var(--osdk-filter-input-focus-border);
1584
+ outline: var(--osdk-filter-input-focus-outline-width) solid var(--osdk-filter-input-focus-outline-color);
1585
+ outline-offset: var(--osdk-filter-input-focus-outline-offset);
1586
+ }
1587
+
1588
+ &::placeholder {
1589
+ color: var(--osdk-filter-input-placeholder-color);
1590
+ }
1591
+ }
1592
+
1593
+ .RangeInput-module__separator___ml1GvZvm {
1594
+ padding-bottom: calc(var(--osdk-surface-spacing) * 1.5);
1595
+ color: var(--osdk-typography-color-muted);
1596
+ }
1597
+
1598
+
1599
+ /* filter-list/base/inputs/SingleDateInput.module.css */
1600
+ /*
1601
+ * Copyright 2025 Palantir Technologies, Inc. All rights reserved.
1602
+ *
1603
+ * Licensed under the Apache License, Version 2.0 (the "License");
1604
+ * you may not use this file except in compliance with the License.
1605
+ * You may obtain a copy of the License at
1606
+ *
1607
+ * http://www.apache.org/licenses/LICENSE-2.0
1608
+ *
1609
+ * Unless required by applicable law or agreed to in writing, software
1610
+ * distributed under the License is distributed on an "AS IS" BASIS,
1611
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1612
+ * See the License for the specific language governing permissions and
1613
+ * limitations under the License.
1614
+ */
1615
+
1616
+ .SingleDateInput-module__singleDate___vuPq29dO {
1617
+ display: flex;
1618
+ flex-direction: column;
1619
+ }
1620
+
1621
+ .SingleDateInput-module__dateContainer___8nbNGHTi {
1622
+ display: flex;
1623
+ align-items: center;
1624
+ gap: var(--osdk-filter-select-container-gap);
1625
+ }
1626
+
1627
+ .SingleDateInput-module__input___SijNvgB7 {
1628
+ flex: 1;
1629
+ font-size: var(--osdk-typography-size-body-medium);
1630
+ padding: var(--osdk-filter-input-padding);
1631
+ border: var(--osdk-filter-input-border);
1632
+ border-radius: var(--osdk-filter-input-border-radius);
1633
+ background: var(--osdk-filter-input-bg);
1634
+ color: var(--osdk-filter-input-color);
1635
+
1636
+ &:focus {
1637
+ border-color: var(--osdk-filter-input-focus-border);
1638
+ outline: var(--osdk-filter-input-focus-outline-width) solid var(--osdk-filter-input-focus-outline-color);
1639
+ outline-offset: var(--osdk-filter-input-focus-outline-offset);
1640
+ }
1641
+ }
1642
+
1643
+ .SingleDateInput-module__clearButton___q1-uPMWI {
1644
+ display: flex;
1645
+ align-items: center;
1646
+ justify-content: center;
1647
+ padding: var(--osdk-filter-input-clear-padding);
1648
+ border: none;
1649
+ background: transparent;
1650
+ cursor: pointer;
1651
+ color: var(--osdk-filter-input-icon-color);
1652
+ border-radius: var(--osdk-filter-input-clear-border-radius);
1653
+ transition: background-color var(--osdk-filter-input-transition);
1654
+
1655
+ &:hover {
1656
+ background: var(--osdk-filter-input-clear-bg-hover);
1657
+ }
1658
+
1659
+ &:active {
1660
+ background: var(--osdk-filter-input-clear-bg-active);
1661
+ }
1662
+ }
1663
+
1664
+
1665
+ /* filter-list/base/inputs/SingleSelectInput.module.css */
1666
+ /*
1667
+ * Copyright 2025 Palantir Technologies, Inc. All rights reserved.
1668
+ *
1669
+ * Licensed under the Apache License, Version 2.0 (the "License");
1670
+ * you may not use this file except in compliance with the License.
1671
+ * You may obtain a copy of the License at
1672
+ *
1673
+ * http://www.apache.org/licenses/LICENSE-2.0
1674
+ *
1675
+ * Unless required by applicable law or agreed to in writing, software
1676
+ * distributed under the License is distributed on an "AS IS" BASIS,
1677
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1678
+ * See the License for the specific language governing permissions and
1679
+ * limitations under the License.
1680
+ */
1681
+
1682
+ .SingleSelectInput-module__singleSelect___c08JWaD4 {
1683
+ display: flex;
1684
+ flex-direction: column;
1685
+ }
1686
+
1687
+ .SingleSelectInput-module__selectContainer___QBp8RBCT {
1688
+ display: flex;
1689
+ align-items: center;
1690
+ gap: var(--osdk-filter-select-container-gap);
1691
+ position: relative;
1692
+ }
1693
+
1694
+ .SingleSelectInput-module__clearButton___mnHKL2FB {
1695
+ display: flex;
1696
+ align-items: center;
1697
+ justify-content: center;
1698
+ padding: var(--osdk-filter-select-clear-padding);
1699
+ border: none;
1700
+ background: transparent;
1701
+ cursor: pointer;
1702
+ color: var(--osdk-filter-select-clear-color);
1703
+ border-radius: var(--osdk-filter-select-clear-border-radius);
1704
+ transition: color var(--osdk-filter-select-clear-transition),
1705
+ background-color var(--osdk-filter-select-clear-transition);
1706
+
1707
+ &:hover {
1708
+ color: var(--osdk-filter-select-clear-color-hover);
1709
+ background-color: var(--osdk-filter-select-clear-bg-hover);
1710
+ }
1711
+
1712
+ &:focus-visible {
1713
+ outline: var(--osdk-filter-input-focus-outline-width) solid var(--osdk-filter-input-focus-outline-color);
1714
+ outline-offset: var(--osdk-filter-input-focus-outline-offset);
1715
+ }
1716
+
1717
+ @media (prefers-reduced-motion: reduce) {
1718
+ transition: none;
1719
+ }
1720
+ }
1721
+
1722
+
1723
+ /* filter-list/base/inputs/TextTagsInput.module.css */
1724
+ /*
1725
+ * Copyright 2025 Palantir Technologies, Inc. All rights reserved.
1726
+ *
1727
+ * Licensed under the Apache License, Version 2.0 (the "License");
1728
+ * you may not use this file except in compliance with the License.
1729
+ * You may obtain a copy of the License at
1730
+ *
1731
+ * http://www.apache.org/licenses/LICENSE-2.0
1732
+ *
1733
+ * Unless required by applicable law or agreed to in writing, software
1734
+ * distributed under the License is distributed on an "AS IS" BASIS,
1735
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1736
+ * See the License for the specific language governing permissions and
1737
+ * limitations under the License.
1738
+ */
1739
+
1740
+ .TextTagsInput-module__textTags___3hHCVJWH {
1741
+ display: flex;
1742
+ flex-direction: column;
1743
+ gap: var(--osdk-filter-texttags-gap);
1744
+ }
1745
+
1746
+ .TextTagsInput-module__input___Z1Od1KUG {
1747
+ flex: 1;
1748
+ }
1749
+
1750
+
1751
+ /* filter-list/base/inputs/TimelineInput.module.css */
1752
+ /*
1753
+ * Copyright 2025 Palantir Technologies, Inc. All rights reserved.
1754
+ *
1755
+ * Licensed under the Apache License, Version 2.0 (the "License");
1756
+ * you may not use this file except in compliance with the License.
1757
+ * You may obtain a copy of the License at
1758
+ *
1759
+ * http://www.apache.org/licenses/LICENSE-2.0
1760
+ *
1761
+ * Unless required by applicable law or agreed to in writing, software
1762
+ * distributed under the License is distributed on an "AS IS" BASIS,
1763
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1764
+ * See the License for the specific language governing permissions and
1765
+ * limitations under the License.
1766
+ */
1767
+
1768
+ .TimelineInput-module__timeline___43N82HCH {
1769
+ display: flex;
1770
+ flex-direction: column;
1771
+ gap: var(--osdk-filter-range-gap, calc(var(--osdk-surface-spacing) * 2));
1772
+ }
1773
+
1774
+ .TimelineInput-module__labels___Co8bihV9 {
1775
+ display: flex;
1776
+ align-items: center;
1777
+ gap: var(--osdk-surface-spacing);
1778
+ font-size: var(--osdk-typography-size-body-small);
1779
+ color: var(--osdk-typography-color-muted);
1780
+ }
1781
+
1782
+ .TimelineInput-module__clearButton___6TCIW46Z {
1783
+ display: flex;
1784
+ align-items: center;
1785
+ justify-content: center;
1786
+ padding: calc(var(--osdk-surface-spacing) * 0.5);
1787
+ border: none;
1788
+ background: transparent;
1789
+ cursor: pointer;
1790
+ color: var(--osdk-iconography-color-muted);
1791
+ border-radius: var(--osdk-surface-border-radius);
1792
+ margin-left: auto;
1793
+
1794
+ &:hover {
1795
+ background: var(--osdk-surface-background-color-default-hover);
1796
+ color: var(--osdk-typography-color-default-rest);
1797
+ }
1798
+ }
1799
+
1800
+ .TimelineInput-module__brush___DCoA1XWA {
1801
+ display: flex;
1802
+ align-items: center;
1803
+ gap: var(--osdk-surface-spacing);
1804
+ }
1805
+
1806
+ .TimelineInput-module__brush___DCoA1XWA span {
1807
+ color: var(--osdk-typography-color-muted);
1808
+ }
1809
+
1810
+ .TimelineInput-module__input___yAEKg6Mr {
1811
+ flex: 1;
1812
+ font-size: var(--osdk-typography-size-body-medium);
1813
+ padding: var(--osdk-filter-input-padding);
1814
+ border: var(--osdk-filter-input-border);
1815
+ border-radius: var(--osdk-filter-input-border-radius);
1816
+ background: var(--osdk-filter-input-bg);
1817
+ color: var(--osdk-filter-input-color);
1818
+
1819
+ &:focus {
1820
+ border-color: var(--osdk-filter-input-focus-border);
1821
+ outline: var(--osdk-filter-input-focus-outline-width) solid var(--osdk-filter-input-focus-outline-color);
1822
+ outline-offset: var(--osdk-filter-input-focus-outline-offset);
1823
+ }
1824
+ }
1825
+
1826
+
1827
+ /* filter-list/base/inputs/ToggleInput.module.css */
1828
+ /*
1829
+ * Copyright 2025 Palantir Technologies, Inc. All rights reserved.
1830
+ *
1831
+ * Licensed under the Apache License, Version 2.0 (the "License");
1832
+ * you may not use this file except in compliance with the License.
1833
+ * You may obtain a copy of the License at
1834
+ *
1835
+ * http://www.apache.org/licenses/LICENSE-2.0
1836
+ *
1837
+ * Unless required by applicable law or agreed to in writing, software
1838
+ * distributed under the License is distributed on an "AS IS" BASIS,
1839
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1840
+ * See the License for the specific language governing permissions and
1841
+ * limitations under the License.
1842
+ */
1843
+
1844
+ .ToggleInput-module__toggleInput___bbjujXUD {
1845
+ display: flex;
1846
+ align-items: center;
1847
+ }
1848
+
1849
+ .ToggleInput-module__toggleLabel___9rnff5JB {
1850
+ display: flex;
1851
+ align-items: center;
1852
+ gap: var(--osdk-filter-toggle-label-gap);
1853
+ cursor: pointer;
1854
+ }
1855
+
1856
+ .ToggleInput-module__labelText___jfty2eJo {
1857
+ font-family: var(--osdk-filter-toggle-label-font-family);
1858
+ font-size: var(--osdk-filter-toggle-label-font-size);
1859
+ line-height: var(--osdk-filter-toggle-label-line-height);
1860
+ color: var(--osdk-filter-toggle-label-color);
1861
+ }
1862
+
1863
+
1864
+ /* filter-list/base/inputs/shared.module.css */
1865
+ /*
1866
+ * Copyright 2025 Palantir Technologies, Inc. All rights reserved.
1867
+ *
1868
+ * Licensed under the Apache License, Version 2.0 (the "License");
1869
+ * you may not use this file except in compliance with the License.
1870
+ * You may obtain a copy of the License at
1871
+ *
1872
+ * http://www.apache.org/licenses/LICENSE-2.0
1873
+ *
1874
+ * Unless required by applicable law or agreed to in writing, software
1875
+ * distributed under the License is distributed on an "AS IS" BASIS,
1876
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1877
+ * See the License for the specific language governing permissions and
1878
+ * limitations under the License.
1879
+ */
1880
+
1881
+ /* Shared message styles for filter inputs */
1882
+ .shared-module__loadingMessage___l0c3ANEV,
1883
+ .shared-module__errorMessage___9SeAT7P8,
1884
+ .shared-module__emptyMessage___z7gK6NAb {
1885
+ font-size: var(--osdk-typography-size-body-small);
1886
+ padding: var(--osdk-surface-spacing);
1887
+ }
1888
+
1889
+ .shared-module__loadingMessage___l0c3ANEV,
1890
+ .shared-module__emptyMessage___z7gK6NAb {
1891
+ color: var(--osdk-typography-color-muted);
1892
+ }
1893
+
1894
+ .shared-module__errorMessage___9SeAT7P8 {
1895
+ color: var(--osdk-intent-danger-rest);
1896
+ }
1897
+
1898
+ /* Shared tag styles */
1899
+ .shared-module__tagContainer___iwrGoxe0 {
1900
+ display: flex;
1901
+ flex-wrap: wrap;
1902
+ gap: var(--osdk-filter-tag-container-gap);
1903
+ }
1904
+
1905
+ .shared-module__tag___p4pKeKBG {
1906
+ display: inline-flex;
1907
+ align-items: center;
1908
+ gap: var(--osdk-filter-tag-gap);
1909
+ padding: var(--osdk-filter-tag-padding);
1910
+ border-radius: var(--osdk-filter-tag-border-radius);
1911
+ background-color: var(--osdk-filter-tag-bg);
1912
+ font-family: var(--osdk-filter-tag-font-family);
1913
+ font-size: var(--osdk-filter-tag-font-size);
1914
+ line-height: var(--osdk-filter-tag-line-height);
1915
+ color: var(--osdk-filter-tag-color);
1916
+ }
1917
+
1918
+ .shared-module__tagRemove___fcKemFM7 {
1919
+ display: flex;
1920
+ align-items: center;
1921
+ justify-content: center;
1922
+ padding: 0;
1923
+ border: none;
1924
+ background: transparent;
1925
+ cursor: pointer;
1926
+ color: var(--osdk-filter-tag-remove-color);
1927
+ font-size: var(--osdk-filter-tag-remove-font-size);
1928
+ line-height: 1;
1929
+ transition: color var(--osdk-filter-tag-remove-transition);
1930
+
1931
+ &:hover {
1932
+ color: var(--osdk-filter-tag-remove-color-hover);
1933
+ }
1934
+
1935
+ &:focus-visible {
1936
+ outline: var(--osdk-filter-input-focus-outline-width) solid var(--osdk-filter-input-focus-outline-color);
1937
+ outline-offset: var(--osdk-filter-input-focus-outline-offset);
1938
+ }
1939
+
1940
+ @media (prefers-reduced-motion: reduce) {
1941
+ transition: none;
1942
+ }
1943
+ }
1944
+
1945
+
1946
+ /* object-table/CellContextMenu.module.css */
1947
+ /*
1948
+ * Copyright 2025 Palantir Technologies, Inc. All rights reserved.
1949
+ *
1950
+ * Licensed under the Apache License, Version 2.0 (the "License");
1951
+ * you may not use this file except in compliance with the License.
1952
+ * You may obtain a copy of the License at
1953
+ *
1954
+ * http://www.apache.org/licenses/LICENSE-2.0
1955
+ *
1956
+ * Unless required by applicable law or agreed to in writing, software
1957
+ * distributed under the License is distributed on an "AS IS" BASIS,
1958
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1959
+ * See the License for the specific language governing permissions and
1960
+ * limitations under the License.
1961
+ */
1962
+
1963
+ .CellContextMenu-module__osdkCellContextMenu___lZrHhShI {
1964
+ position: fixed;
1965
+ z-index: var(--osdk-surface-z-index-2);
1966
+ }
1967
+
1968
+
1969
+ /* object-table/ColumnConfigDialog.module.css */
1970
+ /*
1971
+ * Copyright 2025 Palantir Technologies, Inc. All rights reserved.
1972
+ *
1973
+ * Licensed under the Apache License, Version 2.0 (the "License");
1974
+ * you may not use this file except in compliance with the License.
1975
+ * You may obtain a copy of the License at
1976
+ *
1977
+ * http://www.apache.org/licenses/LICENSE-2.0
1978
+ *
1979
+ * Unless required by applicable law or agreed to in writing, software
1980
+ * distributed under the License is distributed on an "AS IS" BASIS,
1981
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1982
+ * See the License for the specific language governing permissions and
1983
+ * limitations under the License.
1984
+ */
1985
+
1986
+ .ColumnConfigDialog-module__title___-eLUgB-0 {
1987
+ display: flex;
1988
+ align-items: center;
1989
+ gap: var(--osdk-surface-spacing);
1990
+ }
1991
+
1992
+ /* Override dialog styling */
1993
+ .ColumnConfigDialog-module__columnConfigDialog___RteuzCJ2 {
1994
+ --osdk-dialog-min-width: var(--osdk-table-column-config-dialog-min-width);
1995
+ --osdk-dialog-min-height: var(--osdk-table-column-config-dialog-min-height);
1996
+ --osdk-dialog-body-padding: 0;
1997
+ }
1998
+
1999
+ .ColumnConfigDialog-module__dialogLayout___fynnW1wM {
2000
+ display: flex;
2001
+ flex-direction: row;
2002
+ gap: 0;
2003
+ flex: 1;
2004
+ min-height: 0;
2005
+ overflow: hidden;
2006
+ }
2007
+
2008
+ .ColumnConfigDialog-module__visibleColumnsContainer___0ay4nqjq {
2009
+ flex: 1.5;
2010
+ display: flex;
2011
+ flex-direction: column;
2012
+ overflow: hidden;
2013
+ padding: calc(var(--osdk-surface-spacing) * 5);
2014
+ background: var(--osdk-table-column-config-visible-columns-bg);
2015
+ border-right: 1px solid var(--osdk-surface-border-color-default);
2016
+ }
2017
+
2018
+ .ColumnConfigDialog-module__availableColumnsContainer___CP3JCm7s {
2019
+ flex: 1;
2020
+ display: flex;
2021
+ flex-direction: column;
2022
+ overflow: hidden;
2023
+ padding: calc(var(--osdk-surface-spacing) * 5)
2024
+ calc(var(--osdk-surface-spacing) * 3);
2025
+ }
2026
+
2027
+ .ColumnConfigDialog-module__sectionHeader___jWPS3Qnr {
2028
+ display: flex;
2029
+ align-items: center;
2030
+ justify-content: space-between;
2031
+ margin-bottom: calc(var(--osdk-surface-spacing) * 5);
2032
+ }
2033
+
2034
+ .ColumnConfigDialog-module__sectionTitle___m1qCEPdS {
2035
+ display: flex;
2036
+ justify-content: flex-start;
2037
+ align-items: flex-start;
2038
+ font-size: var(--osdk-typography-size-body-medium);
2039
+ font-weight: var(--osdk-typography-weight-bold);
2040
+ color: var(--osdk-typography-color-muted);
2041
+ flex-shrink: 0;
2042
+ gap: var(--osdk-surface-spacing);
2043
+ }
2044
+
2045
+ .ColumnConfigDialog-module__countTag___t-3WvBqR {
2046
+ display: inline-flex;
2047
+ align-items: center;
2048
+ justify-content: center;
2049
+ background: var(--osdk-custom-color-gray-3);
2050
+ padding: calc(var(--osdk-surface-spacing) / 2)
2051
+ calc(var(--osdk-surface-spacing) * 1.5);
2052
+ border-radius: var(--osdk-surface-border-radius);
2053
+ font-size: var(--osdk-typography-size-body-small);
2054
+ font-weight: var(--osdk-typography-weight-default);
2055
+ color: var(--osdk-typography-color-default-rest);
2056
+ }
2057
+
2058
+ .ColumnConfigDialog-module__sectionHint___FF20XJsO {
2059
+ font-size: var(--osdk-typography-size-body-small);
2060
+ color: var(--osdk-typography-color-muted);
2061
+ }
2062
+
2063
+ .ColumnConfigDialog-module__columnList___56WfmgqM {
2064
+ flex: 1;
2065
+ min-height: 0;
2066
+ overflow-y: auto;
2067
+ overscroll-behavior: contain;
2068
+ }
2069
+
2070
+ .ColumnConfigDialog-module__searchContainer___FJGpQP-l {
2071
+ margin-bottom: calc(var(--osdk-surface-spacing) * 2);
2072
+ flex-shrink: 0;
2073
+ }
2074
+
2075
+ .ColumnConfigDialog-module__propertiesList___mxu4p6xi {
2076
+ flex: 1;
2077
+ min-height: 0;
2078
+ display: flex;
2079
+ flex-direction: column;
2080
+ width: 100%;
2081
+ }
2082
+
2083
+ .ColumnConfigDialog-module__categoryHeader___lP0lZbIe {
2084
+ display: flex;
2085
+ align-items: center;
2086
+ justify-content: flex-start;
2087
+ width: 100%;
2088
+ padding: calc(var(--osdk-surface-spacing) * 2)
2089
+ calc(var(--osdk-surface-spacing) * 3);
2090
+ background: none;
2091
+ border: none;
2092
+ margin: 0;
2093
+ gap: calc(var(--osdk-surface-spacing) * 3);
2094
+ flex-shrink: 0;
2095
+ }
2096
+
2097
+ .ColumnConfigDialog-module__categoryTrigger___M2XqiHkC {
2098
+ display: flex;
2099
+ align-items: center;
2100
+ flex: 1;
2101
+ background: none;
2102
+ border: none;
2103
+ cursor: pointer;
2104
+ padding: 0;
2105
+
2106
+ &:focus {
2107
+ outline: none;
2108
+ }
2109
+
2110
+ &:focus-visible {
2111
+ outline: var(--osdk-focus-outline);
2112
+ outline-offset: var(--osdk-focus-visible-outline-offset);
2113
+ }
2114
+ }
2115
+
2116
+ .ColumnConfigDialog-module__categoryTitle___cezyOg9g {
2117
+ flex: 1;
2118
+ color: var(--osdk-typography-color-muted);
2119
+ font-size: var(--osdk-typography-size-body-small);
2120
+ font-weight: var(--osdk-typography-weight-bold);
2121
+ text-align: left;
2122
+ }
2123
+
2124
+ .ColumnConfigDialog-module__categoryCount___ETEehPDA {
2125
+ color: var(--osdk-typography-color-muted);
2126
+ font-size: var(--osdk-typography-size-body-small);
2127
+ margin-left: var(--osdk-surface-spacing);
2128
+ }
2129
+
2130
+ .ColumnConfigDialog-module__caretIcon___swDdhJ5M {
2131
+ color: var(--osdk-typography-color-muted);
2132
+ display: flex;
2133
+ justify-content: center;
2134
+ align-items: center;
2135
+ }
2136
+
2137
+ .ColumnConfigDialog-module__categoryTrigger___M2XqiHkC[data-panel-open] .ColumnConfigDialog-module__caretIcon___swDdhJ5M {
2138
+ transform: rotate(180deg);
2139
+ }
2140
+
2141
+ .ColumnConfigDialog-module__checkbox___aD9y9eMZ {
2142
+ width: var(--osdk-checkbox-icon-size);
2143
+ height: var(--osdk-checkbox-icon-size);
2144
+ }
2145
+
2146
+ .ColumnConfigDialog-module__propertyList___Z-uizzUM {
2147
+ display: flex;
2148
+ flex-direction: column;
2149
+ flex: 1;
2150
+ min-height: 0;
2151
+ overflow-y: auto;
2152
+ overscroll-behavior: contain;
2153
+ }
2154
+
2155
+ .ColumnConfigDialog-module__propertyItem___u41rBMbM {
2156
+ display: flex;
2157
+ align-items: center;
2158
+ flex-direction: row;
2159
+ width: 100%;
2160
+ gap: calc(var(--osdk-surface-spacing) * 3);
2161
+ padding: calc(var(--osdk-surface-spacing) * 2)
2162
+ calc(var(--osdk-surface-spacing) * 3);
2163
+ background: none;
2164
+ border: none;
2165
+ cursor: pointer;
2166
+ text-align: left;
2167
+ border-radius: var(--osdk-surface-border-radius);
2168
+
2169
+ &:hover {
2170
+ background-color: var(--osdk-surface-background-color-default-hover);
2171
+ }
2172
+ }
2173
+
2174
+ .ColumnConfigDialog-module__checkboxIndicator___zO12iDjb {
2175
+ color: var(--osdk-intent-primary-foreground);
2176
+ display: flex;
2177
+ align-items: center;
2178
+ justify-content: center;
2179
+ }
2180
+
2181
+ .ColumnConfigDialog-module__propertyName___zHUrcS9I {
2182
+ text-align: left;
2183
+ flex: 1;
2184
+ font-size: var(--osdk-typography-size-body-medium);
2185
+ font-weight: 400;
2186
+ color: var(--osdk-typography-color-default-rest);
2187
+ padding: 0;
2188
+ overflow: hidden;
2189
+ text-overflow: ellipsis;
2190
+ white-space: nowrap;
2191
+ background: none;
2192
+ border: none;
2193
+
2194
+ &:focus {
2195
+ outline: none;
2196
+ }
2197
+
2198
+ &:focus-visible {
2199
+ outline: var(--osdk-focus-outline);
2200
+ outline-offset: var(--osdk-focus-visible-outline-offset);
2201
+ }
2202
+ }
2203
+
2204
+ .ColumnConfigDialog-module__infoIcon___DJouN8cT {
2205
+ color: var(--osdk-typography-color-muted);
2206
+ flex-shrink: 0;
2207
+ width: calc(var(--osdk-checkbox-icon-size) * 0.75);
2208
+ height: calc(var(--osdk-checkbox-icon-size) * 0.75);
2209
+ }
2210
+
2211
+ .ColumnConfigDialog-module__emptyState___MrcWvWgf {
2212
+ padding: calc(var(--osdk-surface-spacing) * 5);
2213
+ text-align: center;
2214
+ color: var(--osdk-typography-color-muted);
2215
+ font-style: italic;
2216
+ }
2217
+
2218
+
2219
+ /* object-table/EditableCell.module.css */
2220
+ .EditableCell-module__osdkEditableInput___2BjN5Q4P:focus {
2221
+ outline: none;
2222
+ }
2223
+
2224
+
2225
+ /* object-table/LoadingCell.module.css */
2226
+ /*
2227
+ * Copyright 2025 Palantir Technologies, Inc. All rights reserved.
2228
+ *
2229
+ * Licensed under the Apache License, Version 2.0 (the "License");
2230
+ * you may not use this file except in compliance with the License.
2231
+ * You may obtain a copy of the License at
2232
+ *
2233
+ * http://www.apache.org/licenses/LICENSE-2.0
2234
+ *
2235
+ * Unless required by applicable law or agreed to in writing, software
2236
+ * distributed under the License is distributed on an "AS IS" BASIS,
2237
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
2238
+ * See the License for the specific language governing permissions and
2239
+ * limitations under the License.
2240
+ */
2241
+
2242
+ .LoadingCell-module__osdkLoadingCell___XLlRWu8h {
2243
+ height: var(--osdk-table-cell-fontSize);
2244
+ border-radius: calc(var(--osdk-surface-border-radius) * 0.5);
2245
+ flex: 1;
2246
+ }
2247
+
2248
+ /* Blueprint skeleton animation keyframes */
2249
+ @keyframes LoadingCell-module__skeleton-glow___pznGbRk6 {
2250
+ from {
2251
+ background: var(--osdk-table-skeleton-color-from);
2252
+ border-color: var(--osdk-table-skeleton-color-from);
2253
+ }
2254
+
2255
+ to {
2256
+ background: var(--osdk-table-skeleton-color-to);
2257
+ border-color: var(--osdk-table-skeleton-color-to);
2258
+ }
2259
+ }
2260
+
2261
+ .LoadingCell-module__osdkCellSkeleton___LJKGtJS1 {
2262
+ animation: 1000ms linear infinite alternate LoadingCell-module__skeleton-glow___pznGbRk6;
2263
+ background: var(--osdk-table-skeleton-color-from);
2264
+ background-clip: padding-box;
2265
+ border-color: var(--osdk-table-skeleton-color-from);
2266
+ border-radius: calc(var(--osdk-surface-border-radius) * 0.5);
2267
+ border: 1px solid var(--osdk-table-skeleton-border-color);
2268
+ box-shadow: none;
2269
+ color: transparent;
2270
+ cursor: default;
2271
+ pointer-events: none;
2272
+ user-select: none;
2273
+ }
2274
+
2275
+
2276
+ /* object-table/MultiColumnSortDialog.module.css */
2277
+ /*
2278
+ * Copyright 2025 Palantir Technologies, Inc. All rights reserved.
2279
+ *
2280
+ * Licensed under the Apache License, Version 2.0 (the "License");
2281
+ * you may not use this file except in compliance with the License.
2282
+ * You may obtain a copy of the License at
2283
+ *
2284
+ * http://www.apache.org/licenses/LICENSE-2.0
2285
+ *
2286
+ * Unless required by applicable law or agreed to in writing, software
2287
+ * distributed under the License is distributed on an "AS IS" BASIS,
2288
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
2289
+ * See the License for the specific language governing permissions and
2290
+ * limitations under the License.
2291
+ */
2292
+
2293
+ .MultiColumnSortDialog-module__title___flQIoSfn {
2294
+ display: flex;
2295
+ align-items: center;
2296
+ gap: var(--osdk-surface-spacing);
2297
+ }
2298
+
2299
+ .MultiColumnSortDialog-module__sortColumnsList___v3PCk33R {
2300
+ display: flex;
2301
+ flex-direction: column;
2302
+ gap: var(--osdk-surface-spacing);
2303
+ flex: 1;
2304
+ justify-content: space-between;
2305
+ overflow-x: hidden;
2306
+ }
2307
+
2308
+ .MultiColumnSortDialog-module__sortableList___hi3POlPa {
2309
+ flex: 1;
2310
+ }
2311
+
2312
+ .MultiColumnSortDialog-module__selectedColumnsContainer___NhRIvQf4 {
2313
+ margin-bottom: calc(var(--osdk-surface-spacing) * 2);
2314
+ }
2315
+
2316
+ .MultiColumnSortDialog-module__sortColumnItem___cOKfBI-p {
2317
+ display: flex;
2318
+ align-items: center;
2319
+ justify-content: space-between;
2320
+ min-width: 0;
2321
+ width: 100%;
2322
+ }
2323
+
2324
+ .MultiColumnSortDialog-module__sortColumnName___hEJuoVvM {
2325
+ min-width: 0;
2326
+ flex-shrink: 1;
2327
+ }
2328
+
2329
+ .MultiColumnSortDialog-module__sortDirectionButton___B0FpU9RX {
2330
+ flex-shrink: 0;
2331
+ background: none;
2332
+ border: none;
2333
+ padding: var(--osdk-surface-spacing);
2334
+ cursor: pointer;
2335
+ display: flex;
2336
+ align-items: center;
2337
+ justify-content: center;
2338
+ border-radius: var(--osdk-surface-border-radius);
2339
+
2340
+ &:hover {
2341
+ background-color: var(--osdk-button-secondary-bg-hover);
2342
+ }
2343
+
2344
+ &:focus {
2345
+ outline: none;
2346
+ }
2347
+
2348
+ &:focus-visible {
2349
+ outline: var(--osdk-focus-outline);
2350
+ outline-offset: calc(-1 * var(--osdk-focus-visible-outline-offset));
2351
+ }
2352
+ }
2353
+
2354
+ .MultiColumnSortDialog-module__sortIcon___ZI5QlXMB {
2355
+ color: var(--osdk-typography-color-muted);
2356
+ }
2357
+
2358
+ .MultiColumnSortDialog-module__addColumnButton___8QIWAnvz {
2359
+ display: flex;
2360
+ align-items: center;
2361
+ gap: calc(var(--osdk-surface-spacing) * 2);
2362
+ width: 100%;
2363
+ padding: calc(var(--osdk-surface-spacing) * 2)
2364
+ calc(var(--osdk-surface-spacing) * 3);
2365
+ background-color: var(--osdk-button-secondary-bg);
2366
+ border: var(--osdk-surface-border);
2367
+ border-radius: var(--osdk-surface-border-radius);
2368
+ cursor: pointer;
2369
+ color: var(--osdk-button-secondary-color);
2370
+ margin-top: calc(var(--osdk-surface-spacing) * 2);
2371
+
2372
+ &:hover:not(:disabled) {
2373
+ background-color: var(--osdk-button-secondary-bg-hover);
2374
+ }
2375
+
2376
+ &:disabled {
2377
+ opacity: 0.5;
2378
+ cursor: not-allowed;
2379
+ }
2380
+
2381
+ &:focus {
2382
+ outline: none;
2383
+ }
2384
+
2385
+ &:focus-visible {
2386
+ outline: var(--osdk-focus-outline);
2387
+ outline-offset: calc(-1 * var(--osdk-focus-visible-outline-offset));
2388
+ }
2389
+ }
2390
+
2391
+ .MultiColumnSortDialog-module__addIcon___RN4RnncD {
2392
+ width: var(--osdk-iconography-size-small);
2393
+ height: var(--osdk-iconography-size-small);
2394
+ color: currentColor;
2395
+ }
2396
+
2397
+ .MultiColumnSortDialog-module__addColumnText___odD8TcY0 {
2398
+ flex: 1;
2399
+ text-align: left;
2400
+ }
2401
+
2402
+ .MultiColumnSortDialog-module__menuPositioner___Tgrl7GHh {
2403
+ z-index: var(--osdk-surface-z-index-2);
2404
+ }
2405
+
2406
+ .MultiColumnSortDialog-module__dropdownMenu___2I4WitTB {
2407
+ background-color: var(--osdk-surface-background-color-default-rest);
2408
+ border: var(--osdk-surface-border);
2409
+ border-radius: var(--osdk-surface-border-radius);
2410
+ box-shadow: var(--osdk-surface-shadow-2);
2411
+ max-height: calc(var(--osdk-dialog-max-height) * 0.5);
2412
+ overflow-y: auto;
2413
+ width: var(--anchor-width);
2414
+
2415
+ &:focus {
2416
+ outline: none;
2417
+ }
2418
+
2419
+ &:focus-visible {
2420
+ outline: var(--osdk-focus-outline);
2421
+ outline-offset: var(--osdk-focus-visible-outline-offset);
2422
+ }
2423
+ }
2424
+
2425
+ .MultiColumnSortDialog-module__menuSearchContainer___W9VUGPnt {
2426
+ border: none;
2427
+ border-bottom: var(--osdk-surface-border);
2428
+ border-radius: 0;
2429
+ position: sticky;
2430
+ top: 0;
2431
+ background-color: var(--osdk-surface-background-color-default-rest);
2432
+ }
2433
+
2434
+ .MultiColumnSortDialog-module__menuEmptyState___YK6rPQwQ {
2435
+ padding: calc(var(--osdk-surface-spacing) * 3);
2436
+ text-align: center;
2437
+ color: var(--osdk-typography-color-muted);
2438
+ font-size: var(--osdk-typography-size-body-medium);
2439
+ }
2440
+
2441
+ .MultiColumnSortDialog-module__dropdownItem___ktRdXIQ8 {
2442
+ display: block;
2443
+ width: 100%;
2444
+ text-align: left;
2445
+ padding: calc(var(--osdk-surface-spacing) * 2)
2446
+ calc(var(--osdk-surface-spacing) * 3);
2447
+ background: none;
2448
+ border: none;
2449
+ cursor: pointer;
2450
+ font-size: var(--osdk-typography-size-body-medium);
2451
+ color: var(--osdk-typography-color-default-rest);
2452
+
2453
+ &:hover {
2454
+ background-color: var(--osdk-surface-background-color-default-hover);
2455
+ }
2456
+
2457
+ &:focus {
2458
+ outline: none;
2459
+ }
2460
+
2461
+ &:focus-visible {
2462
+ outline: var(--osdk-focus-outline);
2463
+ outline-offset: calc(-1 * var(--osdk-focus-visible-outline-offset));
2464
+ }
2465
+ }
2466
+
2467
+ .MultiColumnSortDialog-module__truncate___CXIHooZw {
2468
+ overflow: hidden;
2469
+ text-overflow: ellipsis;
2470
+ white-space: nowrap;
2471
+ }
2472
+
2473
+
2474
+ /* object-table/NonIdealState.module.css */
2475
+ /*
2476
+ * Copyright 2025 Palantir Technologies, Inc. All rights reserved.
2477
+ *
2478
+ * Licensed under the Apache License, Version 2.0 (the "License");
2479
+ * you may not use this file except in compliance with the License.
2480
+ * You may obtain a copy of the License at
2481
+ *
2482
+ * http://www.apache.org/licenses/LICENSE-2.0
2483
+ *
2484
+ * Unless required by applicable law or agreed to in writing, software
2485
+ * distributed under the License is distributed on an "AS IS" BASIS,
2486
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
2487
+ * See the License for the specific language governing permissions and
2488
+ * limitations under the License.
2489
+ */
2490
+
2491
+ .NonIdealState-module__container___43YWBKdO {
2492
+ display: flex;
2493
+ align-items: center;
2494
+ justify-content: center;
2495
+ }
2496
+
2497
+ .NonIdealState-module__message___6OFyA4q- {
2498
+ padding: calc(var(--osdk-surface-spacing) * 5);
2499
+ color: var(--osdk-typography-color-muted);
2500
+ font-style: italic;
2501
+ }
2502
+
2503
+
2504
+ /* object-table/Table.module.css */
2505
+ /*
2506
+ * Copyright 2025 Palantir Technologies, Inc. All rights reserved.
2507
+ *
2508
+ * Licensed under the Apache License, Version 2.0 (the "License");
2509
+ * you may not use this file except in compliance with the License.
2510
+ * You may obtain a copy of the License at
2511
+ *
2512
+ * http://www.apache.org/licenses/LICENSE-2.0
2513
+ *
2514
+ * Unless required by applicable law or agreed to in writing, software
2515
+ * distributed under the License is distributed on an "AS IS" BASIS,
2516
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
2517
+ * See the License for the specific language governing permissions and
2518
+ * limitations under the License.
2519
+ */
2520
+
2521
+ .Table-module__osdkTableWrapper___qNSuMAE2 {
2522
+ display: flex;
2523
+ flex-direction: column;
2524
+ height: 100%;
2525
+ position: relative;
2526
+ }
2527
+
2528
+ .Table-module__osdkTableContainer___QBj68RD- {
2529
+ flex: 1;
2530
+ min-height: 0;
2531
+ overflow: auto;
2532
+ position: relative;
2533
+ }
2534
+
2535
+ .Table-module__osdkTableContainer___QBj68RD- table {
2536
+ border-collapse: collapse;
2537
+ display: grid;
2538
+ table-layout: fixed;
2539
+ width: max-content;
2540
+ min-width: 100%;
2541
+ }
2542
+
2543
+ .Table-module__submitButtonContainer___2UgcHhXl {
2544
+ background-color: var(--osdk-surface-background-color-default-rest);
2545
+ border-top: var(--osdk-table-border);
2546
+ padding: var(--osdk-table-button-container-padding);
2547
+ display: flex;
2548
+ justify-content: flex-end;
2549
+ }
2550
+
2551
+
2552
+ /* object-table/TableBody.module.css */
2553
+ /*
2554
+ * Copyright 2025 Palantir Technologies, Inc. All rights reserved.
2555
+ *
2556
+ * Licensed under the Apache License, Version 2.0 (the "License");
2557
+ * you may not use this file except in compliance with the License.
2558
+ * You may obtain a copy of the License at
2559
+ *
2560
+ * http://www.apache.org/licenses/LICENSE-2.0
2561
+ *
2562
+ * Unless required by applicable law or agreed to in writing, software
2563
+ * distributed under the License is distributed on an "AS IS" BASIS,
2564
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
2565
+ * See the License for the specific language governing permissions and
2566
+ * limitations under the License.
2567
+ */
2568
+
2569
+ .TableBody-module__osdkTableBody___YC9dMzce {
2570
+ display: grid;
2571
+ position: relative;
2572
+ width: max-content;
2573
+ min-width: 100%;
2574
+ }
2575
+
2576
+
2577
+ /* object-table/TableCell.module.css */
2578
+ /*
2579
+ * Copyright 2025 Palantir Technologies, Inc. All rights reserved.
2580
+ *
2581
+ * Licensed under the Apache License, Version 2.0 (the "License");
2582
+ * you may not use this file except in compliance with the License.
2583
+ * You may obtain a copy of the License at
2584
+ *
2585
+ * http://www.apache.org/licenses/LICENSE-2.0
2586
+ *
2587
+ * Unless required by applicable law or agreed to in writing, software
2588
+ * distributed under the License is distributed on an "AS IS" BASIS,
2589
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
2590
+ * See the License for the specific language governing permissions and
2591
+ * limitations under the License.
2592
+ */
2593
+
2594
+ .TableCell-module__osdkTableCell___gVl6jToJ {
2595
+ display: flex;
2596
+ align-items: center;
2597
+ height: 100%;
2598
+ text-align: left;
2599
+ position: relative;
2600
+ padding: var(--osdk-table-cell-padding);
2601
+ font-size: var(--osdk-table-cell-fontSize);
2602
+ color: var(--osdk-table-cell-color);
2603
+ background-color: inherit;
2604
+ border-right: var(--osdk-table-cell-divider);
2605
+
2606
+ &:first-child {
2607
+ border-left: var(--osdk-table-border);
2608
+ }
2609
+
2610
+ &:last-child {
2611
+ border-right: var(--osdk-table-border);
2612
+ }
2613
+ }
2614
+
2615
+ .TableCell-module__osdkTableCell___gVl6jToJ[data-pinned="left"],
2616
+ .TableCell-module__osdkTableCell___gVl6jToJ[data-pinned="right"] {
2617
+ position: sticky;
2618
+ z-index: var(--osdk-surface-z-index-1);
2619
+ background-color: inherit;
2620
+ }
2621
+
2622
+ /* Last left-pinned column - no left-pinned siblings after it */
2623
+ .TableCell-module__osdkTableCell___gVl6jToJ[data-pinned="left"]:not(:has(~ [data-pinned="left"])) {
2624
+ border-right: var(--osdk-table-pinned-column-border);
2625
+ }
2626
+
2627
+ /* First right-pinned column - no right-pinned siblings before it */
2628
+ .TableCell-module__osdkTableCell___gVl6jToJ[data-pinned="right"]:not(
2629
+ :has(~ [data-pinned="right"]):nth-child(n + 2)
2630
+ ) {
2631
+ border-left: var(--osdk-table-pinned-column-border);
2632
+ }
2633
+
2634
+ .TableCell-module__osdkTableCell___gVl6jToJ:has([role="checkbox"]) {
2635
+ justify-content: center;
2636
+ padding: 0;
2637
+ }
2638
+
2639
+ /* Show focus state for editable cells */
2640
+ .TableCell-module__osdkTableCell___gVl6jToJ:not(:has([role="checkbox"])):has(input):focus-within {
2641
+ border: var(--osdk-emphasis-focus-width) solid
2642
+ var(--osdk-emphasis-focus-color);
2643
+ border-radius: var(--osdk-surface-border-radius);
2644
+ background-color: var(--osdk-table-cell-editable-bg);
2645
+ }
2646
+
2647
+ .TableCell-module__osdkTableCellContent___tcj6DRaU:not(:has([role="checkbox"])) {
2648
+ overflow: hidden;
2649
+ text-overflow: ellipsis;
2650
+ white-space: nowrap;
2651
+ text-align: left;
2652
+ }
2653
+
2654
+ .TableCell-module__osdkCheckboxContainer___Ex-KJho3 {
2655
+ display: flex;
2656
+ align-items: center;
2657
+ justify-content: center;
2658
+ width: 100%;
2659
+ height: 100%;
2660
+ }
2661
+
2662
+
2663
+ /* object-table/TableHeader.module.css */
2664
+ /*
2665
+ * Copyright 2025 Palantir Technologies, Inc. All rights reserved.
2666
+ *
2667
+ * Licensed under the Apache License, Version 2.0 (the "License");
2668
+ * you may not use this file except in compliance with the License.
2669
+ * You may obtain a copy of the License at
2670
+ *
2671
+ * http://www.apache.org/licenses/LICENSE-2.0
2672
+ *
2673
+ * Unless required by applicable law or agreed to in writing, software
2674
+ * distributed under the License is distributed on an "AS IS" BASIS,
2675
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
2676
+ * See the License for the specific language governing permissions and
2677
+ * limitations under the License.
2678
+ */
2679
+
2680
+ .TableHeader-module__osdkTableHeader___4Wzqkog9 {
2681
+ display: grid;
2682
+ position: sticky;
2683
+ top: 0;
2684
+ width: max-content;
2685
+ min-width: 100%;
2686
+ height: var(--osdk-table-header-height);
2687
+ z-index: var(--osdk-surface-z-index-1);
2688
+ background-color: var(--osdk-table-header-bg);
2689
+ }
2690
+
2691
+ .TableHeader-module__osdkTableHeader___4Wzqkog9[data-resizing="true"] {
2692
+ cursor: col-resize;
2693
+ user-select: none;
2694
+ }
2695
+
2696
+ .TableHeader-module__osdkTableHeaderRow___lUjQpm91 {
2697
+ display: flex;
2698
+ width: max-content;
2699
+ min-width: 100%;
2700
+ border-bottom: var(--osdk-table-border);
2701
+ }
2702
+
2703
+ .TableHeader-module__osdkTableHeaderCell___iS9lGU8Z {
2704
+ display: flex;
2705
+ align-items: center;
2706
+ text-align: left;
2707
+ position: relative;
2708
+ padding: var(--osdk-table-cell-padding);
2709
+ font-weight: var(--osdk-table-header-fontWeight);
2710
+ font-size: var(--osdk-table-header-fontSize);
2711
+ color: var(--osdk-table-header-color);
2712
+ border-top: var(--osdk-table-border);
2713
+ border-right: var(--osdk-table-header-divider);
2714
+ background-color: inherit;
2715
+
2716
+ &:first-child {
2717
+ border-left: var(--osdk-table-border);
2718
+ }
2719
+
2720
+ &:last-child {
2721
+ border-right: var(--osdk-table-border);
2722
+ }
2723
+ }
2724
+
2725
+ .TableHeader-module__osdkTableHeaderCell___iS9lGU8Z[data-pinned="left"],
2726
+ .TableHeader-module__osdkTableHeaderCell___iS9lGU8Z[data-pinned="right"] {
2727
+ position: sticky;
2728
+ z-index: var(--osdk-surface-z-index-2);
2729
+ background-color: var(--osdk-table-header-bg);
2730
+ }
2731
+
2732
+ /* Last left-pinned column - no left-pinned siblings after it */
2733
+ .TableHeader-module__osdkTableHeaderCell___iS9lGU8Z[data-pinned="left"]:not(:has(~ [data-pinned="left"])) {
2734
+ border-right: var(--osdk-table-pinned-column-border);
2735
+ }
2736
+
2737
+ /* First right-pinned column - no right-pinned siblings before it */
2738
+ .TableHeader-module__osdkTableHeaderCell___iS9lGU8Z[data-pinned="right"]:not(
2739
+ :has(~ [data-pinned="right"]):nth-child(n + 2)
2740
+ ) {
2741
+ border-left: var(--osdk-table-pinned-column-border);
2742
+ }
2743
+
2744
+ .TableHeader-module__osdkTableHeaderCell___iS9lGU8Z:has([role="checkbox"]) {
2745
+ justify-content: center;
2746
+ }
2747
+
2748
+ .TableHeader-module__osdkTableHeaderResizer___qpjGLncF {
2749
+ background: none;
2750
+ cursor: col-resize;
2751
+ height: 100%;
2752
+ position: absolute;
2753
+ right: calc(-1 * var(--osdk-table-border-width));
2754
+ top: 0;
2755
+ touch-action: none;
2756
+ width: 3px;
2757
+ z-index: var(--osdk-surface-z-index-2);
2758
+
2759
+ &:hover {
2760
+ background: var(--osdk-table-resizer-color-hover);
2761
+ }
2762
+
2763
+ &:active {
2764
+ background: var(--osdk-table-resizer-color-active);
2765
+ }
2766
+ }
2767
+
2768
+ .TableHeader-module__osdkLoadingHeaderCell___gohWQuYX {
2769
+ height: var(--osdk-table-header-fontSize);
2770
+ flex: 1;
2771
+ }
2772
+
2773
+
2774
+ /* object-table/TableHeaderContent.module.css */
2775
+ /*
2776
+ * Copyright 2025 Palantir Technologies, Inc. All rights reserved.
2777
+ *
2778
+ * Licensed under the Apache License, Version 2.0 (the "License");
2779
+ * you may not use this file except in compliance with the License.
2780
+ * You may obtain a copy of the License at
2781
+ *
2782
+ * http://www.apache.org/licenses/LICENSE-2.0
2783
+ *
2784
+ * Unless required by applicable law or agreed to in writing, software
2785
+ * distributed under the License is distributed on an "AS IS" BASIS,
2786
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
2787
+ * See the License for the specific language governing permissions and
2788
+ * limitations under the License.
2789
+ */
2790
+
2791
+ .TableHeaderContent-module__osdkHeaderContent___UQM9R9VU {
2792
+ display: -webkit-box;
2793
+ -webkit-box-orient: vertical;
2794
+ -webkit-line-clamp: 2;
2795
+ line-clamp: 2;
2796
+ text-align: left;
2797
+ overflow: hidden;
2798
+ text-overflow: ellipsis;
2799
+ }
2800
+
2801
+ .TableHeaderContent-module__osdkHeaderContent___UQM9R9VU:has([role="checkbox"]) {
2802
+ display: flex;
2803
+ justify-content: center;
2804
+ }
2805
+
2806
+
2807
+ /* object-table/TableHeaderWithPopover.module.css */
2808
+ /*
2809
+ * Copyright 2025 Palantir Technologies, Inc. All rights reserved.
2810
+ *
2811
+ * Licensed under the Apache License, Version 2.0 (the "License");
2812
+ * you may not use this file except in compliance with the License.
2813
+ * You may obtain a copy of the License at
2814
+ *
2815
+ * http://www.apache.org/licenses/LICENSE-2.0
2816
+ *
2817
+ * Unless required by applicable law or agreed to in writing, software
2818
+ * distributed under the License is distributed on an "AS IS" BASIS,
2819
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
2820
+ * See the License for the specific language governing permissions and
2821
+ * limitations under the License.
2822
+ */
2823
+
2824
+ .TableHeaderWithPopover-module__osdkCenterContainer___7EQ0efaV {
2825
+ display: flex;
2826
+ align-items: center;
2827
+ justify-content: center;
2828
+ }
2829
+
2830
+ .TableHeaderWithPopover-module__osdkContentGap___ydRnh6Gk {
2831
+ display: flex;
2832
+ gap: calc(var(--osdk-surface-spacing) * 2);
2833
+ }
2834
+
2835
+ .TableHeaderWithPopover-module__osdkHeaderContainer___Yp1FKb-z {
2836
+ justify-content: space-between;
2837
+ flex: 1;
2838
+ min-width: 0;
2839
+ align-self: stretch;
2840
+ }
2841
+
2842
+ .TableHeaderWithPopover-module__osdkHeaderContentLeft___PpdFKG5D {
2843
+ min-width: 0;
2844
+ flex-shrink: 1;
2845
+ }
2846
+
2847
+ .TableHeaderWithPopover-module__osdkHeaderContentRight___-cSZMBVb {
2848
+ flex-shrink: 0;
2849
+ }
2850
+
2851
+ .TableHeaderWithPopover-module__osdkHeaderText___VnBa1IL3 {
2852
+ display: -webkit-box;
2853
+ -webkit-box-orient: vertical;
2854
+ -webkit-line-clamp: 3;
2855
+ line-clamp: 3;
2856
+ overflow: hidden;
2857
+ text-overflow: ellipsis;
2858
+ flex-grow: 1;
2859
+ }
2860
+
2861
+ .TableHeaderWithPopover-module__osdkHeaderPopoverTrigger___Y5Q22NIE {
2862
+ padding: var(--osdk-table-header-menu-padding);
2863
+ flex-shrink: 0;
2864
+ flex-grow: 0;
2865
+ background-color: var(--osdk-table-header-menu-bg);
2866
+ border: var(--osdk-table-header-menu-border);
2867
+ border-radius: var(--osdk-surface-border-radius);
2868
+ color: var(--osdk-table-header-menu-color);
2869
+ cursor: pointer;
2870
+ user-select: none;
2871
+
2872
+ &:hover {
2873
+ background-color: var(--osdk-table-header-menu-bg-hover);
2874
+ }
2875
+
2876
+ &[data-popup-open] {
2877
+ background-color: var(--osdk-table-header-menu-bg-active);
2878
+ color: var(--osdk-table-header-menu-color-active);
2879
+ }
2880
+
2881
+ &:focus {
2882
+ outline: none;
2883
+ }
2884
+
2885
+ &:focus-visible {
2886
+ outline: var(--osdk-focus-outline);
2887
+ outline-offset: var(--osdk-focus-visible-outline-offset);
2888
+ }
2889
+ }
2890
+
2891
+ .TableHeaderWithPopover-module__osdkHeaderIcon___lgyu9GmV {
2892
+ width: var(--osdk-iconography-size-small);
2893
+ height: var(--osdk-iconography-size-small);
2894
+ }
2895
+
2896
+ .TableHeaderWithPopover-module__osdkHeaderPopup___TMO39wLW {
2897
+ box-sizing: border-box;
2898
+ padding: var(--osdk-surface-spacing);
2899
+ border-radius: var(--osdk-surface-border-radius);
2900
+ border: var(--osdk-surface-border);
2901
+ background-color: var(--osdk-surface-background-color-default-rest);
2902
+ color: var(--osdk-typography-color-default-rest);
2903
+ box-shadow: var(--osdk-surface-shadow-2);
2904
+ font-size: var(--osdk-typography-size-body-medium);
2905
+
2906
+ &:focus {
2907
+ outline: none;
2908
+ }
2909
+ }
2910
+
2911
+ .TableHeaderWithPopover-module__osdkHeaderMenuItem___f-D5iGwi {
2912
+ justify-content: flex-start;
2913
+ padding: var(--osdk-surface-spacing) calc(var(--osdk-surface-spacing) * 2);
2914
+ cursor: pointer;
2915
+
2916
+ &:hover {
2917
+ background-color: var(--osdk-surface-background-color-default-hover);
2918
+ border-radius: var(--osdk-surface-border-radius);
2919
+ }
2920
+
2921
+ &:focus {
2922
+ outline: none;
2923
+ }
2924
+
2925
+ &:focus-visible {
2926
+ outline: var(--osdk-focus-outline);
2927
+ outline-offset: var(--osdk-focus-visible-outline-offset);
2928
+ }
2929
+ }
2930
+
2931
+ .TableHeaderWithPopover-module__osdkHeaderMenuItem___f-D5iGwi .TableHeaderWithPopover-module__osdkHeaderActiveMenuItem___K007KHkr {
2932
+ background-color: var(--osdk-intent-primary-rest);
2933
+ color: var(--osdk-intent-primary-foreground);
2934
+
2935
+ &:hover {
2936
+ background-color: var(--osdk-intent-primary-hover);
2937
+ }
2938
+
2939
+ &:active {
2940
+ background-color: var(--osdk-intent-primary-active);
2941
+ }
2942
+ }
2943
+
2944
+ .TableHeaderWithPopover-module__sortIndex___WDA6gCRz {
2945
+ font-size: var(--osdk-typography-size-body-x-small);
2946
+ margin-left: var(--osdk-surface-spacing);
2947
+ color: var(--osdk-typography-color-muted);
2948
+ }
2949
+
2950
+
2951
+ /* object-table/TableRow.module.css */
2952
+ /*
2953
+ * Copyright 2025 Palantir Technologies, Inc. All rights reserved.
2954
+ *
2955
+ * Licensed under the Apache License, Version 2.0 (the "License");
2956
+ * you may not use this file except in compliance with the License.
2957
+ * You may obtain a copy of the License at
2958
+ *
2959
+ * http://www.apache.org/licenses/LICENSE-2.0
2960
+ *
2961
+ * Unless required by applicable law or agreed to in writing, software
2962
+ * distributed under the License is distributed on an "AS IS" BASIS,
2963
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
2964
+ * See the License for the specific language governing permissions and
2965
+ * limitations under the License.
2966
+ */
2967
+
2968
+ .TableRow-module__osdkTableRow___sjVwZnzA {
2969
+ position: absolute;
2970
+ display: flex;
2971
+ width: max-content;
2972
+ min-width: 100%;
2973
+ background-color: var(--osdk-table-row-bg-default);
2974
+ border-top: var(--osdk-table-row-divider);
2975
+ border-bottom: var(--osdk-table-border-width) solid transparent;
2976
+
2977
+ &:last-child {
2978
+ border-bottom: var(--osdk-table-border);
2979
+ }
2980
+
2981
+ /* Zebra rows */
2982
+ &:nth-child(even) {
2983
+ background-color: var(
2984
+ --osdk-table-row-bg-alternate,
2985
+ var(--osdk-table-row-bg-default)
2986
+ );
2987
+ }
2988
+
2989
+ &:hover {
2990
+ z-index: 1;
2991
+ background-color: var(
2992
+ --osdk-table-row-bg-hover,
2993
+ var(--osdk-surface-background-color-default-hover)
2994
+ );
2995
+ border-top-color: var(--osdk-table-row-border-color-hover);
2996
+ border-bottom-color: var(--osdk-table-row-border-color-hover);
2997
+ }
2998
+
2999
+ &[data-selected="true"] {
3000
+ z-index: 2;
3001
+ background-color: var(--osdk-table-row-bg-active);
3002
+ border-top-color: var(--osdk-table-row-border-color-active);
3003
+ border-bottom-color: var(--osdk-table-row-border-color-active);
3004
+ }
3005
+
3006
+ &[data-selected="true"] + &[data-selected="true"] {
3007
+ border-top-color: transparent;
3008
+ }
3009
+
3010
+ &[data-selected="true"]:has(+ &[data-selected="true"]) {
3011
+ border-bottom-color: transparent;
3012
+ }
3013
+ }
3014
+
3015
+
3016
+ /* shared/ErrorBoundary.module.css */
3017
+ /*
3018
+ * Copyright 2025 Palantir Technologies, Inc. All rights reserved.
3019
+ *
3020
+ * Licensed under the Apache License, Version 2.0 (the "License");
3021
+ * you may not use this file except in compliance with the License.
3022
+ * You may obtain a copy of the License at
3023
+ *
3024
+ * http://www.apache.org/licenses/LICENSE-2.0
3025
+ *
3026
+ * Unless required by applicable law or agreed to in writing, software
3027
+ * distributed under the License is distributed on an "AS IS" BASIS,
3028
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
3029
+ * See the License for the specific language governing permissions and
3030
+ * limitations under the License.
3031
+ */
3032
+
3033
+ .ErrorBoundary-module__errorContainer___FIguBDDu {
3034
+ display: flex;
3035
+ flex-direction: column;
3036
+ align-items: flex-start;
3037
+ gap: var(--osdk-filter-error-gap, 8px);
3038
+ padding: var(--osdk-filter-error-padding, 8px);
3039
+ border-radius: var(--osdk-filter-error-border-radius, 4px);
3040
+ background-color: var(--osdk-filter-error-bg, color-mix(in srgb, var(--osdk-intent-danger-rest, #c23030) 5%, transparent));
3041
+ }
3042
+
3043
+ .ErrorBoundary-module__errorMessage___jUsXUqFA {
3044
+ margin: 0;
3045
+ font-size: var(--osdk-filter-error-font-size, 13px);
3046
+ color: var(--osdk-filter-error-text-color, var(--osdk-intent-danger-rest, #c23030));
3047
+ }
3048
+
3049
+ .ErrorBoundary-module__retryButton___PZVWZOm7 {
3050
+ padding: var(--osdk-filter-error-button-padding, 4px 8px);
3051
+ border: 1px solid var(--osdk-filter-error-button-border-color, currentColor);
3052
+ border-radius: var(--osdk-filter-error-button-border-radius, 3px);
3053
+ background: transparent;
3054
+ font-size: var(--osdk-filter-error-button-font-size, 12px);
3055
+ color: var(--osdk-filter-error-button-color, inherit);
3056
+ cursor: pointer;
3057
+ transition: background-color 150ms ease;
3058
+
3059
+ &:hover {
3060
+ background-color: var(--osdk-filter-error-button-hover-bg, color-mix(in srgb, currentColor 5%, transparent));
3061
+ }
3062
+
3063
+ &:focus-visible {
3064
+ outline: var(--osdk-filter-input-focus-outline-width, 2px) solid var(--osdk-filter-input-focus-outline-color, currentColor);
3065
+ outline-offset: var(--osdk-filter-input-focus-outline-offset, 2px);
3066
+ }
3067
+
3068
+ @media (prefers-reduced-motion: reduce) {
3069
+ transition: none;
3070
+ }
3071
+ }
3072
+
3073
+