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

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 (182) hide show
  1. package/AGENTS.md +105 -0
  2. package/CHANGELOG.md +22 -0
  3. package/build/browser/object-table/DefaultCellRenderer.js +5 -2
  4. package/build/browser/object-table/DefaultCellRenderer.js.map +1 -1
  5. package/build/browser/object-table/EditableCell.js +16 -6
  6. package/build/browser/object-table/EditableCell.js.map +1 -1
  7. package/build/browser/object-table/EditableCell.module.css +30 -2
  8. package/build/browser/object-table/EditableCell.module.css.js +2 -1
  9. package/build/browser/object-table/ObjectTable.js +9 -22
  10. package/build/browser/object-table/ObjectTable.js.map +1 -1
  11. package/build/browser/object-table/ObjectTableApi.js.map +1 -1
  12. package/build/browser/object-table/Table.js +23 -15
  13. package/build/browser/object-table/Table.js.map +1 -1
  14. package/build/browser/object-table/Table.module.css +0 -8
  15. package/build/browser/object-table/Table.module.css.js +1 -2
  16. package/build/browser/object-table/TableBody.js +8 -2
  17. package/build/browser/object-table/TableBody.js.map +1 -1
  18. package/build/browser/object-table/TableCell.module.css +0 -8
  19. package/build/browser/object-table/TableEditContainer.js +79 -0
  20. package/build/browser/object-table/TableEditContainer.js.map +1 -0
  21. package/build/browser/object-table/TableEditContainer.module.css +44 -0
  22. package/build/browser/object-table/TableEditContainer.module.css.js +9 -0
  23. package/build/browser/object-table/TableRow.js +12 -4
  24. package/build/browser/object-table/TableRow.js.map +1 -1
  25. package/build/browser/object-table/TableRow.module.css +2 -1
  26. package/build/browser/object-table/hooks/useEditableTable.js +20 -11
  27. package/build/browser/object-table/hooks/useEditableTable.js.map +1 -1
  28. package/build/browser/object-table/hooks/useObjectTableData.js +0 -5
  29. package/build/browser/object-table/hooks/useObjectTableData.js.map +1 -1
  30. package/build/browser/object-table/utils/getCellId.js +0 -7
  31. package/build/browser/object-table/utils/getCellId.js.map +1 -1
  32. package/build/browser/object-table/utils/types.js.map +1 -1
  33. package/build/browser/public/experimental.js.map +1 -1
  34. package/build/browser/styles.css +79 -19
  35. package/build/cjs/public/experimental.cjs +179 -90
  36. package/build/cjs/public/experimental.cjs.map +1 -1
  37. package/build/cjs/public/experimental.css +96 -57
  38. package/build/cjs/public/experimental.css.map +1 -1
  39. package/build/cjs/public/experimental.d.cts +40 -18
  40. package/build/esm/object-table/DefaultCellRenderer.js +5 -2
  41. package/build/esm/object-table/DefaultCellRenderer.js.map +1 -1
  42. package/build/esm/object-table/EditableCell.js +16 -6
  43. package/build/esm/object-table/EditableCell.js.map +1 -1
  44. package/build/esm/object-table/EditableCell.module.css +30 -2
  45. package/build/esm/object-table/ObjectTable.js +9 -22
  46. package/build/esm/object-table/ObjectTable.js.map +1 -1
  47. package/build/esm/object-table/ObjectTableApi.js.map +1 -1
  48. package/build/esm/object-table/Table.js +23 -15
  49. package/build/esm/object-table/Table.js.map +1 -1
  50. package/build/esm/object-table/Table.module.css +0 -8
  51. package/build/esm/object-table/TableBody.js +8 -2
  52. package/build/esm/object-table/TableBody.js.map +1 -1
  53. package/build/esm/object-table/TableCell.module.css +0 -8
  54. package/build/esm/object-table/TableEditContainer.js +79 -0
  55. package/build/esm/object-table/TableEditContainer.js.map +1 -0
  56. package/build/esm/object-table/TableEditContainer.module.css +44 -0
  57. package/build/esm/object-table/TableRow.js +12 -4
  58. package/build/esm/object-table/TableRow.js.map +1 -1
  59. package/build/esm/object-table/TableRow.module.css +2 -1
  60. package/build/esm/object-table/hooks/useEditableTable.js +20 -11
  61. package/build/esm/object-table/hooks/useEditableTable.js.map +1 -1
  62. package/build/esm/object-table/hooks/useObjectTableData.js +0 -5
  63. package/build/esm/object-table/hooks/useObjectTableData.js.map +1 -1
  64. package/build/esm/object-table/utils/getCellId.js +0 -7
  65. package/build/esm/object-table/utils/getCellId.js.map +1 -1
  66. package/build/esm/object-table/utils/types.js.map +1 -1
  67. package/build/esm/public/experimental.js.map +1 -1
  68. package/build/types/object-table/DefaultCellRenderer.d.ts +2 -2
  69. package/build/types/object-table/DefaultCellRenderer.d.ts.map +1 -1
  70. package/build/types/object-table/EditableCell.d.ts +18 -6
  71. package/build/types/object-table/EditableCell.d.ts.map +1 -1
  72. package/build/types/object-table/ObjectTable.d.ts +1 -1
  73. package/build/types/object-table/ObjectTable.d.ts.map +1 -1
  74. package/build/types/object-table/ObjectTableApi.d.ts +16 -6
  75. package/build/types/object-table/ObjectTableApi.d.ts.map +1 -1
  76. package/build/types/object-table/Table.d.ts +5 -10
  77. package/build/types/object-table/Table.d.ts.map +1 -1
  78. package/build/types/object-table/TableBody.d.ts +4 -1
  79. package/build/types/object-table/TableBody.d.ts.map +1 -1
  80. package/build/types/object-table/TableEditContainer.d.ts +9 -0
  81. package/build/types/object-table/TableEditContainer.d.ts.map +1 -0
  82. package/build/types/object-table/TableRow.d.ts +5 -1
  83. package/build/types/object-table/TableRow.d.ts.map +1 -1
  84. package/build/types/object-table/hooks/useEditableTable.d.ts +4 -9
  85. package/build/types/object-table/hooks/useEditableTable.d.ts.map +1 -1
  86. package/build/types/object-table/utils/getCellId.d.ts +0 -1
  87. package/build/types/object-table/utils/getCellId.d.ts.map +1 -1
  88. package/build/types/object-table/utils/types.d.ts +25 -3
  89. package/build/types/object-table/utils/types.d.ts.map +1 -1
  90. package/build/types/public/experimental.d.ts +1 -1
  91. package/build/types/public/experimental.d.ts.map +1 -1
  92. package/package.json +7 -6
  93. package/build/browser/filter-list/__tests__/LinkedPropertyInput.test.js +0 -202
  94. package/build/browser/filter-list/__tests__/LinkedPropertyInput.test.js.map +0 -1
  95. package/build/browser/filter-list/__tests__/dateUtils.test.js +0 -55
  96. package/build/browser/filter-list/__tests__/dateUtils.test.js.map +0 -1
  97. package/build/browser/filter-list/__tests__/filterStateToWhereClause.test.js +0 -296
  98. package/build/browser/filter-list/__tests__/filterStateToWhereClause.test.js.map +0 -1
  99. package/build/browser/filter-list/__tests__/getFilterKey.test.js +0 -53
  100. package/build/browser/filter-list/__tests__/getFilterKey.test.js.map +0 -1
  101. package/build/browser/filter-list/__tests__/testUtils.js +0 -203
  102. package/build/browser/filter-list/__tests__/testUtils.js.map +0 -1
  103. package/build/browser/filter-list/hooks/__tests__/useFilterListState.test.js +0 -128
  104. package/build/browser/filter-list/hooks/__tests__/useFilterListState.test.js.map +0 -1
  105. package/build/browser/object-table/__tests__/useEditableTable.test.js +0 -197
  106. package/build/browser/object-table/__tests__/useEditableTable.test.js.map +0 -1
  107. package/build/browser/object-table/hooks/__tests__/useCellContextMenu.test.js +0 -147
  108. package/build/browser/object-table/hooks/__tests__/useCellContextMenu.test.js.map +0 -1
  109. package/build/browser/object-table/hooks/__tests__/useColumnDefs.test.js +0 -520
  110. package/build/browser/object-table/hooks/__tests__/useColumnDefs.test.js.map +0 -1
  111. package/build/browser/object-table/hooks/__tests__/useColumnPinning.test.js +0 -266
  112. package/build/browser/object-table/hooks/__tests__/useColumnPinning.test.js.map +0 -1
  113. package/build/browser/object-table/hooks/__tests__/useColumnVisibility.test.js +0 -200
  114. package/build/browser/object-table/hooks/__tests__/useColumnVisibility.test.js.map +0 -1
  115. package/build/browser/object-table/hooks/__tests__/useObjectTableData.test.js +0 -315
  116. package/build/browser/object-table/hooks/__tests__/useObjectTableData.test.js.map +0 -1
  117. package/build/browser/object-table/hooks/__tests__/useRowSelection.test.js +0 -596
  118. package/build/browser/object-table/hooks/__tests__/useRowSelection.test.js.map +0 -1
  119. package/build/browser/object-table/hooks/__tests__/useSelectionColumn.test.js +0 -220
  120. package/build/browser/object-table/hooks/__tests__/useSelectionColumn.test.js.map +0 -1
  121. package/build/browser/object-table/hooks/__tests__/useTableSorting.test.js +0 -501
  122. package/build/browser/object-table/hooks/__tests__/useTableSorting.test.js.map +0 -1
  123. package/build/esm/filter-list/__tests__/LinkedPropertyInput.test.js +0 -202
  124. package/build/esm/filter-list/__tests__/LinkedPropertyInput.test.js.map +0 -1
  125. package/build/esm/filter-list/__tests__/dateUtils.test.js +0 -55
  126. package/build/esm/filter-list/__tests__/dateUtils.test.js.map +0 -1
  127. package/build/esm/filter-list/__tests__/filterStateToWhereClause.test.js +0 -296
  128. package/build/esm/filter-list/__tests__/filterStateToWhereClause.test.js.map +0 -1
  129. package/build/esm/filter-list/__tests__/getFilterKey.test.js +0 -53
  130. package/build/esm/filter-list/__tests__/getFilterKey.test.js.map +0 -1
  131. package/build/esm/filter-list/__tests__/testUtils.js +0 -203
  132. package/build/esm/filter-list/__tests__/testUtils.js.map +0 -1
  133. package/build/esm/filter-list/hooks/__tests__/useFilterListState.test.js +0 -128
  134. package/build/esm/filter-list/hooks/__tests__/useFilterListState.test.js.map +0 -1
  135. package/build/esm/object-table/__tests__/useEditableTable.test.js +0 -197
  136. package/build/esm/object-table/__tests__/useEditableTable.test.js.map +0 -1
  137. package/build/esm/object-table/hooks/__tests__/useCellContextMenu.test.js +0 -147
  138. package/build/esm/object-table/hooks/__tests__/useCellContextMenu.test.js.map +0 -1
  139. package/build/esm/object-table/hooks/__tests__/useColumnDefs.test.js +0 -520
  140. package/build/esm/object-table/hooks/__tests__/useColumnDefs.test.js.map +0 -1
  141. package/build/esm/object-table/hooks/__tests__/useColumnPinning.test.js +0 -266
  142. package/build/esm/object-table/hooks/__tests__/useColumnPinning.test.js.map +0 -1
  143. package/build/esm/object-table/hooks/__tests__/useColumnVisibility.test.js +0 -200
  144. package/build/esm/object-table/hooks/__tests__/useColumnVisibility.test.js.map +0 -1
  145. package/build/esm/object-table/hooks/__tests__/useObjectTableData.test.js +0 -315
  146. package/build/esm/object-table/hooks/__tests__/useObjectTableData.test.js.map +0 -1
  147. package/build/esm/object-table/hooks/__tests__/useRowSelection.test.js +0 -596
  148. package/build/esm/object-table/hooks/__tests__/useRowSelection.test.js.map +0 -1
  149. package/build/esm/object-table/hooks/__tests__/useSelectionColumn.test.js +0 -220
  150. package/build/esm/object-table/hooks/__tests__/useSelectionColumn.test.js.map +0 -1
  151. package/build/esm/object-table/hooks/__tests__/useTableSorting.test.js +0 -501
  152. package/build/esm/object-table/hooks/__tests__/useTableSorting.test.js.map +0 -1
  153. package/build/types/filter-list/__tests__/LinkedPropertyInput.test.d.ts +0 -1
  154. package/build/types/filter-list/__tests__/LinkedPropertyInput.test.d.ts.map +0 -1
  155. package/build/types/filter-list/__tests__/dateUtils.test.d.ts +0 -1
  156. package/build/types/filter-list/__tests__/dateUtils.test.d.ts.map +0 -1
  157. package/build/types/filter-list/__tests__/filterStateToWhereClause.test.d.ts +0 -1
  158. package/build/types/filter-list/__tests__/filterStateToWhereClause.test.d.ts.map +0 -1
  159. package/build/types/filter-list/__tests__/getFilterKey.test.d.ts +0 -1
  160. package/build/types/filter-list/__tests__/getFilterKey.test.d.ts.map +0 -1
  161. package/build/types/filter-list/__tests__/testUtils.d.ts +0 -65
  162. package/build/types/filter-list/__tests__/testUtils.d.ts.map +0 -1
  163. package/build/types/filter-list/hooks/__tests__/useFilterListState.test.d.ts +0 -1
  164. package/build/types/filter-list/hooks/__tests__/useFilterListState.test.d.ts.map +0 -1
  165. package/build/types/object-table/__tests__/useEditableTable.test.d.ts +0 -1
  166. package/build/types/object-table/__tests__/useEditableTable.test.d.ts.map +0 -1
  167. package/build/types/object-table/hooks/__tests__/useCellContextMenu.test.d.ts +0 -1
  168. package/build/types/object-table/hooks/__tests__/useCellContextMenu.test.d.ts.map +0 -1
  169. package/build/types/object-table/hooks/__tests__/useColumnDefs.test.d.ts +0 -1
  170. package/build/types/object-table/hooks/__tests__/useColumnDefs.test.d.ts.map +0 -1
  171. package/build/types/object-table/hooks/__tests__/useColumnPinning.test.d.ts +0 -1
  172. package/build/types/object-table/hooks/__tests__/useColumnPinning.test.d.ts.map +0 -1
  173. package/build/types/object-table/hooks/__tests__/useColumnVisibility.test.d.ts +0 -1
  174. package/build/types/object-table/hooks/__tests__/useColumnVisibility.test.d.ts.map +0 -1
  175. package/build/types/object-table/hooks/__tests__/useObjectTableData.test.d.ts +0 -1
  176. package/build/types/object-table/hooks/__tests__/useObjectTableData.test.d.ts.map +0 -1
  177. package/build/types/object-table/hooks/__tests__/useRowSelection.test.d.ts +0 -1
  178. package/build/types/object-table/hooks/__tests__/useRowSelection.test.d.ts.map +0 -1
  179. package/build/types/object-table/hooks/__tests__/useSelectionColumn.test.d.ts +0 -1
  180. package/build/types/object-table/hooks/__tests__/useSelectionColumn.test.d.ts.map +0 -1
  181. package/build/types/object-table/hooks/__tests__/useTableSorting.test.d.ts +0 -1
  182. package/build/types/object-table/hooks/__tests__/useTableSorting.test.d.ts.map +0 -1
