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

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 (628) hide show
  1. package/CHANGELOG.md +118 -0
  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 +46 -0
  168. package/build/browser/object-table/DefaultCellRenderer.js.map +1 -0
  169. package/build/browser/object-table/EditableCell.js +101 -0
  170. package/build/browser/object-table/EditableCell.js.map +1 -0
  171. package/build/browser/object-table/EditableCell.module.css +31 -0
  172. package/build/browser/object-table/EditableCell.module.css.js +7 -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 +62 -16
  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 +77 -934
  194. package/build/browser/object-table/Table.js.map +1 -1
  195. package/build/browser/object-table/Table.module.css +37 -0
  196. package/build/browser/object-table/Table.module.css.js +7 -0
  197. package/build/browser/object-table/TableBody.js +43 -261
  198. package/build/browser/object-table/TableBody.js.map +1 -1
  199. package/build/browser/object-table/TableBody.module.css +22 -0
  200. package/build/browser/object-table/TableBody.module.css.js +6 -0
  201. package/build/browser/object-table/TableCell.js +31 -111
  202. package/build/browser/object-table/TableCell.module.css +75 -0
  203. package/build/browser/object-table/TableCell.module.css.js +8 -0
  204. package/build/browser/object-table/TableEditContainer.js +79 -0
  205. package/build/browser/object-table/TableEditContainer.js.map +1 -0
  206. package/build/browser/object-table/TableEditContainer.module.css +44 -0
  207. package/build/browser/object-table/TableEditContainer.module.css.js +9 -0
  208. package/build/browser/object-table/TableHeader.js +126 -216
  209. package/build/browser/object-table/TableHeader.js.map +1 -1
  210. package/build/browser/object-table/TableHeader.module.css +108 -0
  211. package/build/browser/object-table/TableHeader.module.css.js +10 -0
  212. package/build/browser/object-table/TableHeaderContent.js +21 -18
  213. package/build/browser/object-table/TableHeaderContent.module.css +30 -0
  214. package/build/browser/object-table/TableHeaderContent.module.css.js +6 -0
  215. package/build/browser/object-table/TableHeaderWithPopover.js +110 -93
  216. package/build/browser/object-table/TableHeaderWithPopover.js.map +1 -1
  217. package/build/browser/object-table/TableHeaderWithPopover.module.css +141 -0
  218. package/build/browser/object-table/TableHeaderWithPopover.module.css.js +17 -0
  219. package/build/browser/object-table/TableRow.js +37 -147
  220. package/build/browser/object-table/TableRow.js.map +1 -1
  221. package/build/browser/object-table/TableRow.module.css +63 -0
  222. package/build/browser/object-table/TableRow.module.css.js +6 -0
  223. package/build/browser/object-table/hooks/__tests__/useColumnDefs.test.js +14 -2
  224. package/build/browser/object-table/hooks/__tests__/useColumnDefs.test.js.map +1 -1
  225. package/build/browser/object-table/hooks/__tests__/useColumnVisibility.test.js +160 -138
  226. package/build/browser/object-table/hooks/__tests__/useColumnVisibility.test.js.map +1 -1
  227. package/build/browser/object-table/hooks/__tests__/useEditableTable.test.js +292 -0
  228. package/build/browser/object-table/hooks/__tests__/useEditableTable.test.js.map +1 -0
  229. package/build/browser/object-table/hooks/__tests__/useObjectTableData.test.js +113 -25
  230. package/build/browser/object-table/hooks/__tests__/useObjectTableData.test.js.map +1 -1
  231. package/build/browser/object-table/hooks/__tests__/useRowSelection.test.js +48 -0
  232. package/build/browser/object-table/hooks/__tests__/useRowSelection.test.js.map +1 -1
  233. package/build/browser/object-table/hooks/__tests__/useSelectionColumn.test.js +27 -82
  234. package/build/browser/object-table/hooks/__tests__/useSelectionColumn.test.js.map +1 -1
  235. package/build/browser/object-table/hooks/__tests__/useTableSorting.test.js +290 -0
  236. package/build/browser/object-table/hooks/__tests__/useTableSorting.test.js.map +1 -1
  237. package/build/browser/object-table/hooks/useColumnDefs.js +16 -3
  238. package/build/browser/object-table/hooks/useColumnDefs.js.map +1 -1
  239. package/build/browser/object-table/hooks/useColumnResize.js +45 -0
  240. package/build/browser/object-table/hooks/useColumnResize.js.map +1 -0
  241. package/build/browser/object-table/hooks/useColumnVisibility.js +52 -20
  242. package/build/browser/object-table/hooks/useColumnVisibility.js.map +1 -1
  243. package/build/browser/object-table/hooks/useEditableTable.js +66 -0
  244. package/build/browser/object-table/hooks/useEditableTable.js.map +1 -0
  245. package/build/browser/object-table/hooks/useObjectTableData.js +37 -7
  246. package/build/browser/object-table/hooks/useObjectTableData.js.map +1 -1
  247. package/build/browser/object-table/hooks/useRowSelection.js +31 -10
  248. package/build/browser/object-table/hooks/useRowSelection.js.map +1 -1
  249. package/build/browser/object-table/hooks/useSelectionColumn.js +15 -6
  250. package/build/browser/object-table/hooks/useSelectionColumn.js.map +1 -1
  251. package/build/browser/object-table/utils/getCellId.js +20 -0
  252. package/build/browser/object-table/utils/getCellId.js.map +1 -0
  253. package/build/browser/object-table/utils/types.js +2 -0
  254. package/build/browser/object-table/utils/types.js.map +1 -0
  255. package/build/browser/public/experimental.js +2 -0
  256. package/build/browser/public/experimental.js.map +1 -1
  257. package/build/browser/shared/ErrorBoundary.js +62 -0
  258. package/build/browser/shared/ErrorBoundary.js.map +1 -0
  259. package/build/browser/shared/ErrorBoundary.module.css +55 -0
  260. package/build/browser/shared/ErrorBoundary.module.css.js +8 -0
  261. package/build/browser/styles.css +3133 -0
  262. package/build/cjs/public/experimental.cjs +4123 -248
  263. package/build/cjs/public/experimental.cjs.map +1 -1
  264. package/build/cjs/public/experimental.css +1873 -154
  265. package/build/cjs/public/experimental.css.map +1 -1
  266. package/build/cjs/public/experimental.d.cts +475 -50
  267. package/build/esm/base-components/action-button/ActionButton.js +31 -0
  268. package/build/esm/base-components/action-button/ActionButton.js.map +1 -0
  269. package/build/esm/base-components/action-button/ActionButton.module.css +70 -0
  270. package/build/esm/base-components/checkbox/Checkbox.module.css +1 -1
  271. package/build/esm/base-components/combobox/Combobox.js +124 -0
  272. package/build/esm/base-components/combobox/Combobox.js.map +1 -0
  273. package/build/esm/base-components/combobox/Combobox.module.css +177 -0
  274. package/build/esm/base-components/dialog/Dialog.js +52 -0
  275. package/build/esm/base-components/dialog/Dialog.js.map +1 -0
  276. package/build/esm/base-components/dialog/Dialog.module.css +101 -0
  277. package/build/esm/base-components/draggable-list/DraggableList.js +155 -0
  278. package/build/esm/base-components/draggable-list/DraggableList.js.map +1 -0
  279. package/build/esm/base-components/draggable-list/DraggableList.module.css +108 -0
  280. package/build/esm/base-components/search-bar/SearchBar.js +44 -0
  281. package/build/esm/base-components/search-bar/SearchBar.js.map +1 -0
  282. package/build/esm/base-components/search-bar/SearchBar.module.css +53 -0
  283. package/build/esm/base-components/select/Select.js +89 -0
  284. package/build/esm/base-components/select/Select.js.map +1 -0
  285. package/build/esm/base-components/select/Select.module.css +138 -0
  286. package/build/esm/base-components/switch/Switch.js +33 -0
  287. package/build/esm/base-components/switch/Switch.js.map +1 -0
  288. package/build/esm/base-components/switch/Switch.module.css +91 -0
  289. package/build/esm/filter-list/FilterListApi.js.map +1 -1
  290. package/build/esm/filter-list/FilterListItemApi.js.map +1 -1
  291. package/build/esm/filter-list/__tests__/LinkedPropertyInput.test.js +202 -0
  292. package/build/esm/filter-list/__tests__/LinkedPropertyInput.test.js.map +1 -0
  293. package/build/esm/filter-list/__tests__/dateUtils.test.js +55 -0
  294. package/build/esm/filter-list/__tests__/dateUtils.test.js.map +1 -0
  295. package/build/esm/filter-list/__tests__/filterStateToWhereClause.test.js +296 -0
  296. package/build/esm/filter-list/__tests__/filterStateToWhereClause.test.js.map +1 -0
  297. package/build/esm/filter-list/__tests__/getFilterKey.test.js +53 -0
  298. package/build/esm/filter-list/__tests__/getFilterKey.test.js.map +1 -0
  299. package/build/esm/filter-list/__tests__/testUtils.js +203 -0
  300. package/build/esm/filter-list/__tests__/testUtils.js.map +1 -0
  301. package/build/esm/filter-list/base/FilterInput.js +542 -0
  302. package/build/esm/filter-list/base/FilterInput.js.map +1 -0
  303. package/build/esm/filter-list/base/FilterList.js +77 -0
  304. package/build/esm/filter-list/base/FilterList.js.map +1 -0
  305. package/build/esm/filter-list/base/FilterList.module.css +67 -0
  306. package/build/esm/filter-list/base/FilterListContent.js +57 -0
  307. package/build/esm/filter-list/base/FilterListContent.js.map +1 -0
  308. package/build/esm/filter-list/base/FilterListContent.module.css +27 -0
  309. package/build/esm/filter-list/base/FilterListHeader.js +58 -0
  310. package/build/esm/filter-list/base/FilterListHeader.js.map +1 -0
  311. package/build/esm/filter-list/base/FilterListHeader.module.css +127 -0
  312. package/build/esm/filter-list/base/FilterListItem.js +75 -0
  313. package/build/esm/filter-list/base/FilterListItem.js.map +1 -0
  314. package/build/esm/filter-list/base/FilterListItem.module.css +38 -0
  315. package/build/esm/filter-list/base/index.js +22 -0
  316. package/build/esm/filter-list/base/index.js.map +1 -0
  317. package/build/esm/filter-list/base/inputs/CheckboxListInput.js +75 -0
  318. package/build/esm/filter-list/base/inputs/CheckboxListInput.js.map +1 -0
  319. package/build/esm/filter-list/base/inputs/CheckboxListInput.module.css +42 -0
  320. package/build/esm/filter-list/base/inputs/ContainsTextInput.js +85 -0
  321. package/build/esm/filter-list/base/inputs/ContainsTextInput.js.map +1 -0
  322. package/build/esm/filter-list/base/inputs/ContainsTextInput.module.css +91 -0
  323. package/build/esm/filter-list/base/inputs/DateRangeInput.js +37 -0
  324. package/build/esm/filter-list/base/inputs/DateRangeInput.js.map +1 -0
  325. package/build/esm/filter-list/base/inputs/LinkedPropertyInput.js +237 -0
  326. package/build/esm/filter-list/base/inputs/LinkedPropertyInput.js.map +1 -0
  327. package/build/esm/filter-list/base/inputs/LinkedPropertyInput.module.css +20 -0
  328. package/build/esm/filter-list/base/inputs/ListogramInput.js +98 -0
  329. package/build/esm/filter-list/base/inputs/ListogramInput.js.map +1 -0
  330. package/build/esm/filter-list/base/inputs/ListogramInput.module.css +88 -0
  331. package/build/esm/filter-list/base/inputs/MultiDateInput.js +82 -0
  332. package/build/esm/filter-list/base/inputs/MultiDateInput.js.map +1 -0
  333. package/build/esm/filter-list/base/inputs/MultiDateInput.module.css +54 -0
  334. package/build/esm/filter-list/base/inputs/MultiSelectInput.js +100 -0
  335. package/build/esm/filter-list/base/inputs/MultiSelectInput.js.map +1 -0
  336. package/build/esm/filter-list/base/inputs/MultiSelectInput.module.css +35 -0
  337. package/build/esm/filter-list/base/inputs/NullValueWrapper.js +76 -0
  338. package/build/esm/filter-list/base/inputs/NullValueWrapper.js.map +1 -0
  339. package/build/esm/filter-list/base/inputs/NullValueWrapper.module.css +49 -0
  340. package/build/esm/filter-list/base/inputs/NumberRangeInput.js +48 -0
  341. package/build/esm/filter-list/base/inputs/NumberRangeInput.js.map +1 -0
  342. package/build/esm/filter-list/base/inputs/RangeInput.js +187 -0
  343. package/build/esm/filter-list/base/inputs/RangeInput.js.map +1 -0
  344. package/build/esm/filter-list/base/inputs/RangeInput.module.css +81 -0
  345. package/build/esm/filter-list/base/inputs/SingleDateInput.js +61 -0
  346. package/build/esm/filter-list/base/inputs/SingleDateInput.js.map +1 -0
  347. package/build/esm/filter-list/base/inputs/SingleDateInput.module.css +63 -0
  348. package/build/esm/filter-list/base/inputs/SingleSelectInput.js +95 -0
  349. package/build/esm/filter-list/base/inputs/SingleSelectInput.js.map +1 -0
  350. package/build/esm/filter-list/base/inputs/SingleSelectInput.module.css +55 -0
  351. package/build/esm/filter-list/base/inputs/TextTagsInput.js +141 -0
  352. package/build/esm/filter-list/base/inputs/TextTagsInput.js.map +1 -0
  353. package/build/esm/filter-list/base/inputs/TextTagsInput.module.css +25 -0
  354. package/build/esm/filter-list/base/inputs/TimelineInput.js +74 -0
  355. package/build/esm/filter-list/base/inputs/TimelineInput.js.map +1 -0
  356. package/build/esm/filter-list/base/inputs/TimelineInput.module.css +73 -0
  357. package/build/esm/filter-list/base/inputs/ToggleInput.js +43 -0
  358. package/build/esm/filter-list/base/inputs/ToggleInput.js.map +1 -0
  359. package/build/esm/filter-list/base/inputs/ToggleInput.module.css +34 -0
  360. package/build/esm/filter-list/base/inputs/createHistogramBuckets.js +53 -0
  361. package/build/esm/filter-list/base/inputs/createHistogramBuckets.js.map +1 -0
  362. package/build/esm/filter-list/base/inputs/dateUtils.js +57 -0
  363. package/build/esm/filter-list/base/inputs/dateUtils.js.map +1 -0
  364. package/build/esm/filter-list/base/inputs/index.js +25 -0
  365. package/build/esm/filter-list/base/inputs/index.js.map +1 -0
  366. package/build/esm/filter-list/base/inputs/shared.module.css +79 -0
  367. package/build/esm/filter-list/hooks/__tests__/useFilterListState.test.js +128 -0
  368. package/build/esm/filter-list/hooks/__tests__/useFilterListState.test.js.map +1 -0
  369. package/build/esm/filter-list/hooks/useFilterListState.js +119 -0
  370. package/build/esm/filter-list/hooks/useFilterListState.js.map +1 -0
  371. package/build/esm/filter-list/hooks/usePropertyAggregation.js +92 -0
  372. package/build/esm/filter-list/hooks/usePropertyAggregation.js.map +1 -0
  373. package/build/esm/filter-list/types/AddFilterMenuTypes.js +2 -0
  374. package/build/esm/filter-list/types/AddFilterMenuTypes.js.map +1 -0
  375. package/build/esm/filter-list/types/CustomRendererTypes.js +2 -0
  376. package/build/esm/filter-list/types/CustomRendererTypes.js.map +1 -0
  377. package/build/esm/filter-list/types/FilterPanelTypes.js +2 -0
  378. package/build/esm/filter-list/types/FilterPanelTypes.js.map +1 -0
  379. package/build/esm/filter-list/types/KeywordSearchTypes.js +2 -0
  380. package/build/esm/filter-list/types/KeywordSearchTypes.js.map +1 -0
  381. package/build/esm/filter-list/types/LinkedFilterTypes.js +2 -0
  382. package/build/esm/filter-list/types/LinkedFilterTypes.js.map +1 -0
  383. package/build/esm/filter-list/types/index.js +22 -0
  384. package/build/esm/filter-list/types/index.js.map +1 -0
  385. package/build/esm/filter-list/utils/aggregationHelpers.js +44 -0
  386. package/build/esm/filter-list/utils/aggregationHelpers.js.map +1 -0
  387. package/build/esm/filter-list/utils/assertUnreachable.js +25 -0
  388. package/build/esm/filter-list/utils/assertUnreachable.js.map +1 -0
  389. package/build/esm/filter-list/utils/coerceFilterValue.js +33 -0
  390. package/build/esm/filter-list/utils/coerceFilterValue.js.map +1 -0
  391. package/build/esm/filter-list/utils/filterStateToWhereClause.js +337 -0
  392. package/build/esm/filter-list/utils/filterStateToWhereClause.js.map +1 -0
  393. package/build/esm/filter-list/utils/filterValues.js +55 -0
  394. package/build/esm/filter-list/utils/filterValues.js.map +1 -0
  395. package/build/esm/filter-list/utils/getFilterKey.js +34 -0
  396. package/build/esm/filter-list/utils/getFilterKey.js.map +1 -0
  397. package/build/esm/object-table/ColumnConfigDialog.js +259 -0
  398. package/build/esm/object-table/ColumnConfigDialog.js.map +1 -0
  399. package/build/esm/object-table/ColumnConfigDialog.module.css +247 -0
  400. package/build/esm/object-table/DefaultCellRenderer.js +46 -0
  401. package/build/esm/object-table/DefaultCellRenderer.js.map +1 -0
  402. package/build/esm/object-table/EditableCell.js +101 -0
  403. package/build/esm/object-table/EditableCell.js.map +1 -0
  404. package/build/esm/object-table/EditableCell.module.css +31 -0
  405. package/build/esm/object-table/LoadingStateTable.js +4 -4
  406. package/build/esm/object-table/LoadingStateTable.js.map +1 -1
  407. package/build/esm/object-table/MultiColumnSortDialog.js +178 -0
  408. package/build/esm/object-table/MultiColumnSortDialog.js.map +1 -0
  409. package/build/esm/object-table/MultiColumnSortDialog.module.css +195 -0
  410. package/build/esm/object-table/NonIdealState.module.css +2 -3
  411. package/build/esm/object-table/ObjectTable.js +62 -16
  412. package/build/esm/object-table/ObjectTable.js.map +1 -1
  413. package/build/esm/object-table/ObjectTableApi.js.map +1 -1
  414. package/build/esm/object-table/SelectionCells.js +15 -4
  415. package/build/esm/object-table/SelectionCells.js.map +1 -1
  416. package/build/esm/object-table/SortableItemsList.js +35 -0
  417. package/build/esm/object-table/SortableItemsList.js.map +1 -0
  418. package/build/esm/object-table/Table.js +34 -9
  419. package/build/esm/object-table/Table.js.map +1 -1
  420. package/build/esm/object-table/Table.module.css +18 -3
  421. package/build/esm/object-table/TableBody.js +8 -2
  422. package/build/esm/object-table/TableBody.js.map +1 -1
  423. package/build/esm/object-table/TableBody.module.css +2 -0
  424. package/build/esm/object-table/TableCell.module.css +14 -1
  425. package/build/esm/object-table/TableEditContainer.js +79 -0
  426. package/build/esm/object-table/TableEditContainer.js.map +1 -0
  427. package/build/esm/object-table/TableEditContainer.module.css +44 -0
  428. package/build/esm/object-table/TableHeader.js +93 -6
  429. package/build/esm/object-table/TableHeader.js.map +1 -1
  430. package/build/esm/object-table/TableHeader.module.css +9 -2
  431. package/build/esm/object-table/TableHeaderWithPopover.js +53 -22
  432. package/build/esm/object-table/TableHeaderWithPopover.js.map +1 -1
  433. package/build/esm/object-table/TableHeaderWithPopover.module.css +56 -25
  434. package/build/esm/object-table/TableRow.js +12 -4
  435. package/build/esm/object-table/TableRow.js.map +1 -1
  436. package/build/esm/object-table/TableRow.module.css +4 -1
  437. package/build/esm/object-table/hooks/__tests__/useColumnDefs.test.js +14 -2
  438. package/build/esm/object-table/hooks/__tests__/useColumnDefs.test.js.map +1 -1
  439. package/build/esm/object-table/hooks/__tests__/useColumnVisibility.test.js +160 -138
  440. package/build/esm/object-table/hooks/__tests__/useColumnVisibility.test.js.map +1 -1
  441. package/build/esm/object-table/hooks/__tests__/useEditableTable.test.js +292 -0
  442. package/build/esm/object-table/hooks/__tests__/useEditableTable.test.js.map +1 -0
  443. package/build/esm/object-table/hooks/__tests__/useObjectTableData.test.js +113 -25
  444. package/build/esm/object-table/hooks/__tests__/useObjectTableData.test.js.map +1 -1
  445. package/build/esm/object-table/hooks/__tests__/useRowSelection.test.js +48 -0
  446. package/build/esm/object-table/hooks/__tests__/useRowSelection.test.js.map +1 -1
  447. package/build/esm/object-table/hooks/__tests__/useSelectionColumn.test.js +27 -82
  448. package/build/esm/object-table/hooks/__tests__/useSelectionColumn.test.js.map +1 -1
  449. package/build/esm/object-table/hooks/__tests__/useTableSorting.test.js +290 -0
  450. package/build/esm/object-table/hooks/__tests__/useTableSorting.test.js.map +1 -1
  451. package/build/esm/object-table/hooks/useColumnDefs.js +16 -3
  452. package/build/esm/object-table/hooks/useColumnDefs.js.map +1 -1
  453. package/build/esm/object-table/hooks/useColumnResize.js +45 -0
  454. package/build/esm/object-table/hooks/useColumnResize.js.map +1 -0
  455. package/build/esm/object-table/hooks/useColumnVisibility.js +52 -20
  456. package/build/esm/object-table/hooks/useColumnVisibility.js.map +1 -1
  457. package/build/esm/object-table/hooks/useEditableTable.js +66 -0
  458. package/build/esm/object-table/hooks/useEditableTable.js.map +1 -0
  459. package/build/esm/object-table/hooks/useObjectTableData.js +37 -7
  460. package/build/esm/object-table/hooks/useObjectTableData.js.map +1 -1
  461. package/build/esm/object-table/hooks/useRowSelection.js +31 -10
  462. package/build/esm/object-table/hooks/useRowSelection.js.map +1 -1
  463. package/build/esm/object-table/hooks/useSelectionColumn.js +15 -6
  464. package/build/esm/object-table/hooks/useSelectionColumn.js.map +1 -1
  465. package/build/esm/object-table/utils/getCellId.js +20 -0
  466. package/build/esm/object-table/utils/getCellId.js.map +1 -0
  467. package/build/esm/object-table/utils/types.js +2 -0
  468. package/build/esm/object-table/utils/types.js.map +1 -0
  469. package/build/esm/public/experimental.js +2 -0
  470. package/build/esm/public/experimental.js.map +1 -1
  471. package/build/esm/shared/ErrorBoundary.js +62 -0
  472. package/build/esm/shared/ErrorBoundary.js.map +1 -0
  473. package/build/esm/shared/ErrorBoundary.module.css +55 -0
  474. package/build/types/base-components/action-button/ActionButton.d.ts +5 -0
  475. package/build/types/base-components/action-button/ActionButton.d.ts.map +1 -0
  476. package/build/types/base-components/combobox/Combobox.d.ts +52 -0
  477. package/build/types/base-components/combobox/Combobox.d.ts.map +1 -0
  478. package/build/types/base-components/dialog/Dialog.d.ts +10 -0
  479. package/build/types/base-components/dialog/Dialog.d.ts.map +1 -0
  480. package/build/types/base-components/draggable-list/DraggableList.d.ts +17 -0
  481. package/build/types/base-components/draggable-list/DraggableList.d.ts.map +1 -0
  482. package/build/types/base-components/search-bar/SearchBar.d.ts +11 -0
  483. package/build/types/base-components/search-bar/SearchBar.d.ts.map +1 -0
  484. package/build/types/base-components/select/Select.d.ts +34 -0
  485. package/build/types/base-components/select/Select.d.ts.map +1 -0
  486. package/build/types/base-components/switch/Switch.d.ts +10 -0
  487. package/build/types/base-components/switch/Switch.d.ts.map +1 -0
  488. package/build/types/filter-list/FilterListApi.d.ts +62 -17
  489. package/build/types/filter-list/FilterListApi.d.ts.map +1 -1
  490. package/build/types/filter-list/FilterListItemApi.d.ts +101 -53
  491. package/build/types/filter-list/FilterListItemApi.d.ts.map +1 -1
  492. package/build/types/filter-list/__tests__/LinkedPropertyInput.test.d.ts +1 -0
  493. package/build/types/filter-list/__tests__/LinkedPropertyInput.test.d.ts.map +1 -0
  494. package/build/types/filter-list/__tests__/dateUtils.test.d.ts +1 -0
  495. package/build/types/filter-list/__tests__/dateUtils.test.d.ts.map +1 -0
  496. package/build/types/filter-list/__tests__/filterStateToWhereClause.test.d.ts +1 -0
  497. package/build/types/filter-list/__tests__/filterStateToWhereClause.test.d.ts.map +1 -0
  498. package/build/types/filter-list/__tests__/getFilterKey.test.d.ts +1 -0
  499. package/build/types/filter-list/__tests__/getFilterKey.test.d.ts.map +1 -0
  500. package/build/types/filter-list/__tests__/testUtils.d.ts +65 -0
  501. package/build/types/filter-list/__tests__/testUtils.d.ts.map +1 -0
  502. package/build/types/filter-list/base/FilterInput.d.ts +15 -0
  503. package/build/types/filter-list/base/FilterInput.d.ts.map +1 -0
  504. package/build/types/filter-list/base/FilterList.d.ts +4 -0
  505. package/build/types/filter-list/base/FilterList.d.ts.map +1 -0
  506. package/build/types/filter-list/base/FilterListContent.d.ts +16 -0
  507. package/build/types/filter-list/base/FilterListContent.d.ts.map +1 -0
  508. package/build/types/filter-list/base/FilterListHeader.d.ts +14 -0
  509. package/build/types/filter-list/base/FilterListHeader.d.ts.map +1 -0
  510. package/build/types/filter-list/base/FilterListItem.d.ts +18 -0
  511. package/build/types/filter-list/base/FilterListItem.d.ts.map +1 -0
  512. package/build/types/filter-list/base/index.d.ts +5 -0
  513. package/build/types/filter-list/base/index.d.ts.map +1 -0
  514. package/build/types/filter-list/base/inputs/CheckboxListInput.d.ts +21 -0
  515. package/build/types/filter-list/base/inputs/CheckboxListInput.d.ts.map +1 -0
  516. package/build/types/filter-list/base/inputs/ContainsTextInput.d.ts +13 -0
  517. package/build/types/filter-list/base/inputs/ContainsTextInput.d.ts.map +1 -0
  518. package/build/types/filter-list/base/inputs/DateRangeInput.d.ts +22 -0
  519. package/build/types/filter-list/base/inputs/DateRangeInput.d.ts.map +1 -0
  520. package/build/types/filter-list/base/inputs/LinkedPropertyInput.d.ts +21 -0
  521. package/build/types/filter-list/base/inputs/LinkedPropertyInput.d.ts.map +1 -0
  522. package/build/types/filter-list/base/inputs/ListogramInput.d.ts +22 -0
  523. package/build/types/filter-list/base/inputs/ListogramInput.d.ts.map +1 -0
  524. package/build/types/filter-list/base/inputs/MultiDateInput.d.ts +12 -0
  525. package/build/types/filter-list/base/inputs/MultiDateInput.d.ts.map +1 -0
  526. package/build/types/filter-list/base/inputs/MultiSelectInput.d.ts +24 -0
  527. package/build/types/filter-list/base/inputs/MultiSelectInput.d.ts.map +1 -0
  528. package/build/types/filter-list/base/inputs/NullValueWrapper.d.ts +21 -0
  529. package/build/types/filter-list/base/inputs/NullValueWrapper.d.ts.map +1 -0
  530. package/build/types/filter-list/base/inputs/NumberRangeInput.d.ts +22 -0
  531. package/build/types/filter-list/base/inputs/NumberRangeInput.d.ts.map +1 -0
  532. package/build/types/filter-list/base/inputs/RangeInput.d.ts +37 -0
  533. package/build/types/filter-list/base/inputs/RangeInput.d.ts.map +1 -0
  534. package/build/types/filter-list/base/inputs/SingleDateInput.d.ts +13 -0
  535. package/build/types/filter-list/base/inputs/SingleDateInput.d.ts.map +1 -0
  536. package/build/types/filter-list/base/inputs/SingleSelectInput.d.ts +24 -0
  537. package/build/types/filter-list/base/inputs/SingleSelectInput.d.ts.map +1 -0
  538. package/build/types/filter-list/base/inputs/TextTagsInput.d.ts +24 -0
  539. package/build/types/filter-list/base/inputs/TextTagsInput.d.ts.map +1 -0
  540. package/build/types/filter-list/base/inputs/TimelineInput.d.ts +11 -0
  541. package/build/types/filter-list/base/inputs/TimelineInput.d.ts.map +1 -0
  542. package/build/types/filter-list/base/inputs/ToggleInput.d.ts +10 -0
  543. package/build/types/filter-list/base/inputs/ToggleInput.d.ts.map +1 -0
  544. package/build/types/filter-list/base/inputs/createHistogramBuckets.d.ts +16 -0
  545. package/build/types/filter-list/base/inputs/createHistogramBuckets.d.ts.map +1 -0
  546. package/build/types/filter-list/base/inputs/dateUtils.d.ts +17 -0
  547. package/build/types/filter-list/base/inputs/dateUtils.d.ts.map +1 -0
  548. package/build/types/filter-list/base/inputs/index.d.ts +8 -0
  549. package/build/types/filter-list/base/inputs/index.d.ts.map +1 -0
  550. package/build/types/filter-list/hooks/__tests__/useFilterListState.test.d.ts +1 -0
  551. package/build/types/filter-list/hooks/__tests__/useFilterListState.test.d.ts.map +1 -0
  552. package/build/types/filter-list/hooks/useFilterListState.d.ts +11 -0
  553. package/build/types/filter-list/hooks/useFilterListState.d.ts.map +1 -0
  554. package/build/types/filter-list/hooks/usePropertyAggregation.d.ts +20 -0
  555. package/build/types/filter-list/hooks/usePropertyAggregation.d.ts.map +1 -0
  556. package/build/types/filter-list/types/AddFilterMenuTypes.d.ts +56 -0
  557. package/build/types/filter-list/types/AddFilterMenuTypes.d.ts.map +1 -0
  558. package/build/types/filter-list/types/CustomRendererTypes.d.ts +76 -0
  559. package/build/types/filter-list/types/CustomRendererTypes.d.ts.map +1 -0
  560. package/build/types/filter-list/types/FilterPanelTypes.d.ts +18 -0
  561. package/build/types/filter-list/types/FilterPanelTypes.d.ts.map +1 -0
  562. package/build/types/filter-list/types/KeywordSearchTypes.d.ts +56 -0
  563. package/build/types/filter-list/types/KeywordSearchTypes.d.ts.map +1 -0
  564. package/build/types/filter-list/types/LinkedFilterTypes.d.ts +89 -0
  565. package/build/types/filter-list/types/LinkedFilterTypes.d.ts.map +1 -0
  566. package/build/types/filter-list/types/index.d.ts +5 -0
  567. package/build/types/filter-list/types/index.d.ts.map +1 -0
  568. package/build/types/filter-list/utils/aggregationHelpers.d.ts +9 -0
  569. package/build/types/filter-list/utils/aggregationHelpers.d.ts.map +1 -0
  570. package/build/types/filter-list/utils/assertUnreachable.d.ts +6 -0
  571. package/build/types/filter-list/utils/assertUnreachable.d.ts.map +1 -0
  572. package/build/types/filter-list/utils/coerceFilterValue.d.ts +11 -0
  573. package/build/types/filter-list/utils/coerceFilterValue.d.ts.map +1 -0
  574. package/build/types/filter-list/utils/filterStateToWhereClause.d.ts +16 -0
  575. package/build/types/filter-list/utils/filterStateToWhereClause.d.ts.map +1 -0
  576. package/build/types/filter-list/utils/filterValues.d.ts +5 -0
  577. package/build/types/filter-list/utils/filterValues.d.ts.map +1 -0
  578. package/build/types/filter-list/utils/getFilterKey.d.ts +3 -0
  579. package/build/types/filter-list/utils/getFilterKey.d.ts.map +1 -0
  580. package/build/types/object-table/ColumnConfigDialog.d.ts +18 -0
  581. package/build/types/object-table/ColumnConfigDialog.d.ts.map +1 -0
  582. package/build/types/object-table/DefaultCellRenderer.d.ts +3 -0
  583. package/build/types/object-table/DefaultCellRenderer.d.ts.map +1 -0
  584. package/build/types/object-table/EditableCell.d.ts +22 -0
  585. package/build/types/object-table/EditableCell.d.ts.map +1 -0
  586. package/build/types/object-table/LoadingStateTable.d.ts.map +1 -1
  587. package/build/types/object-table/MultiColumnSortDialog.d.ts +15 -0
  588. package/build/types/object-table/MultiColumnSortDialog.d.ts.map +1 -0
  589. package/build/types/object-table/ObjectTable.d.ts +1 -1
  590. package/build/types/object-table/ObjectTable.d.ts.map +1 -1
  591. package/build/types/object-table/ObjectTableApi.d.ts +89 -8
  592. package/build/types/object-table/ObjectTableApi.d.ts.map +1 -1
  593. package/build/types/object-table/SortableItemsList.d.ts +13 -0
  594. package/build/types/object-table/SortableItemsList.d.ts.map +1 -0
  595. package/build/types/object-table/Table.d.ts +21 -1
  596. package/build/types/object-table/Table.d.ts.map +1 -1
  597. package/build/types/object-table/TableBody.d.ts +4 -1
  598. package/build/types/object-table/TableBody.d.ts.map +1 -1
  599. package/build/types/object-table/TableEditContainer.d.ts +9 -0
  600. package/build/types/object-table/TableEditContainer.d.ts.map +1 -0
  601. package/build/types/object-table/TableHeader.d.ts +3 -1
  602. package/build/types/object-table/TableHeader.d.ts.map +1 -1
  603. package/build/types/object-table/TableHeaderWithPopover.d.ts +30 -6
  604. package/build/types/object-table/TableHeaderWithPopover.d.ts.map +1 -1
  605. package/build/types/object-table/TableRow.d.ts +5 -1
  606. package/build/types/object-table/TableRow.d.ts.map +1 -1
  607. package/build/types/object-table/hooks/__tests__/useEditableTable.test.d.ts +1 -0
  608. package/build/types/object-table/hooks/__tests__/useEditableTable.test.d.ts.map +1 -0
  609. package/build/types/object-table/hooks/useColumnDefs.d.ts.map +1 -1
  610. package/build/types/object-table/hooks/useColumnResize.d.ts +10 -0
  611. package/build/types/object-table/hooks/useColumnResize.d.ts.map +1 -0
  612. package/build/types/object-table/hooks/useColumnVisibility.d.ts +18 -7
  613. package/build/types/object-table/hooks/useColumnVisibility.d.ts.map +1 -1
  614. package/build/types/object-table/hooks/useEditableTable.d.ts +17 -0
  615. package/build/types/object-table/hooks/useEditableTable.d.ts.map +1 -0
  616. package/build/types/object-table/hooks/useObjectTableData.d.ts +6 -5
  617. package/build/types/object-table/hooks/useObjectTableData.d.ts.map +1 -1
  618. package/build/types/object-table/hooks/useRowSelection.d.ts +5 -4
  619. package/build/types/object-table/hooks/useRowSelection.d.ts.map +1 -1
  620. package/build/types/object-table/utils/getCellId.d.ts +2 -0
  621. package/build/types/object-table/utils/getCellId.d.ts.map +1 -0
  622. package/build/types/object-table/utils/types.d.ts +36 -0
  623. package/build/types/object-table/utils/types.d.ts.map +1 -0
  624. package/build/types/public/experimental.d.ts +6 -2
  625. package/build/types/public/experimental.d.ts.map +1 -1
  626. package/build/types/shared/ErrorBoundary.d.ts +19 -0
  627. package/build/types/shared/ErrorBoundary.d.ts.map +1 -0
  628. package/package.json +16 -8
@@ -0,0 +1,3133 @@
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 {
2221
+ overflow: hidden;
2222
+ text-overflow: ellipsis;
2223
+ white-space: nowrap;
2224
+ text-align: left;
2225
+ padding: var(--osdk-surface-spacing) calc(var(--osdk-surface-spacing) * 3);
2226
+ width: 100%;
2227
+ border-radius: var(--osdk-surface-border-radius);
2228
+ border: var(--osdk-surface-border-width) solid transparent;
2229
+ background: inherit;
2230
+
2231
+ tr[data-focused="true"] & {
2232
+ border: var(--osdk-table-cell-editable-border);
2233
+ background: var(--osdk-table-cell-editable-bg);
2234
+
2235
+ &.EditableCell-module__osdkEditedInput___HxzrAqJz {
2236
+ border: var(--osdk-table-cell-edited-border);
2237
+ }
2238
+
2239
+ &:focus,
2240
+ &.EditableCell-module__osdkEditedInput___HxzrAqJz:focus {
2241
+ border: var(--osdk-emphasis-focus-width) solid
2242
+ var(--osdk-emphasis-focus-color);
2243
+ }
2244
+ }
2245
+ }
2246
+
2247
+ .EditableCell-module__osdkEditedInput___HxzrAqJz {
2248
+ border: var(--osdk-table-cell-edited-border);
2249
+ background: var(--osdk-table-cell-editable-bg);
2250
+ }
2251
+
2252
+
2253
+ /* object-table/LoadingCell.module.css */
2254
+ /*
2255
+ * Copyright 2025 Palantir Technologies, Inc. All rights reserved.
2256
+ *
2257
+ * Licensed under the Apache License, Version 2.0 (the "License");
2258
+ * you may not use this file except in compliance with the License.
2259
+ * You may obtain a copy of the License at
2260
+ *
2261
+ * http://www.apache.org/licenses/LICENSE-2.0
2262
+ *
2263
+ * Unless required by applicable law or agreed to in writing, software
2264
+ * distributed under the License is distributed on an "AS IS" BASIS,
2265
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
2266
+ * See the License for the specific language governing permissions and
2267
+ * limitations under the License.
2268
+ */
2269
+
2270
+ .LoadingCell-module__osdkLoadingCell___XLlRWu8h {
2271
+ height: var(--osdk-table-cell-fontSize);
2272
+ border-radius: calc(var(--osdk-surface-border-radius) * 0.5);
2273
+ flex: 1;
2274
+ }
2275
+
2276
+ /* Blueprint skeleton animation keyframes */
2277
+ @keyframes LoadingCell-module__skeleton-glow___pznGbRk6 {
2278
+ from {
2279
+ background: var(--osdk-table-skeleton-color-from);
2280
+ border-color: var(--osdk-table-skeleton-color-from);
2281
+ }
2282
+
2283
+ to {
2284
+ background: var(--osdk-table-skeleton-color-to);
2285
+ border-color: var(--osdk-table-skeleton-color-to);
2286
+ }
2287
+ }
2288
+
2289
+ .LoadingCell-module__osdkCellSkeleton___LJKGtJS1 {
2290
+ animation: 1000ms linear infinite alternate LoadingCell-module__skeleton-glow___pznGbRk6;
2291
+ background: var(--osdk-table-skeleton-color-from);
2292
+ background-clip: padding-box;
2293
+ border-color: var(--osdk-table-skeleton-color-from);
2294
+ border-radius: calc(var(--osdk-surface-border-radius) * 0.5);
2295
+ border: 1px solid var(--osdk-table-skeleton-border-color);
2296
+ box-shadow: none;
2297
+ color: transparent;
2298
+ cursor: default;
2299
+ pointer-events: none;
2300
+ user-select: none;
2301
+ }
2302
+
2303
+
2304
+ /* object-table/MultiColumnSortDialog.module.css */
2305
+ /*
2306
+ * Copyright 2025 Palantir Technologies, Inc. All rights reserved.
2307
+ *
2308
+ * Licensed under the Apache License, Version 2.0 (the "License");
2309
+ * you may not use this file except in compliance with the License.
2310
+ * You may obtain a copy of the License at
2311
+ *
2312
+ * http://www.apache.org/licenses/LICENSE-2.0
2313
+ *
2314
+ * Unless required by applicable law or agreed to in writing, software
2315
+ * distributed under the License is distributed on an "AS IS" BASIS,
2316
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
2317
+ * See the License for the specific language governing permissions and
2318
+ * limitations under the License.
2319
+ */
2320
+
2321
+ .MultiColumnSortDialog-module__title___flQIoSfn {
2322
+ display: flex;
2323
+ align-items: center;
2324
+ gap: var(--osdk-surface-spacing);
2325
+ }
2326
+
2327
+ .MultiColumnSortDialog-module__sortColumnsList___v3PCk33R {
2328
+ display: flex;
2329
+ flex-direction: column;
2330
+ gap: var(--osdk-surface-spacing);
2331
+ flex: 1;
2332
+ justify-content: space-between;
2333
+ overflow-x: hidden;
2334
+ }
2335
+
2336
+ .MultiColumnSortDialog-module__sortableList___hi3POlPa {
2337
+ flex: 1;
2338
+ }
2339
+
2340
+ .MultiColumnSortDialog-module__selectedColumnsContainer___NhRIvQf4 {
2341
+ margin-bottom: calc(var(--osdk-surface-spacing) * 2);
2342
+ }
2343
+
2344
+ .MultiColumnSortDialog-module__sortColumnItem___cOKfBI-p {
2345
+ display: flex;
2346
+ align-items: center;
2347
+ justify-content: space-between;
2348
+ min-width: 0;
2349
+ width: 100%;
2350
+ }
2351
+
2352
+ .MultiColumnSortDialog-module__sortColumnName___hEJuoVvM {
2353
+ min-width: 0;
2354
+ flex-shrink: 1;
2355
+ }
2356
+
2357
+ .MultiColumnSortDialog-module__sortDirectionButton___B0FpU9RX {
2358
+ flex-shrink: 0;
2359
+ background: none;
2360
+ border: none;
2361
+ padding: var(--osdk-surface-spacing);
2362
+ cursor: pointer;
2363
+ display: flex;
2364
+ align-items: center;
2365
+ justify-content: center;
2366
+ border-radius: var(--osdk-surface-border-radius);
2367
+
2368
+ &:hover {
2369
+ background-color: var(--osdk-button-secondary-bg-hover);
2370
+ }
2371
+
2372
+ &:focus {
2373
+ outline: none;
2374
+ }
2375
+
2376
+ &:focus-visible {
2377
+ outline: var(--osdk-focus-outline);
2378
+ outline-offset: calc(-1 * var(--osdk-focus-visible-outline-offset));
2379
+ }
2380
+ }
2381
+
2382
+ .MultiColumnSortDialog-module__sortIcon___ZI5QlXMB {
2383
+ color: var(--osdk-typography-color-muted);
2384
+ }
2385
+
2386
+ .MultiColumnSortDialog-module__addColumnButton___8QIWAnvz {
2387
+ display: flex;
2388
+ align-items: center;
2389
+ gap: calc(var(--osdk-surface-spacing) * 2);
2390
+ width: 100%;
2391
+ padding: calc(var(--osdk-surface-spacing) * 2)
2392
+ calc(var(--osdk-surface-spacing) * 3);
2393
+ background-color: var(--osdk-button-secondary-bg);
2394
+ border: var(--osdk-surface-border);
2395
+ border-radius: var(--osdk-surface-border-radius);
2396
+ cursor: pointer;
2397
+ color: var(--osdk-button-secondary-color);
2398
+ margin-top: calc(var(--osdk-surface-spacing) * 2);
2399
+
2400
+ &:hover:not(:disabled) {
2401
+ background-color: var(--osdk-button-secondary-bg-hover);
2402
+ }
2403
+
2404
+ &:disabled {
2405
+ opacity: 0.5;
2406
+ cursor: not-allowed;
2407
+ }
2408
+
2409
+ &:focus {
2410
+ outline: none;
2411
+ }
2412
+
2413
+ &:focus-visible {
2414
+ outline: var(--osdk-focus-outline);
2415
+ outline-offset: calc(-1 * var(--osdk-focus-visible-outline-offset));
2416
+ }
2417
+ }
2418
+
2419
+ .MultiColumnSortDialog-module__addIcon___RN4RnncD {
2420
+ width: var(--osdk-iconography-size-small);
2421
+ height: var(--osdk-iconography-size-small);
2422
+ color: currentColor;
2423
+ }
2424
+
2425
+ .MultiColumnSortDialog-module__addColumnText___odD8TcY0 {
2426
+ flex: 1;
2427
+ text-align: left;
2428
+ }
2429
+
2430
+ .MultiColumnSortDialog-module__menuPositioner___Tgrl7GHh {
2431
+ z-index: var(--osdk-surface-z-index-2);
2432
+ }
2433
+
2434
+ .MultiColumnSortDialog-module__dropdownMenu___2I4WitTB {
2435
+ background-color: var(--osdk-surface-background-color-default-rest);
2436
+ border: var(--osdk-surface-border);
2437
+ border-radius: var(--osdk-surface-border-radius);
2438
+ box-shadow: var(--osdk-surface-shadow-2);
2439
+ max-height: calc(var(--osdk-dialog-max-height) * 0.5);
2440
+ overflow-y: auto;
2441
+ width: var(--anchor-width);
2442
+
2443
+ &:focus {
2444
+ outline: none;
2445
+ }
2446
+
2447
+ &:focus-visible {
2448
+ outline: var(--osdk-focus-outline);
2449
+ outline-offset: var(--osdk-focus-visible-outline-offset);
2450
+ }
2451
+ }
2452
+
2453
+ .MultiColumnSortDialog-module__menuSearchContainer___W9VUGPnt {
2454
+ border: none;
2455
+ border-bottom: var(--osdk-surface-border);
2456
+ border-radius: 0;
2457
+ position: sticky;
2458
+ top: 0;
2459
+ background-color: var(--osdk-surface-background-color-default-rest);
2460
+ }
2461
+
2462
+ .MultiColumnSortDialog-module__menuEmptyState___YK6rPQwQ {
2463
+ padding: calc(var(--osdk-surface-spacing) * 3);
2464
+ text-align: center;
2465
+ color: var(--osdk-typography-color-muted);
2466
+ font-size: var(--osdk-typography-size-body-medium);
2467
+ }
2468
+
2469
+ .MultiColumnSortDialog-module__dropdownItem___ktRdXIQ8 {
2470
+ display: block;
2471
+ width: 100%;
2472
+ text-align: left;
2473
+ padding: calc(var(--osdk-surface-spacing) * 2)
2474
+ calc(var(--osdk-surface-spacing) * 3);
2475
+ background: none;
2476
+ border: none;
2477
+ cursor: pointer;
2478
+ font-size: var(--osdk-typography-size-body-medium);
2479
+ color: var(--osdk-typography-color-default-rest);
2480
+
2481
+ &:hover {
2482
+ background-color: var(--osdk-surface-background-color-default-hover);
2483
+ }
2484
+
2485
+ &:focus {
2486
+ outline: none;
2487
+ }
2488
+
2489
+ &:focus-visible {
2490
+ outline: var(--osdk-focus-outline);
2491
+ outline-offset: calc(-1 * var(--osdk-focus-visible-outline-offset));
2492
+ }
2493
+ }
2494
+
2495
+ .MultiColumnSortDialog-module__truncate___CXIHooZw {
2496
+ overflow: hidden;
2497
+ text-overflow: ellipsis;
2498
+ white-space: nowrap;
2499
+ }
2500
+
2501
+
2502
+ /* object-table/NonIdealState.module.css */
2503
+ /*
2504
+ * Copyright 2025 Palantir Technologies, Inc. All rights reserved.
2505
+ *
2506
+ * Licensed under the Apache License, Version 2.0 (the "License");
2507
+ * you may not use this file except in compliance with the License.
2508
+ * You may obtain a copy of the License at
2509
+ *
2510
+ * http://www.apache.org/licenses/LICENSE-2.0
2511
+ *
2512
+ * Unless required by applicable law or agreed to in writing, software
2513
+ * distributed under the License is distributed on an "AS IS" BASIS,
2514
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
2515
+ * See the License for the specific language governing permissions and
2516
+ * limitations under the License.
2517
+ */
2518
+
2519
+ .NonIdealState-module__container___43YWBKdO {
2520
+ display: flex;
2521
+ align-items: center;
2522
+ justify-content: center;
2523
+ }
2524
+
2525
+ .NonIdealState-module__message___6OFyA4q- {
2526
+ padding: calc(var(--osdk-surface-spacing) * 5);
2527
+ color: var(--osdk-typography-color-muted);
2528
+ font-style: italic;
2529
+ }
2530
+
2531
+
2532
+ /* object-table/Table.module.css */
2533
+ /*
2534
+ * Copyright 2025 Palantir Technologies, Inc. All rights reserved.
2535
+ *
2536
+ * Licensed under the Apache License, Version 2.0 (the "License");
2537
+ * you may not use this file except in compliance with the License.
2538
+ * You may obtain a copy of the License at
2539
+ *
2540
+ * http://www.apache.org/licenses/LICENSE-2.0
2541
+ *
2542
+ * Unless required by applicable law or agreed to in writing, software
2543
+ * distributed under the License is distributed on an "AS IS" BASIS,
2544
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
2545
+ * See the License for the specific language governing permissions and
2546
+ * limitations under the License.
2547
+ */
2548
+
2549
+ .Table-module__osdkTableWrapper___qNSuMAE2 {
2550
+ display: flex;
2551
+ flex-direction: column;
2552
+ height: 100%;
2553
+ position: relative;
2554
+ }
2555
+
2556
+ .Table-module__osdkTableContainer___QBj68RD- {
2557
+ flex: 1;
2558
+ min-height: 0;
2559
+ overflow: auto;
2560
+ position: relative;
2561
+ }
2562
+
2563
+ .Table-module__osdkTableContainer___QBj68RD- table {
2564
+ border-collapse: collapse;
2565
+ display: grid;
2566
+ table-layout: fixed;
2567
+ width: max-content;
2568
+ min-width: 100%;
2569
+ }
2570
+
2571
+
2572
+ /* object-table/TableBody.module.css */
2573
+ /*
2574
+ * Copyright 2025 Palantir Technologies, Inc. All rights reserved.
2575
+ *
2576
+ * Licensed under the Apache License, Version 2.0 (the "License");
2577
+ * you may not use this file except in compliance with the License.
2578
+ * You may obtain a copy of the License at
2579
+ *
2580
+ * http://www.apache.org/licenses/LICENSE-2.0
2581
+ *
2582
+ * Unless required by applicable law or agreed to in writing, software
2583
+ * distributed under the License is distributed on an "AS IS" BASIS,
2584
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
2585
+ * See the License for the specific language governing permissions and
2586
+ * limitations under the License.
2587
+ */
2588
+
2589
+ .TableBody-module__osdkTableBody___YC9dMzce {
2590
+ display: grid;
2591
+ position: relative;
2592
+ width: max-content;
2593
+ min-width: 100%;
2594
+ }
2595
+
2596
+
2597
+ /* object-table/TableCell.module.css */
2598
+ /*
2599
+ * Copyright 2025 Palantir Technologies, Inc. All rights reserved.
2600
+ *
2601
+ * Licensed under the Apache License, Version 2.0 (the "License");
2602
+ * you may not use this file except in compliance with the License.
2603
+ * You may obtain a copy of the License at
2604
+ *
2605
+ * http://www.apache.org/licenses/LICENSE-2.0
2606
+ *
2607
+ * Unless required by applicable law or agreed to in writing, software
2608
+ * distributed under the License is distributed on an "AS IS" BASIS,
2609
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
2610
+ * See the License for the specific language governing permissions and
2611
+ * limitations under the License.
2612
+ */
2613
+
2614
+ .TableCell-module__osdkTableCell___gVl6jToJ {
2615
+ display: flex;
2616
+ align-items: center;
2617
+ height: 100%;
2618
+ text-align: left;
2619
+ position: relative;
2620
+ padding: var(--osdk-table-cell-padding);
2621
+ font-size: var(--osdk-table-cell-fontSize);
2622
+ color: var(--osdk-table-cell-color);
2623
+ background-color: inherit;
2624
+ border-right: var(--osdk-table-cell-divider);
2625
+
2626
+ &:first-child {
2627
+ border-left: var(--osdk-table-border);
2628
+ }
2629
+
2630
+ &:last-child {
2631
+ border-right: var(--osdk-table-border);
2632
+ }
2633
+ }
2634
+
2635
+ .TableCell-module__osdkTableCell___gVl6jToJ[data-pinned="left"],
2636
+ .TableCell-module__osdkTableCell___gVl6jToJ[data-pinned="right"] {
2637
+ position: sticky;
2638
+ z-index: var(--osdk-surface-z-index-1);
2639
+ background-color: inherit;
2640
+ }
2641
+
2642
+ /* Last left-pinned column - no left-pinned siblings after it */
2643
+ .TableCell-module__osdkTableCell___gVl6jToJ[data-pinned="left"]:not(:has(~ [data-pinned="left"])) {
2644
+ border-right: var(--osdk-table-pinned-column-border);
2645
+ }
2646
+
2647
+ /* First right-pinned column - no right-pinned siblings before it */
2648
+ .TableCell-module__osdkTableCell___gVl6jToJ[data-pinned="right"]:not(
2649
+ :has(~ [data-pinned="right"]):nth-child(n + 2)
2650
+ ) {
2651
+ border-left: var(--osdk-table-pinned-column-border);
2652
+ }
2653
+
2654
+ .TableCell-module__osdkTableCell___gVl6jToJ:has([role="checkbox"]) {
2655
+ justify-content: center;
2656
+ padding: 0;
2657
+ }
2658
+
2659
+ .TableCell-module__osdkTableCellContent___tcj6DRaU:not(:has([role="checkbox"])) {
2660
+ overflow: hidden;
2661
+ text-overflow: ellipsis;
2662
+ white-space: nowrap;
2663
+ text-align: left;
2664
+ }
2665
+
2666
+ .TableCell-module__osdkCheckboxContainer___Ex-KJho3 {
2667
+ display: flex;
2668
+ align-items: center;
2669
+ justify-content: center;
2670
+ width: 100%;
2671
+ height: 100%;
2672
+ }
2673
+
2674
+
2675
+ /* object-table/TableEditContainer.module.css */
2676
+ /*
2677
+ * Copyright 2025 Palantir Technologies, Inc. All rights reserved.
2678
+ *
2679
+ * Licensed under the Apache License, Version 2.0 (the "License");
2680
+ * you may not use this file except in compliance with the License.
2681
+ * You may obtain a copy of the License at
2682
+ *
2683
+ * http://www.apache.org/licenses/LICENSE-2.0
2684
+ *
2685
+ * Unless required by applicable law or agreed to in writing, software
2686
+ * distributed under the License is distributed on an "AS IS" BASIS,
2687
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
2688
+ * See the License for the specific language governing permissions and
2689
+ * limitations under the License.
2690
+ */
2691
+
2692
+ .TableEditContainer-module__tableEditContainer___cIVjgtld {
2693
+ display: flex;
2694
+ justify-content: space-between;
2695
+ align-items: center;
2696
+ background-color: var(--osdk-surface-background-color-default-rest);
2697
+ border-top: var(--osdk-table-border);
2698
+ padding: var(--osdk-table-edit-container-padding);
2699
+ min-height: var(--osdk-table-edit-container-min-height);
2700
+ }
2701
+
2702
+ .TableEditContainer-module__placeholder___ggxoxvTp {
2703
+ color: var(--osdk-typography-color-muted);
2704
+ font-size: var(--osdk-typography-size-body-small);
2705
+ padding: calc(var(--osdk-surface-spacing) * 2) 0;
2706
+ }
2707
+
2708
+ .TableEditContainer-module__modificationCount___sLN93v77 {
2709
+ color: var(--osdk-intent-primary-rest);
2710
+ font-size: var(--osdk-typography-size-body-small);
2711
+ padding: calc(var(--osdk-surface-spacing) * 2) 0;
2712
+ }
2713
+
2714
+ .TableEditContainer-module__editButtons___xI-Z7kz1 {
2715
+ display: flex;
2716
+ justify-content: flex-end;
2717
+ gap: 8px;
2718
+ flex: 1;
2719
+ }
2720
+
2721
+
2722
+ /* object-table/TableHeader.module.css */
2723
+ /*
2724
+ * Copyright 2025 Palantir Technologies, Inc. All rights reserved.
2725
+ *
2726
+ * Licensed under the Apache License, Version 2.0 (the "License");
2727
+ * you may not use this file except in compliance with the License.
2728
+ * You may obtain a copy of the License at
2729
+ *
2730
+ * http://www.apache.org/licenses/LICENSE-2.0
2731
+ *
2732
+ * Unless required by applicable law or agreed to in writing, software
2733
+ * distributed under the License is distributed on an "AS IS" BASIS,
2734
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
2735
+ * See the License for the specific language governing permissions and
2736
+ * limitations under the License.
2737
+ */
2738
+
2739
+ .TableHeader-module__osdkTableHeader___4Wzqkog9 {
2740
+ display: grid;
2741
+ position: sticky;
2742
+ top: 0;
2743
+ width: max-content;
2744
+ min-width: 100%;
2745
+ height: var(--osdk-table-header-height);
2746
+ z-index: var(--osdk-surface-z-index-1);
2747
+ background-color: var(--osdk-table-header-bg);
2748
+ }
2749
+
2750
+ .TableHeader-module__osdkTableHeader___4Wzqkog9[data-resizing="true"] {
2751
+ cursor: col-resize;
2752
+ user-select: none;
2753
+ }
2754
+
2755
+ .TableHeader-module__osdkTableHeaderRow___lUjQpm91 {
2756
+ display: flex;
2757
+ width: max-content;
2758
+ min-width: 100%;
2759
+ border-bottom: var(--osdk-table-border);
2760
+ }
2761
+
2762
+ .TableHeader-module__osdkTableHeaderCell___iS9lGU8Z {
2763
+ display: flex;
2764
+ align-items: center;
2765
+ text-align: left;
2766
+ position: relative;
2767
+ padding: var(--osdk-table-cell-padding);
2768
+ font-weight: var(--osdk-table-header-fontWeight);
2769
+ font-size: var(--osdk-table-header-fontSize);
2770
+ color: var(--osdk-table-header-color);
2771
+ border-top: var(--osdk-table-border);
2772
+ border-right: var(--osdk-table-header-divider);
2773
+ background-color: inherit;
2774
+
2775
+ &:first-child {
2776
+ border-left: var(--osdk-table-border);
2777
+ }
2778
+
2779
+ &:last-child {
2780
+ border-right: var(--osdk-table-border);
2781
+ }
2782
+ }
2783
+
2784
+ .TableHeader-module__osdkTableHeaderCell___iS9lGU8Z[data-pinned="left"],
2785
+ .TableHeader-module__osdkTableHeaderCell___iS9lGU8Z[data-pinned="right"] {
2786
+ position: sticky;
2787
+ z-index: var(--osdk-surface-z-index-2);
2788
+ background-color: var(--osdk-table-header-bg);
2789
+ }
2790
+
2791
+ /* Last left-pinned column - no left-pinned siblings after it */
2792
+ .TableHeader-module__osdkTableHeaderCell___iS9lGU8Z[data-pinned="left"]:not(:has(~ [data-pinned="left"])) {
2793
+ border-right: var(--osdk-table-pinned-column-border);
2794
+ }
2795
+
2796
+ /* First right-pinned column - no right-pinned siblings before it */
2797
+ .TableHeader-module__osdkTableHeaderCell___iS9lGU8Z[data-pinned="right"]:not(
2798
+ :has(~ [data-pinned="right"]):nth-child(n + 2)
2799
+ ) {
2800
+ border-left: var(--osdk-table-pinned-column-border);
2801
+ }
2802
+
2803
+ .TableHeader-module__osdkTableHeaderCell___iS9lGU8Z:has([role="checkbox"]) {
2804
+ justify-content: center;
2805
+ }
2806
+
2807
+ .TableHeader-module__osdkTableHeaderResizer___qpjGLncF {
2808
+ background: none;
2809
+ cursor: col-resize;
2810
+ height: 100%;
2811
+ position: absolute;
2812
+ right: calc(-1 * var(--osdk-table-border-width));
2813
+ top: 0;
2814
+ touch-action: none;
2815
+ width: 3px;
2816
+ z-index: var(--osdk-surface-z-index-2);
2817
+
2818
+ &:hover {
2819
+ background: var(--osdk-table-resizer-color-hover);
2820
+ }
2821
+
2822
+ &:active {
2823
+ background: var(--osdk-table-resizer-color-active);
2824
+ }
2825
+ }
2826
+
2827
+ .TableHeader-module__osdkLoadingHeaderCell___gohWQuYX {
2828
+ height: var(--osdk-table-header-fontSize);
2829
+ flex: 1;
2830
+ }
2831
+
2832
+
2833
+ /* object-table/TableHeaderContent.module.css */
2834
+ /*
2835
+ * Copyright 2025 Palantir Technologies, Inc. All rights reserved.
2836
+ *
2837
+ * Licensed under the Apache License, Version 2.0 (the "License");
2838
+ * you may not use this file except in compliance with the License.
2839
+ * You may obtain a copy of the License at
2840
+ *
2841
+ * http://www.apache.org/licenses/LICENSE-2.0
2842
+ *
2843
+ * Unless required by applicable law or agreed to in writing, software
2844
+ * distributed under the License is distributed on an "AS IS" BASIS,
2845
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
2846
+ * See the License for the specific language governing permissions and
2847
+ * limitations under the License.
2848
+ */
2849
+
2850
+ .TableHeaderContent-module__osdkHeaderContent___UQM9R9VU {
2851
+ display: -webkit-box;
2852
+ -webkit-box-orient: vertical;
2853
+ -webkit-line-clamp: 2;
2854
+ line-clamp: 2;
2855
+ text-align: left;
2856
+ overflow: hidden;
2857
+ text-overflow: ellipsis;
2858
+ }
2859
+
2860
+ .TableHeaderContent-module__osdkHeaderContent___UQM9R9VU:has([role="checkbox"]) {
2861
+ display: flex;
2862
+ justify-content: center;
2863
+ }
2864
+
2865
+
2866
+ /* object-table/TableHeaderWithPopover.module.css */
2867
+ /*
2868
+ * Copyright 2025 Palantir Technologies, Inc. All rights reserved.
2869
+ *
2870
+ * Licensed under the Apache License, Version 2.0 (the "License");
2871
+ * you may not use this file except in compliance with the License.
2872
+ * You may obtain a copy of the License at
2873
+ *
2874
+ * http://www.apache.org/licenses/LICENSE-2.0
2875
+ *
2876
+ * Unless required by applicable law or agreed to in writing, software
2877
+ * distributed under the License is distributed on an "AS IS" BASIS,
2878
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
2879
+ * See the License for the specific language governing permissions and
2880
+ * limitations under the License.
2881
+ */
2882
+
2883
+ .TableHeaderWithPopover-module__osdkCenterContainer___7EQ0efaV {
2884
+ display: flex;
2885
+ align-items: center;
2886
+ justify-content: center;
2887
+ }
2888
+
2889
+ .TableHeaderWithPopover-module__osdkContentGap___ydRnh6Gk {
2890
+ display: flex;
2891
+ gap: calc(var(--osdk-surface-spacing) * 2);
2892
+ }
2893
+
2894
+ .TableHeaderWithPopover-module__osdkHeaderContainer___Yp1FKb-z {
2895
+ justify-content: space-between;
2896
+ flex: 1;
2897
+ min-width: 0;
2898
+ align-self: stretch;
2899
+ }
2900
+
2901
+ .TableHeaderWithPopover-module__osdkHeaderContentLeft___PpdFKG5D {
2902
+ min-width: 0;
2903
+ flex-shrink: 1;
2904
+ }
2905
+
2906
+ .TableHeaderWithPopover-module__osdkHeaderContentRight___-cSZMBVb {
2907
+ flex-shrink: 0;
2908
+ }
2909
+
2910
+ .TableHeaderWithPopover-module__osdkHeaderText___VnBa1IL3 {
2911
+ display: -webkit-box;
2912
+ -webkit-box-orient: vertical;
2913
+ -webkit-line-clamp: 3;
2914
+ line-clamp: 3;
2915
+ overflow: hidden;
2916
+ text-overflow: ellipsis;
2917
+ flex-grow: 1;
2918
+ }
2919
+
2920
+ .TableHeaderWithPopover-module__osdkHeaderPopoverTrigger___Y5Q22NIE {
2921
+ padding: var(--osdk-table-header-menu-padding);
2922
+ flex-shrink: 0;
2923
+ flex-grow: 0;
2924
+ background-color: var(--osdk-table-header-menu-bg);
2925
+ border: var(--osdk-table-header-menu-border);
2926
+ border-radius: var(--osdk-surface-border-radius);
2927
+ color: var(--osdk-table-header-menu-color);
2928
+ cursor: pointer;
2929
+ user-select: none;
2930
+
2931
+ &:hover {
2932
+ background-color: var(--osdk-table-header-menu-bg-hover);
2933
+ }
2934
+
2935
+ &[data-popup-open] {
2936
+ background-color: var(--osdk-table-header-menu-bg-active);
2937
+ color: var(--osdk-table-header-menu-color-active);
2938
+ }
2939
+
2940
+ &:focus {
2941
+ outline: none;
2942
+ }
2943
+
2944
+ &:focus-visible {
2945
+ outline: var(--osdk-focus-outline);
2946
+ outline-offset: var(--osdk-focus-visible-outline-offset);
2947
+ }
2948
+ }
2949
+
2950
+ .TableHeaderWithPopover-module__osdkHeaderIcon___lgyu9GmV {
2951
+ width: var(--osdk-iconography-size-small);
2952
+ height: var(--osdk-iconography-size-small);
2953
+ }
2954
+
2955
+ .TableHeaderWithPopover-module__osdkHeaderPopup___TMO39wLW {
2956
+ box-sizing: border-box;
2957
+ padding: var(--osdk-surface-spacing);
2958
+ border-radius: var(--osdk-surface-border-radius);
2959
+ border: var(--osdk-surface-border);
2960
+ background-color: var(--osdk-surface-background-color-default-rest);
2961
+ color: var(--osdk-typography-color-default-rest);
2962
+ box-shadow: var(--osdk-surface-shadow-2);
2963
+ font-size: var(--osdk-typography-size-body-medium);
2964
+
2965
+ &:focus {
2966
+ outline: none;
2967
+ }
2968
+ }
2969
+
2970
+ .TableHeaderWithPopover-module__osdkHeaderMenuItem___f-D5iGwi {
2971
+ justify-content: flex-start;
2972
+ padding: var(--osdk-surface-spacing) calc(var(--osdk-surface-spacing) * 2);
2973
+ cursor: pointer;
2974
+
2975
+ &:hover {
2976
+ background-color: var(--osdk-surface-background-color-default-hover);
2977
+ border-radius: var(--osdk-surface-border-radius);
2978
+ }
2979
+
2980
+ &:focus {
2981
+ outline: none;
2982
+ }
2983
+
2984
+ &:focus-visible {
2985
+ outline: var(--osdk-focus-outline);
2986
+ outline-offset: var(--osdk-focus-visible-outline-offset);
2987
+ }
2988
+ }
2989
+
2990
+ .TableHeaderWithPopover-module__osdkHeaderMenuItem___f-D5iGwi .TableHeaderWithPopover-module__osdkHeaderActiveMenuItem___K007KHkr {
2991
+ background-color: var(--osdk-intent-primary-rest);
2992
+ color: var(--osdk-intent-primary-foreground);
2993
+
2994
+ &:hover {
2995
+ background-color: var(--osdk-intent-primary-hover);
2996
+ }
2997
+
2998
+ &:active {
2999
+ background-color: var(--osdk-intent-primary-active);
3000
+ }
3001
+ }
3002
+
3003
+ .TableHeaderWithPopover-module__sortIndex___WDA6gCRz {
3004
+ font-size: var(--osdk-typography-size-body-x-small);
3005
+ margin-left: var(--osdk-surface-spacing);
3006
+ color: var(--osdk-typography-color-muted);
3007
+ }
3008
+
3009
+
3010
+ /* object-table/TableRow.module.css */
3011
+ /*
3012
+ * Copyright 2025 Palantir Technologies, Inc. All rights reserved.
3013
+ *
3014
+ * Licensed under the Apache License, Version 2.0 (the "License");
3015
+ * you may not use this file except in compliance with the License.
3016
+ * You may obtain a copy of the License at
3017
+ *
3018
+ * http://www.apache.org/licenses/LICENSE-2.0
3019
+ *
3020
+ * Unless required by applicable law or agreed to in writing, software
3021
+ * distributed under the License is distributed on an "AS IS" BASIS,
3022
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
3023
+ * See the License for the specific language governing permissions and
3024
+ * limitations under the License.
3025
+ */
3026
+
3027
+ .TableRow-module__osdkTableRow___sjVwZnzA {
3028
+ position: absolute;
3029
+ display: flex;
3030
+ width: max-content;
3031
+ min-width: 100%;
3032
+ background-color: var(--osdk-table-row-bg-default);
3033
+ border-top: var(--osdk-table-row-divider);
3034
+ border-bottom: var(--osdk-table-border-width) solid transparent;
3035
+
3036
+ &:last-child {
3037
+ border-bottom: var(--osdk-table-border);
3038
+ }
3039
+
3040
+ /* Zebra rows */
3041
+ &:nth-child(even) {
3042
+ background-color: var(
3043
+ --osdk-table-row-bg-alternate,
3044
+ var(--osdk-table-row-bg-default)
3045
+ );
3046
+ }
3047
+
3048
+ &:hover {
3049
+ z-index: 1;
3050
+ background-color: var(
3051
+ --osdk-table-row-bg-hover,
3052
+ var(--osdk-surface-background-color-default-hover)
3053
+ );
3054
+ border-top-color: var(--osdk-table-row-border-color-hover);
3055
+ border-bottom-color: var(--osdk-table-row-border-color-hover);
3056
+ }
3057
+
3058
+ &[data-selected="true"],
3059
+ &[data-focused="true"] {
3060
+ z-index: 2;
3061
+ background-color: var(--osdk-table-row-bg-active);
3062
+ border-top-color: var(--osdk-table-row-border-color-active);
3063
+ border-bottom-color: var(--osdk-table-row-border-color-active);
3064
+ }
3065
+
3066
+ &[data-selected="true"] + &[data-selected="true"] {
3067
+ border-top-color: transparent;
3068
+ }
3069
+
3070
+ &[data-selected="true"]:has(+ &[data-selected="true"]) {
3071
+ border-bottom-color: transparent;
3072
+ }
3073
+ }
3074
+
3075
+
3076
+ /* shared/ErrorBoundary.module.css */
3077
+ /*
3078
+ * Copyright 2025 Palantir Technologies, Inc. All rights reserved.
3079
+ *
3080
+ * Licensed under the Apache License, Version 2.0 (the "License");
3081
+ * you may not use this file except in compliance with the License.
3082
+ * You may obtain a copy of the License at
3083
+ *
3084
+ * http://www.apache.org/licenses/LICENSE-2.0
3085
+ *
3086
+ * Unless required by applicable law or agreed to in writing, software
3087
+ * distributed under the License is distributed on an "AS IS" BASIS,
3088
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
3089
+ * See the License for the specific language governing permissions and
3090
+ * limitations under the License.
3091
+ */
3092
+
3093
+ .ErrorBoundary-module__errorContainer___FIguBDDu {
3094
+ display: flex;
3095
+ flex-direction: column;
3096
+ align-items: flex-start;
3097
+ gap: var(--osdk-filter-error-gap, 8px);
3098
+ padding: var(--osdk-filter-error-padding, 8px);
3099
+ border-radius: var(--osdk-filter-error-border-radius, 4px);
3100
+ background-color: var(--osdk-filter-error-bg, color-mix(in srgb, var(--osdk-intent-danger-rest, #c23030) 5%, transparent));
3101
+ }
3102
+
3103
+ .ErrorBoundary-module__errorMessage___jUsXUqFA {
3104
+ margin: 0;
3105
+ font-size: var(--osdk-filter-error-font-size, 13px);
3106
+ color: var(--osdk-filter-error-text-color, var(--osdk-intent-danger-rest, #c23030));
3107
+ }
3108
+
3109
+ .ErrorBoundary-module__retryButton___PZVWZOm7 {
3110
+ padding: var(--osdk-filter-error-button-padding, 4px 8px);
3111
+ border: 1px solid var(--osdk-filter-error-button-border-color, currentColor);
3112
+ border-radius: var(--osdk-filter-error-button-border-radius, 3px);
3113
+ background: transparent;
3114
+ font-size: var(--osdk-filter-error-button-font-size, 12px);
3115
+ color: var(--osdk-filter-error-button-color, inherit);
3116
+ cursor: pointer;
3117
+ transition: background-color 150ms ease;
3118
+
3119
+ &:hover {
3120
+ background-color: var(--osdk-filter-error-button-hover-bg, color-mix(in srgb, currentColor 5%, transparent));
3121
+ }
3122
+
3123
+ &:focus-visible {
3124
+ outline: var(--osdk-filter-input-focus-outline-width, 2px) solid var(--osdk-filter-input-focus-outline-color, currentColor);
3125
+ outline-offset: var(--osdk-filter-input-focus-outline-offset, 2px);
3126
+ }
3127
+
3128
+ @media (prefers-reduced-motion: reduce) {
3129
+ transition: none;
3130
+ }
3131
+ }
3132
+
3133
+