@@ -1 +1 @@
1
- {"version":3,"sources":["../../../src/filter-list/base/FilterList.module.css","../../../src/filter-list/base/FilterListContent.module.css","../../../src/shared/ErrorBoundary.module.css","../../../src/base-components/checkbox/Checkbox.module.css","../../../src/filter-list/base/inputs/CheckboxListInput.module.css","../../../src/filter-list/base/inputs/shared.module.css","../../../src/filter-list/base/inputs/ContainsTextInput.module.css","../../../src/filter-list/base/inputs/RangeInput.module.css","../../../src/filter-list/base/inputs/LinkedPropertyInput.module.css","../../../src/filter-list/base/inputs/ListogramInput.module.css","../../../src/filter-list/base/inputs/MultiDateInput.module.css","../../../src/base-components/combobox/Combobox.module.css","../../../src/filter-list/base/inputs/MultiSelectInput.module.css","../../../src/filter-list/base/inputs/SingleDateInput.module.css","../../../src/base-components/select/Select.module.css","../../../src/filter-list/base/inputs/SingleSelectInput.module.css","../../../src/filter-list/base/inputs/TextTagsInput.module.css","../../../src/filter-list/base/inputs/TimelineInput.module.css","../../../src/base-components/switch/Switch.module.css","../../../src/filter-list/base/inputs/ToggleInput.module.css","../../../src/filter-list/base/inputs/NullValueWrapper.module.css","../../../src/filter-list/base/FilterListItem.module.css","../../../src/filter-list/base/FilterListHeader.module.css","../../../src/object-table/EditableCell.module.css","../../../src/base-components/action-button/ActionButton.module.css","../../../src/object-table/LoadingCell.module.css","../../../src/object-table/TableCell.module.css","../../../src/object-table/TableRow.module.css","../../../src/object-table/TableBody.module.css","../../../src/base-components/dialog/Dialog.module.css","../../../src/base-components/draggable-list/DraggableList.module.css","../../../src/base-components/search-bar/SearchBar.module.css","../../../src/object-table/ColumnConfigDialog.module.css","../../../src/object-table/MultiColumnSortDialog.module.css","../../../src/object-table/TableHeader.module.css","../../../src/object-table/TableHeaderContent.module.css","../../../src/object-table/TableHeaderWithPopover.module.css","../../../src/object-table/NonIdealState.module.css","../../../src/object-table/Table.module.css","../../../src/object-table/CellContextMenu.module.css"],"sourcesContent":["/*\n * Copyright 2025 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\n.filterList {\n display: flex;\n flex-direction: column;\n background: var(--osdk-filter-list-bg);\n border: var(--osdk-filter-list-border);\n border-radius: var(--osdk-filter-list-border-radius);\n padding: var(--osdk-filter-list-padding);\n gap: var(--osdk-filter-list-gap);\n}\n\n.addButtonContainer {\n display: flex;\n justify-content: center;\n position: sticky;\n bottom: 0;\n padding-top: var(--osdk-filter-list-addButton-padding-top);\n background: var(--osdk-filter-list-addButton-container-bg, var(--osdk-filter-list-bg));\n}\n\n.addButtonContainer > * {\n flex: 1;\n}\n\n.addButton {\n font-family: var(--osdk-filter-header-font-family);\n font-size: var(--osdk-filter-header-reset-font-size);\n color: var(--osdk-filter-header-reset-color);\n background: var(--osdk-filter-header-button-bg);\n border: none;\n cursor: pointer;\n padding: var(--osdk-filter-header-reset-padding);\n border-radius: var(--osdk-filter-header-button-border-radius);\n transition: background-color var(--osdk-filter-header-button-transition);\n\n &:hover {\n background: var(--osdk-filter-header-button-bg-hover);\n }\n\n &:active {\n background: var(--osdk-filter-header-button-bg-active);\n }\n\n &:focus-visible {\n outline: var(--osdk-filter-input-focus-outline-width) solid var(--osdk-filter-input-focus-outline-color);\n outline-offset: var(--osdk-filter-input-focus-outline-offset);\n }\n\n @media (prefers-reduced-motion: reduce) {\n transition: none;\n }\n}\n","/*\n * Copyright 2025 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\n.content {\n display: flex;\n flex-direction: column;\n gap: var(--osdk-filter-list-content-gap);\n}\n\n.emptyMessage {\n margin: 0;\n color: var(--osdk-filter-list-empty-text-color);\n font-size: var(--osdk-filter-list-empty-font-size);\n}\n","/*\n * Copyright 2025 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\n.errorContainer {\n display: flex;\n flex-direction: column;\n align-items: flex-start;\n gap: var(--osdk-filter-error-gap, 8px);\n padding: var(--osdk-filter-error-padding, 8px);\n border-radius: var(--osdk-filter-error-border-radius, 4px);\n background-color: var(--osdk-filter-error-bg, color-mix(in srgb, var(--osdk-intent-danger-rest, #c23030) 5%, transparent));\n}\n\n.errorMessage {\n margin: 0;\n font-size: var(--osdk-filter-error-font-size, 13px);\n color: var(--osdk-filter-error-text-color, var(--osdk-intent-danger-rest, #c23030));\n}\n\n.retryButton {\n padding: var(--osdk-filter-error-button-padding, 4px 8px);\n border: 1px solid var(--osdk-filter-error-button-border-color, currentColor);\n border-radius: var(--osdk-filter-error-button-border-radius, 3px);\n background: transparent;\n font-size: var(--osdk-filter-error-button-font-size, 12px);\n color: var(--osdk-filter-error-button-color, inherit);\n cursor: pointer;\n transition: background-color 150ms ease;\n\n &:hover {\n background-color: var(--osdk-filter-error-button-hover-bg, color-mix(in srgb, currentColor 5%, transparent));\n }\n\n &:focus-visible {\n outline: var(--osdk-filter-input-focus-outline-width, 2px) solid var(--osdk-filter-input-focus-outline-color, currentColor);\n outline-offset: var(--osdk-filter-input-focus-outline-offset, 2px);\n }\n\n @media (prefers-reduced-motion: reduce) {\n transition: none;\n }\n}\n","/*\n * Copyright 2025 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\n.osdkCheckboxRoot {\n display: flex;\n align-items: center;\n justify-content: center;\n min-width: calc(\n var(--osdk-checkbox-icon-size) + var(--osdk-checkbox-padding) * 2\n );\n min-height: calc(\n var(--osdk-checkbox-icon-size) + var(--osdk-checkbox-padding) * 2\n );\n padding: var(--osdk-checkbox-padding);\n box-sizing: border-box;\n cursor: pointer;\n border-radius: var(--osdk-surface-border-radius);\n border: var(--osdk-checkbox-border);\n\n &[data-unchecked] {\n background-color: var(--osdk-checkbox-bg);\n\n &:hover {\n background-color: var(--osdk-checkbox-bg-hover);\n }\n\n &:active {\n background-color: var(--osdk-checkbox-bg-active);\n }\n }\n\n &[data-checked],\n &[data-indeterminate] {\n background-color: var(--osdk-checkbox-bg-checked);\n\n &:hover {\n background-color: var(--osdk-checkbox-bg-checked-hover);\n }\n\n &:active {\n background-color: var(--osdk-checkbox-bg-checked-active);\n }\n }\n\n &:focus {\n outline: none;\n }\n\n &:focus-visible {\n outline: var(--osdk-focus-outline);\n outline-offset: calc(-1 * var(--osdk-focus-visible-outline-offset));\n }\n}\n\n.osdkCheckboxIndicator {\n display: flex;\n justify-content: center;\n align-items: center;\n color: var(--osdk-checkbox-checked-foreground);\n width: var(--osdk-checkbox-icon-size);\n height: var(--osdk-checkbox-icon-size);\n\n &[data-unchecked] {\n display: none;\n }\n}\n","/*\n * Copyright 2025 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\n.checkboxList {\n display: flex;\n flex-direction: column;\n gap: var(--osdk-filter-checkbox-list-gap);\n}\n\n.checkboxRow {\n padding: var(--osdk-filter-checkbox-row-padding);\n}\n\n.checkboxLabel {\n display: flex;\n align-items: center;\n gap: var(--osdk-filter-checkbox-label-gap);\n cursor: pointer;\n}\n\n.valueText {\n font-family: var(--osdk-filter-checkbox-value-font-family);\n font-size: var(--osdk-filter-checkbox-value-font-size);\n line-height: var(--osdk-filter-checkbox-value-line-height);\n color: var(--osdk-filter-checkbox-value-color);\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n}\n","/*\n * Copyright 2025 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\n/* Shared message styles for filter inputs */\n.loadingMessage,\n.errorMessage,\n.emptyMessage {\n font-size: var(--osdk-typography-size-body-small);\n padding: var(--osdk-surface-spacing);\n}\n\n.loadingMessage,\n.emptyMessage {\n color: var(--osdk-typography-color-muted);\n}\n\n.errorMessage {\n color: var(--osdk-intent-danger-rest);\n}\n\n/* Shared tag styles */\n.tagContainer {\n display: flex;\n flex-wrap: wrap;\n gap: var(--osdk-filter-tag-container-gap);\n}\n\n.tag {\n display: inline-flex;\n align-items: center;\n gap: var(--osdk-filter-tag-gap);\n padding: var(--osdk-filter-tag-padding);\n border-radius: var(--osdk-filter-tag-border-radius);\n background-color: var(--osdk-filter-tag-bg);\n font-family: var(--osdk-filter-tag-font-family);\n font-size: var(--osdk-filter-tag-font-size);\n line-height: var(--osdk-filter-tag-line-height);\n color: var(--osdk-filter-tag-color);\n}\n\n.tagRemove {\n display: flex;\n align-items: center;\n justify-content: center;\n padding: 0;\n border: none;\n background: transparent;\n cursor: pointer;\n color: var(--osdk-filter-tag-remove-color);\n font-size: var(--osdk-filter-tag-remove-font-size);\n line-height: 1;\n transition: color var(--osdk-filter-tag-remove-transition);\n\n &:hover {\n color: var(--osdk-filter-tag-remove-color-hover);\n }\n\n &:focus-visible {\n outline: var(--osdk-filter-input-focus-outline-width) solid var(--osdk-filter-input-focus-outline-color);\n outline-offset: var(--osdk-filter-input-focus-outline-offset);\n }\n\n @media (prefers-reduced-motion: reduce) {\n transition: none;\n }\n}\n","/*\n * Copyright 2025 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\n.textInput {\n position: relative;\n}\n\n.inputGroup {\n display: flex;\n align-items: center;\n background: var(--osdk-filter-input-bg);\n border: var(--osdk-filter-input-border);\n border-radius: var(--osdk-filter-input-border-radius);\n padding: var(--osdk-filter-input-padding);\n gap: var(--osdk-filter-input-gap);\n transition: border-color var(--osdk-filter-input-transition);\n\n &:focus-within {\n border-color: var(--osdk-filter-input-focus-border);\n outline: var(--osdk-filter-input-focus-outline-width) solid var(--osdk-filter-input-focus-outline-color);\n outline-offset: var(--osdk-filter-input-focus-outline-offset);\n }\n\n @media (prefers-reduced-motion: reduce) {\n transition: none;\n }\n}\n\n.searchIcon {\n color: var(--osdk-filter-input-icon-color);\n flex-shrink: 0;\n display: flex;\n align-items: center;\n}\n\n.input {\n flex: 1;\n border: none;\n background: transparent;\n font-family: var(--osdk-filter-input-font-family);\n font-size: var(--osdk-filter-input-font-size);\n color: var(--osdk-filter-input-color);\n outline: none;\n\n &::placeholder {\n color: var(--osdk-filter-input-placeholder-color);\n }\n}\n\n.clearButton {\n display: flex;\n align-items: center;\n justify-content: center;\n padding: var(--osdk-filter-input-clear-padding);\n border: none;\n background: var(--osdk-filter-input-clear-bg);\n color: var(--osdk-filter-input-icon-color);\n cursor: pointer;\n border-radius: var(--osdk-filter-input-clear-border-radius);\n transition: background-color var(--osdk-filter-input-transition);\n\n &:hover {\n background: var(--osdk-filter-input-clear-bg-hover);\n }\n\n &:active {\n background: var(--osdk-filter-input-clear-bg-active);\n }\n\n &:focus-visible {\n outline: var(--osdk-filter-input-focus-outline-width) solid var(--osdk-filter-input-focus-outline-color);\n outline-offset: var(--osdk-filter-input-focus-outline-offset);\n }\n\n @media (prefers-reduced-motion: reduce) {\n transition: none;\n }\n}\n","/*\n * Copyright 2025 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\n.rangeInput {\n display: flex;\n flex-direction: column;\n gap: var(--osdk-filter-range-gap, calc(var(--osdk-surface-spacing) * 2));\n}\n\n.histogramContainer {\n display: flex;\n align-items: flex-end;\n height: var(--osdk-filter-range-histogram-height, 60px);\n gap: var(--osdk-filter-range-histogram-bar-gap, 2px);\n}\n\n.histogramBar {\n flex: 1;\n background: var(--osdk-filter-range-histogram-bar-color, var(--osdk-custom-color-gray-3));\n min-width: var(--osdk-filter-range-histogram-bar-min-width, 4px);\n transition: background-color var(--osdk-emphasis-transition-duration) var(--osdk-emphasis-ease-default);\n}\n\n.histogramBar[data-in-range=\"true\"] {\n background: var(--osdk-filter-range-histogram-bar-active-color, var(--osdk-intent-primary-rest));\n}\n\n.rangeInputs {\n display: flex;\n align-items: flex-end;\n gap: var(--osdk-filter-range-inputs-gap, calc(var(--osdk-surface-spacing) * 2));\n}\n\n.inputWrapper {\n flex: 1;\n display: flex;\n flex-direction: column;\n gap: var(--osdk-filter-range-input-wrapper-gap, calc(var(--osdk-surface-spacing) * 1));\n}\n\n.inputLabel {\n font-size: var(--osdk-typography-size-body-small);\n color: var(--osdk-typography-color-muted);\n}\n\n.input {\n font-size: var(--osdk-typography-size-body-small);\n padding: var(--osdk-filter-input-padding);\n border: var(--osdk-filter-input-border);\n border-radius: var(--osdk-filter-input-border-radius);\n background: var(--osdk-filter-input-bg);\n color: var(--osdk-filter-input-color);\n\n &:focus {\n border-color: var(--osdk-filter-input-focus-border);\n outline: var(--osdk-filter-input-focus-outline-width) solid var(--osdk-filter-input-focus-outline-color);\n outline-offset: var(--osdk-filter-input-focus-outline-offset);\n }\n\n &::placeholder {\n color: var(--osdk-filter-input-placeholder-color);\n }\n}\n\n.separator {\n padding-bottom: calc(var(--osdk-surface-spacing) * 1.5);\n color: var(--osdk-typography-color-muted);\n}\n","/*\n * Copyright 2025 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\n.linkedProperty {\n display: flex;\n flex-direction: column;\n}\n","/*\n * Copyright 2025 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\n.listogram {\n display: flex;\n flex-direction: column;\n}\n\n.container {\n display: flex;\n flex-direction: column;\n gap: var(--osdk-filter-listogram-gap, calc(var(--osdk-surface-spacing) * 1));\n}\n\n.row {\n display: flex;\n align-items: center;\n gap: var(--osdk-filter-listogram-row-gap, calc(var(--osdk-surface-spacing) * 2));\n padding: var(--osdk-filter-listogram-row-padding, calc(var(--osdk-surface-spacing) * 1));\n border: none;\n background: transparent;\n cursor: pointer;\n border-radius: var(--osdk-surface-border-radius);\n text-align: left;\n width: 100%;\n transition: background-color var(--osdk-emphasis-transition-duration) var(--osdk-emphasis-ease-default);\n\n &:hover {\n background: var(--osdk-surface-background-color-default-hover);\n }\n\n &:focus-visible {\n outline: var(--osdk-emphasis-focus-width) solid var(--osdk-emphasis-focus-color);\n outline-offset: var(--osdk-emphasis-focus-offset);\n }\n}\n\n.row[aria-pressed=\"true\"] {\n background: var(--osdk-surface-background-color-default-active);\n}\n\n.label {\n flex: 1;\n font-size: var(--osdk-typography-size-body-medium);\n color: var(--osdk-typography-color-default-rest);\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n}\n\n.bar {\n flex: 2;\n height: var(--osdk-filter-listogram-bar-height, 8px);\n background: var(--osdk-custom-color-gray-2);\n border-radius: var(--osdk-surface-border-radius);\n overflow: hidden;\n}\n\n.barFill {\n height: 100%;\n background: var(--osdk-filter-listogram-bar-color);\n transition: width var(--osdk-emphasis-transition-duration) var(--osdk-emphasis-ease-default);\n}\n\n.row[aria-pressed=\"true\"] .barFill {\n background: var(--osdk-filter-listogram-selected-color);\n}\n\n.count {\n font-size: var(--osdk-typography-size-body-small);\n font-variant-numeric: tabular-nums;\n color: var(--osdk-typography-color-muted);\n min-width: 3ch;\n text-align: right;\n}\n","/*\n * Copyright 2025 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\n.multiDate {\n display: flex;\n flex-direction: column;\n gap: var(--osdk-filter-multiselect-gap);\n}\n\n.clearAll {\n font-size: var(--osdk-typography-size-body-small);\n color: var(--osdk-intent-primary-rest);\n background: transparent;\n border: none;\n cursor: pointer;\n padding: calc(var(--osdk-surface-spacing) * 0.5);\n\n &:hover {\n text-decoration: underline;\n }\n}\n\n.calendarContainer {\n display: flex;\n}\n\n.input {\n flex: 1;\n font-size: var(--osdk-typography-size-body-medium);\n padding: var(--osdk-filter-input-padding);\n border: var(--osdk-filter-input-border);\n border-radius: var(--osdk-filter-input-border-radius);\n background: var(--osdk-filter-input-bg);\n color: var(--osdk-filter-input-color);\n\n &:focus {\n border-color: var(--osdk-filter-input-focus-border);\n outline: var(--osdk-filter-input-focus-outline-width) solid var(--osdk-filter-input-focus-outline-color);\n outline-offset: var(--osdk-filter-input-focus-outline-offset);\n }\n}\n","/*\n * Copyright 2025 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\n.osdkComboboxInputWrapper {\n display: flex;\n align-items: center;\n gap: var(--osdk-combobox-spacing, var(--osdk-surface-spacing));\n width: 100%;\n min-height: var(--osdk-combobox-min-height, 30px);\n padding: calc(var(--osdk-combobox-spacing, var(--osdk-surface-spacing)) * 1.5)\n calc(var(--osdk-combobox-spacing, var(--osdk-surface-spacing)) * 2);\n box-sizing: border-box;\n border-radius: var(--osdk-combobox-border-radius, var(--osdk-surface-border-radius));\n border: var(--osdk-combobox-border-width, var(--osdk-surface-border-width)) solid\n var(--osdk-combobox-border-color, var(--osdk-surface-border-color-default));\n background-color: var(--osdk-combobox-input-bg, var(--osdk-surface-background-color-default-rest));\n transition: border-color var(--osdk-combobox-transition-duration, var(--osdk-emphasis-transition-duration))\n var(--osdk-combobox-transition-ease, var(--osdk-emphasis-ease-default));\n\n &:focus-within {\n border-color: var(--osdk-combobox-focus-border-color, var(--osdk-intent-primary-rest));\n outline: var(--osdk-combobox-focus-width, var(--osdk-emphasis-focus-width)) solid\n var(--osdk-combobox-focus-color, var(--osdk-emphasis-focus-color));\n outline-offset: var(--osdk-combobox-focus-offset, var(--osdk-emphasis-focus-offset));\n }\n}\n\n.osdkComboboxSearchIcon {\n flex-shrink: 0;\n color: var(--osdk-combobox-icon-color, var(--osdk-iconography-color-muted));\n}\n\n.osdkComboboxInput {\n flex: 1;\n min-width: 0;\n border: none;\n background: transparent;\n font-family: var(--osdk-combobox-font-family, var(--osdk-typography-family-default));\n font-size: var(--osdk-combobox-font-size, var(--osdk-typography-size-body-medium));\n line-height: var(--osdk-combobox-line-height, var(--osdk-typography-line-height-default));\n color: var(--osdk-combobox-input-color, var(--osdk-typography-color-default-rest));\n outline: none;\n\n &::placeholder {\n color: var(--osdk-combobox-placeholder-color, var(--osdk-typography-color-muted));\n }\n}\n\n.osdkComboboxPositioner {\n z-index: var(--osdk-combobox-z-index, var(--osdk-surface-z-index-3));\n}\n\n.osdkComboboxPopup {\n display: flex;\n flex-direction: column;\n min-width: var(--anchor-width);\n max-height: var(--available-height);\n overflow-y: auto;\n padding: calc(var(--osdk-combobox-spacing, var(--osdk-surface-spacing)) * 1.5);\n box-sizing: border-box;\n border-radius: var(--osdk-combobox-border-radius, var(--osdk-surface-border-radius));\n border: var(--osdk-combobox-border-width, var(--osdk-surface-border-width)) solid\n var(--osdk-combobox-border-color, var(--osdk-surface-border-color-default));\n background-color: var(--osdk-combobox-popup-bg, var(--osdk-surface-background-color-default-rest));\n box-shadow: var(--osdk-combobox-popup-shadow, var(--osdk-surface-shadow-2));\n}\n\n.osdkComboboxItem {\n display: flex;\n align-items: center;\n padding: calc(var(--osdk-combobox-spacing, var(--osdk-surface-spacing)) * 1.5)\n calc(var(--osdk-combobox-spacing, var(--osdk-surface-spacing)) * 2);\n border-radius: var(--osdk-combobox-border-radius, var(--osdk-surface-border-radius));\n cursor: pointer;\n font-family: var(--osdk-combobox-font-family, var(--osdk-typography-family-default));\n font-size: var(--osdk-combobox-font-size, var(--osdk-typography-size-body-medium));\n line-height: var(--osdk-combobox-line-height, var(--osdk-typography-line-height-default));\n color: var(--osdk-combobox-item-color, var(--osdk-typography-color-default-rest));\n transition: background-color var(--osdk-combobox-transition-duration, var(--osdk-emphasis-transition-duration))\n var(--osdk-combobox-transition-ease, var(--osdk-emphasis-ease-default));\n\n &[data-highlighted] {\n background-color: var(--osdk-combobox-item-bg-highlighted, var(--osdk-surface-background-color-default-hover));\n outline: none;\n }\n\n &[data-selected] {\n background-color: var(--osdk-combobox-item-bg-selected, var(--osdk-surface-layer-primary));\n color: var(--osdk-combobox-item-color-selected, var(--osdk-intent-primary-rest));\n }\n\n &[data-disabled] {\n cursor: not-allowed;\n opacity: var(--osdk-disabled-opacity, 0.5);\n }\n}\n\n.osdkComboboxChips {\n display: flex;\n flex-wrap: wrap;\n gap: calc(var(--osdk-combobox-spacing, var(--osdk-surface-spacing)) * 1.5);\n margin-bottom: calc(var(--osdk-combobox-spacing, var(--osdk-surface-spacing)) * 2);\n}\n\n.osdkComboboxChip {\n display: inline-flex;\n align-items: center;\n gap: var(--osdk-combobox-spacing, var(--osdk-surface-spacing));\n padding: calc(var(--osdk-combobox-spacing, var(--osdk-surface-spacing)) * 0.5)\n calc(var(--osdk-combobox-spacing, var(--osdk-surface-spacing)) * 1.5);\n border-radius: var(--osdk-combobox-border-radius, var(--osdk-surface-border-radius));\n background-color: var(--osdk-combobox-chip-bg, var(--osdk-surface-background-color-default-hover));\n font-family: var(--osdk-combobox-font-family, var(--osdk-typography-family-default));\n font-size: var(--osdk-combobox-chip-font-size, var(--osdk-typography-size-body-small));\n line-height: var(--osdk-combobox-line-height, var(--osdk-typography-line-height-default));\n color: var(--osdk-combobox-chip-color, var(--osdk-typography-color-default-rest));\n}\n\n.osdkComboboxChipRemove {\n display: flex;\n align-items: center;\n justify-content: center;\n padding: 0;\n border: none;\n background: transparent;\n cursor: pointer;\n color: var(--osdk-combobox-chip-remove-color, var(--osdk-iconography-color-muted));\n transition: color var(--osdk-combobox-transition-duration, var(--osdk-emphasis-transition-duration))\n var(--osdk-combobox-transition-ease, var(--osdk-emphasis-ease-default));\n\n &:hover {\n color: var(--osdk-combobox-chip-remove-color-hover, var(--osdk-typography-color-default-rest));\n }\n}\n\n.osdkComboboxClear {\n display: flex;\n align-items: center;\n justify-content: center;\n padding: calc(var(--osdk-combobox-spacing, var(--osdk-surface-spacing)) * 0.5);\n border: none;\n background: transparent;\n cursor: pointer;\n color: var(--osdk-combobox-clear-color, var(--osdk-iconography-color-muted));\n border-radius: var(--osdk-combobox-border-radius, var(--osdk-surface-border-radius));\n transition: color var(--osdk-combobox-transition-duration, var(--osdk-emphasis-transition-duration))\n var(--osdk-combobox-transition-ease, var(--osdk-emphasis-ease-default)),\n background-color var(--osdk-combobox-transition-duration, var(--osdk-emphasis-transition-duration))\n var(--osdk-combobox-transition-ease, var(--osdk-emphasis-ease-default));\n\n &:hover {\n color: var(--osdk-combobox-clear-color-hover, var(--osdk-typography-color-default-rest));\n background-color: var(--osdk-combobox-clear-bg-hover, var(--osdk-surface-background-color-default-hover));\n }\n}\n\n.osdkComboboxEmpty {\n padding: calc(var(--osdk-combobox-spacing, var(--osdk-surface-spacing)) * 3)\n calc(var(--osdk-combobox-spacing, var(--osdk-surface-spacing)) * 2);\n text-align: center;\n color: var(--osdk-combobox-empty-color, var(--osdk-typography-color-muted));\n font-family: var(--osdk-combobox-font-family, var(--osdk-typography-family-default));\n font-size: var(--osdk-combobox-font-size, var(--osdk-typography-size-body-medium));\n}\n","/*\n * Copyright 2025 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\n.multiSelect {\n display: flex;\n flex-direction: column;\n gap: var(--osdk-filter-multiselect-gap);\n}\n\n.inputRow {\n display: flex;\n align-items: center;\n gap: var(--osdk-filter-multiselect-inputRow-gap);\n}\n\n.clearButton {\n flex-shrink: 0;\n}\n\n.count {\n font-variant-numeric: tabular-nums;\n}\n","/*\n * Copyright 2025 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\n.singleDate {\n display: flex;\n flex-direction: column;\n}\n\n.dateContainer {\n display: flex;\n align-items: center;\n gap: var(--osdk-filter-select-container-gap);\n}\n\n.input {\n flex: 1;\n font-size: var(--osdk-typography-size-body-medium);\n padding: var(--osdk-filter-input-padding);\n border: var(--osdk-filter-input-border);\n border-radius: var(--osdk-filter-input-border-radius);\n background: var(--osdk-filter-input-bg);\n color: var(--osdk-filter-input-color);\n\n &:focus {\n border-color: var(--osdk-filter-input-focus-border);\n outline: var(--osdk-filter-input-focus-outline-width) solid var(--osdk-filter-input-focus-outline-color);\n outline-offset: var(--osdk-filter-input-focus-outline-offset);\n }\n}\n\n.clearButton {\n display: flex;\n align-items: center;\n justify-content: center;\n padding: var(--osdk-filter-input-clear-padding);\n border: none;\n background: transparent;\n cursor: pointer;\n color: var(--osdk-filter-input-icon-color);\n border-radius: var(--osdk-filter-input-clear-border-radius);\n transition: background-color var(--osdk-filter-input-transition);\n\n &:hover {\n background: var(--osdk-filter-input-clear-bg-hover);\n }\n\n &:active {\n background: var(--osdk-filter-input-clear-bg-active);\n }\n}\n","/*\n * Copyright 2025 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\n.osdkSelectTrigger {\n display: inline-flex;\n align-items: center;\n justify-content: space-between;\n gap: var(--osdk-select-spacing, var(--osdk-surface-spacing));\n width: 100%;\n min-height: var(--osdk-select-min-height, 30px);\n padding: calc(var(--osdk-select-spacing, var(--osdk-surface-spacing)) * 1.5)\n calc(var(--osdk-select-spacing, var(--osdk-surface-spacing)) * 2.5);\n box-sizing: border-box;\n cursor: pointer;\n border-radius: var(--osdk-select-border-radius, var(--osdk-surface-border-radius));\n border: var(--osdk-select-border-width, var(--osdk-surface-border-width)) solid\n var(--osdk-select-border-color, var(--osdk-surface-border-color-default));\n background-color: var(--osdk-select-trigger-bg, var(--osdk-surface-background-color-default-rest));\n color: var(--osdk-select-trigger-color, var(--osdk-typography-color-default-rest));\n font-family: var(--osdk-select-font-family, var(--osdk-typography-family-default));\n font-size: var(--osdk-select-font-size, var(--osdk-typography-size-body-medium));\n line-height: var(--osdk-select-line-height, var(--osdk-typography-line-height-default));\n transition: background-color var(--osdk-select-transition-duration, var(--osdk-emphasis-transition-duration))\n var(--osdk-select-transition-ease, var(--osdk-emphasis-ease-default)),\n border-color var(--osdk-select-transition-duration, var(--osdk-emphasis-transition-duration))\n var(--osdk-select-transition-ease, var(--osdk-emphasis-ease-default));\n\n &:hover {\n background-color: var(--osdk-select-trigger-bg-hover, var(--osdk-surface-background-color-default-hover));\n }\n\n &:active {\n background-color: var(--osdk-select-trigger-bg-active, var(--osdk-surface-background-color-default-active));\n }\n\n &:focus-visible {\n outline: var(--osdk-select-focus-width, var(--osdk-emphasis-focus-width)) solid\n var(--osdk-select-focus-color, var(--osdk-emphasis-focus-color));\n outline-offset: var(--osdk-select-focus-offset, var(--osdk-emphasis-focus-offset));\n }\n\n &[data-disabled] {\n cursor: not-allowed;\n opacity: var(--osdk-disabled-opacity, 0.5);\n }\n\n &[data-popup-open] {\n border-color: var(--osdk-select-border-color-active, var(--osdk-intent-primary-rest));\n }\n}\n\n.osdkSelectValue {\n flex: 1;\n text-align: left;\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n\n &[data-placeholder] {\n color: var(--osdk-select-placeholder-color, var(--osdk-typography-color-muted));\n }\n}\n\n.osdkSelectIcon {\n display: flex;\n align-items: center;\n justify-content: center;\n color: var(--osdk-select-icon-color, var(--osdk-iconography-color-muted));\n flex-shrink: 0;\n transition: transform var(--osdk-select-transition-duration, var(--osdk-emphasis-transition-duration))\n var(--osdk-select-transition-ease, var(--osdk-emphasis-ease-default));\n\n [data-popup-open] > & {\n transform: rotate(180deg);\n }\n}\n\n.osdkSelectPositioner {\n z-index: var(--osdk-select-z-index, var(--osdk-surface-z-index-3));\n}\n\n.osdkSelectPopup {\n display: flex;\n flex-direction: column;\n min-width: var(--anchor-width);\n max-height: var(--available-height);\n overflow-y: auto;\n padding: calc(var(--osdk-select-spacing, var(--osdk-surface-spacing)) * 1.5);\n box-sizing: border-box;\n border-radius: var(--osdk-select-border-radius, var(--osdk-surface-border-radius));\n border: var(--osdk-select-border-width, var(--osdk-surface-border-width)) solid\n var(--osdk-select-border-color, var(--osdk-surface-border-color-default));\n background-color: var(--osdk-select-popup-bg, var(--osdk-surface-background-color-default-rest));\n box-shadow: var(--osdk-select-popup-shadow, var(--osdk-surface-shadow-2));\n}\n\n.osdkSelectItem {\n display: flex;\n align-items: center;\n padding: calc(var(--osdk-select-spacing, var(--osdk-surface-spacing)) * 1.5)\n calc(var(--osdk-select-spacing, var(--osdk-surface-spacing)) * 2);\n border-radius: var(--osdk-select-border-radius, var(--osdk-surface-border-radius));\n cursor: pointer;\n font-family: var(--osdk-select-font-family, var(--osdk-typography-family-default));\n font-size: var(--osdk-select-font-size, var(--osdk-typography-size-body-medium));\n line-height: var(--osdk-select-line-height, var(--osdk-typography-line-height-default));\n color: var(--osdk-select-item-color, var(--osdk-typography-color-default-rest));\n transition: background-color var(--osdk-select-transition-duration, var(--osdk-emphasis-transition-duration))\n var(--osdk-select-transition-ease, var(--osdk-emphasis-ease-default));\n\n &[data-highlighted] {\n background-color: var(--osdk-select-item-bg-highlighted, var(--osdk-surface-background-color-default-hover));\n outline: none;\n }\n\n &[data-selected] {\n background-color: var(--osdk-select-item-bg-selected, var(--osdk-surface-layer-primary));\n color: var(--osdk-select-item-color-selected, var(--osdk-intent-primary-rest));\n }\n\n &[data-disabled] {\n cursor: not-allowed;\n opacity: var(--osdk-disabled-opacity, 0.5);\n }\n}\n","/*\n * Copyright 2025 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\n.singleSelect {\n display: flex;\n flex-direction: column;\n}\n\n.selectContainer {\n display: flex;\n align-items: center;\n gap: var(--osdk-filter-select-container-gap);\n position: relative;\n}\n\n.clearButton {\n display: flex;\n align-items: center;\n justify-content: center;\n padding: var(--osdk-filter-select-clear-padding);\n border: none;\n background: transparent;\n cursor: pointer;\n color: var(--osdk-filter-select-clear-color);\n border-radius: var(--osdk-filter-select-clear-border-radius);\n transition: color var(--osdk-filter-select-clear-transition),\n background-color var(--osdk-filter-select-clear-transition);\n\n &:hover {\n color: var(--osdk-filter-select-clear-color-hover);\n background-color: var(--osdk-filter-select-clear-bg-hover);\n }\n\n &:focus-visible {\n outline: var(--osdk-filter-input-focus-outline-width) solid var(--osdk-filter-input-focus-outline-color);\n outline-offset: var(--osdk-filter-input-focus-outline-offset);\n }\n\n @media (prefers-reduced-motion: reduce) {\n transition: none;\n }\n}\n","/*\n * Copyright 2025 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\n.textTags {\n display: flex;\n flex-direction: column;\n gap: var(--osdk-filter-texttags-gap);\n}\n\n.input {\n flex: 1;\n}\n","/*\n * Copyright 2025 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\n.timeline {\n display: flex;\n flex-direction: column;\n gap: var(--osdk-filter-range-gap, calc(var(--osdk-surface-spacing) * 2));\n}\n\n.labels {\n display: flex;\n align-items: center;\n gap: var(--osdk-surface-spacing);\n font-size: var(--osdk-typography-size-body-small);\n color: var(--osdk-typography-color-muted);\n}\n\n.clearButton {\n display: flex;\n align-items: center;\n justify-content: center;\n padding: calc(var(--osdk-surface-spacing) * 0.5);\n border: none;\n background: transparent;\n cursor: pointer;\n color: var(--osdk-iconography-color-muted);\n border-radius: var(--osdk-surface-border-radius);\n margin-left: auto;\n\n &:hover {\n background: var(--osdk-surface-background-color-default-hover);\n color: var(--osdk-typography-color-default-rest);\n }\n}\n\n.brush {\n display: flex;\n align-items: center;\n gap: var(--osdk-surface-spacing);\n}\n\n.brush span {\n color: var(--osdk-typography-color-muted);\n}\n\n.input {\n flex: 1;\n font-size: var(--osdk-typography-size-body-medium);\n padding: var(--osdk-filter-input-padding);\n border: var(--osdk-filter-input-border);\n border-radius: var(--osdk-filter-input-border-radius);\n background: var(--osdk-filter-input-bg);\n color: var(--osdk-filter-input-color);\n\n &:focus {\n border-color: var(--osdk-filter-input-focus-border);\n outline: var(--osdk-filter-input-focus-outline-width) solid var(--osdk-filter-input-focus-outline-color);\n outline-offset: var(--osdk-filter-input-focus-outline-offset);\n }\n}\n","/*\n * Copyright 2025 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\n.osdkSwitchRoot {\n --osdk-switch-track-width: var(--osdk-switch-track-width-override, 28px);\n --osdk-switch-track-height: var(--osdk-switch-track-height-override, 16px);\n --osdk-switch-thumb-size: var(--osdk-switch-thumb-size-override, 12px);\n --osdk-switch-thumb-offset: var(--osdk-switch-thumb-offset-override, 2px);\n\n display: inline-flex;\n align-items: center;\n width: var(--osdk-switch-track-width);\n height: var(--osdk-switch-track-height);\n padding: 0;\n box-sizing: border-box;\n cursor: pointer;\n border-radius: var(--osdk-switch-border-radius, var(--osdk-surface-border-radius));\n position: relative;\n border: none;\n transition: background-color var(--osdk-switch-transition-duration, var(--osdk-emphasis-transition-duration))\n var(--osdk-switch-transition-ease, var(--osdk-emphasis-ease-default));\n\n &[data-unchecked] {\n background-color: var(--osdk-switch-track-bg, var(--osdk-intent-default-rest));\n\n &:hover {\n background-color: var(--osdk-switch-track-bg-hover, var(--osdk-intent-default-hover));\n }\n\n &:active {\n background-color: var(--osdk-switch-track-bg-active, var(--osdk-intent-default-active));\n }\n }\n\n &[data-checked] {\n background-color: var(--osdk-switch-track-bg-checked, var(--osdk-intent-primary-rest));\n\n &:hover {\n background-color: var(--osdk-switch-track-bg-checked-hover, var(--osdk-intent-primary-hover));\n }\n\n &:active {\n background-color: var(--osdk-switch-track-bg-checked-active, var(--osdk-intent-primary-active));\n }\n }\n\n &[data-disabled] {\n cursor: not-allowed;\n opacity: 0.5;\n }\n\n &:focus-visible {\n outline: var(--osdk-switch-focus-width, var(--osdk-emphasis-focus-width)) solid\n var(--osdk-switch-focus-color, var(--osdk-emphasis-focus-color));\n outline-offset: var(--osdk-switch-focus-offset, var(--osdk-emphasis-focus-offset));\n }\n}\n\n.osdkSwitchThumb {\n display: block;\n width: var(--osdk-switch-thumb-size);\n height: var(--osdk-switch-thumb-size);\n background-color: var(--osdk-switch-thumb-bg, var(--osdk-palette-white));\n border-radius: 50%;\n position: absolute;\n top: 50%;\n transform: translateY(-50%);\n transition: left var(--osdk-switch-transition-duration, var(--osdk-emphasis-transition-duration))\n var(--osdk-switch-transition-ease, var(--osdk-emphasis-ease-default));\n\n &[data-unchecked] {\n left: var(--osdk-switch-thumb-offset);\n }\n\n &[data-checked] {\n left: calc(var(--osdk-switch-track-width) - var(--osdk-switch-thumb-size) - var(--osdk-switch-thumb-offset));\n }\n}\n","/*\n * Copyright 2025 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\n.toggleInput {\n display: flex;\n align-items: center;\n}\n\n.toggleLabel {\n display: flex;\n align-items: center;\n gap: var(--osdk-filter-toggle-label-gap);\n cursor: pointer;\n}\n\n.labelText {\n font-family: var(--osdk-filter-toggle-label-font-family);\n font-size: var(--osdk-filter-toggle-label-font-size);\n line-height: var(--osdk-filter-toggle-label-line-height);\n color: var(--osdk-filter-toggle-label-color);\n}\n","/*\n * Copyright 2025 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\n.nullWrapper {\n display: flex;\n flex-direction: column;\n gap: var(--osdk-filter-null-wrapper-gap);\n}\n\n.nullValueRow {\n display: flex;\n align-items: center;\n justify-content: space-between;\n padding: var(--osdk-filter-null-row-padding);\n border-top: var(--osdk-filter-null-row-border-top);\n}\n\n.nullLabel {\n display: flex;\n align-items: center;\n gap: var(--osdk-filter-null-label-gap);\n cursor: pointer;\n}\n\n.nullLabelText {\n font-family: var(--osdk-filter-null-label-font-family);\n font-size: var(--osdk-filter-null-label-font-size);\n line-height: var(--osdk-filter-null-label-line-height);\n color: var(--osdk-filter-null-label-color);\n}\n\n.count {\n font-size: var(--osdk-typography-size-body-small);\n font-variant-numeric: tabular-nums;\n color: var(--osdk-typography-color-muted);\n}\n","/*\n * Copyright 2025 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\n.filterItem {\n display: flex;\n flex-direction: column;\n gap: var(--osdk-filter-item-gap);\n}\n\n.itemHeader {\n display: flex;\n align-items: center;\n}\n\n.itemLabel {\n font-family: var(--osdk-filter-item-label-font-family);\n font-size: var(--osdk-filter-item-label-font-size);\n font-weight: var(--osdk-filter-item-label-font-weight);\n color: var(--osdk-filter-item-label-color);\n}\n\n.itemContent {\n display: flex;\n flex-direction: column;\n}\n","/*\n * Copyright 2025 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\n.header {\n display: flex;\n align-items: center;\n justify-content: space-between;\n padding-bottom: var(--osdk-filter-header-padding-bottom);\n border-bottom: var(--osdk-filter-header-border-bottom);\n}\n\n.titleContainer {\n display: flex;\n align-items: center;\n gap: var(--osdk-filter-header-titleContainer-gap);\n}\n\n.title {\n font-family: var(--osdk-filter-header-font-family);\n font-size: var(--osdk-filter-header-font-size);\n font-weight: var(--osdk-filter-header-font-weight);\n color: var(--osdk-filter-header-color);\n margin: 0;\n}\n\n.titleIcon {\n color: var(--osdk-filter-header-icon-color);\n display: flex;\n align-items: center;\n}\n\n.activeCount {\n font-family: var(--osdk-filter-header-font-family);\n font-size: var(--osdk-filter-header-activeCount-font-size);\n color: var(--osdk-filter-header-activeCount-color);\n font-variant-numeric: tabular-nums;\n}\n\n.collapseButton {\n display: flex;\n align-items: center;\n justify-content: center;\n padding: var(--osdk-filter-header-button-padding);\n border: none;\n background: var(--osdk-filter-header-button-bg);\n cursor: pointer;\n border-radius: var(--osdk-filter-header-button-border-radius);\n transition: background-color var(--osdk-filter-header-button-transition);\n\n &:hover {\n background: var(--osdk-filter-header-button-bg-hover);\n }\n\n &:active {\n background: var(--osdk-filter-header-button-bg-active);\n }\n\n &:focus-visible {\n outline: var(--osdk-filter-input-focus-outline-width) solid var(--osdk-filter-input-focus-outline-color);\n outline-offset: var(--osdk-filter-input-focus-outline-offset);\n }\n\n @media (prefers-reduced-motion: reduce) {\n transition: none;\n }\n}\n\n.collapseIcon {\n display: block;\n width: var(--osdk-filter-header-collapse-icon-size);\n height: var(--osdk-filter-header-collapse-icon-size);\n border-left: var(--osdk-filter-header-collapse-icon-border-width) solid var(--osdk-filter-header-collapse-icon-color);\n border-bottom: var(--osdk-filter-header-collapse-icon-border-width) solid var(--osdk-filter-header-collapse-icon-color);\n transform: rotate(-45deg);\n transition: transform var(--osdk-filter-header-button-transition);\n\n @media (prefers-reduced-motion: reduce) {\n transition: none;\n }\n}\n\n.collapseIcon[data-collapsed=\"true\"] {\n transform: rotate(-135deg);\n}\n\n.resetButton {\n font-family: var(--osdk-filter-header-font-family);\n font-size: var(--osdk-filter-header-reset-font-size);\n color: var(--osdk-filter-header-reset-color);\n background: var(--osdk-filter-header-button-bg);\n border: none;\n cursor: pointer;\n padding: var(--osdk-filter-header-reset-padding);\n border-radius: var(--osdk-filter-header-button-border-radius);\n transition: background-color var(--osdk-filter-header-button-transition);\n\n &:hover:not(:disabled) {\n background: var(--osdk-filter-header-button-bg-hover);\n }\n\n &:disabled {\n color: var(--osdk-filter-header-reset-color-disabled);\n cursor: not-allowed;\n }\n\n &:focus-visible {\n outline: var(--osdk-filter-input-focus-outline-width) solid var(--osdk-filter-input-focus-outline-color);\n outline-offset: var(--osdk-filter-input-focus-outline-offset);\n }\n\n @media (prefers-reduced-motion: reduce) {\n transition: none;\n }\n}\n",".osdkEditableInput:focus {\n outline: none;\n}\n","/*\n * Copyright 2025 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\n.button {\n padding: calc(var(--osdk-surface-spacing) * 2)\n calc(var(--osdk-surface-spacing) * 4);\n border-radius: var(--osdk-surface-border-radius);\n font-size: var(--osdk-typography-size-body-medium);\n cursor: pointer;\n\n &:focus {\n outline: none;\n }\n\n &:focus-visible {\n outline: var(--osdk-focus-outline);\n outline-offset: var(--osdk-focus-visible-outline-offset);\n }\n}\n\n.secondaryButton {\n background-color: var(--osdk-button-secondary-bg);\n border: var(--osdk-surface-border);\n color: var(--osdk-button-secondary-color);\n\n &:hover:not(:disabled) {\n background-color: var(--osdk-button-secondary-bg-hover);\n }\n\n &:active:not(:disabled) {\n background-color: var(--osdk-button-secondary-bg-active);\n }\n\n &:disabled {\n opacity: 0.5;\n cursor: not-allowed;\n }\n}\n\n.primaryButton {\n background-color: var(--osdk-button-primary-bg);\n border: none;\n color: var(--osdk-button-primary-color);\n\n &:hover:not(:disabled) {\n background-color: var(--osdk-button-primary-bg-hover);\n }\n\n &:active:not(:disabled) {\n background-color: var(--osdk-button-primary-bg-active);\n }\n\n &:disabled {\n opacity: 0.5;\n cursor: not-allowed;\n }\n}\n","/*\n * Copyright 2025 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\n.osdkLoadingCell {\n height: var(--osdk-table-cell-fontSize);\n border-radius: calc(var(--osdk-surface-border-radius) * 0.5);\n flex: 1;\n}\n\n/* Blueprint skeleton animation keyframes */\n@keyframes skeleton-glow {\n from {\n background: var(--osdk-table-skeleton-color-from);\n border-color: var(--osdk-table-skeleton-color-from);\n }\n\n to {\n background: var(--osdk-table-skeleton-color-to);\n border-color: var(--osdk-table-skeleton-color-to);\n }\n}\n\n.osdkCellSkeleton {\n animation: 1000ms linear infinite alternate skeleton-glow;\n background: var(--osdk-table-skeleton-color-from);\n background-clip: padding-box;\n border-color: var(--osdk-table-skeleton-color-from);\n border-radius: calc(var(--osdk-surface-border-radius) * 0.5);\n border: 1px solid var(--osdk-table-skeleton-border-color);\n box-shadow: none;\n color: transparent;\n cursor: default;\n pointer-events: none;\n user-select: none;\n}\n","/*\n * Copyright 2025 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\n.osdkTableCell {\n display: flex;\n align-items: center;\n height: 100%;\n text-align: left;\n position: relative;\n padding: var(--osdk-table-cell-padding);\n font-size: var(--osdk-table-cell-fontSize);\n color: var(--osdk-table-cell-color);\n background-color: inherit;\n border-right: var(--osdk-table-cell-divider);\n\n &:first-child {\n border-left: var(--osdk-table-border);\n }\n\n &:last-child {\n border-right: var(--osdk-table-border);\n }\n}\n\n.osdkTableCell[data-pinned=\"left\"],\n.osdkTableCell[data-pinned=\"right\"] {\n position: sticky;\n z-index: var(--osdk-surface-z-index-1);\n background-color: inherit;\n}\n\n/* Last left-pinned column - no left-pinned siblings after it */\n.osdkTableCell[data-pinned=\"left\"]:not(:has(~ [data-pinned=\"left\"])) {\n border-right: var(--osdk-table-pinned-column-border);\n}\n\n/* First right-pinned column - no right-pinned siblings before it */\n.osdkTableCell[data-pinned=\"right\"]:not(\n :has(~ [data-pinned=\"right\"]):nth-child(n + 2)\n ) {\n border-left: var(--osdk-table-pinned-column-border);\n}\n\n.osdkTableCell:has([role=\"checkbox\"]) {\n justify-content: center;\n padding: 0;\n}\n\n/* Show focus state for editable cells */\n.osdkTableCell:not(:has([role=\"checkbox\"])):has(input):focus-within {\n border: var(--osdk-emphasis-focus-width) solid\n var(--osdk-emphasis-focus-color);\n border-radius: var(--osdk-surface-border-radius);\n background-color: var(--osdk-table-cell-editable-bg);\n}\n\n.osdkTableCellContent:not(:has([role=\"checkbox\"])) {\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n text-align: left;\n}\n\n.osdkCheckboxContainer {\n display: flex;\n align-items: center;\n justify-content: center;\n width: 100%;\n height: 100%;\n}\n","/*\n * Copyright 2025 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\n.osdkTableRow {\n position: absolute;\n display: flex;\n width: max-content;\n min-width: 100%;\n background-color: var(--osdk-table-row-bg-default);\n border-top: var(--osdk-table-row-divider);\n border-bottom: var(--osdk-table-border-width) solid transparent;\n\n &:last-child {\n border-bottom: var(--osdk-table-border);\n }\n\n /* Zebra rows */\n &:nth-child(even) {\n background-color: var(\n --osdk-table-row-bg-alternate,\n var(--osdk-table-row-bg-default)\n );\n }\n\n &:hover {\n z-index: 1;\n background-color: var(\n --osdk-table-row-bg-hover,\n var(--osdk-surface-background-color-default-hover)\n );\n border-top-color: var(--osdk-table-row-border-color-hover);\n border-bottom-color: var(--osdk-table-row-border-color-hover);\n }\n\n &[data-selected=\"true\"] {\n z-index: 2;\n background-color: var(--osdk-table-row-bg-active);\n border-top-color: var(--osdk-table-row-border-color-active);\n border-bottom-color: var(--osdk-table-row-border-color-active);\n }\n\n &[data-selected=\"true\"] + &[data-selected=\"true\"] {\n border-top-color: transparent;\n }\n\n &[data-selected=\"true\"]:has(+ &[data-selected=\"true\"]) {\n border-bottom-color: transparent;\n }\n}\n","/*\n * Copyright 2025 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\n.osdkTableBody {\n display: grid;\n position: relative;\n width: max-content;\n min-width: 100%;\n}\n","/*\n * Copyright 2025 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\n.backdrop {\n position: fixed;\n inset: 0;\n background-color: var(--osdk-dialog-backdrop-bg);\n z-index: var(--osdk-surface-z-index-1);\n}\n\n.popup {\n position: fixed;\n top: 50%;\n left: 50%;\n transform: translate(-50%, -50%);\n min-width: var(--osdk-dialog-min-width);\n max-width: var(--osdk-dialog-max-width);\n min-height: var(--osdk-dialog-min-height);\n max-height: var(--osdk-dialog-max-height);\n background-color: var(--osdk-dialog-bg);\n border-radius: var(--osdk-surface-border-radius);\n box-shadow: var(--osdk-dialog-shadow);\n z-index: var(--osdk-surface-z-index-2);\n display: flex;\n flex-direction: column;\n\n &:focus {\n outline: none;\n }\n}\n\n.header {\n display: flex;\n justify-content: space-between;\n align-items: center;\n padding: var(--osdk-dialog-header-padding);\n border-bottom: var(--osdk-surface-border);\n}\n\n.title {\n font-size: var(--osdk-dialog-title-font-size);\n font-weight: var(--osdk-dialog-title-font-weight);\n}\n\n.body {\n display: flex;\n padding: var(--osdk-dialog-body-padding);\n overflow-y: auto;\n flex: 1;\n}\n\n.footer {\n display: flex;\n justify-content: flex-end;\n gap: calc(var(--osdk-surface-spacing) * 2);\n padding: var(--osdk-dialog-footer-padding);\n border-top: var(--osdk-surface-border);\n}\n\n.closeButton {\n background: none;\n border: none;\n padding: calc(var(--osdk-surface-spacing) * 0.5);\n cursor: pointer;\n display: flex;\n align-items: center;\n justify-content: center;\n border-radius: var(--osdk-surface-border-radius);\n\n &:hover {\n background-color: var(--osdk-surface-background-color-default-hover);\n }\n\n &:focus {\n outline: none;\n }\n\n &:focus-visible {\n outline: var(--osdk-focus-outline);\n outline-offset: var(--osdk-focus-visible-outline-offset);\n }\n}\n\n.closeIcon {\n width: var(--osdk-iconography-size-small);\n height: var(--osdk-iconography-size-small);\n color: var(--osdk-typography-color-muted);\n}\n","/*\n * Copyright 2025 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\n.draggableListContainer {\n display: flex;\n flex-direction: column;\n gap: var(--osdk-draggable-item-gap);\n overflow-y: auto;\n}\n\n.draggableItem {\n display: flex;\n align-items: center;\n gap: var(--osdk-draggable-item-gap);\n padding: var(--osdk-draggable-item-padding);\n background-color: var(--osdk-draggable-item-bg);\n border: var(--osdk-draggable-item-border);\n border-radius: var(--osdk-draggable-item-border-radius);\n width: 100%;\n touch-action: none;\n user-select: none;\n}\n\n.draggableItem[data-dragging=\"true\"] {\n opacity: 0.5;\n}\n\n.dragHandle {\n display: flex;\n cursor: grab;\n color: var(--osdk-draggable-item-drag-icon-color);\n\n &:hover {\n color: var(--osdk-draggable-item-drag-icon-color-hover);\n }\n\n &:active {\n cursor: grabbing;\n }\n\n &:focus {\n outline: none;\n }\n\n &:focus-visible {\n outline: var(--osdk-focus-outline);\n outline-offset: var(--osdk-focus-visible-outline-offset);\n }\n}\n\n.itemContent {\n flex: 1;\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n}\n\n.removeButton {\n background: none;\n border: none;\n padding: var(--osdk-surface-spacing);\n cursor: pointer;\n display: flex;\n align-items: center;\n justify-content: center;\n color: var(--osdk-draggable-item-drag-icon-color);\n border-radius: var(--osdk-surface-border-radius);\n\n &:hover {\n color: var(--osdk-typography-color-danger-rest);\n }\n\n &:active {\n color: var(--osdk-typography-color-danger-rest);\n background: oklch(\n from var(--osdk-surface-background-color-danger-hover) l c h / 0.2\n );\n }\n\n &:focus {\n outline: none;\n }\n\n &:focus-visible {\n outline: var(--osdk-focus-outline);\n outline-offset: var(--osdk-focus-visible-outline-offset);\n }\n}\n\n.emptyState {\n padding: calc(var(--osdk-surface-spacing) * 5);\n text-align: center;\n color: var(--osdk-typography-color-muted);\n font-style: italic;\n}\n","/*\n * Copyright 2025 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\n.searchBar {\n display: flex;\n align-items: center;\n gap: var(--osdk-surface-spacing);\n padding: var(--osdk-surface-spacing) calc(var(--osdk-surface-spacing) * 1.5);\n border: var(--osdk-surface-border);\n border-radius: var(--osdk-surface-border-radius);\n\n &:focus-within {\n outline: var(--osdk-focus-outline);\n outline-offset: calc(-1 * var(--osdk-focus-visible-outline-offset));\n }\n}\n\n.searchIcon {\n width: var(--osdk-iconography-size-small);\n height: var(--osdk-iconography-size-small);\n color: var(--osdk-typography-color-muted);\n pointer-events: none;\n flex-shrink: 0;\n}\n\n.searchInput {\n border: none;\n width: 100%;\n padding: var(--osdk-surface-spacing) 0;\n font-size: var(--osdk-typography-size-body-medium);\n background: transparent;\n\n &:focus {\n outline: none;\n }\n\n &::placeholder {\n color: var(--osdk-typography-color-muted);\n }\n}\n","/*\n * Copyright 2025 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\n.title {\n display: flex;\n align-items: center;\n gap: var(--osdk-surface-spacing);\n}\n\n/* Override dialog styling */\n.columnConfigDialog {\n --osdk-dialog-min-width: var(--osdk-table-column-config-dialog-min-width);\n --osdk-dialog-min-height: var(--osdk-table-column-config-dialog-min-height);\n --osdk-dialog-body-padding: 0;\n}\n\n.dialogLayout {\n display: flex;\n flex-direction: row;\n gap: 0;\n flex: 1;\n min-height: 0;\n overflow: hidden;\n}\n\n.visibleColumnsContainer {\n flex: 1.5;\n display: flex;\n flex-direction: column;\n overflow: hidden;\n padding: calc(var(--osdk-surface-spacing) * 5);\n background: var(--osdk-table-column-config-visible-columns-bg);\n border-right: 1px solid var(--osdk-surface-border-color-default);\n}\n\n.availableColumnsContainer {\n flex: 1;\n display: flex;\n flex-direction: column;\n overflow: hidden;\n padding: calc(var(--osdk-surface-spacing) * 5)\n calc(var(--osdk-surface-spacing) * 3);\n}\n\n.sectionHeader {\n display: flex;\n align-items: center;\n justify-content: space-between;\n margin-bottom: calc(var(--osdk-surface-spacing) * 5);\n}\n\n.sectionTitle {\n display: flex;\n justify-content: flex-start;\n align-items: flex-start;\n font-size: var(--osdk-typography-size-body-medium);\n font-weight: var(--osdk-typography-weight-bold);\n color: var(--osdk-typography-color-muted);\n flex-shrink: 0;\n gap: var(--osdk-surface-spacing);\n}\n\n.countTag {\n display: inline-flex;\n align-items: center;\n justify-content: center;\n background: var(--osdk-custom-color-gray-3);\n padding: calc(var(--osdk-surface-spacing) / 2)\n calc(var(--osdk-surface-spacing) * 1.5);\n border-radius: var(--osdk-surface-border-radius);\n font-size: var(--osdk-typography-size-body-small);\n font-weight: var(--osdk-typography-weight-default);\n color: var(--osdk-typography-color-default-rest);\n}\n\n.sectionHint {\n font-size: var(--osdk-typography-size-body-small);\n color: var(--osdk-typography-color-muted);\n}\n\n.columnList {\n flex: 1;\n min-height: 0;\n overflow-y: auto;\n overscroll-behavior: contain;\n}\n\n.searchContainer {\n margin-bottom: calc(var(--osdk-surface-spacing) * 2);\n flex-shrink: 0;\n}\n\n.propertiesList {\n flex: 1;\n min-height: 0;\n display: flex;\n flex-direction: column;\n width: 100%;\n}\n\n.categoryHeader {\n display: flex;\n align-items: center;\n justify-content: flex-start;\n width: 100%;\n padding: calc(var(--osdk-surface-spacing) * 2)\n calc(var(--osdk-surface-spacing) * 3);\n background: none;\n border: none;\n margin: 0;\n gap: calc(var(--osdk-surface-spacing) * 3);\n flex-shrink: 0;\n}\n\n.categoryTrigger {\n display: flex;\n align-items: center;\n flex: 1;\n background: none;\n border: none;\n cursor: pointer;\n padding: 0;\n\n &:focus {\n outline: none;\n }\n\n &:focus-visible {\n outline: var(--osdk-focus-outline);\n outline-offset: var(--osdk-focus-visible-outline-offset);\n }\n}\n\n.categoryTitle {\n flex: 1;\n color: var(--osdk-typography-color-muted);\n font-size: var(--osdk-typography-size-body-small);\n font-weight: var(--osdk-typography-weight-bold);\n text-align: left;\n}\n\n.categoryCount {\n color: var(--osdk-typography-color-muted);\n font-size: var(--osdk-typography-size-body-small);\n margin-left: var(--osdk-surface-spacing);\n}\n\n.caretIcon {\n color: var(--osdk-typography-color-muted);\n display: flex;\n justify-content: center;\n align-items: center;\n}\n\n.categoryTrigger[data-panel-open] .caretIcon {\n transform: rotate(180deg);\n}\n\n.checkbox {\n width: var(--osdk-checkbox-icon-size);\n height: var(--osdk-checkbox-icon-size);\n}\n\n.propertyList {\n display: flex;\n flex-direction: column;\n flex: 1;\n min-height: 0;\n overflow-y: auto;\n overscroll-behavior: contain;\n}\n\n.propertyItem {\n display: flex;\n align-items: center;\n flex-direction: row;\n width: 100%;\n gap: calc(var(--osdk-surface-spacing) * 3);\n padding: calc(var(--osdk-surface-spacing) * 2)\n calc(var(--osdk-surface-spacing) * 3);\n background: none;\n border: none;\n cursor: pointer;\n text-align: left;\n border-radius: var(--osdk-surface-border-radius);\n\n &:hover {\n background-color: var(--osdk-surface-background-color-default-hover);\n }\n}\n\n.checkboxIndicator {\n color: var(--osdk-intent-primary-foreground);\n display: flex;\n align-items: center;\n justify-content: center;\n}\n\n.propertyName {\n text-align: left;\n flex: 1;\n font-size: var(--osdk-typography-size-body-medium);\n font-weight: 400;\n color: var(--osdk-typography-color-default-rest);\n padding: 0;\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n background: none;\n border: none;\n\n &:focus {\n outline: none;\n }\n\n &:focus-visible {\n outline: var(--osdk-focus-outline);\n outline-offset: var(--osdk-focus-visible-outline-offset);\n }\n}\n\n.infoIcon {\n color: var(--osdk-typography-color-muted);\n flex-shrink: 0;\n width: calc(var(--osdk-checkbox-icon-size) * 0.75);\n height: calc(var(--osdk-checkbox-icon-size) * 0.75);\n}\n\n.emptyState {\n padding: calc(var(--osdk-surface-spacing) * 5);\n text-align: center;\n color: var(--osdk-typography-color-muted);\n font-style: italic;\n}\n","/*\n * Copyright 2025 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\n.title {\n display: flex;\n align-items: center;\n gap: var(--osdk-surface-spacing);\n}\n\n.sortColumnsList {\n display: flex;\n flex-direction: column;\n gap: var(--osdk-surface-spacing);\n flex: 1;\n justify-content: space-between;\n overflow-x: hidden;\n}\n\n.sortableList {\n flex: 1;\n}\n\n.selectedColumnsContainer {\n margin-bottom: calc(var(--osdk-surface-spacing) * 2);\n}\n\n.sortColumnItem {\n display: flex;\n align-items: center;\n justify-content: space-between;\n min-width: 0;\n width: 100%;\n}\n\n.sortColumnName {\n min-width: 0;\n flex-shrink: 1;\n}\n\n.sortDirectionButton {\n flex-shrink: 0;\n background: none;\n border: none;\n padding: var(--osdk-surface-spacing);\n cursor: pointer;\n display: flex;\n align-items: center;\n justify-content: center;\n border-radius: var(--osdk-surface-border-radius);\n\n &:hover {\n background-color: var(--osdk-button-secondary-bg-hover);\n }\n\n &:focus {\n outline: none;\n }\n\n &:focus-visible {\n outline: var(--osdk-focus-outline);\n outline-offset: calc(-1 * var(--osdk-focus-visible-outline-offset));\n }\n}\n\n.sortIcon {\n color: var(--osdk-typography-color-muted);\n}\n\n.addColumnButton {\n display: flex;\n align-items: center;\n gap: calc(var(--osdk-surface-spacing) * 2);\n width: 100%;\n padding: calc(var(--osdk-surface-spacing) * 2)\n calc(var(--osdk-surface-spacing) * 3);\n background-color: var(--osdk-button-secondary-bg);\n border: var(--osdk-surface-border);\n border-radius: var(--osdk-surface-border-radius);\n cursor: pointer;\n color: var(--osdk-button-secondary-color);\n margin-top: calc(var(--osdk-surface-spacing) * 2);\n\n &:hover:not(:disabled) {\n background-color: var(--osdk-button-secondary-bg-hover);\n }\n\n &:disabled {\n opacity: 0.5;\n cursor: not-allowed;\n }\n\n &:focus {\n outline: none;\n }\n\n &:focus-visible {\n outline: var(--osdk-focus-outline);\n outline-offset: calc(-1 * var(--osdk-focus-visible-outline-offset));\n }\n}\n\n.addIcon {\n width: var(--osdk-iconography-size-small);\n height: var(--osdk-iconography-size-small);\n color: currentColor;\n}\n\n.addColumnText {\n flex: 1;\n text-align: left;\n}\n\n.menuPositioner {\n z-index: var(--osdk-surface-z-index-2);\n}\n\n.dropdownMenu {\n background-color: var(--osdk-surface-background-color-default-rest);\n border: var(--osdk-surface-border);\n border-radius: var(--osdk-surface-border-radius);\n box-shadow: var(--osdk-surface-shadow-2);\n max-height: calc(var(--osdk-dialog-max-height) * 0.5);\n overflow-y: auto;\n width: var(--anchor-width);\n\n &:focus {\n outline: none;\n }\n\n &:focus-visible {\n outline: var(--osdk-focus-outline);\n outline-offset: var(--osdk-focus-visible-outline-offset);\n }\n}\n\n.menuSearchContainer {\n border: none;\n border-bottom: var(--osdk-surface-border);\n border-radius: 0;\n position: sticky;\n top: 0;\n background-color: var(--osdk-surface-background-color-default-rest);\n}\n\n.menuEmptyState {\n padding: calc(var(--osdk-surface-spacing) * 3);\n text-align: center;\n color: var(--osdk-typography-color-muted);\n font-size: var(--osdk-typography-size-body-medium);\n}\n\n.dropdownItem {\n display: block;\n width: 100%;\n text-align: left;\n padding: calc(var(--osdk-surface-spacing) * 2)\n calc(var(--osdk-surface-spacing) * 3);\n background: none;\n border: none;\n cursor: pointer;\n font-size: var(--osdk-typography-size-body-medium);\n color: var(--osdk-typography-color-default-rest);\n\n &:hover {\n background-color: var(--osdk-surface-background-color-default-hover);\n }\n\n &:focus {\n outline: none;\n }\n\n &:focus-visible {\n outline: var(--osdk-focus-outline);\n outline-offset: calc(-1 * var(--osdk-focus-visible-outline-offset));\n }\n}\n\n.truncate {\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n}\n","/*\n * Copyright 2025 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\n.osdkTableHeader {\n display: grid;\n position: sticky;\n top: 0;\n width: max-content;\n min-width: 100%;\n height: var(--osdk-table-header-height);\n z-index: var(--osdk-surface-z-index-1);\n background-color: var(--osdk-table-header-bg);\n}\n\n.osdkTableHeader[data-resizing=\"true\"] {\n cursor: col-resize;\n user-select: none;\n}\n\n.osdkTableHeaderRow {\n display: flex;\n width: max-content;\n min-width: 100%;\n border-bottom: var(--osdk-table-border);\n}\n\n.osdkTableHeaderCell {\n display: flex;\n align-items: center;\n text-align: left;\n position: relative;\n padding: var(--osdk-table-cell-padding);\n font-weight: var(--osdk-table-header-fontWeight);\n font-size: var(--osdk-table-header-fontSize);\n color: var(--osdk-table-header-color);\n border-top: var(--osdk-table-border);\n border-right: var(--osdk-table-header-divider);\n background-color: inherit;\n\n &:first-child {\n border-left: var(--osdk-table-border);\n }\n\n &:last-child {\n border-right: var(--osdk-table-border);\n }\n}\n\n.osdkTableHeaderCell[data-pinned=\"left\"],\n.osdkTableHeaderCell[data-pinned=\"right\"] {\n position: sticky;\n z-index: var(--osdk-surface-z-index-2);\n background-color: var(--osdk-table-header-bg);\n}\n\n/* Last left-pinned column - no left-pinned siblings after it */\n.osdkTableHeaderCell[data-pinned=\"left\"]:not(:has(~ [data-pinned=\"left\"])) {\n border-right: var(--osdk-table-pinned-column-border);\n}\n\n/* First right-pinned column - no right-pinned siblings before it */\n.osdkTableHeaderCell[data-pinned=\"right\"]:not(\n :has(~ [data-pinned=\"right\"]):nth-child(n + 2)\n ) {\n border-left: var(--osdk-table-pinned-column-border);\n}\n\n.osdkTableHeaderCell:has([role=\"checkbox\"]) {\n justify-content: center;\n}\n\n.osdkTableHeaderResizer {\n background: none;\n cursor: col-resize;\n height: 100%;\n position: absolute;\n right: calc(-1 * var(--osdk-table-border-width));\n top: 0;\n touch-action: none;\n width: 3px;\n z-index: var(--osdk-surface-z-index-2);\n\n &:hover {\n background: var(--osdk-table-resizer-color-hover);\n }\n\n &:active {\n background: var(--osdk-table-resizer-color-active);\n }\n}\n\n.osdkLoadingHeaderCell {\n height: var(--osdk-table-header-fontSize);\n flex: 1;\n}\n","/*\n * Copyright 2025 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\n.osdkHeaderContent {\n display: -webkit-box;\n -webkit-box-orient: vertical;\n -webkit-line-clamp: 2;\n line-clamp: 2;\n text-align: left;\n overflow: hidden;\n text-overflow: ellipsis;\n}\n\n.osdkHeaderContent:has([role=\"checkbox\"]) {\n display: flex;\n justify-content: center;\n}\n","/*\n * Copyright 2025 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\n.osdkCenterContainer {\n display: flex;\n align-items: center;\n justify-content: center;\n}\n\n.osdkContentGap {\n display: flex;\n gap: calc(var(--osdk-surface-spacing) * 2);\n}\n\n.osdkHeaderContainer {\n justify-content: space-between;\n flex: 1;\n min-width: 0;\n align-self: stretch;\n}\n\n.osdkHeaderContentLeft {\n min-width: 0;\n flex-shrink: 1;\n}\n\n.osdkHeaderContentRight {\n flex-shrink: 0;\n}\n\n.osdkHeaderText {\n display: -webkit-box;\n -webkit-box-orient: vertical;\n -webkit-line-clamp: 3;\n line-clamp: 3;\n overflow: hidden;\n text-overflow: ellipsis;\n flex-grow: 1;\n}\n\n.osdkHeaderPopoverTrigger {\n padding: var(--osdk-table-header-menu-padding);\n flex-shrink: 0;\n flex-grow: 0;\n background-color: var(--osdk-table-header-menu-bg);\n border: var(--osdk-table-header-menu-border);\n border-radius: var(--osdk-surface-border-radius);\n color: var(--osdk-table-header-menu-color);\n cursor: pointer;\n user-select: none;\n\n &:hover {\n background-color: var(--osdk-table-header-menu-bg-hover);\n }\n\n &[data-popup-open] {\n background-color: var(--osdk-table-header-menu-bg-active);\n color: var(--osdk-table-header-menu-color-active);\n }\n\n &:focus {\n outline: none;\n }\n\n &:focus-visible {\n outline: var(--osdk-focus-outline);\n outline-offset: var(--osdk-focus-visible-outline-offset);\n }\n}\n\n.osdkHeaderIcon {\n width: var(--osdk-iconography-size-small);\n height: var(--osdk-iconography-size-small);\n}\n\n.osdkHeaderPopup {\n box-sizing: border-box;\n padding: var(--osdk-surface-spacing);\n border-radius: var(--osdk-surface-border-radius);\n border: var(--osdk-surface-border);\n background-color: var(--osdk-surface-background-color-default-rest);\n color: var(--osdk-typography-color-default-rest);\n box-shadow: var(--osdk-surface-shadow-2);\n font-size: var(--osdk-typography-size-body-medium);\n\n &:focus {\n outline: none;\n }\n}\n\n.osdkHeaderMenuItem {\n justify-content: flex-start;\n padding: var(--osdk-surface-spacing) calc(var(--osdk-surface-spacing) * 2);\n cursor: pointer;\n\n &:hover {\n background-color: var(--osdk-surface-background-color-default-hover);\n border-radius: var(--osdk-surface-border-radius);\n }\n\n &:focus {\n outline: none;\n }\n\n &:focus-visible {\n outline: var(--osdk-focus-outline);\n outline-offset: var(--osdk-focus-visible-outline-offset);\n }\n}\n\n.osdkHeaderMenuItem .osdkHeaderActiveMenuItem {\n background-color: var(--osdk-intent-primary-rest);\n color: var(--osdk-intent-primary-foreground);\n\n &:hover {\n background-color: var(--osdk-intent-primary-hover);\n }\n\n &:active {\n background-color: var(--osdk-intent-primary-active);\n }\n}\n\n.sortIndex {\n font-size: var(--osdk-typography-size-body-x-small);\n margin-left: var(--osdk-surface-spacing);\n color: var(--osdk-typography-color-muted);\n}\n","/*\n * Copyright 2025 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\n.container {\n display: flex;\n align-items: center;\n justify-content: center;\n}\n\n.message {\n padding: calc(var(--osdk-surface-spacing) * 5);\n color: var(--osdk-typography-color-muted);\n font-style: italic;\n}\n","/*\n * Copyright 2025 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\n.osdkTableWrapper {\n display: flex;\n flex-direction: column;\n height: 100%;\n position: relative;\n}\n\n.osdkTableContainer {\n flex: 1;\n min-height: 0;\n overflow: auto;\n position: relative;\n}\n\n.osdkTableContainer table {\n border-collapse: collapse;\n display: grid;\n table-layout: fixed;\n width: max-content;\n min-width: 100%;\n}\n\n.submitButtonContainer {\n background-color: var(--osdk-surface-background-color-default-rest);\n border-top: var(--osdk-table-border);\n padding: var(--osdk-table-button-container-padding);\n display: flex;\n justify-content: flex-end;\n}\n","/*\n * Copyright 2025 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\n.osdkCellContextMenu {\n position: fixed;\n z-index: var(--osdk-surface-z-index-2);\n}\n"],"mappings":"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","names":[]}
1
+ {"version":3,"sources":["../../../src/filter-list/base/FilterList.module.css","../../../src/filter-list/base/FilterListContent.module.css","../../../src/shared/ErrorBoundary.module.css","../../../src/base-components/checkbox/Checkbox.module.css","../../../src/filter-list/base/inputs/CheckboxListInput.module.css","../../../src/filter-list/base/inputs/shared.module.css","../../../src/filter-list/base/inputs/ContainsTextInput.module.css","../../../src/filter-list/base/inputs/RangeInput.module.css","../../../src/filter-list/base/inputs/LinkedPropertyInput.module.css","../../../src/filter-list/base/inputs/ListogramInput.module.css","../../../src/filter-list/base/inputs/MultiDateInput.module.css","../../../src/base-components/combobox/Combobox.module.css","../../../src/filter-list/base/inputs/MultiSelectInput.module.css","../../../src/filter-list/base/inputs/SingleDateInput.module.css","../../../src/base-components/select/Select.module.css","../../../src/filter-list/base/inputs/SingleSelectInput.module.css","../../../src/filter-list/base/inputs/TextTagsInput.module.css","../../../src/filter-list/base/inputs/TimelineInput.module.css","../../../src/base-components/switch/Switch.module.css","../../../src/filter-list/base/inputs/ToggleInput.module.css","../../../src/filter-list/base/inputs/NullValueWrapper.module.css","../../../src/filter-list/base/FilterListItem.module.css","../../../src/filter-list/base/FilterListHeader.module.css","../../../src/object-table/EditableCell.module.css","../../../src/object-table/LoadingCell.module.css","../../../src/object-table/TableCell.module.css","../../../src/object-table/TableRow.module.css","../../../src/object-table/TableBody.module.css","../../../src/base-components/action-button/ActionButton.module.css","../../../src/base-components/dialog/Dialog.module.css","../../../src/base-components/draggable-list/DraggableList.module.css","../../../src/base-components/search-bar/SearchBar.module.css","../../../src/object-table/ColumnConfigDialog.module.css","../../../src/object-table/MultiColumnSortDialog.module.css","../../../src/object-table/TableHeader.module.css","../../../src/object-table/TableHeaderContent.module.css","../../../src/object-table/TableHeaderWithPopover.module.css","../../../src/object-table/NonIdealState.module.css","../../../src/object-table/Table.module.css","../../../src/object-table/CellContextMenu.module.css","../../../src/object-table/TableEditContainer.module.css"],"sourcesContent":["/*\n * Copyright 2025 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\n.filterList {\n display: flex;\n flex-direction: column;\n background: var(--osdk-filter-list-bg);\n border: var(--osdk-filter-list-border);\n border-radius: var(--osdk-filter-list-border-radius);\n padding: var(--osdk-filter-list-padding);\n gap: var(--osdk-filter-list-gap);\n}\n\n.addButtonContainer {\n display: flex;\n justify-content: center;\n position: sticky;\n bottom: 0;\n padding-top: var(--osdk-filter-list-addButton-padding-top);\n background: var(--osdk-filter-list-addButton-container-bg, var(--osdk-filter-list-bg));\n}\n\n.addButtonContainer > * {\n flex: 1;\n}\n\n.addButton {\n font-family: var(--osdk-filter-header-font-family);\n font-size: var(--osdk-filter-header-reset-font-size);\n color: var(--osdk-filter-header-reset-color);\n background: var(--osdk-filter-header-button-bg);\n border: none;\n cursor: pointer;\n padding: var(--osdk-filter-header-reset-padding);\n border-radius: var(--osdk-filter-header-button-border-radius);\n transition: background-color var(--osdk-filter-header-button-transition);\n\n &:hover {\n background: var(--osdk-filter-header-button-bg-hover);\n }\n\n &:active {\n background: var(--osdk-filter-header-button-bg-active);\n }\n\n &:focus-visible {\n outline: var(--osdk-filter-input-focus-outline-width) solid var(--osdk-filter-input-focus-outline-color);\n outline-offset: var(--osdk-filter-input-focus-outline-offset);\n }\n\n @media (prefers-reduced-motion: reduce) {\n transition: none;\n }\n}\n","/*\n * Copyright 2025 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\n.content {\n display: flex;\n flex-direction: column;\n gap: var(--osdk-filter-list-content-gap);\n}\n\n.emptyMessage {\n margin: 0;\n color: var(--osdk-filter-list-empty-text-color);\n font-size: var(--osdk-filter-list-empty-font-size);\n}\n","/*\n * Copyright 2025 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\n.errorContainer {\n display: flex;\n flex-direction: column;\n align-items: flex-start;\n gap: var(--osdk-filter-error-gap, 8px);\n padding: var(--osdk-filter-error-padding, 8px);\n border-radius: var(--osdk-filter-error-border-radius, 4px);\n background-color: var(--osdk-filter-error-bg, color-mix(in srgb, var(--osdk-intent-danger-rest, #c23030) 5%, transparent));\n}\n\n.errorMessage {\n margin: 0;\n font-size: var(--osdk-filter-error-font-size, 13px);\n color: var(--osdk-filter-error-text-color, var(--osdk-intent-danger-rest, #c23030));\n}\n\n.retryButton {\n padding: var(--osdk-filter-error-button-padding, 4px 8px);\n border: 1px solid var(--osdk-filter-error-button-border-color, currentColor);\n border-radius: var(--osdk-filter-error-button-border-radius, 3px);\n background: transparent;\n font-size: var(--osdk-filter-error-button-font-size, 12px);\n color: var(--osdk-filter-error-button-color, inherit);\n cursor: pointer;\n transition: background-color 150ms ease;\n\n &:hover {\n background-color: var(--osdk-filter-error-button-hover-bg, color-mix(in srgb, currentColor 5%, transparent));\n }\n\n &:focus-visible {\n outline: var(--osdk-filter-input-focus-outline-width, 2px) solid var(--osdk-filter-input-focus-outline-color, currentColor);\n outline-offset: var(--osdk-filter-input-focus-outline-offset, 2px);\n }\n\n @media (prefers-reduced-motion: reduce) {\n transition: none;\n }\n}\n","/*\n * Copyright 2025 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\n.osdkCheckboxRoot {\n display: flex;\n align-items: center;\n justify-content: center;\n min-width: calc(\n var(--osdk-checkbox-icon-size) + var(--osdk-checkbox-padding) * 2\n );\n min-height: calc(\n var(--osdk-checkbox-icon-size) + var(--osdk-checkbox-padding) * 2\n );\n padding: var(--osdk-checkbox-padding);\n box-sizing: border-box;\n cursor: pointer;\n border-radius: var(--osdk-surface-border-radius);\n border: var(--osdk-checkbox-border);\n\n &[data-unchecked] {\n background-color: var(--osdk-checkbox-bg);\n\n &:hover {\n background-color: var(--osdk-checkbox-bg-hover);\n }\n\n &:active {\n background-color: var(--osdk-checkbox-bg-active);\n }\n }\n\n &[data-checked],\n &[data-indeterminate] {\n background-color: var(--osdk-checkbox-bg-checked);\n\n &:hover {\n background-color: var(--osdk-checkbox-bg-checked-hover);\n }\n\n &:active {\n background-color: var(--osdk-checkbox-bg-checked-active);\n }\n }\n\n &:focus {\n outline: none;\n }\n\n &:focus-visible {\n outline: var(--osdk-focus-outline);\n outline-offset: calc(-1 * var(--osdk-focus-visible-outline-offset));\n }\n}\n\n.osdkCheckboxIndicator {\n display: flex;\n justify-content: center;\n align-items: center;\n color: var(--osdk-checkbox-checked-foreground);\n width: var(--osdk-checkbox-icon-size);\n height: var(--osdk-checkbox-icon-size);\n\n &[data-unchecked] {\n display: none;\n }\n}\n","/*\n * Copyright 2025 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\n.checkboxList {\n display: flex;\n flex-direction: column;\n gap: var(--osdk-filter-checkbox-list-gap);\n}\n\n.checkboxRow {\n padding: var(--osdk-filter-checkbox-row-padding);\n}\n\n.checkboxLabel {\n display: flex;\n align-items: center;\n gap: var(--osdk-filter-checkbox-label-gap);\n cursor: pointer;\n}\n\n.valueText {\n font-family: var(--osdk-filter-checkbox-value-font-family);\n font-size: var(--osdk-filter-checkbox-value-font-size);\n line-height: var(--osdk-filter-checkbox-value-line-height);\n color: var(--osdk-filter-checkbox-value-color);\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n}\n","/*\n * Copyright 2025 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\n/* Shared message styles for filter inputs */\n.loadingMessage,\n.errorMessage,\n.emptyMessage {\n font-size: var(--osdk-typography-size-body-small);\n padding: var(--osdk-surface-spacing);\n}\n\n.loadingMessage,\n.emptyMessage {\n color: var(--osdk-typography-color-muted);\n}\n\n.errorMessage {\n color: var(--osdk-intent-danger-rest);\n}\n\n/* Shared tag styles */\n.tagContainer {\n display: flex;\n flex-wrap: wrap;\n gap: var(--osdk-filter-tag-container-gap);\n}\n\n.tag {\n display: inline-flex;\n align-items: center;\n gap: var(--osdk-filter-tag-gap);\n padding: var(--osdk-filter-tag-padding);\n border-radius: var(--osdk-filter-tag-border-radius);\n background-color: var(--osdk-filter-tag-bg);\n font-family: var(--osdk-filter-tag-font-family);\n font-size: var(--osdk-filter-tag-font-size);\n line-height: var(--osdk-filter-tag-line-height);\n color: var(--osdk-filter-tag-color);\n}\n\n.tagRemove {\n display: flex;\n align-items: center;\n justify-content: center;\n padding: 0;\n border: none;\n background: transparent;\n cursor: pointer;\n color: var(--osdk-filter-tag-remove-color);\n font-size: var(--osdk-filter-tag-remove-font-size);\n line-height: 1;\n transition: color var(--osdk-filter-tag-remove-transition);\n\n &:hover {\n color: var(--osdk-filter-tag-remove-color-hover);\n }\n\n &:focus-visible {\n outline: var(--osdk-filter-input-focus-outline-width) solid var(--osdk-filter-input-focus-outline-color);\n outline-offset: var(--osdk-filter-input-focus-outline-offset);\n }\n\n @media (prefers-reduced-motion: reduce) {\n transition: none;\n }\n}\n","/*\n * Copyright 2025 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\n.textInput {\n position: relative;\n}\n\n.inputGroup {\n display: flex;\n align-items: center;\n background: var(--osdk-filter-input-bg);\n border: var(--osdk-filter-input-border);\n border-radius: var(--osdk-filter-input-border-radius);\n padding: var(--osdk-filter-input-padding);\n gap: var(--osdk-filter-input-gap);\n transition: border-color var(--osdk-filter-input-transition);\n\n &:focus-within {\n border-color: var(--osdk-filter-input-focus-border);\n outline: var(--osdk-filter-input-focus-outline-width) solid var(--osdk-filter-input-focus-outline-color);\n outline-offset: var(--osdk-filter-input-focus-outline-offset);\n }\n\n @media (prefers-reduced-motion: reduce) {\n transition: none;\n }\n}\n\n.searchIcon {\n color: var(--osdk-filter-input-icon-color);\n flex-shrink: 0;\n display: flex;\n align-items: center;\n}\n\n.input {\n flex: 1;\n border: none;\n background: transparent;\n font-family: var(--osdk-filter-input-font-family);\n font-size: var(--osdk-filter-input-font-size);\n color: var(--osdk-filter-input-color);\n outline: none;\n\n &::placeholder {\n color: var(--osdk-filter-input-placeholder-color);\n }\n}\n\n.clearButton {\n display: flex;\n align-items: center;\n justify-content: center;\n padding: var(--osdk-filter-input-clear-padding);\n border: none;\n background: var(--osdk-filter-input-clear-bg);\n color: var(--osdk-filter-input-icon-color);\n cursor: pointer;\n border-radius: var(--osdk-filter-input-clear-border-radius);\n transition: background-color var(--osdk-filter-input-transition);\n\n &:hover {\n background: var(--osdk-filter-input-clear-bg-hover);\n }\n\n &:active {\n background: var(--osdk-filter-input-clear-bg-active);\n }\n\n &:focus-visible {\n outline: var(--osdk-filter-input-focus-outline-width) solid var(--osdk-filter-input-focus-outline-color);\n outline-offset: var(--osdk-filter-input-focus-outline-offset);\n }\n\n @media (prefers-reduced-motion: reduce) {\n transition: none;\n }\n}\n","/*\n * Copyright 2025 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\n.rangeInput {\n display: flex;\n flex-direction: column;\n gap: var(--osdk-filter-range-gap, calc(var(--osdk-surface-spacing) * 2));\n}\n\n.histogramContainer {\n display: flex;\n align-items: flex-end;\n height: var(--osdk-filter-range-histogram-height, 60px);\n gap: var(--osdk-filter-range-histogram-bar-gap, 2px);\n}\n\n.histogramBar {\n flex: 1;\n background: var(--osdk-filter-range-histogram-bar-color, var(--osdk-custom-color-gray-3));\n min-width: var(--osdk-filter-range-histogram-bar-min-width, 4px);\n transition: background-color var(--osdk-emphasis-transition-duration) var(--osdk-emphasis-ease-default);\n}\n\n.histogramBar[data-in-range=\"true\"] {\n background: var(--osdk-filter-range-histogram-bar-active-color, var(--osdk-intent-primary-rest));\n}\n\n.rangeInputs {\n display: flex;\n align-items: flex-end;\n gap: var(--osdk-filter-range-inputs-gap, calc(var(--osdk-surface-spacing) * 2));\n}\n\n.inputWrapper {\n flex: 1;\n display: flex;\n flex-direction: column;\n gap: var(--osdk-filter-range-input-wrapper-gap, calc(var(--osdk-surface-spacing) * 1));\n}\n\n.inputLabel {\n font-size: var(--osdk-typography-size-body-small);\n color: var(--osdk-typography-color-muted);\n}\n\n.input {\n font-size: var(--osdk-typography-size-body-small);\n padding: var(--osdk-filter-input-padding);\n border: var(--osdk-filter-input-border);\n border-radius: var(--osdk-filter-input-border-radius);\n background: var(--osdk-filter-input-bg);\n color: var(--osdk-filter-input-color);\n\n &:focus {\n border-color: var(--osdk-filter-input-focus-border);\n outline: var(--osdk-filter-input-focus-outline-width) solid var(--osdk-filter-input-focus-outline-color);\n outline-offset: var(--osdk-filter-input-focus-outline-offset);\n }\n\n &::placeholder {\n color: var(--osdk-filter-input-placeholder-color);\n }\n}\n\n.separator {\n padding-bottom: calc(var(--osdk-surface-spacing) * 1.5);\n color: var(--osdk-typography-color-muted);\n}\n","/*\n * Copyright 2025 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\n.linkedProperty {\n display: flex;\n flex-direction: column;\n}\n","/*\n * Copyright 2025 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\n.listogram {\n display: flex;\n flex-direction: column;\n}\n\n.container {\n display: flex;\n flex-direction: column;\n gap: var(--osdk-filter-listogram-gap, calc(var(--osdk-surface-spacing) * 1));\n}\n\n.row {\n display: flex;\n align-items: center;\n gap: var(--osdk-filter-listogram-row-gap, calc(var(--osdk-surface-spacing) * 2));\n padding: var(--osdk-filter-listogram-row-padding, calc(var(--osdk-surface-spacing) * 1));\n border: none;\n background: transparent;\n cursor: pointer;\n border-radius: var(--osdk-surface-border-radius);\n text-align: left;\n width: 100%;\n transition: background-color var(--osdk-emphasis-transition-duration) var(--osdk-emphasis-ease-default);\n\n &:hover {\n background: var(--osdk-surface-background-color-default-hover);\n }\n\n &:focus-visible {\n outline: var(--osdk-emphasis-focus-width) solid var(--osdk-emphasis-focus-color);\n outline-offset: var(--osdk-emphasis-focus-offset);\n }\n}\n\n.row[aria-pressed=\"true\"] {\n background: var(--osdk-surface-background-color-default-active);\n}\n\n.label {\n flex: 1;\n font-size: var(--osdk-typography-size-body-medium);\n color: var(--osdk-typography-color-default-rest);\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n}\n\n.bar {\n flex: 2;\n height: var(--osdk-filter-listogram-bar-height, 8px);\n background: var(--osdk-custom-color-gray-2);\n border-radius: var(--osdk-surface-border-radius);\n overflow: hidden;\n}\n\n.barFill {\n height: 100%;\n background: var(--osdk-filter-listogram-bar-color);\n transition: width var(--osdk-emphasis-transition-duration) var(--osdk-emphasis-ease-default);\n}\n\n.row[aria-pressed=\"true\"] .barFill {\n background: var(--osdk-filter-listogram-selected-color);\n}\n\n.count {\n font-size: var(--osdk-typography-size-body-small);\n font-variant-numeric: tabular-nums;\n color: var(--osdk-typography-color-muted);\n min-width: 3ch;\n text-align: right;\n}\n","/*\n * Copyright 2025 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\n.multiDate {\n display: flex;\n flex-direction: column;\n gap: var(--osdk-filter-multiselect-gap);\n}\n\n.clearAll {\n font-size: var(--osdk-typography-size-body-small);\n color: var(--osdk-intent-primary-rest);\n background: transparent;\n border: none;\n cursor: pointer;\n padding: calc(var(--osdk-surface-spacing) * 0.5);\n\n &:hover {\n text-decoration: underline;\n }\n}\n\n.calendarContainer {\n display: flex;\n}\n\n.input {\n flex: 1;\n font-size: var(--osdk-typography-size-body-medium);\n padding: var(--osdk-filter-input-padding);\n border: var(--osdk-filter-input-border);\n border-radius: var(--osdk-filter-input-border-radius);\n background: var(--osdk-filter-input-bg);\n color: var(--osdk-filter-input-color);\n\n &:focus {\n border-color: var(--osdk-filter-input-focus-border);\n outline: var(--osdk-filter-input-focus-outline-width) solid var(--osdk-filter-input-focus-outline-color);\n outline-offset: var(--osdk-filter-input-focus-outline-offset);\n }\n}\n","/*\n * Copyright 2025 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\n.osdkComboboxInputWrapper {\n display: flex;\n align-items: center;\n gap: var(--osdk-combobox-spacing, var(--osdk-surface-spacing));\n width: 100%;\n min-height: var(--osdk-combobox-min-height, 30px);\n padding: calc(var(--osdk-combobox-spacing, var(--osdk-surface-spacing)) * 1.5)\n calc(var(--osdk-combobox-spacing, var(--osdk-surface-spacing)) * 2);\n box-sizing: border-box;\n border-radius: var(--osdk-combobox-border-radius, var(--osdk-surface-border-radius));\n border: var(--osdk-combobox-border-width, var(--osdk-surface-border-width)) solid\n var(--osdk-combobox-border-color, var(--osdk-surface-border-color-default));\n background-color: var(--osdk-combobox-input-bg, var(--osdk-surface-background-color-default-rest));\n transition: border-color var(--osdk-combobox-transition-duration, var(--osdk-emphasis-transition-duration))\n var(--osdk-combobox-transition-ease, var(--osdk-emphasis-ease-default));\n\n &:focus-within {\n border-color: var(--osdk-combobox-focus-border-color, var(--osdk-intent-primary-rest));\n outline: var(--osdk-combobox-focus-width, var(--osdk-emphasis-focus-width)) solid\n var(--osdk-combobox-focus-color, var(--osdk-emphasis-focus-color));\n outline-offset: var(--osdk-combobox-focus-offset, var(--osdk-emphasis-focus-offset));\n }\n}\n\n.osdkComboboxSearchIcon {\n flex-shrink: 0;\n color: var(--osdk-combobox-icon-color, var(--osdk-iconography-color-muted));\n}\n\n.osdkComboboxInput {\n flex: 1;\n min-width: 0;\n border: none;\n background: transparent;\n font-family: var(--osdk-combobox-font-family, var(--osdk-typography-family-default));\n font-size: var(--osdk-combobox-font-size, var(--osdk-typography-size-body-medium));\n line-height: var(--osdk-combobox-line-height, var(--osdk-typography-line-height-default));\n color: var(--osdk-combobox-input-color, var(--osdk-typography-color-default-rest));\n outline: none;\n\n &::placeholder {\n color: var(--osdk-combobox-placeholder-color, var(--osdk-typography-color-muted));\n }\n}\n\n.osdkComboboxPositioner {\n z-index: var(--osdk-combobox-z-index, var(--osdk-surface-z-index-3));\n}\n\n.osdkComboboxPopup {\n display: flex;\n flex-direction: column;\n min-width: var(--anchor-width);\n max-height: var(--available-height);\n overflow-y: auto;\n padding: calc(var(--osdk-combobox-spacing, var(--osdk-surface-spacing)) * 1.5);\n box-sizing: border-box;\n border-radius: var(--osdk-combobox-border-radius, var(--osdk-surface-border-radius));\n border: var(--osdk-combobox-border-width, var(--osdk-surface-border-width)) solid\n var(--osdk-combobox-border-color, var(--osdk-surface-border-color-default));\n background-color: var(--osdk-combobox-popup-bg, var(--osdk-surface-background-color-default-rest));\n box-shadow: var(--osdk-combobox-popup-shadow, var(--osdk-surface-shadow-2));\n}\n\n.osdkComboboxItem {\n display: flex;\n align-items: center;\n padding: calc(var(--osdk-combobox-spacing, var(--osdk-surface-spacing)) * 1.5)\n calc(var(--osdk-combobox-spacing, var(--osdk-surface-spacing)) * 2);\n border-radius: var(--osdk-combobox-border-radius, var(--osdk-surface-border-radius));\n cursor: pointer;\n font-family: var(--osdk-combobox-font-family, var(--osdk-typography-family-default));\n font-size: var(--osdk-combobox-font-size, var(--osdk-typography-size-body-medium));\n line-height: var(--osdk-combobox-line-height, var(--osdk-typography-line-height-default));\n color: var(--osdk-combobox-item-color, var(--osdk-typography-color-default-rest));\n transition: background-color var(--osdk-combobox-transition-duration, var(--osdk-emphasis-transition-duration))\n var(--osdk-combobox-transition-ease, var(--osdk-emphasis-ease-default));\n\n &[data-highlighted] {\n background-color: var(--osdk-combobox-item-bg-highlighted, var(--osdk-surface-background-color-default-hover));\n outline: none;\n }\n\n &[data-selected] {\n background-color: var(--osdk-combobox-item-bg-selected, var(--osdk-surface-layer-primary));\n color: var(--osdk-combobox-item-color-selected, var(--osdk-intent-primary-rest));\n }\n\n &[data-disabled] {\n cursor: not-allowed;\n opacity: var(--osdk-disabled-opacity, 0.5);\n }\n}\n\n.osdkComboboxChips {\n display: flex;\n flex-wrap: wrap;\n gap: calc(var(--osdk-combobox-spacing, var(--osdk-surface-spacing)) * 1.5);\n margin-bottom: calc(var(--osdk-combobox-spacing, var(--osdk-surface-spacing)) * 2);\n}\n\n.osdkComboboxChip {\n display: inline-flex;\n align-items: center;\n gap: var(--osdk-combobox-spacing, var(--osdk-surface-spacing));\n padding: calc(var(--osdk-combobox-spacing, var(--osdk-surface-spacing)) * 0.5)\n calc(var(--osdk-combobox-spacing, var(--osdk-surface-spacing)) * 1.5);\n border-radius: var(--osdk-combobox-border-radius, var(--osdk-surface-border-radius));\n background-color: var(--osdk-combobox-chip-bg, var(--osdk-surface-background-color-default-hover));\n font-family: var(--osdk-combobox-font-family, var(--osdk-typography-family-default));\n font-size: var(--osdk-combobox-chip-font-size, var(--osdk-typography-size-body-small));\n line-height: var(--osdk-combobox-line-height, var(--osdk-typography-line-height-default));\n color: var(--osdk-combobox-chip-color, var(--osdk-typography-color-default-rest));\n}\n\n.osdkComboboxChipRemove {\n display: flex;\n align-items: center;\n justify-content: center;\n padding: 0;\n border: none;\n background: transparent;\n cursor: pointer;\n color: var(--osdk-combobox-chip-remove-color, var(--osdk-iconography-color-muted));\n transition: color var(--osdk-combobox-transition-duration, var(--osdk-emphasis-transition-duration))\n var(--osdk-combobox-transition-ease, var(--osdk-emphasis-ease-default));\n\n &:hover {\n color: var(--osdk-combobox-chip-remove-color-hover, var(--osdk-typography-color-default-rest));\n }\n}\n\n.osdkComboboxClear {\n display: flex;\n align-items: center;\n justify-content: center;\n padding: calc(var(--osdk-combobox-spacing, var(--osdk-surface-spacing)) * 0.5);\n border: none;\n background: transparent;\n cursor: pointer;\n color: var(--osdk-combobox-clear-color, var(--osdk-iconography-color-muted));\n border-radius: var(--osdk-combobox-border-radius, var(--osdk-surface-border-radius));\n transition: color var(--osdk-combobox-transition-duration, var(--osdk-emphasis-transition-duration))\n var(--osdk-combobox-transition-ease, var(--osdk-emphasis-ease-default)),\n background-color var(--osdk-combobox-transition-duration, var(--osdk-emphasis-transition-duration))\n var(--osdk-combobox-transition-ease, var(--osdk-emphasis-ease-default));\n\n &:hover {\n color: var(--osdk-combobox-clear-color-hover, var(--osdk-typography-color-default-rest));\n background-color: var(--osdk-combobox-clear-bg-hover, var(--osdk-surface-background-color-default-hover));\n }\n}\n\n.osdkComboboxEmpty {\n padding: calc(var(--osdk-combobox-spacing, var(--osdk-surface-spacing)) * 3)\n calc(var(--osdk-combobox-spacing, var(--osdk-surface-spacing)) * 2);\n text-align: center;\n color: var(--osdk-combobox-empty-color, var(--osdk-typography-color-muted));\n font-family: var(--osdk-combobox-font-family, var(--osdk-typography-family-default));\n font-size: var(--osdk-combobox-font-size, var(--osdk-typography-size-body-medium));\n}\n","/*\n * Copyright 2025 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\n.multiSelect {\n display: flex;\n flex-direction: column;\n gap: var(--osdk-filter-multiselect-gap);\n}\n\n.inputRow {\n display: flex;\n align-items: center;\n gap: var(--osdk-filter-multiselect-inputRow-gap);\n}\n\n.clearButton {\n flex-shrink: 0;\n}\n\n.count {\n font-variant-numeric: tabular-nums;\n}\n","/*\n * Copyright 2025 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\n.singleDate {\n display: flex;\n flex-direction: column;\n}\n\n.dateContainer {\n display: flex;\n align-items: center;\n gap: var(--osdk-filter-select-container-gap);\n}\n\n.input {\n flex: 1;\n font-size: var(--osdk-typography-size-body-medium);\n padding: var(--osdk-filter-input-padding);\n border: var(--osdk-filter-input-border);\n border-radius: var(--osdk-filter-input-border-radius);\n background: var(--osdk-filter-input-bg);\n color: var(--osdk-filter-input-color);\n\n &:focus {\n border-color: var(--osdk-filter-input-focus-border);\n outline: var(--osdk-filter-input-focus-outline-width) solid var(--osdk-filter-input-focus-outline-color);\n outline-offset: var(--osdk-filter-input-focus-outline-offset);\n }\n}\n\n.clearButton {\n display: flex;\n align-items: center;\n justify-content: center;\n padding: var(--osdk-filter-input-clear-padding);\n border: none;\n background: transparent;\n cursor: pointer;\n color: var(--osdk-filter-input-icon-color);\n border-radius: var(--osdk-filter-input-clear-border-radius);\n transition: background-color var(--osdk-filter-input-transition);\n\n &:hover {\n background: var(--osdk-filter-input-clear-bg-hover);\n }\n\n &:active {\n background: var(--osdk-filter-input-clear-bg-active);\n }\n}\n","/*\n * Copyright 2025 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\n.osdkSelectTrigger {\n display: inline-flex;\n align-items: center;\n justify-content: space-between;\n gap: var(--osdk-select-spacing, var(--osdk-surface-spacing));\n width: 100%;\n min-height: var(--osdk-select-min-height, 30px);\n padding: calc(var(--osdk-select-spacing, var(--osdk-surface-spacing)) * 1.5)\n calc(var(--osdk-select-spacing, var(--osdk-surface-spacing)) * 2.5);\n box-sizing: border-box;\n cursor: pointer;\n border-radius: var(--osdk-select-border-radius, var(--osdk-surface-border-radius));\n border: var(--osdk-select-border-width, var(--osdk-surface-border-width)) solid\n var(--osdk-select-border-color, var(--osdk-surface-border-color-default));\n background-color: var(--osdk-select-trigger-bg, var(--osdk-surface-background-color-default-rest));\n color: var(--osdk-select-trigger-color, var(--osdk-typography-color-default-rest));\n font-family: var(--osdk-select-font-family, var(--osdk-typography-family-default));\n font-size: var(--osdk-select-font-size, var(--osdk-typography-size-body-medium));\n line-height: var(--osdk-select-line-height, var(--osdk-typography-line-height-default));\n transition: background-color var(--osdk-select-transition-duration, var(--osdk-emphasis-transition-duration))\n var(--osdk-select-transition-ease, var(--osdk-emphasis-ease-default)),\n border-color var(--osdk-select-transition-duration, var(--osdk-emphasis-transition-duration))\n var(--osdk-select-transition-ease, var(--osdk-emphasis-ease-default));\n\n &:hover {\n background-color: var(--osdk-select-trigger-bg-hover, var(--osdk-surface-background-color-default-hover));\n }\n\n &:active {\n background-color: var(--osdk-select-trigger-bg-active, var(--osdk-surface-background-color-default-active));\n }\n\n &:focus-visible {\n outline: var(--osdk-select-focus-width, var(--osdk-emphasis-focus-width)) solid\n var(--osdk-select-focus-color, var(--osdk-emphasis-focus-color));\n outline-offset: var(--osdk-select-focus-offset, var(--osdk-emphasis-focus-offset));\n }\n\n &[data-disabled] {\n cursor: not-allowed;\n opacity: var(--osdk-disabled-opacity, 0.5);\n }\n\n &[data-popup-open] {\n border-color: var(--osdk-select-border-color-active, var(--osdk-intent-primary-rest));\n }\n}\n\n.osdkSelectValue {\n flex: 1;\n text-align: left;\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n\n &[data-placeholder] {\n color: var(--osdk-select-placeholder-color, var(--osdk-typography-color-muted));\n }\n}\n\n.osdkSelectIcon {\n display: flex;\n align-items: center;\n justify-content: center;\n color: var(--osdk-select-icon-color, var(--osdk-iconography-color-muted));\n flex-shrink: 0;\n transition: transform var(--osdk-select-transition-duration, var(--osdk-emphasis-transition-duration))\n var(--osdk-select-transition-ease, var(--osdk-emphasis-ease-default));\n\n [data-popup-open] > & {\n transform: rotate(180deg);\n }\n}\n\n.osdkSelectPositioner {\n z-index: var(--osdk-select-z-index, var(--osdk-surface-z-index-3));\n}\n\n.osdkSelectPopup {\n display: flex;\n flex-direction: column;\n min-width: var(--anchor-width);\n max-height: var(--available-height);\n overflow-y: auto;\n padding: calc(var(--osdk-select-spacing, var(--osdk-surface-spacing)) * 1.5);\n box-sizing: border-box;\n border-radius: var(--osdk-select-border-radius, var(--osdk-surface-border-radius));\n border: var(--osdk-select-border-width, var(--osdk-surface-border-width)) solid\n var(--osdk-select-border-color, var(--osdk-surface-border-color-default));\n background-color: var(--osdk-select-popup-bg, var(--osdk-surface-background-color-default-rest));\n box-shadow: var(--osdk-select-popup-shadow, var(--osdk-surface-shadow-2));\n}\n\n.osdkSelectItem {\n display: flex;\n align-items: center;\n padding: calc(var(--osdk-select-spacing, var(--osdk-surface-spacing)) * 1.5)\n calc(var(--osdk-select-spacing, var(--osdk-surface-spacing)) * 2);\n border-radius: var(--osdk-select-border-radius, var(--osdk-surface-border-radius));\n cursor: pointer;\n font-family: var(--osdk-select-font-family, var(--osdk-typography-family-default));\n font-size: var(--osdk-select-font-size, var(--osdk-typography-size-body-medium));\n line-height: var(--osdk-select-line-height, var(--osdk-typography-line-height-default));\n color: var(--osdk-select-item-color, var(--osdk-typography-color-default-rest));\n transition: background-color var(--osdk-select-transition-duration, var(--osdk-emphasis-transition-duration))\n var(--osdk-select-transition-ease, var(--osdk-emphasis-ease-default));\n\n &[data-highlighted] {\n background-color: var(--osdk-select-item-bg-highlighted, var(--osdk-surface-background-color-default-hover));\n outline: none;\n }\n\n &[data-selected] {\n background-color: var(--osdk-select-item-bg-selected, var(--osdk-surface-layer-primary));\n color: var(--osdk-select-item-color-selected, var(--osdk-intent-primary-rest));\n }\n\n &[data-disabled] {\n cursor: not-allowed;\n opacity: var(--osdk-disabled-opacity, 0.5);\n }\n}\n","/*\n * Copyright 2025 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\n.singleSelect {\n display: flex;\n flex-direction: column;\n}\n\n.selectContainer {\n display: flex;\n align-items: center;\n gap: var(--osdk-filter-select-container-gap);\n position: relative;\n}\n\n.clearButton {\n display: flex;\n align-items: center;\n justify-content: center;\n padding: var(--osdk-filter-select-clear-padding);\n border: none;\n background: transparent;\n cursor: pointer;\n color: var(--osdk-filter-select-clear-color);\n border-radius: var(--osdk-filter-select-clear-border-radius);\n transition: color var(--osdk-filter-select-clear-transition),\n background-color var(--osdk-filter-select-clear-transition);\n\n &:hover {\n color: var(--osdk-filter-select-clear-color-hover);\n background-color: var(--osdk-filter-select-clear-bg-hover);\n }\n\n &:focus-visible {\n outline: var(--osdk-filter-input-focus-outline-width) solid var(--osdk-filter-input-focus-outline-color);\n outline-offset: var(--osdk-filter-input-focus-outline-offset);\n }\n\n @media (prefers-reduced-motion: reduce) {\n transition: none;\n }\n}\n","/*\n * Copyright 2025 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\n.textTags {\n display: flex;\n flex-direction: column;\n gap: var(--osdk-filter-texttags-gap);\n}\n\n.input {\n flex: 1;\n}\n","/*\n * Copyright 2025 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\n.timeline {\n display: flex;\n flex-direction: column;\n gap: var(--osdk-filter-range-gap, calc(var(--osdk-surface-spacing) * 2));\n}\n\n.labels {\n display: flex;\n align-items: center;\n gap: var(--osdk-surface-spacing);\n font-size: var(--osdk-typography-size-body-small);\n color: var(--osdk-typography-color-muted);\n}\n\n.clearButton {\n display: flex;\n align-items: center;\n justify-content: center;\n padding: calc(var(--osdk-surface-spacing) * 0.5);\n border: none;\n background: transparent;\n cursor: pointer;\n color: var(--osdk-iconography-color-muted);\n border-radius: var(--osdk-surface-border-radius);\n margin-left: auto;\n\n &:hover {\n background: var(--osdk-surface-background-color-default-hover);\n color: var(--osdk-typography-color-default-rest);\n }\n}\n\n.brush {\n display: flex;\n align-items: center;\n gap: var(--osdk-surface-spacing);\n}\n\n.brush span {\n color: var(--osdk-typography-color-muted);\n}\n\n.input {\n flex: 1;\n font-size: var(--osdk-typography-size-body-medium);\n padding: var(--osdk-filter-input-padding);\n border: var(--osdk-filter-input-border);\n border-radius: var(--osdk-filter-input-border-radius);\n background: var(--osdk-filter-input-bg);\n color: var(--osdk-filter-input-color);\n\n &:focus {\n border-color: var(--osdk-filter-input-focus-border);\n outline: var(--osdk-filter-input-focus-outline-width) solid var(--osdk-filter-input-focus-outline-color);\n outline-offset: var(--osdk-filter-input-focus-outline-offset);\n }\n}\n","/*\n * Copyright 2025 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\n.osdkSwitchRoot {\n --osdk-switch-track-width: var(--osdk-switch-track-width-override, 28px);\n --osdk-switch-track-height: var(--osdk-switch-track-height-override, 16px);\n --osdk-switch-thumb-size: var(--osdk-switch-thumb-size-override, 12px);\n --osdk-switch-thumb-offset: var(--osdk-switch-thumb-offset-override, 2px);\n\n display: inline-flex;\n align-items: center;\n width: var(--osdk-switch-track-width);\n height: var(--osdk-switch-track-height);\n padding: 0;\n box-sizing: border-box;\n cursor: pointer;\n border-radius: var(--osdk-switch-border-radius, var(--osdk-surface-border-radius));\n position: relative;\n border: none;\n transition: background-color var(--osdk-switch-transition-duration, var(--osdk-emphasis-transition-duration))\n var(--osdk-switch-transition-ease, var(--osdk-emphasis-ease-default));\n\n &[data-unchecked] {\n background-color: var(--osdk-switch-track-bg, var(--osdk-intent-default-rest));\n\n &:hover {\n background-color: var(--osdk-switch-track-bg-hover, var(--osdk-intent-default-hover));\n }\n\n &:active {\n background-color: var(--osdk-switch-track-bg-active, var(--osdk-intent-default-active));\n }\n }\n\n &[data-checked] {\n background-color: var(--osdk-switch-track-bg-checked, var(--osdk-intent-primary-rest));\n\n &:hover {\n background-color: var(--osdk-switch-track-bg-checked-hover, var(--osdk-intent-primary-hover));\n }\n\n &:active {\n background-color: var(--osdk-switch-track-bg-checked-active, var(--osdk-intent-primary-active));\n }\n }\n\n &[data-disabled] {\n cursor: not-allowed;\n opacity: 0.5;\n }\n\n &:focus-visible {\n outline: var(--osdk-switch-focus-width, var(--osdk-emphasis-focus-width)) solid\n var(--osdk-switch-focus-color, var(--osdk-emphasis-focus-color));\n outline-offset: var(--osdk-switch-focus-offset, var(--osdk-emphasis-focus-offset));\n }\n}\n\n.osdkSwitchThumb {\n display: block;\n width: var(--osdk-switch-thumb-size);\n height: var(--osdk-switch-thumb-size);\n background-color: var(--osdk-switch-thumb-bg, var(--osdk-palette-white));\n border-radius: 50%;\n position: absolute;\n top: 50%;\n transform: translateY(-50%);\n transition: left var(--osdk-switch-transition-duration, var(--osdk-emphasis-transition-duration))\n var(--osdk-switch-transition-ease, var(--osdk-emphasis-ease-default));\n\n &[data-unchecked] {\n left: var(--osdk-switch-thumb-offset);\n }\n\n &[data-checked] {\n left: calc(var(--osdk-switch-track-width) - var(--osdk-switch-thumb-size) - var(--osdk-switch-thumb-offset));\n }\n}\n","/*\n * Copyright 2025 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\n.toggleInput {\n display: flex;\n align-items: center;\n}\n\n.toggleLabel {\n display: flex;\n align-items: center;\n gap: var(--osdk-filter-toggle-label-gap);\n cursor: pointer;\n}\n\n.labelText {\n font-family: var(--osdk-filter-toggle-label-font-family);\n font-size: var(--osdk-filter-toggle-label-font-size);\n line-height: var(--osdk-filter-toggle-label-line-height);\n color: var(--osdk-filter-toggle-label-color);\n}\n","/*\n * Copyright 2025 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\n.nullWrapper {\n display: flex;\n flex-direction: column;\n gap: var(--osdk-filter-null-wrapper-gap);\n}\n\n.nullValueRow {\n display: flex;\n align-items: center;\n justify-content: space-between;\n padding: var(--osdk-filter-null-row-padding);\n border-top: var(--osdk-filter-null-row-border-top);\n}\n\n.nullLabel {\n display: flex;\n align-items: center;\n gap: var(--osdk-filter-null-label-gap);\n cursor: pointer;\n}\n\n.nullLabelText {\n font-family: var(--osdk-filter-null-label-font-family);\n font-size: var(--osdk-filter-null-label-font-size);\n line-height: var(--osdk-filter-null-label-line-height);\n color: var(--osdk-filter-null-label-color);\n}\n\n.count {\n font-size: var(--osdk-typography-size-body-small);\n font-variant-numeric: tabular-nums;\n color: var(--osdk-typography-color-muted);\n}\n","/*\n * Copyright 2025 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\n.filterItem {\n display: flex;\n flex-direction: column;\n gap: var(--osdk-filter-item-gap);\n}\n\n.itemHeader {\n display: flex;\n align-items: center;\n}\n\n.itemLabel {\n font-family: var(--osdk-filter-item-label-font-family);\n font-size: var(--osdk-filter-item-label-font-size);\n font-weight: var(--osdk-filter-item-label-font-weight);\n color: var(--osdk-filter-item-label-color);\n}\n\n.itemContent {\n display: flex;\n flex-direction: column;\n}\n","/*\n * Copyright 2025 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\n.header {\n display: flex;\n align-items: center;\n justify-content: space-between;\n padding-bottom: var(--osdk-filter-header-padding-bottom);\n border-bottom: var(--osdk-filter-header-border-bottom);\n}\n\n.titleContainer {\n display: flex;\n align-items: center;\n gap: var(--osdk-filter-header-titleContainer-gap);\n}\n\n.title {\n font-family: var(--osdk-filter-header-font-family);\n font-size: var(--osdk-filter-header-font-size);\n font-weight: var(--osdk-filter-header-font-weight);\n color: var(--osdk-filter-header-color);\n margin: 0;\n}\n\n.titleIcon {\n color: var(--osdk-filter-header-icon-color);\n display: flex;\n align-items: center;\n}\n\n.activeCount {\n font-family: var(--osdk-filter-header-font-family);\n font-size: var(--osdk-filter-header-activeCount-font-size);\n color: var(--osdk-filter-header-activeCount-color);\n font-variant-numeric: tabular-nums;\n}\n\n.collapseButton {\n display: flex;\n align-items: center;\n justify-content: center;\n padding: var(--osdk-filter-header-button-padding);\n border: none;\n background: var(--osdk-filter-header-button-bg);\n cursor: pointer;\n border-radius: var(--osdk-filter-header-button-border-radius);\n transition: background-color var(--osdk-filter-header-button-transition);\n\n &:hover {\n background: var(--osdk-filter-header-button-bg-hover);\n }\n\n &:active {\n background: var(--osdk-filter-header-button-bg-active);\n }\n\n &:focus-visible {\n outline: var(--osdk-filter-input-focus-outline-width) solid var(--osdk-filter-input-focus-outline-color);\n outline-offset: var(--osdk-filter-input-focus-outline-offset);\n }\n\n @media (prefers-reduced-motion: reduce) {\n transition: none;\n }\n}\n\n.collapseIcon {\n display: block;\n width: var(--osdk-filter-header-collapse-icon-size);\n height: var(--osdk-filter-header-collapse-icon-size);\n border-left: var(--osdk-filter-header-collapse-icon-border-width) solid var(--osdk-filter-header-collapse-icon-color);\n border-bottom: var(--osdk-filter-header-collapse-icon-border-width) solid var(--osdk-filter-header-collapse-icon-color);\n transform: rotate(-45deg);\n transition: transform var(--osdk-filter-header-button-transition);\n\n @media (prefers-reduced-motion: reduce) {\n transition: none;\n }\n}\n\n.collapseIcon[data-collapsed=\"true\"] {\n transform: rotate(-135deg);\n}\n\n.resetButton {\n font-family: var(--osdk-filter-header-font-family);\n font-size: var(--osdk-filter-header-reset-font-size);\n color: var(--osdk-filter-header-reset-color);\n background: var(--osdk-filter-header-button-bg);\n border: none;\n cursor: pointer;\n padding: var(--osdk-filter-header-reset-padding);\n border-radius: var(--osdk-filter-header-button-border-radius);\n transition: background-color var(--osdk-filter-header-button-transition);\n\n &:hover:not(:disabled) {\n background: var(--osdk-filter-header-button-bg-hover);\n }\n\n &:disabled {\n color: var(--osdk-filter-header-reset-color-disabled);\n cursor: not-allowed;\n }\n\n &:focus-visible {\n outline: var(--osdk-filter-input-focus-outline-width) solid var(--osdk-filter-input-focus-outline-color);\n outline-offset: var(--osdk-filter-input-focus-outline-offset);\n }\n\n @media (prefers-reduced-motion: reduce) {\n transition: none;\n }\n}\n",".osdkEditableInput {\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n text-align: left;\n padding: var(--osdk-surface-spacing) calc(var(--osdk-surface-spacing) * 3);\n width: 100%;\n border-radius: var(--osdk-surface-border-radius);\n border: var(--osdk-surface-border-width) solid transparent;\n background: inherit;\n\n tr[data-focused=\"true\"] & {\n border: var(--osdk-table-cell-editable-border);\n background: var(--osdk-table-cell-editable-bg);\n\n &.osdkEditedInput {\n border: var(--osdk-table-cell-edited-border);\n }\n\n &:focus,\n &.osdkEditedInput:focus {\n border: var(--osdk-emphasis-focus-width) solid\n var(--osdk-emphasis-focus-color);\n }\n }\n}\n\n.osdkEditedInput {\n border: var(--osdk-table-cell-edited-border);\n background: var(--osdk-table-cell-editable-bg);\n}\n","/*\n * Copyright 2025 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\n.osdkLoadingCell {\n height: var(--osdk-table-cell-fontSize);\n border-radius: calc(var(--osdk-surface-border-radius) * 0.5);\n flex: 1;\n}\n\n/* Blueprint skeleton animation keyframes */\n@keyframes skeleton-glow {\n from {\n background: var(--osdk-table-skeleton-color-from);\n border-color: var(--osdk-table-skeleton-color-from);\n }\n\n to {\n background: var(--osdk-table-skeleton-color-to);\n border-color: var(--osdk-table-skeleton-color-to);\n }\n}\n\n.osdkCellSkeleton {\n animation: 1000ms linear infinite alternate skeleton-glow;\n background: var(--osdk-table-skeleton-color-from);\n background-clip: padding-box;\n border-color: var(--osdk-table-skeleton-color-from);\n border-radius: calc(var(--osdk-surface-border-radius) * 0.5);\n border: 1px solid var(--osdk-table-skeleton-border-color);\n box-shadow: none;\n color: transparent;\n cursor: default;\n pointer-events: none;\n user-select: none;\n}\n","/*\n * Copyright 2025 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\n.osdkTableCell {\n display: flex;\n align-items: center;\n height: 100%;\n text-align: left;\n position: relative;\n padding: var(--osdk-table-cell-padding);\n font-size: var(--osdk-table-cell-fontSize);\n color: var(--osdk-table-cell-color);\n background-color: inherit;\n border-right: var(--osdk-table-cell-divider);\n\n &:first-child {\n border-left: var(--osdk-table-border);\n }\n\n &:last-child {\n border-right: var(--osdk-table-border);\n }\n}\n\n.osdkTableCell[data-pinned=\"left\"],\n.osdkTableCell[data-pinned=\"right\"] {\n position: sticky;\n z-index: var(--osdk-surface-z-index-1);\n background-color: inherit;\n}\n\n/* Last left-pinned column - no left-pinned siblings after it */\n.osdkTableCell[data-pinned=\"left\"]:not(:has(~ [data-pinned=\"left\"])) {\n border-right: var(--osdk-table-pinned-column-border);\n}\n\n/* First right-pinned column - no right-pinned siblings before it */\n.osdkTableCell[data-pinned=\"right\"]:not(\n :has(~ [data-pinned=\"right\"]):nth-child(n + 2)\n ) {\n border-left: var(--osdk-table-pinned-column-border);\n}\n\n.osdkTableCell:has([role=\"checkbox\"]) {\n justify-content: center;\n padding: 0;\n}\n\n.osdkTableCellContent:not(:has([role=\"checkbox\"])) {\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n text-align: left;\n}\n\n.osdkCheckboxContainer {\n display: flex;\n align-items: center;\n justify-content: center;\n width: 100%;\n height: 100%;\n}\n","/*\n * Copyright 2025 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\n.osdkTableRow {\n position: absolute;\n display: flex;\n width: max-content;\n min-width: 100%;\n background-color: var(--osdk-table-row-bg-default);\n border-top: var(--osdk-table-row-divider);\n border-bottom: var(--osdk-table-border-width) solid transparent;\n\n &:last-child {\n border-bottom: var(--osdk-table-border);\n }\n\n /* Zebra rows */\n &:nth-child(even) {\n background-color: var(\n --osdk-table-row-bg-alternate,\n var(--osdk-table-row-bg-default)\n );\n }\n\n &:hover {\n z-index: 1;\n background-color: var(\n --osdk-table-row-bg-hover,\n var(--osdk-surface-background-color-default-hover)\n );\n border-top-color: var(--osdk-table-row-border-color-hover);\n border-bottom-color: var(--osdk-table-row-border-color-hover);\n }\n\n &[data-selected=\"true\"],\n &[data-focused=\"true\"] {\n z-index: 2;\n background-color: var(--osdk-table-row-bg-active);\n border-top-color: var(--osdk-table-row-border-color-active);\n border-bottom-color: var(--osdk-table-row-border-color-active);\n }\n\n &[data-selected=\"true\"] + &[data-selected=\"true\"] {\n border-top-color: transparent;\n }\n\n &[data-selected=\"true\"]:has(+ &[data-selected=\"true\"]) {\n border-bottom-color: transparent;\n }\n}\n","/*\n * Copyright 2025 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\n.osdkTableBody {\n display: grid;\n position: relative;\n width: max-content;\n min-width: 100%;\n}\n","/*\n * Copyright 2025 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\n.button {\n padding: calc(var(--osdk-surface-spacing) * 2)\n calc(var(--osdk-surface-spacing) * 4);\n border-radius: var(--osdk-surface-border-radius);\n font-size: var(--osdk-typography-size-body-medium);\n cursor: pointer;\n\n &:focus {\n outline: none;\n }\n\n &:focus-visible {\n outline: var(--osdk-focus-outline);\n outline-offset: var(--osdk-focus-visible-outline-offset);\n }\n}\n\n.secondaryButton {\n background-color: var(--osdk-button-secondary-bg);\n border: var(--osdk-surface-border);\n color: var(--osdk-button-secondary-color);\n\n &:hover:not(:disabled) {\n background-color: var(--osdk-button-secondary-bg-hover);\n }\n\n &:active:not(:disabled) {\n background-color: var(--osdk-button-secondary-bg-active);\n }\n\n &:disabled {\n opacity: 0.5;\n cursor: not-allowed;\n }\n}\n\n.primaryButton {\n background-color: var(--osdk-button-primary-bg);\n border: none;\n color: var(--osdk-button-primary-color);\n\n &:hover:not(:disabled) {\n background-color: var(--osdk-button-primary-bg-hover);\n }\n\n &:active:not(:disabled) {\n background-color: var(--osdk-button-primary-bg-active);\n }\n\n &:disabled {\n opacity: 0.5;\n cursor: not-allowed;\n }\n}\n","/*\n * Copyright 2025 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\n.backdrop {\n position: fixed;\n inset: 0;\n background-color: var(--osdk-dialog-backdrop-bg);\n z-index: var(--osdk-surface-z-index-1);\n}\n\n.popup {\n position: fixed;\n top: 50%;\n left: 50%;\n transform: translate(-50%, -50%);\n min-width: var(--osdk-dialog-min-width);\n max-width: var(--osdk-dialog-max-width);\n min-height: var(--osdk-dialog-min-height);\n max-height: var(--osdk-dialog-max-height);\n background-color: var(--osdk-dialog-bg);\n border-radius: var(--osdk-surface-border-radius);\n box-shadow: var(--osdk-dialog-shadow);\n z-index: var(--osdk-surface-z-index-2);\n display: flex;\n flex-direction: column;\n\n &:focus {\n outline: none;\n }\n}\n\n.header {\n display: flex;\n justify-content: space-between;\n align-items: center;\n padding: var(--osdk-dialog-header-padding);\n border-bottom: var(--osdk-surface-border);\n}\n\n.title {\n font-size: var(--osdk-dialog-title-font-size);\n font-weight: var(--osdk-dialog-title-font-weight);\n}\n\n.body {\n display: flex;\n padding: var(--osdk-dialog-body-padding);\n overflow-y: auto;\n flex: 1;\n}\n\n.footer {\n display: flex;\n justify-content: flex-end;\n gap: calc(var(--osdk-surface-spacing) * 2);\n padding: var(--osdk-dialog-footer-padding);\n border-top: var(--osdk-surface-border);\n}\n\n.closeButton {\n background: none;\n border: none;\n padding: calc(var(--osdk-surface-spacing) * 0.5);\n cursor: pointer;\n display: flex;\n align-items: center;\n justify-content: center;\n border-radius: var(--osdk-surface-border-radius);\n\n &:hover {\n background-color: var(--osdk-surface-background-color-default-hover);\n }\n\n &:focus {\n outline: none;\n }\n\n &:focus-visible {\n outline: var(--osdk-focus-outline);\n outline-offset: var(--osdk-focus-visible-outline-offset);\n }\n}\n\n.closeIcon {\n width: var(--osdk-iconography-size-small);\n height: var(--osdk-iconography-size-small);\n color: var(--osdk-typography-color-muted);\n}\n","/*\n * Copyright 2025 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\n.draggableListContainer {\n display: flex;\n flex-direction: column;\n gap: var(--osdk-draggable-item-gap);\n overflow-y: auto;\n}\n\n.draggableItem {\n display: flex;\n align-items: center;\n gap: var(--osdk-draggable-item-gap);\n padding: var(--osdk-draggable-item-padding);\n background-color: var(--osdk-draggable-item-bg);\n border: var(--osdk-draggable-item-border);\n border-radius: var(--osdk-draggable-item-border-radius);\n width: 100%;\n touch-action: none;\n user-select: none;\n}\n\n.draggableItem[data-dragging=\"true\"] {\n opacity: 0.5;\n}\n\n.dragHandle {\n display: flex;\n cursor: grab;\n color: var(--osdk-draggable-item-drag-icon-color);\n\n &:hover {\n color: var(--osdk-draggable-item-drag-icon-color-hover);\n }\n\n &:active {\n cursor: grabbing;\n }\n\n &:focus {\n outline: none;\n }\n\n &:focus-visible {\n outline: var(--osdk-focus-outline);\n outline-offset: var(--osdk-focus-visible-outline-offset);\n }\n}\n\n.itemContent {\n flex: 1;\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n}\n\n.removeButton {\n background: none;\n border: none;\n padding: var(--osdk-surface-spacing);\n cursor: pointer;\n display: flex;\n align-items: center;\n justify-content: center;\n color: var(--osdk-draggable-item-drag-icon-color);\n border-radius: var(--osdk-surface-border-radius);\n\n &:hover {\n color: var(--osdk-typography-color-danger-rest);\n }\n\n &:active {\n color: var(--osdk-typography-color-danger-rest);\n background: oklch(\n from var(--osdk-surface-background-color-danger-hover) l c h / 0.2\n );\n }\n\n &:focus {\n outline: none;\n }\n\n &:focus-visible {\n outline: var(--osdk-focus-outline);\n outline-offset: var(--osdk-focus-visible-outline-offset);\n }\n}\n\n.emptyState {\n padding: calc(var(--osdk-surface-spacing) * 5);\n text-align: center;\n color: var(--osdk-typography-color-muted);\n font-style: italic;\n}\n","/*\n * Copyright 2025 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\n.searchBar {\n display: flex;\n align-items: center;\n gap: var(--osdk-surface-spacing);\n padding: var(--osdk-surface-spacing) calc(var(--osdk-surface-spacing) * 1.5);\n border: var(--osdk-surface-border);\n border-radius: var(--osdk-surface-border-radius);\n\n &:focus-within {\n outline: var(--osdk-focus-outline);\n outline-offset: calc(-1 * var(--osdk-focus-visible-outline-offset));\n }\n}\n\n.searchIcon {\n width: var(--osdk-iconography-size-small);\n height: var(--osdk-iconography-size-small);\n color: var(--osdk-typography-color-muted);\n pointer-events: none;\n flex-shrink: 0;\n}\n\n.searchInput {\n border: none;\n width: 100%;\n padding: var(--osdk-surface-spacing) 0;\n font-size: var(--osdk-typography-size-body-medium);\n background: transparent;\n\n &:focus {\n outline: none;\n }\n\n &::placeholder {\n color: var(--osdk-typography-color-muted);\n }\n}\n","/*\n * Copyright 2025 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\n.title {\n display: flex;\n align-items: center;\n gap: var(--osdk-surface-spacing);\n}\n\n/* Override dialog styling */\n.columnConfigDialog {\n --osdk-dialog-min-width: var(--osdk-table-column-config-dialog-min-width);\n --osdk-dialog-min-height: var(--osdk-table-column-config-dialog-min-height);\n --osdk-dialog-body-padding: 0;\n}\n\n.dialogLayout {\n display: flex;\n flex-direction: row;\n gap: 0;\n flex: 1;\n min-height: 0;\n overflow: hidden;\n}\n\n.visibleColumnsContainer {\n flex: 1.5;\n display: flex;\n flex-direction: column;\n overflow: hidden;\n padding: calc(var(--osdk-surface-spacing) * 5);\n background: var(--osdk-table-column-config-visible-columns-bg);\n border-right: 1px solid var(--osdk-surface-border-color-default);\n}\n\n.availableColumnsContainer {\n flex: 1;\n display: flex;\n flex-direction: column;\n overflow: hidden;\n padding: calc(var(--osdk-surface-spacing) * 5)\n calc(var(--osdk-surface-spacing) * 3);\n}\n\n.sectionHeader {\n display: flex;\n align-items: center;\n justify-content: space-between;\n margin-bottom: calc(var(--osdk-surface-spacing) * 5);\n}\n\n.sectionTitle {\n display: flex;\n justify-content: flex-start;\n align-items: flex-start;\n font-size: var(--osdk-typography-size-body-medium);\n font-weight: var(--osdk-typography-weight-bold);\n color: var(--osdk-typography-color-muted);\n flex-shrink: 0;\n gap: var(--osdk-surface-spacing);\n}\n\n.countTag {\n display: inline-flex;\n align-items: center;\n justify-content: center;\n background: var(--osdk-custom-color-gray-3);\n padding: calc(var(--osdk-surface-spacing) / 2)\n calc(var(--osdk-surface-spacing) * 1.5);\n border-radius: var(--osdk-surface-border-radius);\n font-size: var(--osdk-typography-size-body-small);\n font-weight: var(--osdk-typography-weight-default);\n color: var(--osdk-typography-color-default-rest);\n}\n\n.sectionHint {\n font-size: var(--osdk-typography-size-body-small);\n color: var(--osdk-typography-color-muted);\n}\n\n.columnList {\n flex: 1;\n min-height: 0;\n overflow-y: auto;\n overscroll-behavior: contain;\n}\n\n.searchContainer {\n margin-bottom: calc(var(--osdk-surface-spacing) * 2);\n flex-shrink: 0;\n}\n\n.propertiesList {\n flex: 1;\n min-height: 0;\n display: flex;\n flex-direction: column;\n width: 100%;\n}\n\n.categoryHeader {\n display: flex;\n align-items: center;\n justify-content: flex-start;\n width: 100%;\n padding: calc(var(--osdk-surface-spacing) * 2)\n calc(var(--osdk-surface-spacing) * 3);\n background: none;\n border: none;\n margin: 0;\n gap: calc(var(--osdk-surface-spacing) * 3);\n flex-shrink: 0;\n}\n\n.categoryTrigger {\n display: flex;\n align-items: center;\n flex: 1;\n background: none;\n border: none;\n cursor: pointer;\n padding: 0;\n\n &:focus {\n outline: none;\n }\n\n &:focus-visible {\n outline: var(--osdk-focus-outline);\n outline-offset: var(--osdk-focus-visible-outline-offset);\n }\n}\n\n.categoryTitle {\n flex: 1;\n color: var(--osdk-typography-color-muted);\n font-size: var(--osdk-typography-size-body-small);\n font-weight: var(--osdk-typography-weight-bold);\n text-align: left;\n}\n\n.categoryCount {\n color: var(--osdk-typography-color-muted);\n font-size: var(--osdk-typography-size-body-small);\n margin-left: var(--osdk-surface-spacing);\n}\n\n.caretIcon {\n color: var(--osdk-typography-color-muted);\n display: flex;\n justify-content: center;\n align-items: center;\n}\n\n.categoryTrigger[data-panel-open] .caretIcon {\n transform: rotate(180deg);\n}\n\n.checkbox {\n width: var(--osdk-checkbox-icon-size);\n height: var(--osdk-checkbox-icon-size);\n}\n\n.propertyList {\n display: flex;\n flex-direction: column;\n flex: 1;\n min-height: 0;\n overflow-y: auto;\n overscroll-behavior: contain;\n}\n\n.propertyItem {\n display: flex;\n align-items: center;\n flex-direction: row;\n width: 100%;\n gap: calc(var(--osdk-surface-spacing) * 3);\n padding: calc(var(--osdk-surface-spacing) * 2)\n calc(var(--osdk-surface-spacing) * 3);\n background: none;\n border: none;\n cursor: pointer;\n text-align: left;\n border-radius: var(--osdk-surface-border-radius);\n\n &:hover {\n background-color: var(--osdk-surface-background-color-default-hover);\n }\n}\n\n.checkboxIndicator {\n color: var(--osdk-intent-primary-foreground);\n display: flex;\n align-items: center;\n justify-content: center;\n}\n\n.propertyName {\n text-align: left;\n flex: 1;\n font-size: var(--osdk-typography-size-body-medium);\n font-weight: 400;\n color: var(--osdk-typography-color-default-rest);\n padding: 0;\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n background: none;\n border: none;\n\n &:focus {\n outline: none;\n }\n\n &:focus-visible {\n outline: var(--osdk-focus-outline);\n outline-offset: var(--osdk-focus-visible-outline-offset);\n }\n}\n\n.infoIcon {\n color: var(--osdk-typography-color-muted);\n flex-shrink: 0;\n width: calc(var(--osdk-checkbox-icon-size) * 0.75);\n height: calc(var(--osdk-checkbox-icon-size) * 0.75);\n}\n\n.emptyState {\n padding: calc(var(--osdk-surface-spacing) * 5);\n text-align: center;\n color: var(--osdk-typography-color-muted);\n font-style: italic;\n}\n","/*\n * Copyright 2025 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\n.title {\n display: flex;\n align-items: center;\n gap: var(--osdk-surface-spacing);\n}\n\n.sortColumnsList {\n display: flex;\n flex-direction: column;\n gap: var(--osdk-surface-spacing);\n flex: 1;\n justify-content: space-between;\n overflow-x: hidden;\n}\n\n.sortableList {\n flex: 1;\n}\n\n.selectedColumnsContainer {\n margin-bottom: calc(var(--osdk-surface-spacing) * 2);\n}\n\n.sortColumnItem {\n display: flex;\n align-items: center;\n justify-content: space-between;\n min-width: 0;\n width: 100%;\n}\n\n.sortColumnName {\n min-width: 0;\n flex-shrink: 1;\n}\n\n.sortDirectionButton {\n flex-shrink: 0;\n background: none;\n border: none;\n padding: var(--osdk-surface-spacing);\n cursor: pointer;\n display: flex;\n align-items: center;\n justify-content: center;\n border-radius: var(--osdk-surface-border-radius);\n\n &:hover {\n background-color: var(--osdk-button-secondary-bg-hover);\n }\n\n &:focus {\n outline: none;\n }\n\n &:focus-visible {\n outline: var(--osdk-focus-outline);\n outline-offset: calc(-1 * var(--osdk-focus-visible-outline-offset));\n }\n}\n\n.sortIcon {\n color: var(--osdk-typography-color-muted);\n}\n\n.addColumnButton {\n display: flex;\n align-items: center;\n gap: calc(var(--osdk-surface-spacing) * 2);\n width: 100%;\n padding: calc(var(--osdk-surface-spacing) * 2)\n calc(var(--osdk-surface-spacing) * 3);\n background-color: var(--osdk-button-secondary-bg);\n border: var(--osdk-surface-border);\n border-radius: var(--osdk-surface-border-radius);\n cursor: pointer;\n color: var(--osdk-button-secondary-color);\n margin-top: calc(var(--osdk-surface-spacing) * 2);\n\n &:hover:not(:disabled) {\n background-color: var(--osdk-button-secondary-bg-hover);\n }\n\n &:disabled {\n opacity: 0.5;\n cursor: not-allowed;\n }\n\n &:focus {\n outline: none;\n }\n\n &:focus-visible {\n outline: var(--osdk-focus-outline);\n outline-offset: calc(-1 * var(--osdk-focus-visible-outline-offset));\n }\n}\n\n.addIcon {\n width: var(--osdk-iconography-size-small);\n height: var(--osdk-iconography-size-small);\n color: currentColor;\n}\n\n.addColumnText {\n flex: 1;\n text-align: left;\n}\n\n.menuPositioner {\n z-index: var(--osdk-surface-z-index-2);\n}\n\n.dropdownMenu {\n background-color: var(--osdk-surface-background-color-default-rest);\n border: var(--osdk-surface-border);\n border-radius: var(--osdk-surface-border-radius);\n box-shadow: var(--osdk-surface-shadow-2);\n max-height: calc(var(--osdk-dialog-max-height) * 0.5);\n overflow-y: auto;\n width: var(--anchor-width);\n\n &:focus {\n outline: none;\n }\n\n &:focus-visible {\n outline: var(--osdk-focus-outline);\n outline-offset: var(--osdk-focus-visible-outline-offset);\n }\n}\n\n.menuSearchContainer {\n border: none;\n border-bottom: var(--osdk-surface-border);\n border-radius: 0;\n position: sticky;\n top: 0;\n background-color: var(--osdk-surface-background-color-default-rest);\n}\n\n.menuEmptyState {\n padding: calc(var(--osdk-surface-spacing) * 3);\n text-align: center;\n color: var(--osdk-typography-color-muted);\n font-size: var(--osdk-typography-size-body-medium);\n}\n\n.dropdownItem {\n display: block;\n width: 100%;\n text-align: left;\n padding: calc(var(--osdk-surface-spacing) * 2)\n calc(var(--osdk-surface-spacing) * 3);\n background: none;\n border: none;\n cursor: pointer;\n font-size: var(--osdk-typography-size-body-medium);\n color: var(--osdk-typography-color-default-rest);\n\n &:hover {\n background-color: var(--osdk-surface-background-color-default-hover);\n }\n\n &:focus {\n outline: none;\n }\n\n &:focus-visible {\n outline: var(--osdk-focus-outline);\n outline-offset: calc(-1 * var(--osdk-focus-visible-outline-offset));\n }\n}\n\n.truncate {\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n}\n","/*\n * Copyright 2025 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\n.osdkTableHeader {\n display: grid;\n position: sticky;\n top: 0;\n width: max-content;\n min-width: 100%;\n height: var(--osdk-table-header-height);\n z-index: var(--osdk-surface-z-index-1);\n background-color: var(--osdk-table-header-bg);\n}\n\n.osdkTableHeader[data-resizing=\"true\"] {\n cursor: col-resize;\n user-select: none;\n}\n\n.osdkTableHeaderRow {\n display: flex;\n width: max-content;\n min-width: 100%;\n border-bottom: var(--osdk-table-border);\n}\n\n.osdkTableHeaderCell {\n display: flex;\n align-items: center;\n text-align: left;\n position: relative;\n padding: var(--osdk-table-cell-padding);\n font-weight: var(--osdk-table-header-fontWeight);\n font-size: var(--osdk-table-header-fontSize);\n color: var(--osdk-table-header-color);\n border-top: var(--osdk-table-border);\n border-right: var(--osdk-table-header-divider);\n background-color: inherit;\n\n &:first-child {\n border-left: var(--osdk-table-border);\n }\n\n &:last-child {\n border-right: var(--osdk-table-border);\n }\n}\n\n.osdkTableHeaderCell[data-pinned=\"left\"],\n.osdkTableHeaderCell[data-pinned=\"right\"] {\n position: sticky;\n z-index: var(--osdk-surface-z-index-2);\n background-color: var(--osdk-table-header-bg);\n}\n\n/* Last left-pinned column - no left-pinned siblings after it */\n.osdkTableHeaderCell[data-pinned=\"left\"]:not(:has(~ [data-pinned=\"left\"])) {\n border-right: var(--osdk-table-pinned-column-border);\n}\n\n/* First right-pinned column - no right-pinned siblings before it */\n.osdkTableHeaderCell[data-pinned=\"right\"]:not(\n :has(~ [data-pinned=\"right\"]):nth-child(n + 2)\n ) {\n border-left: var(--osdk-table-pinned-column-border);\n}\n\n.osdkTableHeaderCell:has([role=\"checkbox\"]) {\n justify-content: center;\n}\n\n.osdkTableHeaderResizer {\n background: none;\n cursor: col-resize;\n height: 100%;\n position: absolute;\n right: calc(-1 * var(--osdk-table-border-width));\n top: 0;\n touch-action: none;\n width: 3px;\n z-index: var(--osdk-surface-z-index-2);\n\n &:hover {\n background: var(--osdk-table-resizer-color-hover);\n }\n\n &:active {\n background: var(--osdk-table-resizer-color-active);\n }\n}\n\n.osdkLoadingHeaderCell {\n height: var(--osdk-table-header-fontSize);\n flex: 1;\n}\n","/*\n * Copyright 2025 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\n.osdkHeaderContent {\n display: -webkit-box;\n -webkit-box-orient: vertical;\n -webkit-line-clamp: 2;\n line-clamp: 2;\n text-align: left;\n overflow: hidden;\n text-overflow: ellipsis;\n}\n\n.osdkHeaderContent:has([role=\"checkbox\"]) {\n display: flex;\n justify-content: center;\n}\n","/*\n * Copyright 2025 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\n.osdkCenterContainer {\n display: flex;\n align-items: center;\n justify-content: center;\n}\n\n.osdkContentGap {\n display: flex;\n gap: calc(var(--osdk-surface-spacing) * 2);\n}\n\n.osdkHeaderContainer {\n justify-content: space-between;\n flex: 1;\n min-width: 0;\n align-self: stretch;\n}\n\n.osdkHeaderContentLeft {\n min-width: 0;\n flex-shrink: 1;\n}\n\n.osdkHeaderContentRight {\n flex-shrink: 0;\n}\n\n.osdkHeaderText {\n display: -webkit-box;\n -webkit-box-orient: vertical;\n -webkit-line-clamp: 3;\n line-clamp: 3;\n overflow: hidden;\n text-overflow: ellipsis;\n flex-grow: 1;\n}\n\n.osdkHeaderPopoverTrigger {\n padding: var(--osdk-table-header-menu-padding);\n flex-shrink: 0;\n flex-grow: 0;\n background-color: var(--osdk-table-header-menu-bg);\n border: var(--osdk-table-header-menu-border);\n border-radius: var(--osdk-surface-border-radius);\n color: var(--osdk-table-header-menu-color);\n cursor: pointer;\n user-select: none;\n\n &:hover {\n background-color: var(--osdk-table-header-menu-bg-hover);\n }\n\n &[data-popup-open] {\n background-color: var(--osdk-table-header-menu-bg-active);\n color: var(--osdk-table-header-menu-color-active);\n }\n\n &:focus {\n outline: none;\n }\n\n &:focus-visible {\n outline: var(--osdk-focus-outline);\n outline-offset: var(--osdk-focus-visible-outline-offset);\n }\n}\n\n.osdkHeaderIcon {\n width: var(--osdk-iconography-size-small);\n height: var(--osdk-iconography-size-small);\n}\n\n.osdkHeaderPopup {\n box-sizing: border-box;\n padding: var(--osdk-surface-spacing);\n border-radius: var(--osdk-surface-border-radius);\n border: var(--osdk-surface-border);\n background-color: var(--osdk-surface-background-color-default-rest);\n color: var(--osdk-typography-color-default-rest);\n box-shadow: var(--osdk-surface-shadow-2);\n font-size: var(--osdk-typography-size-body-medium);\n\n &:focus {\n outline: none;\n }\n}\n\n.osdkHeaderMenuItem {\n justify-content: flex-start;\n padding: var(--osdk-surface-spacing) calc(var(--osdk-surface-spacing) * 2);\n cursor: pointer;\n\n &:hover {\n background-color: var(--osdk-surface-background-color-default-hover);\n border-radius: var(--osdk-surface-border-radius);\n }\n\n &:focus {\n outline: none;\n }\n\n &:focus-visible {\n outline: var(--osdk-focus-outline);\n outline-offset: var(--osdk-focus-visible-outline-offset);\n }\n}\n\n.osdkHeaderMenuItem .osdkHeaderActiveMenuItem {\n background-color: var(--osdk-intent-primary-rest);\n color: var(--osdk-intent-primary-foreground);\n\n &:hover {\n background-color: var(--osdk-intent-primary-hover);\n }\n\n &:active {\n background-color: var(--osdk-intent-primary-active);\n }\n}\n\n.sortIndex {\n font-size: var(--osdk-typography-size-body-x-small);\n margin-left: var(--osdk-surface-spacing);\n color: var(--osdk-typography-color-muted);\n}\n","/*\n * Copyright 2025 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\n.container {\n display: flex;\n align-items: center;\n justify-content: center;\n}\n\n.message {\n padding: calc(var(--osdk-surface-spacing) * 5);\n color: var(--osdk-typography-color-muted);\n font-style: italic;\n}\n","/*\n * Copyright 2025 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\n.osdkTableWrapper {\n display: flex;\n flex-direction: column;\n height: 100%;\n position: relative;\n}\n\n.osdkTableContainer {\n flex: 1;\n min-height: 0;\n overflow: auto;\n position: relative;\n}\n\n.osdkTableContainer table {\n border-collapse: collapse;\n display: grid;\n table-layout: fixed;\n width: max-content;\n min-width: 100%;\n}\n","/*\n * Copyright 2025 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\n.osdkCellContextMenu {\n position: fixed;\n z-index: var(--osdk-surface-z-index-2);\n}\n","/*\n * Copyright 2025 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\n.tableEditContainer {\n display: flex;\n justify-content: space-between;\n align-items: center;\n background-color: var(--osdk-surface-background-color-default-rest);\n border-top: var(--osdk-table-border);\n padding: var(--osdk-table-edit-container-padding);\n min-height: var(--osdk-table-edit-container-min-height);\n}\n\n.placeholder {\n color: var(--osdk-typography-color-muted);\n font-size: var(--osdk-typography-size-body-small);\n padding: calc(var(--osdk-surface-spacing) * 2) 0;\n}\n\n.modificationCount {\n color: var(--osdk-intent-primary-rest);\n font-size: var(--osdk-typography-size-body-small);\n padding: calc(var(--osdk-surface-spacing) * 2) 0;\n}\n\n.editButtons {\n display: flex;\n justify-content: flex-end;\n gap: 8px;\n flex: 1;\n}\n"],"mappings":"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","names":[]}