@osdk/react-components 0.9.0 → 0.10.0-main-b355bc3b41a4d89ec093054dc8d2845c772ef1e2
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.
- package/CHANGELOG.md +14 -0
- package/README.md +23 -0
- package/build/browser/action-form/FormFieldApi.js +8 -0
- package/build/browser/action-form/FormFieldApi.js.map +1 -1
- package/build/browser/action-form/fields/AsyncDropdownField.js +81 -0
- package/build/browser/action-form/fields/AsyncDropdownField.js.map +1 -0
- package/build/browser/action-form/fields/AsyncDropdownField.module.css +31 -0
- package/build/browser/action-form/fields/AsyncDropdownField.module.css.js +8 -0
- package/build/browser/action-form/fields/DropdownField.js +29 -14
- package/build/browser/action-form/fields/DropdownField.js.map +1 -1
- package/build/browser/action-form/fields/FormFieldRenderer.js +17 -0
- package/build/browser/action-form/fields/FormFieldRenderer.js.map +1 -1
- package/build/browser/action-form/fields/ObjectSelectField.js +109 -0
- package/build/browser/action-form/fields/ObjectSelectField.js.map +1 -0
- package/build/browser/action-form/utils/getDefaultFieldDefinitions.js +14 -5
- package/build/browser/action-form/utils/getDefaultFieldDefinitions.js.map +1 -1
- package/build/browser/base-components/combobox/Combobox.module.css +23 -2
- package/build/browser/base-components/combobox/Combobox.module.css.js +3 -3
- package/build/browser/filter-list/base/inputs/TextTagsInput.js.map +1 -1
- package/build/browser/shared/hooks/useDebouncedValue.js +35 -0
- package/build/browser/shared/hooks/useDebouncedValue.js.map +1 -0
- package/build/browser/shared/hooks/useEventCallback.js +44 -0
- package/build/browser/shared/hooks/useEventCallback.js.map +1 -0
- package/build/browser/shared/hooks/useInfiniteScroll.js +81 -0
- package/build/browser/shared/hooks/useInfiniteScroll.js.map +1 -0
- package/build/browser/styles.css +73 -2
- package/build/browser/tokens/component-tokens/async-dropdown.css +16 -0
- package/build/browser/tokens.css +1 -0
- package/build/browser/util/UserAgent.js +1 -1
- package/build/browser/util/UserAgent.js.map +1 -1
- package/build/cjs/{chunk-EEES66LS.cjs → chunk-5DVHLBWS.cjs} +3 -3
- package/build/cjs/chunk-5DVHLBWS.cjs.map +1 -0
- package/build/cjs/{chunk-OXP3XQE4.cjs → chunk-ALZS624H.cjs} +47 -47
- package/build/cjs/{chunk-OXP3XQE4.cjs.map → chunk-ALZS624H.cjs.map} +1 -1
- package/build/cjs/{chunk-UEY63J2G.cjs → chunk-FURJRQWI.cjs} +9 -9
- package/build/cjs/{chunk-UEY63J2G.cjs.map → chunk-FURJRQWI.cjs.map} +1 -1
- package/build/cjs/{chunk-RY2GVYT2.cjs → chunk-MVNWOKH2.cjs} +49 -36
- package/build/cjs/chunk-MVNWOKH2.cjs.map +1 -0
- package/build/cjs/{chunk-O5ZAMFDU.cjs → chunk-QWFJF7IM.cjs} +468 -207
- package/build/cjs/chunk-QWFJF7IM.cjs.map +1 -0
- package/build/cjs/{chunk-2FPKTOPE.cjs → chunk-XBXC6VAS.cjs} +2 -2
- package/build/cjs/{chunk-2FPKTOPE.cjs.map → chunk-XBXC6VAS.cjs.map} +1 -1
- package/build/cjs/{chunk-SHTQGKS5.cjs → chunk-Z3CXMFCZ.cjs} +4 -4
- package/build/cjs/{chunk-SHTQGKS5.cjs.map → chunk-Z3CXMFCZ.cjs.map} +1 -1
- package/build/cjs/public/experimental/action-form.cjs +6 -6
- package/build/cjs/public/experimental/action-form.css +24 -1
- package/build/cjs/public/experimental/action-form.css.map +1 -1
- package/build/cjs/public/experimental/action-form.d.cts +48 -3
- package/build/cjs/public/experimental/filter-list.cjs +7 -7
- package/build/cjs/public/experimental/filter-list.css +9 -1
- package/build/cjs/public/experimental/filter-list.css.map +1 -1
- package/build/cjs/public/experimental/object-table.cjs +10 -10
- package/build/cjs/public/experimental/object-table.css +9 -1
- package/build/cjs/public/experimental/object-table.css.map +1 -1
- package/build/cjs/public/experimental/pdf-viewer.cjs +24 -24
- package/build/cjs/public/experimental.cjs +41 -41
- package/build/cjs/public/experimental.css +24 -1
- package/build/cjs/public/experimental.css.map +1 -1
- package/build/esm/action-form/FormFieldApi.js +8 -0
- package/build/esm/action-form/FormFieldApi.js.map +1 -1
- package/build/esm/action-form/fields/AsyncDropdownField.js +81 -0
- package/build/esm/action-form/fields/AsyncDropdownField.js.map +1 -0
- package/build/esm/action-form/fields/AsyncDropdownField.module.css +31 -0
- package/build/esm/action-form/fields/DropdownField.js +29 -14
- package/build/esm/action-form/fields/DropdownField.js.map +1 -1
- package/build/esm/action-form/fields/FormFieldRenderer.js +17 -0
- package/build/esm/action-form/fields/FormFieldRenderer.js.map +1 -1
- package/build/esm/action-form/fields/ObjectSelectField.js +109 -0
- package/build/esm/action-form/fields/ObjectSelectField.js.map +1 -0
- package/build/esm/action-form/utils/getDefaultFieldDefinitions.js +14 -5
- package/build/esm/action-form/utils/getDefaultFieldDefinitions.js.map +1 -1
- package/build/esm/base-components/combobox/Combobox.module.css +23 -2
- package/build/esm/filter-list/base/inputs/TextTagsInput.js.map +1 -1
- package/build/esm/shared/hooks/useDebouncedValue.js +35 -0
- package/build/esm/shared/hooks/useDebouncedValue.js.map +1 -0
- package/build/esm/shared/hooks/useEventCallback.js +44 -0
- package/build/esm/shared/hooks/useEventCallback.js.map +1 -0
- package/build/esm/shared/hooks/useInfiniteScroll.js +81 -0
- package/build/esm/shared/hooks/useInfiniteScroll.js.map +1 -0
- package/build/esm/tokens/component-tokens/async-dropdown.css +16 -0
- package/build/esm/tokens.css +1 -0
- package/build/esm/util/UserAgent.js +1 -1
- package/build/esm/util/UserAgent.js.map +1 -1
- package/build/types/action-form/FormFieldApi.d.ts +48 -3
- package/build/types/action-form/FormFieldApi.d.ts.map +1 -1
- package/build/types/action-form/fields/AsyncDropdownField.d.ts +25 -0
- package/build/types/action-form/fields/AsyncDropdownField.d.ts.map +1 -0
- package/build/types/action-form/fields/DropdownField.d.ts +2 -2
- package/build/types/action-form/fields/DropdownField.d.ts.map +1 -1
- package/build/types/action-form/fields/FormFieldRenderer.d.ts.map +1 -1
- package/build/types/action-form/fields/ObjectSelectField.d.ts +3 -0
- package/build/types/action-form/fields/ObjectSelectField.d.ts.map +1 -0
- package/build/types/shared/hooks/useDebouncedValue.d.ts +5 -0
- package/build/types/shared/hooks/useDebouncedValue.d.ts.map +1 -0
- package/build/types/shared/hooks/useEventCallback.d.ts +13 -0
- package/build/types/shared/hooks/useEventCallback.d.ts.map +1 -0
- package/build/types/shared/hooks/useInfiniteScroll.d.ts +19 -0
- package/build/types/shared/hooks/useInfiniteScroll.d.ts.map +1 -0
- package/package.json +9 -9
- package/build/cjs/chunk-EEES66LS.cjs.map +0 -1
- package/build/cjs/chunk-O5ZAMFDU.cjs.map +0 -1
- package/build/cjs/chunk-RY2GVYT2.cjs.map +0 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../src/base-components/action-button/ActionButton.module.css","../../../src/base-components/skeleton/SkeletonBar.module.css","../../../src/base-components/tooltip/Tooltip.module.css","../../../src/action-form/BaseForm.module.css","../../../src/action-form/FormField.module.css","../../../src/action-form/fields/DatePickerCommon.module.css","../../../src/action-form/fields/DateRangeInputField.module.css","../../../src/action-form/fields/DateCalendar.module.css","../../../src/action-form/fields/TimePicker.module.css","../../../src/action-form/fields/DatetimePickerField.module.css","../../../src/base-components/combobox/Combobox.module.css","../../../src/base-components/select/Select.module.css","../../../src/action-form/fields/FilePickerField.module.css","../../../src/action-form/fields/NumberInputField.module.css","../../../src/action-form/fields/ObjectSetField.module.css","../../../src/action-form/fields/RadioButtonsField.module.css","../../../src/action-form/fields/BaseInput.module.css","../../../src/action-form/FormHeader.module.css","../../../src/filter-list/base/FilterList.module.css","../../../src/filter-list/base/FilterListContent.module.css","../../../src/shared/ErrorBoundary.module.css","../../../src/filter-list/base/FilterListItem.module.css","../../../src/filter-list/base/FilterListHeader.module.css","../../../src/base-components/search-bar/SearchBar.module.css","../../../src/base-components/searchable-menu/SearchableMenu.module.css","../../../src/filter-list/base/AddFilterPopover.module.css","../../../src/filter-list/base/inputs/ContainsTextInput.module.css","../../../src/base-components/switch/Switch.module.css","../../../src/filter-list/base/inputs/ToggleInput.module.css","../../../src/filter-list/base/inputs/RangeInput.module.css","../../../src/filter-list/base/inputs/shared.module.css","../../../src/filter-list/base/inputs/LinkedPropertyInput.module.css","../../../src/base-components/checkbox/Checkbox.module.css","../../../src/filter-list/base/inputs/ListogramInput.module.css","../../../src/filter-list/base/inputs/ListogramSkeleton.module.css","../../../src/filter-list/base/inputs/MultiDateInput.module.css","../../../src/filter-list/base/inputs/MultiSelectInput.module.css","../../../src/filter-list/base/inputs/NullValueWrapper.module.css","../../../src/filter-list/base/inputs/SingleDateInput.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/filter-list/base/ExcludeDropdown.module.css","../../../src/markdown-renderer/MarkdownRenderer.module.css","../../../src/object-table/LoadingCell.module.css","../../../src/object-table/TableCell.module.css","../../../src/object-table/EditableCell.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/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","../../../src/pdf-viewer/components/PdfViewerAnnotationLayer.module.css","../../../src/pdf-viewer/components/PdfViewerOutlineSidebar.module.css","../../../src/pdf-viewer/components/PdfViewerSidebarHeader.module.css","../../../src/pdf-viewer/components/PdfViewerSearchBar.module.css","../../../src/pdf-viewer/components/PdfViewerSidebar.module.css","../../../src/pdf-viewer/components/PdfViewerThumbnail.module.css","../../../src/pdf-viewer/components/PdfViewerToolbar.module.css","../../../src/pdf-viewer/PdfViewer.module.css","../../../src/images/tiff-renderer/TiffRenderer.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.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-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 2026 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@keyframes skeleton-glow {\n from {\n background: var(--osdk-background-skeleton-from);\n }\n\n to {\n background: var(--osdk-background-skeleton-to);\n }\n}\n\n.skeletonBar {\n animation: 1000ms linear infinite alternate skeleton-glow;\n background: var(--osdk-background-skeleton-from);\n border-radius: var(--osdk-surface-border-radius);\n pointer-events: none;\n user-select: none;\n}\n\n@media (prefers-reduced-motion: reduce) {\n .skeletonBar {\n animation: none;\n }\n}\n","/*\n * Copyright 2026 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.osdkTooltipTrigger {\n border: none;\n background: inherit;\n}\n\n.osdkTooltipPositioner {\n z-index: var(--osdk-tooltip-z-index);\n}\n\n.osdkTooltipPopup {\n padding: var(--osdk-tooltip-padding);\n background-color: var(--osdk-tooltip-bg);\n border-radius: var(--osdk-surface-border-radius);\n box-shadow: var(--osdk-tooltip-shadow);\n max-width: var(--osdk-tooltip-max-width);\n font-size: var(--osdk-tooltip-font-size);\n}\n\n/* \n * Hardcoded values are copied from base ui example \n * https://base-ui.com/react/components/tooltip \n *\n * */\n.osdkTooltipArrow {\n display: flex;\n\n &[data-side=\"top\"] {\n bottom: -8px;\n rotate: 180deg;\n }\n\n &[data-side=\"bottom\"] {\n top: -8px;\n rotate: 0deg;\n }\n\n &[data-side=\"left\"] {\n right: -13px;\n rotate: 90deg;\n }\n\n &[data-side=\"right\"] {\n left: -13px;\n rotate: -90deg;\n }\n}\n\n.tooltipArrowFill {\n fill: var(--osdk-tooltip-bg);\n}\n\n.tooltipArrowOuterStroke {\n fill: var(--osdk-tooltip-border-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.osdkForm {\n display: flex;\n flex-direction: column;\n width: 100%;\n}\n\n.osdkFormFields {\n display: flex;\n flex-direction: column;\n gap: var(--osdk-form-field-gap);\n padding: var(--osdk-form-content-padding);\n}\n\n.osdkFormFooter {\n display: flex;\n flex-direction: row;\n justify-content: space-between;\n align-items: center;\n border-top: var(--osdk-surface-border-width) solid\n var(--osdk-form-footer-border-color);\n padding-block: var(--osdk-form-content-padding);\n padding-inline: var(--osdk-form-content-padding);\n}\n\n.osdkFormSubmitButton {\n margin-inline-start: auto;\n}\n\n.osdkFormErrorIndicator {\n display: flex;\n align-items: center;\n gap: calc(var(--osdk-surface-spacing) * 2);\n color: var(--osdk-form-footer-error-color);\n font-size: var(--osdk-form-footer-error-font-size);\n cursor: help;\n}\n\n/* Replaces Tooltip.Trigger's default <button> with a <span> to avoid\n nested buttons. inline-flex keeps a real layout box for tooltip anchoring. */\n.osdkTooltipTriggerWrapper {\n display: inline-flex;\n}\n\n/* Loading skeleton — mimics label + input per field */\n.osdkFormSkeletonField {\n display: flex;\n flex-direction: column;\n gap: var(--osdk-form-label-field-gap);\n}\n\n.osdkFormSkeletonLabel {\n width: 30%;\n height: var(--osdk-form-label-font-size);\n}\n\n.osdkFormSkeletonInput {\n width: 100%;\n height: var(--osdk-input-min-height);\n}\n\n.osdkFormErrorList {\n list-style: none;\n margin: 0;\n padding: 0;\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.osdkFormField {\n display: flex;\n flex-direction: column;\n gap: var(--osdk-form-label-field-gap);\n}\n\n.osdkFormFieldLabel {\n font-size: var(--osdk-form-label-font-size);\n font-weight: var(--osdk-form-label-font-weight);\n color: var(--osdk-form-label-color);\n}\n\n.osdkFormFieldRequired {\n color: var(--osdk-form-required-color);\n}\n\n.osdkFormFieldError {\n font-size: var(--osdk-form-error-font-size);\n color: var(--osdk-form-error-color);\n}\n\n.osdkFormFieldHelperText {\n font-size: var(--osdk-typography-size-body-small);\n color: var(--osdk-typography-color-muted);\n}\n","/* Bare input inside a date picker wrapper */\n.osdkDatePickerInput {\n width: 100%;\n flex: 1;\n min-width: 0;\n min-height: var(--osdk-datetime-input-min-height);\n padding: var(--osdk-datetime-input-padding);\n border: none;\n border-radius: var(--osdk-datetime-input-border-radius);\n background: transparent;\n color: var(--osdk-datetime-input-color);\n font-family: var(--osdk-datetime-input-font-family);\n font-size: var(--osdk-datetime-input-font-size);\n line-height: var(--osdk-datetime-input-line-height);\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n\n &::placeholder {\n color: var(--osdk-datetime-input-placeholder-color);\n }\n\n &:focus-visible {\n outline: none;\n }\n}\n\n/* Popover container */\n.osdkDatePickerPopover {\n background: var(--osdk-datetime-popover-bg);\n padding: var(--osdk-datetime-popover-padding);\n z-index: var(--osdk-datetime-popover-z-index);\n box-shadow: var(--osdk-datetime-popover-shadow);\n}\n\n/* Visually-hidden focus boundary for Tab cycling between input and popover */\n.osdkDatePickerFocusBoundary {\n position: absolute;\n width: 1px;\n height: 1px;\n overflow: hidden;\n clip-path: inset(50%);\n white-space: nowrap;\n outline: none;\n}\n\n/* Shared input wrapper — border, bg, hover, focus-within */\n.osdkDatePickerInputWrapper {\n display: flex;\n align-items: center;\n border-radius: var(--osdk-datetime-input-border-radius);\n border: var(--osdk-datetime-input-border-width) solid\n var(--osdk-datetime-input-border-color);\n background-color: var(--osdk-datetime-input-bg);\n transition:\n background-color var(--osdk-datetime-input-transition-duration)\n var(--osdk-datetime-input-transition-ease),\n border-color var(--osdk-datetime-input-transition-duration)\n var(--osdk-datetime-input-transition-ease);\n cursor: text;\n\n &:hover {\n background-color: var(--osdk-datetime-input-bg-hover);\n }\n\n &:focus-within {\n outline: var(--osdk-datetime-input-focus-width) solid\n var(--osdk-datetime-input-focus-color);\n outline-offset: var(--osdk-datetime-input-focus-offset);\n border-color: var(--osdk-datetime-input-border-color-focus);\n }\n}\n\n.osdkDatePickerInputWrapperError {\n border-color: var(--osdk-datetime-input-error-border-color);\n\n &:focus-within {\n border-color: var(--osdk-datetime-input-error-border-color);\n }\n}\n\n/* Calendar fallback / loading skeleton */\n.osdkDatePickerFallback {\n width: var(--osdk-datetime-calendar-fallback-width);\n height: var(--osdk-datetime-calendar-fallback-height);\n}\n","/* DateRangeInputField — two separate bordered inputs + shared popover */\n\n/* Outer container that holds both inputs side by side.\n Acts as Popover.Trigger — suppress the focus ring when\n focus returns here after the popover closes. */\n.osdkDateRangeContainer {\n display: flex;\n align-items: center;\n gap: calc(var(--osdk-surface-spacing) * 2);\n outline: none;\n}\n\n/* Each input wrapper gets flex: 1 to split equally */\n.osdkDateRangeInputWrapper {\n flex: 1;\n min-width: 0;\n}\n\n/* Two TimePickers side-by-side, each centered under its calendar month.\n Negative horizontal margin counters the popover padding so the border-top\n spans the full width of the popover. */\n.osdkDateRangeTimeRow {\n display: flex;\n gap: var(--osdk-time-picker-gap);\n padding-top: var(--osdk-time-picker-padding-top);\n padding-left: var(--osdk-datetime-popover-padding);\n padding-right: var(--osdk-datetime-popover-padding);\n margin-top: var(--osdk-time-picker-margin-top);\n margin-left: calc(var(--osdk-datetime-popover-padding) * -1);\n margin-right: calc(var(--osdk-datetime-popover-padding) * -1);\n border-top: var(--osdk-time-picker-border-top);\n}\n","/* DateCalendar — DayPicker classNames.\n All values reference --osdk-datetime-calendar-* tokens defined in\n react-components-styles/tokens/datetime-picker.css. */\n\n.calendar {\n position: relative;\n width: 100%;\n font-family: var(--osdk-datetime-calendar-font-family);\n font-size: var(--osdk-datetime-calendar-font-size);\n}\n\n.calendarMonths {\n display: flex;\n gap: var(--osdk-datetime-calendar-months-gap);\n}\n\n.calendarMonthGrid {\n width: 100%;\n border-collapse: collapse;\n}\n\n.calendarWeekday {\n padding: var(--osdk-datetime-calendar-gap);\n font-size: var(--osdk-datetime-calendar-weekday-font-size);\n color: var(--osdk-datetime-calendar-weekday-color);\n text-align: center;\n width: var(--osdk-datetime-calendar-cell-size);\n}\n\n.calendarDay {\n padding: var(--osdk-datetime-calendar-gap);\n text-align: center;\n}\n\n.calendarDayButton {\n display: inline-flex;\n align-items: center;\n justify-content: center;\n width: var(--osdk-datetime-calendar-cell-size);\n height: var(--osdk-datetime-calendar-cell-size);\n border: none;\n border-radius: var(--osdk-datetime-calendar-day-border-radius);\n background: transparent;\n cursor: pointer;\n font: inherit;\n color: var(--osdk-datetime-calendar-day-color);\n\n &:hover {\n background: var(--osdk-datetime-calendar-day-hover-bg);\n color: var(--osdk-datetime-calendar-day-hover-color);\n }\n\n &:active {\n background: var(--osdk-datetime-calendar-day-active-bg);\n color: var(--osdk-datetime-calendar-day-hover-color);\n }\n\n &:focus-visible {\n outline: var(--osdk-datetime-calendar-focus-outline);\n outline-offset: -2px;\n }\n}\n\n/* :not([disabled]) bumps specificity to (0,4,0) — matching rdp's default\n .rdp-button:hover:not([disabled]):not(.rdp-day_selected) rule so our\n styles win by source order. Without this, rdp overrides the selected\n background on hover because we remap day_selected and its :not() always matches. */\n.calendarDayButton.calendarSelected {\n background: var(--osdk-datetime-calendar-selected-bg);\n color: var(--osdk-datetime-calendar-selected-color);\n\n &:hover:not([disabled]) {\n background: var(--osdk-datetime-calendar-selected-hover-bg);\n color: var(--osdk-datetime-calendar-selected-color);\n }\n\n &:active:not([disabled]) {\n color: var(--osdk-datetime-calendar-selected-color);\n }\n}\n\n.calendarDayButton.calendarToday {\n font-weight: var(--osdk-datetime-calendar-today-font-weight);\n}\n\n.calendarDayButton.calendarOutside {\n color: var(--osdk-datetime-calendar-outside-color);\n opacity: var(--osdk-datetime-calendar-outside-opacity);\n}\n\n.calendarDayButton.calendarDisabled {\n color: var(--osdk-datetime-calendar-disabled-color);\n cursor: default;\n\n &:hover {\n background: transparent;\n }\n}\n\n/* Range selection styles — shared base for start/end endpoints */\n.calendarRangeEndpoint {\n background: var(--osdk-datetime-calendar-selected-bg);\n color: var(--osdk-datetime-calendar-selected-color);\n\n &:hover:not([disabled]) {\n background: var(--osdk-datetime-calendar-selected-hover-bg);\n color: var(--osdk-datetime-calendar-selected-color);\n }\n\n &:active:not([disabled]) {\n color: var(--osdk-datetime-calendar-selected-color);\n }\n}\n\n\n/* Range-middle needs .calendarDayButton prefix to match specificity of\n .calendarDayButton.calendarSelected (rdp applies both to range-middle days). */\n.calendarDayButton.calendarRangeMiddle {\n background: var(--osdk-datetime-calendar-range-middle-bg);\n color: var(--osdk-datetime-calendar-day-color);\n border-radius: 0;\n\n &:hover {\n background: var(--osdk-datetime-calendar-range-middle-bg);\n color: var(--osdk-datetime-calendar-day-hover-color);\n filter: brightness(0.95);\n }\n\n &:active {\n color: var(--osdk-datetime-calendar-day-hover-color);\n }\n}\n\n.calendarHidden {\n visibility: hidden;\n}\n\n/* Calendar navigation — dissolve the nav wrapper so buttons become\n direct flex children of the caption row. This lets order: -1 move\n the prev button before the dropdowns while next stays after. */\n.calendarNav {\n display: contents;\n}\n\n/* Shared nav button base — small, matching dropdown caret scale */\n.calendarNavButton {\n display: inline-flex;\n align-items: center;\n justify-content: center;\n width: var(--osdk-datetime-calendar-nav-button-size);\n height: var(--osdk-datetime-calendar-nav-button-size);\n border: none;\n background: transparent;\n cursor: pointer;\n border-radius: var(--osdk-datetime-calendar-nav-button-border-radius);\n padding: 0;\n color: inherit;\n\n &:hover {\n background: var(--osdk-datetime-calendar-nav-button-hover-bg);\n }\n\n &:disabled {\n color: var(--osdk-datetime-calendar-nav-disabled-color);\n cursor: default;\n opacity: 1; /* Override browser default disabled opacity */\n\n &:hover {\n background: transparent;\n }\n }\n\n &:focus-visible {\n outline: var(--osdk-datetime-calendar-focus-outline);\n outline-offset: -1px;\n }\n}\n\n/* Hide the default SVG chevron icon — Blueprint icons rendered inline instead */\n.calendarChevron {\n display: none;\n}\n\n.calendarNavPrev {\n order: -1;\n}\n\n.calendarMonthCaption {\n display: flex;\n align-items: center;\n justify-content: center;\n min-height: var(--osdk-datetime-calendar-nav-button-size);\n}\n\n/* Visually hidden — used for accessibility-only text (caption label, dropdown labels) */\n.calendarVhidden {\n position: absolute;\n width: 1px;\n height: 1px;\n overflow: hidden;\n clip-path: inset(50%);\n white-space: nowrap;\n}\n\n\n/* Caption dropdowns container */\n.calendarCaptionDropdowns {\n display: flex;\n align-items: center;\n justify-content: center;\n gap: var(--osdk-datetime-calendar-caption-gap);\n}\n\n/* Month/year selects — borderless, matching caption text weight */\n.calendarDropdown {\n font-family: var(--osdk-datetime-calendar-font-family);\n font-size: var(--osdk-datetime-calendar-caption-font-size);\n font-weight: var(--osdk-datetime-calendar-caption-font-weight);\n color: inherit;\n background: transparent;\n border: none;\n padding: var(--osdk-datetime-calendar-dropdown-padding);\n cursor: pointer;\n border-radius: var(--osdk-datetime-calendar-dropdown-border-radius);\n\n &:focus-visible {\n outline: var(--osdk-datetime-calendar-focus-outline);\n outline-offset: 1px;\n }\n}\n\n\n/* Footer — content rendered inside DayPicker's <tfoot> (constrained by the table). */\n.calendarFooter {\n padding-top: var(--osdk-time-picker-padding-top);\n margin-top: var(--osdk-time-picker-margin-top);\n border-top: var(--osdk-time-picker-border-top);\n}\n\n","/* TimePicker — bare time input. Layout (spacing, borders) owned by the parent. */\n\n.osdkTimePickerInput {\n width: 100%;\n font-family: var(--osdk-time-picker-input-font-family);\n font-size: var(--osdk-time-picker-input-font-size);\n padding: var(--osdk-time-picker-input-padding);\n border: var(--osdk-time-picker-input-border);\n border-radius: var(--osdk-time-picker-input-border-radius);\n background: var(--osdk-time-picker-input-bg);\n color: var(--osdk-time-picker-input-color);\n box-sizing: border-box;\n\n &:focus {\n border-color: var(--osdk-time-picker-input-border-color-focus);\n outline: var(--osdk-time-picker-input-focus-outline);\n outline-offset: var(--osdk-time-picker-input-focus-offset);\n }\n}\n","/* DatetimePickerField — component-specific overrides.\n Wrapper doubles as Popover.Trigger — suppress its own outline since\n :focus-within handles the focus indicator when the inner input is focused. */\n.osdkDatetimeInputWrapper {\n outline: none;\n}\n\n/* Time footer — rendered as a popover sibling (not a DayPicker tfoot) so the\n border-top can span the full popover width via negative margins. */\n.osdkDatetimeTimeFooter {\n padding-top: var(--osdk-time-picker-padding-top);\n padding-left: var(--osdk-datetime-popover-padding);\n padding-right: var(--osdk-datetime-popover-padding);\n margin-top: var(--osdk-time-picker-margin-top);\n margin-left: calc(var(--osdk-datetime-popover-padding) * -1);\n margin-right: calc(var(--osdk-datetime-popover-padding) * -1);\n border-top: var(--osdk-time-picker-border-top);\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/* TODO: Extract each variable into its tokens file and map to default value there */\n\n.osdkComboboxTrigger {\n display: inline-flex;\n align-items: center;\n justify-content: space-between;\n gap: var(--osdk-combobox-trigger-spacing, var(--osdk-surface-spacing));\n width: 100%;\n min-height: var(--osdk-combobox-trigger-min-height, 30px);\n padding: var(\n --osdk-combobox-trigger-padding,\n calc(var(--osdk-surface-spacing) * 1.5)\n calc(var(--osdk-surface-spacing) * 2.5)\n );\n cursor: pointer;\n border-radius: var(\n --osdk-combobox-trigger-border-radius,\n var(--osdk-surface-border-radius)\n );\n border: var(\n --osdk-combobox-trigger-border-width,\n var(--osdk-surface-border-width)\n )\n solid\n var(\n --osdk-combobox-trigger-border-color,\n var(--osdk-surface-border-color-default)\n );\n background-color: var(\n --osdk-combobox-trigger-bg,\n var(--osdk-surface-background-color-default-rest)\n );\n color: var(\n --osdk-combobox-trigger-color,\n var(--osdk-typography-color-default-rest)\n );\n font-family: var(\n --osdk-combobox-font-family,\n var(--osdk-typography-family-default)\n );\n font-size: var(\n --osdk-combobox-font-size,\n var(--osdk-typography-size-body-medium)\n );\n line-height: var(\n --osdk-combobox-line-height,\n var(--osdk-typography-line-height-default)\n );\n transition:\n background-color\n var(\n --osdk-combobox-transition-duration,\n var(--osdk-emphasis-transition-duration)\n )\n var(--osdk-combobox-transition-ease, var(--osdk-emphasis-ease-default)),\n border-color\n var(\n --osdk-combobox-transition-duration,\n var(--osdk-emphasis-transition-duration)\n )\n var(--osdk-combobox-transition-ease, var(--osdk-emphasis-ease-default));\n\n &:hover {\n background-color: var(\n --osdk-combobox-trigger-bg-hover,\n var(--osdk-surface-background-color-default-hover)\n );\n }\n\n &:active {\n background-color: var(\n --osdk-combobox-trigger-bg-active,\n var(--osdk-surface-background-color-default-active)\n );\n }\n\n &:focus-visible {\n outline: var(\n --osdk-combobox-trigger-focus-width,\n var(--osdk-emphasis-focus-width)\n )\n solid\n var(--osdk-combobox-trigger-focus-color, var(--osdk-emphasis-focus-color));\n outline-offset: var(\n --osdk-combobox-trigger-focus-offset,\n var(--osdk-emphasis-focus-offset)\n );\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(\n --osdk-combobox-trigger-border-color-active,\n var(--osdk-intent-primary-rest)\n );\n }\n}\n\n/* Multi-select trigger: no hover/active background since chips are interactive */\n.osdkComboboxTriggerMulti {\n &:hover {\n background-color: var(\n --osdk-combobox-trigger-bg,\n var(--osdk-surface-background-color-default-rest)\n );\n }\n\n &:active {\n background-color: var(\n --osdk-combobox-trigger-bg,\n var(--osdk-surface-background-color-default-rest)\n );\n }\n}\n\n.osdkComboboxValueContainer {\n flex: 1;\n display: grid;\n min-width: 0;\n text-align: start;\n\n & > * {\n grid-area: 1 / 1;\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n }\n}\n\n.osdkComboboxPlaceholder {\n text-align: start;\n color: var(\n --osdk-combobox-placeholder-color,\n var(--osdk-typography-color-muted)\n );\n pointer-events: none;\n}\n\n.osdkComboboxIcon {\n display: flex;\n align-items: center;\n justify-content: center;\n line-height: 0;\n color: var(--osdk-combobox-icon-color, var(--osdk-iconography-color-muted));\n flex-shrink: 0;\n transition: transform\n var(\n --osdk-combobox-transition-duration,\n var(--osdk-emphasis-transition-duration)\n )\n var(--osdk-combobox-transition-ease, var(--osdk-emphasis-ease-default));\n\n [data-popup-open] > & {\n transform: rotate(180deg);\n }\n}\n\n.osdkComboboxInputWrapper {\n display: flex;\n flex-wrap: wrap;\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 border-radius: var(\n --osdk-combobox-border-radius,\n var(--osdk-surface-border-radius)\n );\n border: var(--osdk-combobox-border-width, var(--osdk-surface-border-width))\n solid\n var(--osdk-combobox-border-color, var(--osdk-surface-border-color-default));\n background-color: var(\n --osdk-combobox-input-bg,\n var(--osdk-surface-background-color-default-rest)\n );\n transition: border-color\n var(\n --osdk-combobox-transition-duration,\n var(--osdk-emphasis-transition-duration)\n )\n var(--osdk-combobox-transition-ease, var(--osdk-emphasis-ease-default));\n\n &:focus-within {\n border-color: var(\n --osdk-combobox-focus-border-color,\n var(--osdk-intent-primary-rest)\n );\n outline: var(--osdk-combobox-focus-width, var(--osdk-emphasis-focus-width))\n solid var(--osdk-combobox-focus-color, var(--osdk-emphasis-focus-color));\n outline-offset: var(\n --osdk-combobox-focus-offset,\n var(--osdk-emphasis-focus-offset)\n );\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 width: 100%;\n text-overflow: ellipsis;\n padding: var(\n --osdk-combobox-input-padding,\n calc(var(--osdk-surface-spacing) * 1.5)\n calc(var(--osdk-surface-spacing) * 2)\n );\n border-radius: var(\n --osdk-combobox-border-radius,\n var(--osdk-surface-border-radius)\n );\n border: var(--osdk-combobox-border-width, var(--osdk-surface-border-width))\n solid\n var(--osdk-combobox-border-color, var(--osdk-surface-border-color-default));\n background-color: var(\n --osdk-combobox-input-bg,\n var(--osdk-surface-background-color-default-rest)\n );\n transition: border-color\n var(\n --osdk-combobox-transition-duration,\n var(--osdk-emphasis-transition-duration)\n )\n var(--osdk-combobox-transition-ease, var(--osdk-emphasis-ease-default));\n\n &:focus {\n border-color: var(\n --osdk-combobox-focus-border-color,\n var(--osdk-intent-primary-rest)\n );\n outline: none;\n }\n\n .osdkComboboxInputWrapper & {\n padding: 0;\n border: none;\n border-radius: 0;\n background: transparent;\n\n &:focus {\n border-color: unset;\n outline: none;\n outline-offset: unset;\n }\n }\n font-family: var(\n --osdk-combobox-font-family,\n var(--osdk-typography-family-default)\n );\n font-size: var(\n --osdk-combobox-font-size,\n var(--osdk-typography-size-body-medium)\n );\n line-height: var(\n --osdk-combobox-line-height,\n var(--osdk-typography-line-height-default)\n );\n color: var(\n --osdk-combobox-input-color,\n var(--osdk-typography-color-default-rest)\n );\n outline: none;\n\n &::placeholder {\n color: var(\n --osdk-combobox-placeholder-color,\n var(--osdk-typography-color-muted)\n );\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(\n var(--osdk-combobox-spacing, var(--osdk-surface-spacing)) * 1.5\n );\n border-radius: var(\n --osdk-combobox-border-radius,\n var(--osdk-surface-border-radius)\n );\n border: var(--osdk-combobox-border-width, var(--osdk-surface-border-width))\n solid\n var(--osdk-combobox-border-color, var(--osdk-surface-border-color-default));\n background-color: var(\n --osdk-combobox-popup-bg,\n var(--osdk-surface-background-color-default-rest)\n );\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 gap: calc(var(--osdk-combobox-spacing, var(--osdk-surface-spacing)) * 1.5);\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(\n --osdk-combobox-border-radius,\n var(--osdk-surface-border-radius)\n );\n cursor: pointer;\n font-family: var(\n --osdk-combobox-font-family,\n var(--osdk-typography-family-default)\n );\n font-size: var(\n --osdk-combobox-font-size,\n var(--osdk-typography-size-body-medium)\n );\n line-height: var(\n --osdk-combobox-line-height,\n var(--osdk-typography-line-height-default)\n );\n color: var(\n --osdk-combobox-item-color,\n var(--osdk-typography-color-default-rest)\n );\n transition: background-color\n var(\n --osdk-combobox-transition-duration,\n var(--osdk-emphasis-transition-duration)\n )\n var(--osdk-combobox-transition-ease, var(--osdk-emphasis-ease-default));\n\n &[data-highlighted] {\n background-color: var(\n --osdk-combobox-item-bg-highlighted,\n var(--osdk-surface-background-color-default-hover)\n );\n outline: none;\n }\n\n &[data-selected] {\n background-color: var(\n --osdk-combobox-item-bg-selected,\n var(--osdk-surface-layer-primary)\n );\n color: var(\n --osdk-combobox-item-color-selected,\n var(--osdk-intent-primary-rest)\n );\n }\n\n &[data-disabled] {\n cursor: not-allowed;\n opacity: var(--osdk-disabled-opacity, 0.5);\n }\n}\n\n.osdkComboboxItemIndicator {\n display: flex;\n align-items: center;\n justify-content: center;\n width: calc(var(--osdk-combobox-spacing, var(--osdk-surface-spacing)) * 4);\n flex-shrink: 0;\n color: var(\n --osdk-combobox-item-color-selected,\n var(--osdk-intent-primary-rest)\n );\n visibility: hidden;\n\n &[data-selected] {\n visibility: visible;\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(\n var(--osdk-combobox-spacing, var(--osdk-surface-spacing)) * 2\n );\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(\n --osdk-combobox-border-radius,\n var(--osdk-surface-border-radius)\n );\n background-color: var(\n --osdk-combobox-chip-bg,\n var(--osdk-surface-background-color-default-hover)\n );\n font-family: var(\n --osdk-combobox-font-family,\n var(--osdk-typography-family-default)\n );\n font-size: var(\n --osdk-combobox-chip-font-size,\n var(--osdk-typography-size-body-small)\n );\n line-height: var(\n --osdk-combobox-line-height,\n var(--osdk-typography-line-height-default)\n );\n color: var(\n --osdk-combobox-chip-color,\n var(--osdk-typography-color-default-rest)\n );\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(\n --osdk-combobox-chip-remove-color,\n var(--osdk-iconography-color-muted)\n );\n transition: color\n var(\n --osdk-combobox-transition-duration,\n var(--osdk-emphasis-transition-duration)\n )\n var(--osdk-combobox-transition-ease, var(--osdk-emphasis-ease-default));\n\n &:hover {\n color: var(\n --osdk-combobox-chip-remove-color-hover,\n var(--osdk-typography-color-default-rest)\n );\n }\n}\n\n.osdkComboboxClear {\n display: flex;\n align-items: center;\n justify-content: center;\n margin: 0;\n padding: 0;\n line-height: 0;\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(\n --osdk-combobox-border-radius,\n var(--osdk-surface-border-radius)\n );\n transition:\n color\n var(\n --osdk-combobox-transition-duration,\n var(--osdk-emphasis-transition-duration)\n )\n var(--osdk-combobox-transition-ease, var(--osdk-emphasis-ease-default)),\n background-color\n var(\n --osdk-combobox-transition-duration,\n var(--osdk-emphasis-transition-duration)\n )\n var(--osdk-combobox-transition-ease, var(--osdk-emphasis-ease-default));\n\n &:hover {\n color: var(\n --osdk-combobox-clear-color-hover,\n var(--osdk-typography-color-default-rest)\n );\n background-color: var(\n --osdk-combobox-clear-bg-hover,\n var(--osdk-surface-background-color-default-hover)\n );\n }\n}\n\n.osdkComboboxList {\n display: flex;\n flex-direction: column;\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(\n --osdk-combobox-font-family,\n var(--osdk-typography-family-default)\n );\n font-size: var(\n --osdk-combobox-font-size,\n var(--osdk-typography-size-body-medium)\n );\n\n &:empty {\n display: none;\n }\n}\n\n.osdkComboboxItemCheckbox {\n display: flex;\n align-items: center;\n justify-content: center;\n width: calc(var(--osdk-combobox-spacing, var(--osdk-surface-spacing)) * 4);\n height: calc(var(--osdk-combobox-spacing, var(--osdk-surface-spacing)) * 4);\n flex-shrink: 0;\n border-radius: var(\n --osdk-combobox-checkbox-border-radius,\n var(--osdk-surface-border-radius)\n );\n border: var(\n --osdk-combobox-checkbox-border-width,\n var(--osdk-surface-border-width)\n )\n solid\n var(\n --osdk-combobox-checkbox-border-color,\n var(--osdk-surface-border-color-default)\n );\n color: transparent;\n background-color: var(\n --osdk-combobox-checkbox-bg,\n var(--osdk-surface-background-color-default-rest)\n );\n transition:\n background-color\n var(\n --osdk-combobox-transition-duration,\n var(--osdk-emphasis-transition-duration)\n )\n var(--osdk-combobox-transition-ease, var(--osdk-emphasis-ease-default)),\n color\n var(\n --osdk-combobox-transition-duration,\n var(--osdk-emphasis-transition-duration)\n )\n var(--osdk-combobox-transition-ease, var(--osdk-emphasis-ease-default));\n\n &[data-selected] {\n background-color: var(\n --osdk-combobox-checkbox-bg-checked,\n var(--osdk-intent-primary-rest)\n );\n border-color: var(\n --osdk-combobox-checkbox-border-color-checked,\n var(--osdk-intent-primary-rest)\n );\n color: var(\n --osdk-combobox-checkbox-color-checked,\n var(--osdk-surface-background-color-default-rest)\n );\n }\n}\n\n.osdkComboboxTriggerChips {\n display: flex;\n flex-wrap: wrap;\n gap: calc(var(--osdk-combobox-spacing, var(--osdk-surface-spacing)) * 1);\n grid-area: 1 / 1;\n align-items: center;\n}\n\n.osdkComboboxTriggerChip {\n display: inline-flex;\n align-items: center;\n gap: calc(var(--osdk-combobox-spacing, var(--osdk-surface-spacing)) * 1);\n padding: calc(var(--osdk-combobox-spacing, var(--osdk-surface-spacing)) * 1)\n calc(var(--osdk-combobox-spacing, var(--osdk-surface-spacing)) * 1.5);\n border-radius: var(\n --osdk-combobox-border-radius,\n var(--osdk-surface-border-radius)\n );\n background-color: var(\n --osdk-combobox-chip-bg,\n var(--osdk-surface-background-color-default-hover)\n );\n font-size: var(\n --osdk-combobox-chip-font-size,\n var(--osdk-typography-size-body-small)\n );\n line-height: 1;\n color: var(\n --osdk-combobox-chip-color,\n var(--osdk-typography-color-default-rest)\n );\n white-space: nowrap;\n}\n\n.osdkComboboxTriggerChipRemove {\n display: flex;\n align-items: center;\n justify-content: center;\n padding: 0;\n margin: 0;\n border: none;\n background: transparent;\n cursor: pointer;\n line-height: 0;\n color: var(\n --osdk-combobox-chip-remove-color,\n var(--osdk-iconography-color-muted)\n );\n\n &:hover {\n color: var(\n --osdk-combobox-chip-remove-color-hover,\n var(--osdk-typography-color-default-rest)\n );\n }\n}\n\n.osdkComboboxPopupSearchInput {\n position: sticky;\n inset-block-start: 0;\n /* Keeps the sticky search input above scrolled list items */\n z-index: 1;\n background-color: var(\n --osdk-combobox-popup-bg,\n var(--osdk-surface-background-color-default-rest)\n );\n margin-block-end: calc(\n var(--osdk-combobox-spacing, var(--osdk-surface-spacing)) * 1.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/* TODO: Extract each variable into its tokens file and map to default value there */\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: var(\n --osdk-select-trigger-padding,\n calc(var(--osdk-surface-spacing) * 1.5)\n calc(var(--osdk-surface-spacing) * 2.5)\n );\n cursor: pointer;\n border-radius: var(\n --osdk-select-border-radius,\n var(--osdk-surface-border-radius)\n );\n border: var(--osdk-select-border-width, var(--osdk-surface-border-width))\n solid\n var(--osdk-select-border-color, var(--osdk-surface-border-color-default));\n background-color: var(\n --osdk-select-trigger-bg,\n var(--osdk-surface-background-color-default-rest)\n );\n color: var(\n --osdk-select-trigger-color,\n var(--osdk-typography-color-default-rest)\n );\n font-family: var(\n --osdk-select-font-family,\n var(--osdk-typography-family-default)\n );\n font-size: var(\n --osdk-select-font-size,\n var(--osdk-typography-size-body-medium)\n );\n line-height: var(\n --osdk-select-line-height,\n var(--osdk-typography-line-height-default)\n );\n transition:\n background-color\n var(\n --osdk-select-transition-duration,\n var(--osdk-emphasis-transition-duration)\n )\n var(--osdk-select-transition-ease, var(--osdk-emphasis-ease-default)),\n border-color\n var(\n --osdk-select-transition-duration,\n var(--osdk-emphasis-transition-duration)\n )\n var(--osdk-select-transition-ease, var(--osdk-emphasis-ease-default));\n\n &:hover {\n background-color: var(\n --osdk-select-trigger-bg-hover,\n var(--osdk-surface-background-color-default-hover)\n );\n }\n\n &:active {\n background-color: var(\n --osdk-select-trigger-bg-active,\n var(--osdk-surface-background-color-default-active)\n );\n }\n\n &:focus-visible {\n outline: var(--osdk-select-focus-width, var(--osdk-emphasis-focus-width))\n solid var(--osdk-select-focus-color, var(--osdk-emphasis-focus-color));\n outline-offset: var(\n --osdk-select-focus-offset,\n var(--osdk-emphasis-focus-offset)\n );\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(\n --osdk-select-border-color-active,\n var(--osdk-intent-primary-rest)\n );\n }\n}\n\n.osdkSelectValueContainer {\n flex: 1;\n display: grid;\n min-width: 0;\n\n & > * {\n grid-area: 1 / 1;\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n }\n}\n\n.osdkSelectValue {\n text-align: left;\n}\n\n.osdkSelectPlaceholder {\n text-align: left;\n color: var(\n --osdk-select-placeholder-color,\n var(--osdk-typography-color-muted)\n );\n pointer-events: none;\n}\n\n.osdkSelectValue:not([data-placeholder]) ~ .osdkSelectPlaceholder {\n display: none;\n}\n\n.osdkSelectIcon {\n display: flex;\n align-items: center;\n justify-content: center;\n line-height: 0;\n color: var(--osdk-select-icon-color, var(--osdk-iconography-color-muted));\n flex-shrink: 0;\n transition: transform\n var(\n --osdk-select-transition-duration,\n var(--osdk-emphasis-transition-duration)\n )\n var(--osdk-select-transition-ease, var(--osdk-emphasis-ease-default));\n\n [data-popup-open] > & {\n transform: rotate(180deg);\n }\n}\n\n.osdkSelectClear {\n display: flex;\n align-items: center;\n justify-content: center;\n margin: 0;\n padding: 0;\n line-height: 0;\n border: none;\n background: transparent;\n cursor: pointer;\n flex-shrink: 0;\n color: var(--osdk-select-clear-color, var(--osdk-iconography-color-muted));\n border-radius: var(\n --osdk-select-border-radius,\n var(--osdk-surface-border-radius)\n );\n transition:\n color\n var(\n --osdk-select-transition-duration,\n var(--osdk-emphasis-transition-duration)\n )\n var(--osdk-select-transition-ease, var(--osdk-emphasis-ease-default)),\n background-color\n var(\n --osdk-select-transition-duration,\n var(--osdk-emphasis-transition-duration)\n )\n var(--osdk-select-transition-ease, var(--osdk-emphasis-ease-default));\n\n &:hover {\n color: var(\n --osdk-select-clear-color-hover,\n var(--osdk-typography-color-default-rest)\n );\n background-color: var(\n --osdk-select-clear-bg-hover,\n var(--osdk-surface-background-color-default-hover)\n );\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 border-radius: var(\n --osdk-select-border-radius,\n var(--osdk-surface-border-radius)\n );\n border: var(--osdk-select-border-width, var(--osdk-surface-border-width))\n solid\n var(--osdk-select-border-color, var(--osdk-surface-border-color-default));\n background-color: var(\n --osdk-select-popup-bg,\n var(--osdk-surface-background-color-default-rest)\n );\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(\n --osdk-select-border-radius,\n var(--osdk-surface-border-radius)\n );\n cursor: pointer;\n font-family: var(\n --osdk-select-font-family,\n var(--osdk-typography-family-default)\n );\n font-size: var(\n --osdk-select-font-size,\n var(--osdk-typography-size-body-medium)\n );\n line-height: var(\n --osdk-select-line-height,\n var(--osdk-typography-line-height-default)\n );\n color: var(\n --osdk-select-item-color,\n var(--osdk-typography-color-default-rest)\n );\n transition: background-color\n var(\n --osdk-select-transition-duration,\n var(--osdk-emphasis-transition-duration)\n )\n var(--osdk-select-transition-ease, var(--osdk-emphasis-ease-default));\n\n &[data-highlighted] {\n background-color: var(\n --osdk-select-item-bg-highlighted,\n var(--osdk-surface-background-color-default-hover)\n );\n outline: none;\n }\n\n &[data-selected] {\n background-color: var(\n --osdk-select-item-bg-selected,\n var(--osdk-surface-layer-primary)\n );\n color: var(\n --osdk-select-item-color-selected,\n var(--osdk-intent-primary-rest)\n );\n }\n\n &[data-disabled] {\n cursor: not-allowed;\n opacity: var(--osdk-disabled-opacity, 0.5);\n }\n}\n","/*\n * Copyright 2026 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/* Outer wrapper — looks like an input field */\n.osdkFilePickerTrigger {\n display: flex;\n align-items: center;\n width: 100%;\n height: var(--osdk-file-picker-trigger-height);\n border: var(--osdk-file-picker-trigger-border);\n border-radius: var(--osdk-file-picker-trigger-border-radius);\n background: var(--osdk-file-picker-trigger-bg);\n font-family: var(--osdk-file-picker-trigger-font-family);\n font-size: var(--osdk-file-picker-trigger-font-size);\n box-sizing: border-box;\n overflow: hidden;\n transition:\n background-color var(--osdk-file-picker-transition-duration)\n var(--osdk-file-picker-transition-ease),\n border-color var(--osdk-file-picker-transition-duration)\n var(--osdk-file-picker-transition-ease);\n\n &:hover {\n background: var(--osdk-file-picker-trigger-bg-hover);\n }\n\n &:focus-visible {\n border-color: var(--osdk-file-picker-trigger-border-color-focus);\n outline: var(--osdk-file-picker-trigger-focus-width) solid\n var(--osdk-file-picker-trigger-focus-color);\n outline-offset: var(--osdk-file-picker-trigger-focus-offset);\n }\n\n &[aria-invalid] {\n border-color: var(--osdk-file-picker-trigger-border-color-error);\n }\n}\n\n/* display: none fully removes the input from the a11y tree, avoiding\n nested-interactive inside the role=\"button\" trigger. Programmatic\n .click() still opens the file dialog. */\n.osdkFilePickerHiddenInput {\n display: none;\n}\n\n/* File name text (left section) */\n.osdkFilePickerText {\n flex: 1;\n padding: var(--osdk-file-picker-trigger-padding);\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n text-align: left;\n color: var(--osdk-file-picker-trigger-color);\n cursor: pointer;\n background: none;\n border: none;\n font-family: inherit;\n font-size: inherit;\n}\n\n.osdkFilePickerPlaceholder {\n color: var(--osdk-file-picker-trigger-placeholder-color);\n}\n\n/* Clear ✕ button */\n.osdkFilePickerClear {\n display: flex;\n align-items: center;\n justify-content: center;\n flex-shrink: 0;\n width: var(--osdk-file-picker-clear-size);\n height: var(--osdk-file-picker-clear-size);\n margin: var(--osdk-file-picker-clear-margin);\n padding: 0;\n border: none;\n background: none;\n color: var(--osdk-file-picker-clear-color);\n cursor: pointer;\n transition: color var(--osdk-file-picker-transition-duration)\n var(--osdk-file-picker-transition-ease);\n\n &:hover {\n color: var(--osdk-file-picker-clear-color-hover);\n }\n\n &:focus-visible {\n outline: var(--osdk-file-picker-trigger-focus-width) solid\n var(--osdk-file-picker-trigger-focus-color);\n border-radius: var(--osdk-surface-border-radius);\n }\n}\n\n/* Browse label (right section) */\n.osdkFilePickerBrowse {\n flex-shrink: 0;\n align-self: stretch;\n display: flex;\n align-items: center;\n padding: var(--osdk-file-picker-browse-padding);\n border-left: var(--osdk-file-picker-browse-border-left);\n background: var(--osdk-file-picker-browse-bg);\n color: var(--osdk-file-picker-browse-color);\n font-family: var(--osdk-file-picker-trigger-font-family);\n font-size: var(--osdk-file-picker-trigger-font-size);\n pointer-events: none;\n transition: background-color var(--osdk-file-picker-transition-duration)\n var(--osdk-file-picker-transition-ease);\n}\n\n.osdkFilePickerTrigger:hover .osdkFilePickerBrowse {\n background-color: var(--osdk-file-picker-browse-bg-hover);\n}\n\n.osdkFilePickerTrigger:active .osdkFilePickerBrowse {\n background-color: var(--osdk-file-picker-browse-bg-active);\n}\n","/*\n * Copyright 2026 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.osdkNumberInputWrapper {\n display: flex;\n border-radius: var(--osdk-input-border-radius);\n border: var(--osdk-input-border-width) solid var(--osdk-input-border-color);\n background-color: var(--osdk-input-bg);\n transition:\n background-color var(--osdk-input-transition-duration)\n var(--osdk-input-transition-ease),\n border-color var(--osdk-input-transition-duration)\n var(--osdk-input-transition-ease);\n\n &:hover {\n background-color: var(--osdk-input-bg-hover);\n }\n\n &:focus-within {\n outline: var(--osdk-input-focus-width) solid var(--osdk-input-focus-color);\n outline-offset: var(--osdk-input-focus-offset);\n border-color: var(--osdk-input-border-color-focus);\n }\n\n &[aria-invalid] {\n border-color: var(--osdk-input-border-color-error);\n }\n}\n\n.osdkNumberInputField {\n flex: 1;\n min-width: 0;\n min-height: var(--osdk-input-min-height);\n padding: var(--osdk-input-padding);\n border: none;\n border-radius: var(--osdk-input-border-radius) 0 0\n var(--osdk-input-border-radius);\n background: transparent;\n color: var(--osdk-input-color);\n font-family: var(--osdk-input-font-family);\n font-size: var(--osdk-input-font-size);\n line-height: var(\n --osdk-input-line-height,\n var(--osdk-typography-line-height-default)\n );\n\n &::placeholder {\n color: var(--osdk-input-placeholder-color);\n }\n\n &:focus-visible {\n outline: none;\n }\n}\n\n.osdkNumberInputStepper {\n display: flex;\n flex-direction: column;\n border-left: var(--osdk-input-border-width) solid\n var(--osdk-input-border-color);\n}\n\n.osdkNumberInputStepButton {\n display: flex;\n align-items: center;\n justify-content: center;\n flex: 1;\n padding: 0 calc(var(--osdk-surface-spacing) * 1.5);\n border: none;\n background: transparent;\n color: var(--osdk-input-color);\n cursor: pointer;\n line-height: 0;\n\n &:hover {\n background-color: var(--osdk-input-bg-hover);\n }\n\n &:active {\n background-color: var(--osdk-input-border-color);\n }\n\n & + & {\n border-top: var(--osdk-input-border-width) solid\n var(--osdk-input-border-color);\n }\n}\n","/*\n * Copyright 2026 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.osdkObjectSetField {\n display: flex;\n align-items: center;\n gap: var(--osdk-object-set-gap);\n min-height: var(--osdk-object-set-min-height);\n padding: var(--osdk-object-set-padding);\n color: var(--osdk-object-set-color);\n font-family: var(--osdk-object-set-font-family);\n font-size: var(--osdk-object-set-font-size);\n line-height: var(--osdk-object-set-line-height);\n}\n\n.osdkObjectSetFieldEmpty {\n color: var(--osdk-object-set-placeholder-color);\n}\n\n.osdkObjectSetFieldError {\n color: var(--osdk-object-set-error-color);\n}\n\n.osdkObjectSetIconSkeleton {\n width: var(--osdk-object-set-icon-skeleton-width);\n align-self: stretch;\n}\n\n.osdkObjectSetLabelSkeleton {\n width: var(--osdk-object-set-label-skeleton-width);\n align-self: stretch;\n}\n","/*\n * Copyright 2026 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.osdkRadioGroup {\n display: flex;\n flex-direction: column;\n gap: var(--osdk-radio-gap);\n\n &[data-orientation=\"horizontal\"] {\n flex-direction: row;\n flex-wrap: wrap;\n }\n}\n\n.osdkRadioItem {\n display: flex;\n align-items: center;\n gap: var(--osdk-radio-item-gap);\n}\n\n.osdkRadioRoot {\n display: flex;\n align-items: center;\n justify-content: center;\n width: var(--osdk-radio-size);\n height: var(--osdk-radio-size);\n border-radius: 50%;\n border: var(--osdk-radio-border);\n cursor: pointer;\n flex-shrink: 0;\n\n &[data-unchecked] {\n background-color: var(--osdk-radio-bg);\n\n &:hover {\n background-color: var(--osdk-radio-bg-hover);\n }\n }\n\n &[data-checked] {\n background-color: var(--osdk-radio-bg-checked);\n\n &:hover {\n background-color: var(--osdk-radio-bg-checked-hover);\n }\n\n &:active {\n background-color: var(--osdk-radio-bg-checked-active);\n }\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.osdkRadioIndicator {\n width: var(--osdk-radio-indicator-size);\n height: var(--osdk-radio-indicator-size);\n border-radius: 50%;\n background-color: var(--osdk-radio-indicator-color);\n\n &[data-unchecked] {\n display: none;\n }\n}\n\n.osdkRadioLabel {\n font-family: var(--osdk-typography-font-family);\n font-size: var(--osdk-typography-font-size-default);\n line-height: var(--osdk-typography-line-height-default);\n color: var(--osdk-typography-color-default);\n cursor: pointer;\n}\n","/*\n * Copyright 2026 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.osdkBaseInput {\n display: block;\n width: 100%;\n min-height: var(--osdk-input-min-height);\n padding: var(--osdk-input-padding);\n border-radius: var(--osdk-input-border-radius);\n border: var(--osdk-input-border-width) solid var(--osdk-input-border-color);\n background-color: var(--osdk-input-bg);\n color: var(--osdk-input-color);\n font-family: var(--osdk-input-font-family);\n font-size: var(--osdk-input-font-size);\n line-height: var(\n --osdk-input-line-height,\n var(--osdk-typography-line-height-default)\n );\n transition:\n background-color var(--osdk-input-transition-duration)\n var(--osdk-input-transition-ease),\n border-color var(--osdk-input-transition-duration)\n var(--osdk-input-transition-ease);\n\n &::placeholder {\n color: var(--osdk-input-placeholder-color);\n }\n\n &:hover {\n background-color: var(--osdk-input-bg-hover);\n }\n\n &:focus-visible {\n outline: var(--osdk-input-focus-width) solid var(--osdk-input-focus-color);\n outline-offset: var(--osdk-input-focus-offset);\n border-color: var(--osdk-input-border-color-focus);\n }\n\n &:disabled {\n cursor: not-allowed;\n opacity: var(--osdk-input-disabled-opacity);\n }\n\n &[aria-invalid] {\n border-color: var(--osdk-input-border-color-error);\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.osdkFormHeader {\n margin: 0;\n padding-block: var(--osdk-form-header-block-padding);\n padding-inline: var(--osdk-form-header-inline-padding);\n border-bottom: var(--osdk-surface-border-width) solid\n var(--osdk-form-header-border-color);\n font-size: var(--osdk-form-header-font-size);\n font-weight: var(--osdk-form-header-font-weight);\n color: var(--osdk-form-header-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.filterList {\n display: flex;\n flex-direction: column;\n height: 100%;\n}\n\n.filterListCollapsed {\n display: flex;\n flex-direction: column;\n align-items: center;\n width: var(--osdk-filter-list-collapsed-width);\n height: 100%;\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-surface-spacing) 0;\n gap: var(--osdk-surface-spacing);\n}\n\n.expandedContent {\n display: flex;\n flex-direction: column;\n height: 100%;\n overflow: hidden;\n background: var(--osdk-filter-list-bg);\n border: var(--osdk-filter-list-border);\n border-radius: var(--osdk-filter-list-border-radius);\n box-shadow: var(--osdk-filter-list-shadow);\n padding: var(--osdk-filter-list-padding);\n gap: var(--osdk-filter-list-gap);\n}\n\n.scrollableContent {\n display: flex;\n flex-direction: column;\n flex: 1;\n overflow-y: auto;\n min-height: 0;\n}\n\n.hiddenContent {\n display: none;\n}\n\n.expandButton {\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 color: var(--osdk-filter-header-collapse-icon-color);\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.collapsedLabel {\n writing-mode: vertical-rl;\n transform: rotate(180deg);\n font-family: var(--osdk-filter-list-collapsed-label-font-family);\n font-size: var(--osdk-filter-list-collapsed-label-font-size);\n color: var(--osdk-filter-list-collapsed-label-color);\n font-weight: var(--osdk-filter-header-font-weight);\n user-select: none;\n}\n\n.addButtonContainer {\n display: flex;\n justify-content: center;\n padding: var(--osdk-filter-list-addButton-container-padding);\n background: var(--osdk-filter-list-addButton-container-bg);\n border-top: var(--osdk-filter-list-addButton-container-border-top);\n flex-shrink: 0;\n}\n\n.addButtonContainer > * {\n flex: 1;\n}\n\n.addButton {\n display: flex;\n align-items: center;\n justify-content: center;\n font-family: var(--osdk-filter-header-font-family);\n font-size: var(--osdk-filter-header-reset-font-size);\n color: var(--osdk-typography-color-default-rest);\n background: var(--osdk-filter-header-button-bg);\n border: var(--osdk-filter-list-addButton-border);\n cursor: pointer;\n padding: var(--osdk-filter-header-reset-padding);\n min-height: var(--osdk-filter-list-addButton-height);\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.dragOverlay {\n box-shadow: var(--osdk-filter-item-drag-overlay-shadow);\n border-radius: var(--osdk-filter-item-drag-overlay-border-radius);\n background: var(--osdk-filter-item-drag-overlay-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.errorContainer {\n display: flex;\n flex-direction: column;\n align-items: flex-start;\n gap: var(--osdk-error-boundary-gap, 8px);\n padding: var(--osdk-error-boundary-padding, 8px);\n border-radius: var(--osdk-error-boundary-border-radius, 4px);\n background-color: var(--osdk-error-boundary-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-error-boundary-font-size, 13px);\n color: var(--osdk-error-boundary-text-color, var(--osdk-intent-danger-rest, #c23030));\n}\n\n.retryButton {\n padding: var(--osdk-error-boundary-button-padding, 4px 8px);\n border: var(--osdk-surface-border-width, 1px) solid var(--osdk-error-boundary-button-border-color, currentColor);\n border-radius: var(--osdk-error-boundary-button-border-radius, 3px);\n background: transparent;\n font-size: var(--osdk-error-boundary-button-font-size, 12px);\n color: var(--osdk-error-boundary-button-color, inherit);\n cursor: pointer;\n transition: background-color var(--osdk-filter-input-transition, 150ms ease);\n\n &:hover {\n background-color: var(--osdk-error-boundary-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, rgba(45, 114, 210, 0.6));\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.filterItem {\n display: flex;\n flex-direction: column;\n gap: var(--osdk-filter-item-gap);\n border-radius: var(--osdk-filter-item-border-radius);\n padding: var(--osdk-filter-item-padding);\n}\n\n.itemHeader {\n display: flex;\n align-items: center;\n}\n\n.itemLabel {\n flex: 1;\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 min-width: 0;\n overflow: hidden;\n}\n\n.dragHandle {\n display: flex;\n align-items: center;\n justify-content: center;\n padding: var(--osdk-filter-item-drag-handle-padding);\n margin-right: var(--osdk-surface-spacing);\n border: none;\n background: var(--osdk-filter-item-drag-handle-bg);\n cursor: var(--osdk-drag-handle-cursor);\n border-radius: var(--osdk-filter-item-drag-handle-border-radius);\n color: var(--osdk-filter-item-drag-handle-color);\n touch-action: none;\n\n &:hover {\n color: var(--osdk-filter-item-drag-handle-color-hover);\n background: var(--osdk-filter-item-drag-handle-bg-hover);\n }\n\n &:active {\n cursor: var(--osdk-drag-handle-cursor-active);\n }\n\n &:focus-visible {\n outline: var(--osdk-filter-input-focus-outline-width) solid var(--osdk-filter-item-drag-handle-focus-outline-color);\n outline-offset: var(--osdk-filter-input-focus-outline-offset);\n }\n}\n\n.headerActionButton {\n display: flex;\n align-items: center;\n justify-content: center;\n padding: var(--osdk-filter-item-header-action-padding);\n margin-left: calc(var(--osdk-surface-spacing) * 0.5);\n border: none;\n background: transparent;\n cursor: pointer;\n border-radius: var(--osdk-filter-item-header-action-border-radius);\n color: var(--osdk-filter-item-header-action-color);\n opacity: 0;\n transition: opacity var(--osdk-filter-header-button-transition),\n background-color var(--osdk-filter-header-button-transition);\n\n &:hover {\n color: var(--osdk-typography-color-default-rest);\n background: var(--osdk-filter-item-header-action-bg-hover);\n }\n\n &:focus-visible {\n opacity: 1;\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.filterItem:hover .headerActionButton {\n opacity: 1;\n}\n\n.headerActionButton[data-popup-open],\n.headerActionButton[aria-pressed=\"true\"] {\n opacity: 1;\n}\n\n.searchRow {\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}\n\n.searchInput {\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.searchClearButton {\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.excludeRow {\n display: flex;\n align-items: center;\n opacity: 0;\n height: 0;\n overflow: hidden;\n transition: opacity var(--osdk-filter-header-button-transition),\n height var(--osdk-filter-header-button-transition);\n\n @media (prefers-reduced-motion: reduce) {\n transition: none;\n }\n}\n\n.excludeRowVisible {\n opacity: 1;\n height: auto;\n overflow: visible;\n}\n\n.excludeCountLabel {\n font-family: var(--osdk-filter-item-exclude-dropdown-font-family);\n font-size: var(--osdk-filter-item-exclude-dropdown-font-size);\n color: var(--osdk-filter-item-exclude-dropdown-color);\n margin-left: calc(var(--osdk-surface-spacing) * 0.5);\n}\n\n.clearAllButton {\n margin-left: auto;\n background: none;\n border: none;\n cursor: pointer;\n font-family: var(--osdk-filter-item-exclude-dropdown-font-family);\n font-size: var(--osdk-filter-item-exclude-dropdown-font-size);\n color: var(--osdk-filter-item-exclude-dropdown-color);\n padding: 0;\n\n &:hover {\n text-decoration: underline;\n }\n}\n\n.dragging {\n opacity: var(--osdk-filter-item-dragging-opacity);\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: var(--osdk-filter-header-padding);\n gap: var(--osdk-filter-header-gap);\n border-bottom: var(--osdk-filter-header-border-bottom);\n flex-shrink: 0;\n}\n\n.titleContainer {\n display: flex;\n align-items: center;\n gap: var(--osdk-filter-header-titleContainer-gap);\n flex: 1;\n min-width: 0;\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.actions {\n display: flex;\n align-items: center;\n gap: var(--osdk-surface-spacing);\n\n &:empty {\n display: none;\n }\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 color: var(--osdk-filter-header-collapse-icon-color);\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.resetButton {\n display: flex;\n align-items: center;\n gap: calc(var(--osdk-surface-spacing) * 0.5);\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: var(--osdk-filter-header-reset-border);\n cursor: pointer;\n padding: var(--osdk-filter-header-reset-padding);\n border-radius: var(--osdk-filter-header-reset-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 border: var(--osdk-filter-header-reset-border-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","/*\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: calc(var(--osdk-surface-spacing) * 3);\n padding: var(--osdk-surface-spacing) calc(var(--osdk-surface-spacing) * 3);\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 2026 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.positioner {\n z-index: var(--osdk-surface-z-index-3);\n}\n\n.popup {\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.searchContainer {\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.menuItem {\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 overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n\n &:hover,\n &[data-highlighted] {\n background-color: var(--osdk-surface-background-color-default-hover);\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) * 3);\n text-align: center;\n color: var(--osdk-typography-color-muted);\n font-size: var(--osdk-typography-size-body-medium);\n}\n","/*\n * Copyright 2026 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.trigger {\n display: flex;\n align-items: center;\n justify-content: center;\n font-family: var(--osdk-filter-header-font-family);\n font-size: var(--osdk-filter-header-reset-font-size);\n color: var(--osdk-typography-color-default-rest);\n background: var(--osdk-filter-header-button-bg);\n border: var(--osdk-filter-list-addButton-border);\n cursor: pointer;\n padding: var(--osdk-filter-header-reset-padding);\n min-height: var(--osdk-filter-list-addButton-height);\n border-radius: var(--osdk-filter-header-button-border-radius);\n transition: background-color var(--osdk-filter-header-button-transition);\n width: 100%;\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.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.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 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.rangeInput {\n display: flex;\n flex-direction: column;\n gap: var(--osdk-filter-range-gap);\n min-width: 0;\n transition: opacity var(--osdk-filter-content-fade-duration);\n}\n\n.rangeInput[data-loading=\"true\"] {\n opacity: 0.5;\n}\n\n.histogramContainer {\n display: flex;\n align-items: flex-end;\n height: var(--osdk-filter-range-histogram-height);\n gap: var(--osdk-filter-range-histogram-bar-gap);\n padding-bottom: var(--osdk-filter-range-histogram-padding-bottom);\n padding-inline: var(--osdk-filter-range-histogram-padding-inline);\n overflow: hidden;\n}\n\n.histogramBar {\n flex: 1;\n background: var(--osdk-filter-range-histogram-bar-color);\n min-width: var(--osdk-filter-range-histogram-bar-min-width);\n transition: background-color var(--osdk-filter-range-histogram-bar-transition);\n}\n\n.histogramBar[data-in-range=\"true\"] {\n background: var(--osdk-filter-range-histogram-bar-active-color);\n}\n\n.rangeInputs {\n display: flex;\n align-items: flex-end;\n gap: var(--osdk-filter-range-inputs-gap);\n min-width: 0;\n}\n\n.inputWrapper {\n flex: 1;\n display: flex;\n flex-direction: column;\n gap: var(--osdk-filter-range-input-wrapper-gap);\n min-width: 0;\n}\n\n.inputLabel {\n font-family: var(--osdk-filter-range-label-font-family);\n font-size: var(--osdk-filter-range-label-font-size);\n color: var(--osdk-filter-range-label-color);\n}\n\n.input {\n font-family: var(--osdk-filter-input-font-family);\n font-size: var(--osdk-filter-input-font-size);\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 min-width: 0;\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 display: flex;\n align-items: center;\n height: calc(\n var(--osdk-filter-input-font-size) + var(--osdk-filter-input-padding) * 2\n );\n color: var(--osdk-filter-range-separator-color);\n}\n\n@media (prefers-reduced-motion: reduce) {\n .histogramContainer,\n .rangeInput {\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/* Shared message styles for filter inputs */\n.loadingMessage,\n.errorMessage,\n.emptyMessage {\n font-family: var(--osdk-filter-message-font-family);\n font-size: var(--osdk-filter-message-font-size);\n padding: var(--osdk-filter-message-padding);\n}\n\n.loadingMessage,\n.emptyMessage {\n color: var(--osdk-filter-message-color-muted);\n}\n\n.errorMessage {\n color: var(--osdk-filter-message-color-danger);\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.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.osdkCheckboxRoot {\n display: flex;\n align-items: center;\n justify-content: center;\n width: calc(\n var(--osdk-checkbox-icon-size) + var(--osdk-checkbox-padding) * 2\n );\n height: calc(\n var(--osdk-checkbox-icon-size) + var(--osdk-checkbox-padding) * 2\n );\n flex-shrink: 0;\n padding: var(--osdk-checkbox-padding);\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 &[data-excluding][data-checked] {\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-visible {\n outline: var(--osdk-focus-outline);\n outline-offset: calc(-1 * var(--osdk-focus-visible-outline-offset));\n }\n}\n\n.osdkCheckboxIndicator {\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.listogram {\n display: flex;\n flex-direction: column;\n transition: opacity var(--osdk-filter-content-fade-duration);\n}\n\n.listogram[data-loading=\"true\"] {\n opacity: 0.5;\n}\n\n@media (prefers-reduced-motion: reduce) {\n .listogram {\n transition: none;\n }\n}\n\n.container {\n display: flex;\n flex-direction: column;\n gap: var(--osdk-filter-listogram-gap);\n}\n\n.row {\n display: flex;\n align-items: center;\n gap: var(--osdk-filter-listogram-row-gap);\n padding: var(--osdk-filter-listogram-row-padding);\n border: none;\n background: transparent;\n cursor: pointer;\n border-radius: var(--osdk-filter-listogram-row-border-radius);\n text-align: left;\n width: 100%;\n transition: background-color var(--osdk-filter-listogram-row-transition);\n\n &:hover {\n background: var(--osdk-filter-listogram-row-bg-hover);\n }\n\n &:focus-visible {\n outline: var(--osdk-filter-listogram-row-focus-outline);\n outline-offset: var(--osdk-filter-listogram-row-focus-offset);\n }\n}\n\n.row[aria-pressed=\"true\"] {\n background: var(--osdk-filter-listogram-row-bg-active);\n}\n\n.label {\n flex: 1;\n font-family: var(--osdk-filter-listogram-label-font-family);\n font-size: var(--osdk-filter-listogram-label-font-size);\n color: var(--osdk-filter-listogram-label-color);\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n}\n\n.label[data-excluding] {\n text-decoration: line-through;\n}\n\n.emptyLabel {\n color: var(--osdk-filter-listogram-empty-label-color);\n font-style: var(--osdk-filter-listogram-empty-label-font-style);\n}\n\n.bar {\n width: var(--osdk-filter-listogram-bar-width);\n flex-shrink: 0;\n height: var(--osdk-filter-listogram-bar-height);\n background: var(--osdk-filter-listogram-bar-bg);\n border-radius: var(--osdk-filter-listogram-bar-border-radius);\n overflow: hidden;\n}\n\n.barFill {\n display: block;\n height: 100%;\n width: 100%;\n background: var(--osdk-filter-listogram-row-bar-color, var(--osdk-filter-listogram-bar-color));\n border-radius: var(--osdk-filter-listogram-bar-border-radius);\n transform-origin: left;\n transform: scaleX(var(--osdk-filter-listogram-bar-fill-scale, 0));\n transition: transform var(--osdk-filter-listogram-bar-fill-transition);\n}\n\n.row[aria-pressed=\"true\"] .barFill {\n background: var(--osdk-filter-listogram-row-bar-color, var(--osdk-filter-listogram-selected-color));\n}\n\n.viewAllButton {\n display: flex;\n align-items: center;\n border: none;\n background: transparent;\n cursor: pointer;\n font-family: var(--osdk-filter-listogram-label-font-family);\n font-size: var(--osdk-filter-listogram-view-all-font-size);\n color: var(--osdk-filter-listogram-view-all-color);\n padding: var(--osdk-filter-listogram-row-padding);\n text-align: left;\n\n &:hover {\n text-decoration: underline;\n }\n\n &:focus-visible {\n outline: var(--osdk-filter-listogram-row-focus-outline);\n outline-offset: var(--osdk-filter-listogram-row-focus-offset);\n }\n}\n\n.checkbox {\n display: flex;\n}\n\n.count {\n font-family: var(--osdk-filter-listogram-count-font-family);\n font-size: var(--osdk-filter-listogram-count-font-size);\n font-variant-numeric: tabular-nums;\n color: var(--osdk-filter-listogram-count-color);\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.container {\n display: flex;\n flex-direction: column;\n gap: var(--osdk-filter-listogram-gap);\n}\n\n.row {\n display: flex;\n align-items: center;\n gap: var(--osdk-filter-listogram-row-gap);\n padding: var(--osdk-filter-listogram-row-padding);\n}\n\n.flexBar {\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.multiDate {\n display: flex;\n flex-direction: column;\n gap: var(--osdk-filter-multiselect-gap);\n}\n\n.clearAll {\n font-family: var(--osdk-filter-date-clear-font-family);\n font-size: var(--osdk-filter-date-clear-font-size);\n color: var(--osdk-filter-date-clear-color);\n background: transparent;\n border: none;\n cursor: pointer;\n padding: var(--osdk-filter-date-clear-padding);\n\n &:hover {\n text-decoration: underline;\n }\n}\n\n.calendarContainer {\n display: flex;\n}\n\n.input {\n flex: 1;\n font-family: var(--osdk-filter-input-font-family);\n font-size: var(--osdk-filter-timeline-input-font-size);\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.multiSelect {\n display: flex;\n flex-direction: column;\n gap: var(--osdk-filter-multiselect-gap);\n}\n\n.itemLabel {\n flex: 1;\n min-width: 0;\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n}\n\n.itemCount {\n font-family: var(--osdk-filter-multiselect-count-font-family);\n font-size: var(--osdk-filter-multiselect-count-font-size);\n font-variant-numeric: tabular-nums;\n color: var(--osdk-filter-multiselect-count-color);\n flex-shrink: 0;\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-family: var(--osdk-filter-null-count-font-family);\n font-size: var(--osdk-filter-null-count-font-size);\n font-variant-numeric: tabular-nums;\n color: var(--osdk-filter-null-count-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.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-family: var(--osdk-filter-input-font-family);\n font-size: var(--osdk-filter-timeline-input-font-size);\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.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 flex-shrink: 0;\n}\n\n.itemLabel {\n flex: 1;\n min-width: 0;\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n}\n\n.itemCount {\n font-variant-numeric: tabular-nums;\n color: var(--osdk-typography-color-muted);\n flex-shrink: 0;\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);\n}\n\n.labels {\n display: flex;\n align-items: center;\n gap: var(--osdk-filter-timeline-labels-gap);\n font-family: var(--osdk-filter-timeline-labels-font-family);\n font-size: var(--osdk-filter-timeline-labels-font-size);\n color: var(--osdk-filter-timeline-labels-color);\n}\n\n.clearButton {\n display: flex;\n align-items: center;\n justify-content: center;\n padding: var(--osdk-filter-timeline-button-padding);\n border: none;\n background: transparent;\n cursor: pointer;\n color: var(--osdk-filter-timeline-button-color);\n border-radius: var(--osdk-filter-timeline-button-border-radius);\n margin-left: auto;\n\n &:hover {\n background: var(--osdk-filter-timeline-button-bg-hover);\n color: var(--osdk-filter-timeline-button-color-hover);\n }\n}\n\n.brush {\n display: flex;\n align-items: center;\n gap: var(--osdk-filter-timeline-labels-gap);\n}\n\n.brush span {\n color: var(--osdk-filter-timeline-brush-color);\n}\n\n.input {\n flex: 1;\n font-family: var(--osdk-filter-input-font-family);\n font-size: var(--osdk-filter-timeline-input-font-size);\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.excludeDropdownContainer {\n display: flex;\n align-items: center;\n}\n\n.trigger {\n display: inline-flex;\n align-items: center;\n gap: calc(var(--osdk-surface-spacing) * 0.5);\n border: none;\n background: transparent;\n cursor: pointer;\n font-family: var(--osdk-filter-item-exclude-dropdown-font-family);\n font-size: var(--osdk-filter-item-exclude-dropdown-font-size);\n color: var(--osdk-filter-item-exclude-dropdown-trigger-color);\n padding: calc(var(--osdk-surface-spacing) * 1)\n calc(var(--osdk-surface-spacing) * 1);\n border-radius: var(--osdk-filter-item-exclude-dropdown-trigger-border-radius);\n\n &:hover {\n background: var(--osdk-filter-item-header-action-bg-hover);\n }\n\n &:focus-visible {\n outline: var(--osdk-filter-input-focus-outline-width) solid\n var(--osdk-filter-input-focus-outline-color);\n outline-offset: var(--osdk-filter-input-focus-outline-offset);\n }\n}\n\n.triggerLabel {\n white-space: nowrap;\n}\n\n.positioner {\n z-index: var(--osdk-surface-z-index-3);\n}\n\n.popup {\n background: var(--osdk-filter-item-menu-bg);\n border: var(--osdk-filter-item-menu-border);\n border-radius: var(--osdk-filter-item-menu-border-radius);\n box-shadow: var(--osdk-filter-item-menu-shadow);\n padding: var(--osdk-filter-item-menu-padding);\n min-width: var(--osdk-filter-item-exclude-dropdown-min-width);\n}\n\n.menuItem {\n display: flex;\n align-items: center;\n gap: var(--osdk-surface-spacing);\n padding: var(--osdk-filter-item-menu-item-padding);\n font-family: var(--osdk-filter-item-menu-item-font-family);\n font-size: var(--osdk-filter-item-menu-item-font-size);\n color: var(--osdk-filter-item-menu-item-color);\n border-radius: var(--osdk-filter-item-menu-item-border-radius);\n cursor: pointer;\n border: none;\n background: transparent;\n width: 100%;\n text-align: left;\n\n &:hover,\n &[data-highlighted] {\n background: var(--osdk-filter-item-menu-item-bg-hover);\n }\n\n &:focus-visible {\n outline: var(--osdk-filter-input-focus-outline-width) solid\n var(--osdk-filter-input-focus-outline-color);\n outline-offset: var(--osdk-filter-input-focus-outline-offset);\n }\n}\n\n.menuItemCheck {\n display: flex;\n align-items: center;\n width: var(--osdk-filter-item-menu-check-size);\n flex-shrink: 0;\n}\n",".container {\n display: flex;\n flex-direction: column;\n width: 100%;\n height: 100%;\n background-color: var(--osdk-markdown-renderer-bg);\n border: var(--osdk-markdown-renderer-border);\n border-radius: var(--osdk-surface-border-radius);\n overflow: hidden;\n position: relative;\n}\n\n.documentWrapper {\n flex: 1;\n overflow: auto;\n padding: var(--osdk-markdown-renderer-padding);\n}\n\n.document {\n font-family: var(--osdk-typography-family-default);\n font-size: var(--osdk-typography-size-body-medium);\n color: var(--osdk-typography-color-default-rest);\n line-height: var(--osdk-markdown-renderer-line-height);\n}\n\n.document h1,\n.document h2,\n.document h3,\n.document h4,\n.document h5,\n.document h6 {\n color: var(--osdk-typography-color-default-rest);\n margin-top: var(--osdk-markdown-renderer-heading-margin-top);\n margin-bottom: var(--osdk-markdown-renderer-heading-margin-bottom);\n}\n\n.document h1 {\n font-size: var(--osdk-typography-size-heading-large);\n}\n\n.document h2 {\n font-size: var(--osdk-typography-size-heading-medium);\n}\n\n.document h3 {\n font-size: var(--osdk-typography-size-heading-small);\n}\n\n.document p {\n margin-bottom: var(--osdk-markdown-renderer-paragraph-spacing);\n}\n\n.document a {\n color: var(--osdk-markdown-renderer-link-color);\n text-decoration: none;\n}\n\n.document a:hover {\n text-decoration: underline;\n}\n\n.document code {\n background-color: var(--osdk-markdown-renderer-code-bg);\n padding: var(--osdk-markdown-renderer-code-inline-padding);\n border-radius: var(--osdk-markdown-renderer-code-inline-border-radius);\n font-family: var(--osdk-typography-family-monospace);\n font-size: 0.9em;\n}\n\n.document pre {\n background-color: var(--osdk-markdown-renderer-code-bg);\n padding: var(--osdk-surface-spacing);\n border-radius: var(--osdk-surface-border-radius);\n overflow-x: auto;\n}\n\n.document pre code {\n background-color: transparent;\n padding: 0;\n}\n\n.document blockquote {\n border-left: var(--osdk-markdown-renderer-blockquote-border);\n margin-left: 0;\n padding-left: var(--osdk-surface-spacing);\n color: var(--osdk-typography-color-muted);\n}\n\n.document table {\n border-collapse: collapse;\n width: 100%;\n margin-bottom: var(--osdk-markdown-renderer-paragraph-spacing);\n}\n\n.document th,\n.document td {\n border: 1px solid var(--osdk-markdown-renderer-table-border);\n padding: calc(var(--osdk-surface-spacing) / 2) var(--osdk-surface-spacing);\n text-align: left;\n}\n\n.document th {\n background-color: var(--osdk-markdown-renderer-code-bg);\n font-weight: 600;\n}\n\n.document img {\n max-width: 100%;\n height: auto;\n}\n\n.document hr {\n border: none;\n border-top: 1px solid var(--osdk-markdown-renderer-table-border);\n margin: var(--osdk-markdown-renderer-paragraph-spacing) 0;\n}\n\n.document ul,\n.document ol {\n padding-left: 2em;\n margin-bottom: var(--osdk-markdown-renderer-paragraph-spacing);\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.osdkCellSkeleton.osdkCellSkeleton {\n --osdk-background-skeleton-from: var(--osdk-table-skeleton-color-from);\n --osdk-background-skeleton-to: var(--osdk-table-skeleton-color-to);\n border-radius: calc(var(--osdk-surface-border-radius) * 0.5);\n box-shadow: none;\n color: transparent;\n cursor: default;\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: none;\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 flex: 1;\n}\n\n.osdkCheckboxContainer {\n display: flex;\n align-items: center;\n justify-content: center;\n width: 100%;\n height: 100%;\n}\n",".osdkEditableCell {\n width: 100%;\n display: flex;\n justify-content: space-between;\n align-items: center;\n gap: var(--osdk-surface-spacing);\n\n padding: var(--osdk-surface-spacing) calc(var(--osdk-surface-spacing) * 3);\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-within,\n &.osdkEditedInput:focus-within {\n border: var(--osdk-emphasis-focus-width) solid\n var(--osdk-emphasis-focus-color);\n }\n\n &.error {\n border: var(--osdk-table-cell-edited-border-error);\n\n &:focus-within {\n border: var(--osdk-emphasis-focus-width) solid\n var(--osdk-intent-danger-rest);\n }\n }\n }\n\n &.error {\n background: var(--osdk-table-cell-editable-bg);\n border: var(--osdk-table-cell-edited-border-error);\n }\n}\n\n.osdkEditableCellTrigger {\n width: 100%;\n}\n\n.osdkEditableCellDropdown {\n /* Override the default borders in dropdown */\n --osdk-select-border-color: transparent;\n --osdk-combobox-border-color: transparent;\n --osdk-combobox-focus-border-color: transparent;\n\n --osdk-combobox-input-padding: var(--osdk-surface-spacing)\n calc(var(--osdk-surface-spacing) * 3);\n\n --osdk-select-trigger-padding: var(--osdk-surface-spacing)\n calc(var(--osdk-surface-spacing) * 3);\n\n border-radius: var(--osdk-surface-border-radius);\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-within,\n &.osdkEditedInput:focus-within {\n border: var(--osdk-emphasis-focus-width) solid\n var(--osdk-emphasis-focus-color);\n }\n\n &.error {\n border: var(--osdk-table-cell-edited-border-error);\n\n &:focus-within {\n border: var(--osdk-emphasis-focus-width) solid\n var(--osdk-intent-danger-rest);\n }\n }\n }\n\n &.error {\n background: var(--osdk-table-cell-editable-bg);\n border: var(--osdk-table-cell-edited-border-error);\n }\n}\n\n.osdkEditableCellDatePicker {\n /* Override the default borders in date picker */\n --osdk-datetime-input-border-width: 0px;\n --osdk-datetime-input-border-color: transparent;\n --osdk-datetime-input-border-color-focus: transparent;\n --osdk-datetime-input-focus-width: 0px;\n --osdk-datetime-input-bg: transparent;\n --osdk-datetime-input-bg-hover: transparent;\n\n --osdk-datetime-input-padding: var(--osdk-surface-spacing)\n calc(var(--osdk-surface-spacing) * 3);\n\n display: flex;\n align-items: center;\n justify-content: space-between;\n border-radius: var(--osdk-surface-border-radius);\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-within,\n &.osdkEditedInput:focus-within {\n border: var(--osdk-emphasis-focus-width) solid\n var(--osdk-emphasis-focus-color);\n }\n\n &.error {\n border: var(--osdk-table-cell-edited-border-error);\n\n &:focus-within {\n border: var(--osdk-emphasis-focus-width) solid\n var(--osdk-intent-danger-rest);\n }\n }\n }\n\n &.error {\n background: var(--osdk-table-cell-editable-bg);\n border: var(--osdk-table-cell-edited-border-error);\n }\n}\n\n.readonlyDisplayCell {\n padding: calc(var(--osdk-surface-spacing) * 0.5) 0;\n}\n\n.osdkEditableInput {\n width: 100%;\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n text-align: left;\n background: inherit;\n border: none;\n\n &:focus {\n outline: none;\n }\n}\n\n.osdkEditedInput {\n border-radius: var(--osdk-surface-border-radius);\n border: var(--osdk-table-cell-edited-border);\n background: var(--osdk-table-cell-editable-bg);\n}\n\n.validationError {\n display: flex;\n align-items: center;\n gap: var(--osdk-surface-spacing);\n}\n\n.errorIcon {\n color: var(--osdk-intent-danger-rest);\n}\n\n.errorIconWrapper {\n margin-right: calc(var(--osdk-surface-spacing) * 3);\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 — keyed off data index, not DOM position, because rows are virtualized */\n &[data-row-parity=\"odd\"] {\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.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\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 color: var(--osdk-dialog-title-color);\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-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: var(--osdk-drag-handle-cursor);\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: var(--osdk-drag-handle-cursor-active);\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-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.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: space-between;\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 background: none;\n border: none;\n cursor: pointer;\n padding: 0;\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 flex-shrink: 0;\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.selectAllLabel {\n display: flex;\n align-items: center;\n gap: calc(var(--osdk-surface-spacing) * 3);\n cursor: pointer;\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}\n\n.propertyLabel {\n display: flex;\n align-items: center;\n gap: calc(var(--osdk-surface-spacing) * 3);\n cursor: pointer;\n flex: 1;\n min-width: 0;\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 overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\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-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}\n\n.addColumnText {\n flex: 1;\n text-align: left;\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-top: var(--osdk-table-border);\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-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: none;\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.osdkTableSelectionHeaderCell {\n justify-content: center;\n padding: 0;\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.osdkHeaderContentLeftClickable {\n cursor: pointer;\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-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 color: var(--osdk-table-header-menu-icon-color);\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\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-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.editsInfoContainer {\n display: flex;\n align-items: center;\n justify-content: center;\n flex-direction: row;\n gap: calc(var(--osdk-surface-spacing) * 3);\n font-size: var(--osdk-typography-size-body-small);\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\n.validationError {\n display: flex;\n align-items: center;\n gap: calc(var(--osdk-surface-spacing) * 2);\n color: var(--osdk-intent-danger-rest);\n}\n\n.errorIcon {\n color: var(--osdk-intent-danger-rest);\n}\n\n.divider {\n width: 1px;\n height: 8px;\n background-color: var(--osdk-surface-border-color-default);\n align-self: center;\n}\n",".annotationLayer {\n position: absolute;\n top: 0;\n left: 0;\n width: 100%;\n height: 100%;\n pointer-events: none;\n z-index: 3;\n}\n\n.annotationGroup {\n position: absolute;\n top: 0;\n left: 0;\n width: 100%;\n height: 100%;\n pointer-events: none;\n}\n\n.annotationGroup:focus-visible {\n outline: var(--osdk-focus-outline);\n outline-offset: var(--osdk-focus-visible-outline-offset);\n}\n\n.annotationGroup .annotation {\n pointer-events: auto;\n}\n\n.annotation {\n position: absolute;\n pointer-events: auto;\n cursor: pointer;\n transition: opacity var(--osdk-emphasis-transition-duration)\n var(--osdk-emphasis-ease-default);\n}\n\n.annotation:hover {\n opacity: 0.8;\n}\n\n.annotation:focus-visible {\n outline: var(--osdk-focus-outline);\n outline-offset: var(--osdk-focus-visible-outline-offset);\n}\n\n.highlight {\n background-color: var(\n --osdk-pdf-annotation-color,\n var(--osdk-pdf-viewer-annotation-highlight)\n );\n border-radius: 2px;\n}\n\n.underline {\n background-color: transparent;\n border-bottom: 2px solid\n var(\n --osdk-pdf-annotation-color,\n var(--osdk-pdf-viewer-annotation-underline)\n );\n}\n\n.comment {\n background-color: var(\n --osdk-pdf-annotation-color,\n var(--osdk-pdf-viewer-annotation-comment)\n );\n border-radius: 50%;\n width: 16px !important;\n height: 16px !important;\n}\n\n.pin {\n background-color: var(\n --osdk-pdf-annotation-color,\n var(--osdk-pdf-viewer-annotation-pin)\n );\n border-radius: 50% 50% 50% 0;\n width: 16px !important;\n height: 16px !important;\n transform: rotate(-45deg);\n}\n",".sidebar {\n width: var(--osdk-pdf-viewer-sidebar-width);\n flex-shrink: 0;\n display: flex;\n flex-direction: column;\n background-color: var(--osdk-pdf-viewer-sidebar-bg);\n border-right: var(--osdk-pdf-viewer-sidebar-border);\n overflow: hidden;\n}\n\n\n.scrollContainer {\n flex: 1;\n overflow-y: auto;\n padding: var(--osdk-pdf-viewer-sidebar-thumbnail-gap) 0;\n}\n\n.outlineItem {\n display: flex;\n align-items: center;\n gap: var(--osdk-pdf-viewer-outline-item-gap, 6px);\n padding: var(--osdk-pdf-viewer-outline-item-padding-y, 4px)\n var(--osdk-pdf-viewer-outline-item-padding-x, 12px);\n cursor: pointer;\n font-family: var(--osdk-typography-family-default);\n font-size: var(--osdk-typography-size-body-small);\n color: var(--osdk-typography-color-default);\n text-decoration: none;\n border: none;\n background: none;\n text-align: left;\n width: 100%;\n line-height: 1.4;\n border-radius: var(--osdk-pdf-viewer-outline-item-radius, 4px);\n transition: background-color 0.15s ease;\n}\n\n.outlineItem:hover {\n background-color: var(--osdk-pdf-viewer-outline-item-hover-bg, rgba(0, 0, 0, 0.06));\n}\n\n.outlineItem:focus-visible {\n outline: var(--osdk-focus-outline);\n outline-offset: var(--osdk-focus-visible-outline-offset);\n}\n\n.outlineItemActive {\n background-color: var(--osdk-pdf-viewer-outline-item-active-bg, rgba(45, 114, 210, 0.1));\n color: var(--osdk-pdf-viewer-outline-item-active-color, var(--osdk-intent-primary));\n font-weight: var(--osdk-typography-weight-semibold);\n}\n\n.outlineItemBold {\n font-weight: var(--osdk-typography-weight-bold);\n}\n\n.outlineItemItalic {\n font-style: italic;\n}\n\n.outlineItemIcon {\n flex-shrink: 0;\n display: flex;\n align-items: center;\n}\n\n.outlineItemTitle {\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n}\n\n.emptyState {\n display: flex;\n flex-direction: column;\n align-items: center;\n justify-content: center;\n gap: var(--osdk-pdf-viewer-outline-empty-gap, 12px);\n padding: var(--osdk-pdf-viewer-outline-empty-padding, 24px);\n flex: 1;\n text-align: center;\n}\n\n.emptyStateText {\n font-family: var(--osdk-typography-family-default);\n font-size: var(--osdk-typography-size-body-small);\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.sidebarHeader {\n display: flex;\n align-items: center;\n justify-content: flex-start;\n padding: var(--osdk-surface-spacing);\n border-bottom: var(--osdk-pdf-viewer-sidebar-border);\n flex-shrink: 0;\n}\n\n.toggleGroup {\n display: flex;\n align-items: center;\n gap: var(--osdk-spacing-2xs, 2px);\n padding: var(--osdk-spacing-2xs, 2px);\n border: none;\n border-radius: var(--osdk-surface-border-radius);\n background-color: var(--osdk-surface-background-color, transparent);\n}\n\n.modeButton {\n display: flex;\n align-items: center;\n justify-content: center;\n width: 28px;\n height: 28px;\n border: none;\n background: none;\n color: var(--osdk-typography-color-muted);\n cursor: pointer;\n border-radius: var(--osdk-surface-border-radius);\n padding: 0;\n}\n\n.modeButton:hover {\n background-color: var(--osdk-surface-background-color-default-hover);\n}\n\n.modeButton:active {\n background-color: var(--osdk-surface-background-color-default-active);\n}\n\n.modeButton:focus-visible {\n outline: var(--osdk-focus-outline);\n outline-offset: var(--osdk-focus-visible-outline-offset);\n}\n\n.modeButton[data-pressed] {\n background-color: var(--osdk-pdf-viewer-outline-item-active-bg, rgba(45, 114, 210, 0.1));\n color: var(--osdk-pdf-viewer-outline-item-active-color, var(--osdk-intent-primary));\n}\n\n.modeButton[data-pressed]:hover {\n background-color: var(--osdk-pdf-viewer-outline-item-active-bg, rgba(45, 114, 210, 0.1));\n}\n",".searchBar {\n position: absolute;\n top: 0;\n right: 0;\n z-index: var(--osdk-surface-z-index-3);\n display: flex;\n align-items: center;\n gap: var(--osdk-pdf-viewer-toolbar-gap);\n padding: var(--osdk-surface-spacing);\n background-color: var(--osdk-pdf-viewer-search-bar-bg);\n border: var(--osdk-surface-border);\n border-radius: var(--osdk-surface-border-radius);\n box-shadow: var(--osdk-surface-shadow-2);\n margin: var(--osdk-surface-spacing);\n}\n\n.searchInput {\n border: var(--osdk-surface-border);\n border-radius: var(--osdk-surface-border-radius);\n padding: var(--osdk-surface-spacing) calc(var(--osdk-surface-spacing) * 2);\n font-family: var(--osdk-typography-family-default);\n font-size: var(--osdk-typography-size-body-small);\n color: var(--osdk-typography-color-default-rest);\n background-color: var(--osdk-background-primary);\n outline: none;\n min-width: 200px;\n}\n\n.searchInput:focus {\n outline: var(--osdk-focus-outline);\n outline-offset: var(--osdk-focus-visible-outline-offset);\n}\n\n.matchCount {\n font-size: var(--osdk-typography-size-body-x-small);\n color: var(--osdk-typography-color-muted);\n white-space: nowrap;\n}\n\n.navButton {\n display: flex;\n align-items: center;\n justify-content: center;\n width: 24px;\n height: 24px;\n border: none;\n background: none;\n color: var(--osdk-typography-color-default-rest);\n cursor: pointer;\n border-radius: var(--osdk-surface-border-radius);\n padding: 0;\n}\n\n.navButton:hover {\n background-color: var(--osdk-surface-background-color-default-hover);\n}\n\n.navButton:focus-visible {\n outline: var(--osdk-focus-outline);\n outline-offset: var(--osdk-focus-visible-outline-offset);\n}\n\n.closeButton {\n composes: navButton;\n}\n",".sidebar {\n width: var(--osdk-pdf-viewer-sidebar-width);\n flex-shrink: 0;\n display: flex;\n flex-direction: column;\n background-color: var(--osdk-pdf-viewer-sidebar-bg);\n border-right: var(--osdk-pdf-viewer-sidebar-border);\n overflow: hidden;\n}\n\n\n.scrollContainer {\n flex: 1;\n overflow-y: auto;\n}\n\n.thumbnailsContainer {\n position: relative;\n}\n\n.thumbnailWrapper {\n position: absolute;\n left: 0;\n width: 100%;\n display: flex;\n justify-content: center;\n padding: var(--osdk-pdf-viewer-sidebar-thumbnail-gap)\n var(--osdk-pdf-viewer-sidebar-thumbnail-gap) 0;\n}\n\n.pageNumber {\n text-align: center;\n font-family: var(--osdk-typography-family-default);\n font-size: var(--osdk-typography-size-body-small);\n color: var(--osdk-typography-color-muted);\n margin-top: 4px;\n}\n",".thumbnailContainer {\n position: relative;\n cursor: pointer;\n border: 2px solid transparent;\n border-radius: var(--osdk-surface-border-radius);\n box-shadow: var(--osdk-pdf-viewer-page-shadow);\n overflow: hidden;\n transition: border-color var(--osdk-emphasis-transition-duration)\n var(--osdk-emphasis-ease-default);\n}\n\n.thumbnailContainer:hover {\n border-color: var(--osdk-pdf-viewer-sidebar-border);\n}\n\n.active {\n border-color: var(--osdk-pdf-viewer-sidebar-active-border);\n}\n\n.active:hover {\n border-color: var(--osdk-pdf-viewer-sidebar-active-border);\n}\n\n.canvas {\n display: block;\n}\n",".toolbar {\n display: flex;\n align-items: center;\n justify-content: center;\n gap: var(--osdk-pdf-viewer-toolbar-gap);\n padding: var(--osdk-surface-spacing);\n background-color: var(--osdk-pdf-viewer-toolbar-bg);\n border-bottom: var(--osdk-pdf-viewer-toolbar-border);\n color: var(--osdk-pdf-viewer-toolbar-color);\n font-family: var(--osdk-typography-family-default);\n font-size: var(--osdk-typography-size-body-small);\n flex-shrink: 0;\n}\n\n.toolbarGroup {\n display: flex;\n align-items: center;\n gap: var(--osdk-surface-spacing);\n}\n\n.separator {\n width: 1px;\n height: 20px;\n background-color: var(--osdk-surface-border-color-default);\n margin: 0 var(--osdk-surface-spacing);\n}\n\n.toolbarButton {\n display: flex;\n align-items: center;\n justify-content: center;\n width: 28px;\n height: 28px;\n border: none;\n background: none;\n color: var(--osdk-typography-color-muted);\n cursor: pointer;\n border-radius: var(--osdk-surface-border-radius);\n padding: 0;\n}\n\n.toolbarButton:hover {\n background-color: var(--osdk-surface-background-color-default-hover);\n}\n\n.toolbarButton:active {\n background-color: var(--osdk-surface-background-color-default-active);\n}\n\n.toolbarButton:focus-visible {\n outline: var(--osdk-focus-outline);\n outline-offset: var(--osdk-focus-visible-outline-offset);\n}\n\n.toolbarButton:disabled {\n opacity: 0.5;\n cursor: default;\n}\n\n.toolbarButtonActive {\n background-color: var(--osdk-surface-background-color-default-active);\n color: var(--osdk-typography-color-default-rest);\n}\n\n.pageInput {\n width: 48px;\n text-align: center;\n border: var(--osdk-surface-border);\n border-radius: var(--osdk-surface-border-radius);\n padding: calc(0.5 * var(--osdk-surface-spacing)) var(--osdk-surface-spacing);\n font-family: var(--osdk-typography-family-default);\n font-size: var(--osdk-typography-size-body-small);\n color: var(--osdk-typography-color-default-rest);\n background-color: var(--osdk-background-primary);\n}\n\n.pageInput:focus {\n outline: var(--osdk-focus-outline);\n outline-offset: var(--osdk-focus-visible-outline-offset);\n}\n\n.pageCount {\n color: var(--osdk-typography-color-muted);\n}\n\n.scaleDisplay {\n font-size: var(--osdk-typography-size-body-small);\n color: var(--osdk-typography-color-muted);\n min-width: 40px;\n text-align: center;\n}\n",".pdfViewer {\n display: flex;\n flex-direction: column;\n width: 100%;\n height: 100%;\n background-color: var(--osdk-pdf-viewer-bg);\n border: var(--osdk-pdf-viewer-border);\n border-radius: var(--osdk-surface-border-radius);\n overflow: hidden;\n position: relative;\n}\n\n.contentArea {\n display: flex;\n flex: 1;\n overflow: hidden;\n position: relative;\n}\n\n.scrollContainerWrapper {\n flex: 1;\n position: relative;\n overflow: hidden;\n}\n\n.scrollContainer {\n overflow: auto;\n position: absolute;\n top: 0;\n left: 0;\n right: 0;\n bottom: 0;\n}\n\n.loadingContainer {\n display: flex;\n flex-direction: column;\n align-items: center;\n justify-content: center;\n gap: calc(var(--osdk-surface-spacing) * 2);\n height: 100%;\n font-family: var(--osdk-typography-family-default);\n font-size: var(--osdk-typography-size-body-medium);\n color: var(--osdk-typography-color-muted);\n}\n\n.errorContainer {\n display: flex;\n align-items: center;\n justify-content: center;\n gap: var(--osdk-surface-spacing);\n height: 100%;\n font-family: var(--osdk-typography-family-default);\n font-size: var(--osdk-typography-size-body-medium);\n color: var(--osdk-typography-color-danger-rest);\n}\n\n@keyframes spin {\n from {\n transform: rotate(0deg);\n }\n to {\n transform: rotate(360deg);\n }\n}\n\n.spinnerIcon {\n animation: spin 1s linear infinite;\n color: var(--osdk-typography-color-muted);\n}\n\n.errorIcon {\n flex-shrink: 0;\n}\n\n/* PDFViewer page overrides */\n:global(.pdfViewer .page) {\n box-shadow: var(--osdk-pdf-viewer-page-shadow);\n background-color: var(--osdk-palette-white);\n margin: 0 auto var(--osdk-pdf-viewer-page-gap);\n}\n\n/* Search highlight overrides — match pdf.js FindController CSS classes */\n:global(.textLayer) .highlight {\n background-color: var(--osdk-pdf-viewer-search-highlight);\n border-radius: 1px;\n}\n\n:global(.textLayer) .highlight.selected {\n background-color: var(--osdk-pdf-viewer-search-active);\n}\n\n:global(.textLayer)::selection {\n background: var(--osdk-intent-primary-rest);\n}\n",".canvas {\n height: 100%;\n object-fit: contain;\n width: 100%;\n}\n\n.errorContainer {\n display: flex;\n align-items: center;\n justify-content: center;\n gap: var(--osdk-surface-spacing);\n height: 100%;\n font-family: var(--osdk-typography-family-default);\n font-size: var(--osdk-typography-size-body-medium);\n color: var(--osdk-typography-color-danger-rest);\n}\n\n.errorIcon {\n flex-shrink: 0;\n}\n"],"mappings":"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","names":[]}
|
|
1
|
+
{"version":3,"sources":["../../../src/base-components/action-button/ActionButton.module.css","../../../src/base-components/skeleton/SkeletonBar.module.css","../../../src/base-components/tooltip/Tooltip.module.css","../../../src/action-form/BaseForm.module.css","../../../src/action-form/FormField.module.css","../../../src/action-form/fields/DatePickerCommon.module.css","../../../src/action-form/fields/DateRangeInputField.module.css","../../../src/action-form/fields/DateCalendar.module.css","../../../src/action-form/fields/TimePicker.module.css","../../../src/action-form/fields/DatetimePickerField.module.css","../../../src/base-components/combobox/Combobox.module.css","../../../src/base-components/select/Select.module.css","../../../src/action-form/fields/FilePickerField.module.css","../../../src/action-form/fields/NumberInputField.module.css","../../../src/action-form/fields/AsyncDropdownField.module.css","../../../src/action-form/fields/ObjectSetField.module.css","../../../src/action-form/fields/RadioButtonsField.module.css","../../../src/action-form/fields/BaseInput.module.css","../../../src/action-form/FormHeader.module.css","../../../src/filter-list/base/FilterList.module.css","../../../src/filter-list/base/FilterListContent.module.css","../../../src/shared/ErrorBoundary.module.css","../../../src/filter-list/base/FilterListItem.module.css","../../../src/filter-list/base/FilterListHeader.module.css","../../../src/base-components/search-bar/SearchBar.module.css","../../../src/base-components/searchable-menu/SearchableMenu.module.css","../../../src/filter-list/base/AddFilterPopover.module.css","../../../src/filter-list/base/inputs/ContainsTextInput.module.css","../../../src/base-components/switch/Switch.module.css","../../../src/filter-list/base/inputs/ToggleInput.module.css","../../../src/filter-list/base/inputs/RangeInput.module.css","../../../src/filter-list/base/inputs/shared.module.css","../../../src/filter-list/base/inputs/LinkedPropertyInput.module.css","../../../src/base-components/checkbox/Checkbox.module.css","../../../src/filter-list/base/inputs/ListogramInput.module.css","../../../src/filter-list/base/inputs/ListogramSkeleton.module.css","../../../src/filter-list/base/inputs/MultiDateInput.module.css","../../../src/filter-list/base/inputs/MultiSelectInput.module.css","../../../src/filter-list/base/inputs/NullValueWrapper.module.css","../../../src/filter-list/base/inputs/SingleDateInput.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/filter-list/base/ExcludeDropdown.module.css","../../../src/markdown-renderer/MarkdownRenderer.module.css","../../../src/object-table/LoadingCell.module.css","../../../src/object-table/TableCell.module.css","../../../src/object-table/EditableCell.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/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","../../../src/pdf-viewer/components/PdfViewerAnnotationLayer.module.css","../../../src/pdf-viewer/components/PdfViewerOutlineSidebar.module.css","../../../src/pdf-viewer/components/PdfViewerSidebarHeader.module.css","../../../src/pdf-viewer/components/PdfViewerSearchBar.module.css","../../../src/pdf-viewer/components/PdfViewerSidebar.module.css","../../../src/pdf-viewer/components/PdfViewerThumbnail.module.css","../../../src/pdf-viewer/components/PdfViewerToolbar.module.css","../../../src/pdf-viewer/PdfViewer.module.css","../../../src/images/tiff-renderer/TiffRenderer.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.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-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 2026 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@keyframes skeleton-glow {\n from {\n background: var(--osdk-background-skeleton-from);\n }\n\n to {\n background: var(--osdk-background-skeleton-to);\n }\n}\n\n.skeletonBar {\n animation: 1000ms linear infinite alternate skeleton-glow;\n background: var(--osdk-background-skeleton-from);\n border-radius: var(--osdk-surface-border-radius);\n pointer-events: none;\n user-select: none;\n}\n\n@media (prefers-reduced-motion: reduce) {\n .skeletonBar {\n animation: none;\n }\n}\n","/*\n * Copyright 2026 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.osdkTooltipTrigger {\n border: none;\n background: inherit;\n}\n\n.osdkTooltipPositioner {\n z-index: var(--osdk-tooltip-z-index);\n}\n\n.osdkTooltipPopup {\n padding: var(--osdk-tooltip-padding);\n background-color: var(--osdk-tooltip-bg);\n border-radius: var(--osdk-surface-border-radius);\n box-shadow: var(--osdk-tooltip-shadow);\n max-width: var(--osdk-tooltip-max-width);\n font-size: var(--osdk-tooltip-font-size);\n}\n\n/* \n * Hardcoded values are copied from base ui example \n * https://base-ui.com/react/components/tooltip \n *\n * */\n.osdkTooltipArrow {\n display: flex;\n\n &[data-side=\"top\"] {\n bottom: -8px;\n rotate: 180deg;\n }\n\n &[data-side=\"bottom\"] {\n top: -8px;\n rotate: 0deg;\n }\n\n &[data-side=\"left\"] {\n right: -13px;\n rotate: 90deg;\n }\n\n &[data-side=\"right\"] {\n left: -13px;\n rotate: -90deg;\n }\n}\n\n.tooltipArrowFill {\n fill: var(--osdk-tooltip-bg);\n}\n\n.tooltipArrowOuterStroke {\n fill: var(--osdk-tooltip-border-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.osdkForm {\n display: flex;\n flex-direction: column;\n width: 100%;\n}\n\n.osdkFormFields {\n display: flex;\n flex-direction: column;\n gap: var(--osdk-form-field-gap);\n padding: var(--osdk-form-content-padding);\n}\n\n.osdkFormFooter {\n display: flex;\n flex-direction: row;\n justify-content: space-between;\n align-items: center;\n border-top: var(--osdk-surface-border-width) solid\n var(--osdk-form-footer-border-color);\n padding-block: var(--osdk-form-content-padding);\n padding-inline: var(--osdk-form-content-padding);\n}\n\n.osdkFormSubmitButton {\n margin-inline-start: auto;\n}\n\n.osdkFormErrorIndicator {\n display: flex;\n align-items: center;\n gap: calc(var(--osdk-surface-spacing) * 2);\n color: var(--osdk-form-footer-error-color);\n font-size: var(--osdk-form-footer-error-font-size);\n cursor: help;\n}\n\n/* Replaces Tooltip.Trigger's default <button> with a <span> to avoid\n nested buttons. inline-flex keeps a real layout box for tooltip anchoring. */\n.osdkTooltipTriggerWrapper {\n display: inline-flex;\n}\n\n/* Loading skeleton — mimics label + input per field */\n.osdkFormSkeletonField {\n display: flex;\n flex-direction: column;\n gap: var(--osdk-form-label-field-gap);\n}\n\n.osdkFormSkeletonLabel {\n width: 30%;\n height: var(--osdk-form-label-font-size);\n}\n\n.osdkFormSkeletonInput {\n width: 100%;\n height: var(--osdk-input-min-height);\n}\n\n.osdkFormErrorList {\n list-style: none;\n margin: 0;\n padding: 0;\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.osdkFormField {\n display: flex;\n flex-direction: column;\n gap: var(--osdk-form-label-field-gap);\n}\n\n.osdkFormFieldLabel {\n font-size: var(--osdk-form-label-font-size);\n font-weight: var(--osdk-form-label-font-weight);\n color: var(--osdk-form-label-color);\n}\n\n.osdkFormFieldRequired {\n color: var(--osdk-form-required-color);\n}\n\n.osdkFormFieldError {\n font-size: var(--osdk-form-error-font-size);\n color: var(--osdk-form-error-color);\n}\n\n.osdkFormFieldHelperText {\n font-size: var(--osdk-typography-size-body-small);\n color: var(--osdk-typography-color-muted);\n}\n","/* Bare input inside a date picker wrapper */\n.osdkDatePickerInput {\n width: 100%;\n flex: 1;\n min-width: 0;\n min-height: var(--osdk-datetime-input-min-height);\n padding: var(--osdk-datetime-input-padding);\n border: none;\n border-radius: var(--osdk-datetime-input-border-radius);\n background: transparent;\n color: var(--osdk-datetime-input-color);\n font-family: var(--osdk-datetime-input-font-family);\n font-size: var(--osdk-datetime-input-font-size);\n line-height: var(--osdk-datetime-input-line-height);\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n\n &::placeholder {\n color: var(--osdk-datetime-input-placeholder-color);\n }\n\n &:focus-visible {\n outline: none;\n }\n}\n\n/* Popover container */\n.osdkDatePickerPopover {\n background: var(--osdk-datetime-popover-bg);\n padding: var(--osdk-datetime-popover-padding);\n z-index: var(--osdk-datetime-popover-z-index);\n box-shadow: var(--osdk-datetime-popover-shadow);\n}\n\n/* Visually-hidden focus boundary for Tab cycling between input and popover */\n.osdkDatePickerFocusBoundary {\n position: absolute;\n width: 1px;\n height: 1px;\n overflow: hidden;\n clip-path: inset(50%);\n white-space: nowrap;\n outline: none;\n}\n\n/* Shared input wrapper — border, bg, hover, focus-within */\n.osdkDatePickerInputWrapper {\n display: flex;\n align-items: center;\n border-radius: var(--osdk-datetime-input-border-radius);\n border: var(--osdk-datetime-input-border-width) solid\n var(--osdk-datetime-input-border-color);\n background-color: var(--osdk-datetime-input-bg);\n transition:\n background-color var(--osdk-datetime-input-transition-duration)\n var(--osdk-datetime-input-transition-ease),\n border-color var(--osdk-datetime-input-transition-duration)\n var(--osdk-datetime-input-transition-ease);\n cursor: text;\n\n &:hover {\n background-color: var(--osdk-datetime-input-bg-hover);\n }\n\n &:focus-within {\n outline: var(--osdk-datetime-input-focus-width) solid\n var(--osdk-datetime-input-focus-color);\n outline-offset: var(--osdk-datetime-input-focus-offset);\n border-color: var(--osdk-datetime-input-border-color-focus);\n }\n}\n\n.osdkDatePickerInputWrapperError {\n border-color: var(--osdk-datetime-input-error-border-color);\n\n &:focus-within {\n border-color: var(--osdk-datetime-input-error-border-color);\n }\n}\n\n/* Calendar fallback / loading skeleton */\n.osdkDatePickerFallback {\n width: var(--osdk-datetime-calendar-fallback-width);\n height: var(--osdk-datetime-calendar-fallback-height);\n}\n","/* DateRangeInputField — two separate bordered inputs + shared popover */\n\n/* Outer container that holds both inputs side by side.\n Acts as Popover.Trigger — suppress the focus ring when\n focus returns here after the popover closes. */\n.osdkDateRangeContainer {\n display: flex;\n align-items: center;\n gap: calc(var(--osdk-surface-spacing) * 2);\n outline: none;\n}\n\n/* Each input wrapper gets flex: 1 to split equally */\n.osdkDateRangeInputWrapper {\n flex: 1;\n min-width: 0;\n}\n\n/* Two TimePickers side-by-side, each centered under its calendar month.\n Negative horizontal margin counters the popover padding so the border-top\n spans the full width of the popover. */\n.osdkDateRangeTimeRow {\n display: flex;\n gap: var(--osdk-time-picker-gap);\n padding-top: var(--osdk-time-picker-padding-top);\n padding-left: var(--osdk-datetime-popover-padding);\n padding-right: var(--osdk-datetime-popover-padding);\n margin-top: var(--osdk-time-picker-margin-top);\n margin-left: calc(var(--osdk-datetime-popover-padding) * -1);\n margin-right: calc(var(--osdk-datetime-popover-padding) * -1);\n border-top: var(--osdk-time-picker-border-top);\n}\n","/* DateCalendar — DayPicker classNames.\n All values reference --osdk-datetime-calendar-* tokens defined in\n react-components-styles/tokens/datetime-picker.css. */\n\n.calendar {\n position: relative;\n width: 100%;\n font-family: var(--osdk-datetime-calendar-font-family);\n font-size: var(--osdk-datetime-calendar-font-size);\n}\n\n.calendarMonths {\n display: flex;\n gap: var(--osdk-datetime-calendar-months-gap);\n}\n\n.calendarMonthGrid {\n width: 100%;\n border-collapse: collapse;\n}\n\n.calendarWeekday {\n padding: var(--osdk-datetime-calendar-gap);\n font-size: var(--osdk-datetime-calendar-weekday-font-size);\n color: var(--osdk-datetime-calendar-weekday-color);\n text-align: center;\n width: var(--osdk-datetime-calendar-cell-size);\n}\n\n.calendarDay {\n padding: var(--osdk-datetime-calendar-gap);\n text-align: center;\n}\n\n.calendarDayButton {\n display: inline-flex;\n align-items: center;\n justify-content: center;\n width: var(--osdk-datetime-calendar-cell-size);\n height: var(--osdk-datetime-calendar-cell-size);\n border: none;\n border-radius: var(--osdk-datetime-calendar-day-border-radius);\n background: transparent;\n cursor: pointer;\n font: inherit;\n color: var(--osdk-datetime-calendar-day-color);\n\n &:hover {\n background: var(--osdk-datetime-calendar-day-hover-bg);\n color: var(--osdk-datetime-calendar-day-hover-color);\n }\n\n &:active {\n background: var(--osdk-datetime-calendar-day-active-bg);\n color: var(--osdk-datetime-calendar-day-hover-color);\n }\n\n &:focus-visible {\n outline: var(--osdk-datetime-calendar-focus-outline);\n outline-offset: -2px;\n }\n}\n\n/* :not([disabled]) bumps specificity to (0,4,0) — matching rdp's default\n .rdp-button:hover:not([disabled]):not(.rdp-day_selected) rule so our\n styles win by source order. Without this, rdp overrides the selected\n background on hover because we remap day_selected and its :not() always matches. */\n.calendarDayButton.calendarSelected {\n background: var(--osdk-datetime-calendar-selected-bg);\n color: var(--osdk-datetime-calendar-selected-color);\n\n &:hover:not([disabled]) {\n background: var(--osdk-datetime-calendar-selected-hover-bg);\n color: var(--osdk-datetime-calendar-selected-color);\n }\n\n &:active:not([disabled]) {\n color: var(--osdk-datetime-calendar-selected-color);\n }\n}\n\n.calendarDayButton.calendarToday {\n font-weight: var(--osdk-datetime-calendar-today-font-weight);\n}\n\n.calendarDayButton.calendarOutside {\n color: var(--osdk-datetime-calendar-outside-color);\n opacity: var(--osdk-datetime-calendar-outside-opacity);\n}\n\n.calendarDayButton.calendarDisabled {\n color: var(--osdk-datetime-calendar-disabled-color);\n cursor: default;\n\n &:hover {\n background: transparent;\n }\n}\n\n/* Range selection styles — shared base for start/end endpoints */\n.calendarRangeEndpoint {\n background: var(--osdk-datetime-calendar-selected-bg);\n color: var(--osdk-datetime-calendar-selected-color);\n\n &:hover:not([disabled]) {\n background: var(--osdk-datetime-calendar-selected-hover-bg);\n color: var(--osdk-datetime-calendar-selected-color);\n }\n\n &:active:not([disabled]) {\n color: var(--osdk-datetime-calendar-selected-color);\n }\n}\n\n\n/* Range-middle needs .calendarDayButton prefix to match specificity of\n .calendarDayButton.calendarSelected (rdp applies both to range-middle days). */\n.calendarDayButton.calendarRangeMiddle {\n background: var(--osdk-datetime-calendar-range-middle-bg);\n color: var(--osdk-datetime-calendar-day-color);\n border-radius: 0;\n\n &:hover {\n background: var(--osdk-datetime-calendar-range-middle-bg);\n color: var(--osdk-datetime-calendar-day-hover-color);\n filter: brightness(0.95);\n }\n\n &:active {\n color: var(--osdk-datetime-calendar-day-hover-color);\n }\n}\n\n.calendarHidden {\n visibility: hidden;\n}\n\n/* Calendar navigation — dissolve the nav wrapper so buttons become\n direct flex children of the caption row. This lets order: -1 move\n the prev button before the dropdowns while next stays after. */\n.calendarNav {\n display: contents;\n}\n\n/* Shared nav button base — small, matching dropdown caret scale */\n.calendarNavButton {\n display: inline-flex;\n align-items: center;\n justify-content: center;\n width: var(--osdk-datetime-calendar-nav-button-size);\n height: var(--osdk-datetime-calendar-nav-button-size);\n border: none;\n background: transparent;\n cursor: pointer;\n border-radius: var(--osdk-datetime-calendar-nav-button-border-radius);\n padding: 0;\n color: inherit;\n\n &:hover {\n background: var(--osdk-datetime-calendar-nav-button-hover-bg);\n }\n\n &:disabled {\n color: var(--osdk-datetime-calendar-nav-disabled-color);\n cursor: default;\n opacity: 1; /* Override browser default disabled opacity */\n\n &:hover {\n background: transparent;\n }\n }\n\n &:focus-visible {\n outline: var(--osdk-datetime-calendar-focus-outline);\n outline-offset: -1px;\n }\n}\n\n/* Hide the default SVG chevron icon — Blueprint icons rendered inline instead */\n.calendarChevron {\n display: none;\n}\n\n.calendarNavPrev {\n order: -1;\n}\n\n.calendarMonthCaption {\n display: flex;\n align-items: center;\n justify-content: center;\n min-height: var(--osdk-datetime-calendar-nav-button-size);\n}\n\n/* Visually hidden — used for accessibility-only text (caption label, dropdown labels) */\n.calendarVhidden {\n position: absolute;\n width: 1px;\n height: 1px;\n overflow: hidden;\n clip-path: inset(50%);\n white-space: nowrap;\n}\n\n\n/* Caption dropdowns container */\n.calendarCaptionDropdowns {\n display: flex;\n align-items: center;\n justify-content: center;\n gap: var(--osdk-datetime-calendar-caption-gap);\n}\n\n/* Month/year selects — borderless, matching caption text weight */\n.calendarDropdown {\n font-family: var(--osdk-datetime-calendar-font-family);\n font-size: var(--osdk-datetime-calendar-caption-font-size);\n font-weight: var(--osdk-datetime-calendar-caption-font-weight);\n color: inherit;\n background: transparent;\n border: none;\n padding: var(--osdk-datetime-calendar-dropdown-padding);\n cursor: pointer;\n border-radius: var(--osdk-datetime-calendar-dropdown-border-radius);\n\n &:focus-visible {\n outline: var(--osdk-datetime-calendar-focus-outline);\n outline-offset: 1px;\n }\n}\n\n\n/* Footer — content rendered inside DayPicker's <tfoot> (constrained by the table). */\n.calendarFooter {\n padding-top: var(--osdk-time-picker-padding-top);\n margin-top: var(--osdk-time-picker-margin-top);\n border-top: var(--osdk-time-picker-border-top);\n}\n\n","/* TimePicker — bare time input. Layout (spacing, borders) owned by the parent. */\n\n.osdkTimePickerInput {\n width: 100%;\n font-family: var(--osdk-time-picker-input-font-family);\n font-size: var(--osdk-time-picker-input-font-size);\n padding: var(--osdk-time-picker-input-padding);\n border: var(--osdk-time-picker-input-border);\n border-radius: var(--osdk-time-picker-input-border-radius);\n background: var(--osdk-time-picker-input-bg);\n color: var(--osdk-time-picker-input-color);\n box-sizing: border-box;\n\n &:focus {\n border-color: var(--osdk-time-picker-input-border-color-focus);\n outline: var(--osdk-time-picker-input-focus-outline);\n outline-offset: var(--osdk-time-picker-input-focus-offset);\n }\n}\n","/* DatetimePickerField — component-specific overrides.\n Wrapper doubles as Popover.Trigger — suppress its own outline since\n :focus-within handles the focus indicator when the inner input is focused. */\n.osdkDatetimeInputWrapper {\n outline: none;\n}\n\n/* Time footer — rendered as a popover sibling (not a DayPicker tfoot) so the\n border-top can span the full popover width via negative margins. */\n.osdkDatetimeTimeFooter {\n padding-top: var(--osdk-time-picker-padding-top);\n padding-left: var(--osdk-datetime-popover-padding);\n padding-right: var(--osdk-datetime-popover-padding);\n margin-top: var(--osdk-time-picker-margin-top);\n margin-left: calc(var(--osdk-datetime-popover-padding) * -1);\n margin-right: calc(var(--osdk-datetime-popover-padding) * -1);\n border-top: var(--osdk-time-picker-border-top);\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/* TODO: Extract each variable into its tokens file and map to default value there */\n\n.osdkComboboxTrigger {\n display: inline-flex;\n align-items: center;\n justify-content: space-between;\n gap: var(--osdk-combobox-trigger-spacing, var(--osdk-surface-spacing));\n width: 100%;\n min-height: var(--osdk-combobox-trigger-min-height, 30px);\n padding: var(\n --osdk-combobox-trigger-padding,\n calc(var(--osdk-surface-spacing) * 1.5)\n calc(var(--osdk-surface-spacing) * 2.5)\n );\n cursor: pointer;\n border-radius: var(\n --osdk-combobox-trigger-border-radius,\n var(--osdk-surface-border-radius)\n );\n border: var(\n --osdk-combobox-trigger-border-width,\n var(--osdk-surface-border-width)\n )\n solid\n var(\n --osdk-combobox-trigger-border-color,\n var(--osdk-surface-border-color-default)\n );\n background-color: var(\n --osdk-combobox-trigger-bg,\n var(--osdk-surface-background-color-default-rest)\n );\n color: var(\n --osdk-combobox-trigger-color,\n var(--osdk-typography-color-default-rest)\n );\n font-family: var(\n --osdk-combobox-font-family,\n var(--osdk-typography-family-default)\n );\n font-size: var(\n --osdk-combobox-font-size,\n var(--osdk-typography-size-body-medium)\n );\n line-height: var(\n --osdk-combobox-line-height,\n var(--osdk-typography-line-height-default)\n );\n transition:\n background-color\n var(\n --osdk-combobox-transition-duration,\n var(--osdk-emphasis-transition-duration)\n )\n var(--osdk-combobox-transition-ease, var(--osdk-emphasis-ease-default)),\n border-color\n var(\n --osdk-combobox-transition-duration,\n var(--osdk-emphasis-transition-duration)\n )\n var(--osdk-combobox-transition-ease, var(--osdk-emphasis-ease-default));\n\n &:hover {\n background-color: var(\n --osdk-combobox-trigger-bg-hover,\n var(--osdk-surface-background-color-default-hover)\n );\n }\n\n &:active {\n background-color: var(\n --osdk-combobox-trigger-bg-active,\n var(--osdk-surface-background-color-default-active)\n );\n }\n\n &:focus-visible {\n outline: var(\n --osdk-combobox-trigger-focus-width,\n var(--osdk-emphasis-focus-width)\n )\n solid\n var(--osdk-combobox-trigger-focus-color, var(--osdk-emphasis-focus-color));\n outline-offset: var(\n --osdk-combobox-trigger-focus-offset,\n var(--osdk-emphasis-focus-offset)\n );\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(\n --osdk-combobox-trigger-border-color-active,\n var(--osdk-intent-primary-rest)\n );\n }\n}\n\n/* Multi-select trigger: no hover/active background since chips are interactive */\n.osdkComboboxTriggerMulti {\n &:hover {\n background-color: var(\n --osdk-combobox-trigger-bg,\n var(--osdk-surface-background-color-default-rest)\n );\n }\n\n &:active {\n background-color: var(\n --osdk-combobox-trigger-bg,\n var(--osdk-surface-background-color-default-rest)\n );\n }\n}\n\n.osdkComboboxValueContainer {\n flex: 1;\n display: grid;\n min-width: 0;\n text-align: start;\n\n & > * {\n grid-area: 1 / 1;\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n }\n}\n\n.osdkComboboxPlaceholder {\n text-align: start;\n color: var(\n --osdk-combobox-placeholder-color,\n var(--osdk-typography-color-muted)\n );\n pointer-events: none;\n}\n\n.osdkComboboxIcon {\n display: flex;\n align-items: center;\n justify-content: center;\n line-height: 0;\n color: var(--osdk-combobox-icon-color, var(--osdk-iconography-color-muted));\n flex-shrink: 0;\n transition: transform\n var(\n --osdk-combobox-transition-duration,\n var(--osdk-emphasis-transition-duration)\n )\n var(--osdk-combobox-transition-ease, var(--osdk-emphasis-ease-default));\n\n [data-popup-open] > & {\n transform: rotate(180deg);\n }\n}\n\n.osdkComboboxInputWrapper {\n display: flex;\n flex-wrap: wrap;\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 border-radius: var(\n --osdk-combobox-border-radius,\n var(--osdk-surface-border-radius)\n );\n border: var(--osdk-combobox-border-width, var(--osdk-surface-border-width))\n solid\n var(--osdk-combobox-border-color, var(--osdk-surface-border-color-default));\n background-color: var(\n --osdk-combobox-input-bg,\n var(--osdk-surface-background-color-default-rest)\n );\n transition: border-color\n var(\n --osdk-combobox-transition-duration,\n var(--osdk-emphasis-transition-duration)\n )\n var(--osdk-combobox-transition-ease, var(--osdk-emphasis-ease-default));\n\n &:focus-within {\n border-color: var(\n --osdk-combobox-focus-border-color,\n var(--osdk-intent-primary-rest)\n );\n outline: var(--osdk-combobox-focus-width, var(--osdk-emphasis-focus-width))\n solid var(--osdk-combobox-focus-color, var(--osdk-emphasis-focus-color));\n outline-offset: var(\n --osdk-combobox-focus-offset,\n var(--osdk-emphasis-focus-offset)\n );\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 width: 100%;\n text-overflow: ellipsis;\n padding: var(\n --osdk-combobox-input-padding,\n calc(var(--osdk-surface-spacing) * 1.5)\n calc(var(--osdk-surface-spacing) * 2)\n );\n border-radius: var(\n --osdk-combobox-border-radius,\n var(--osdk-surface-border-radius)\n );\n border: var(--osdk-combobox-border-width, var(--osdk-surface-border-width))\n solid\n var(--osdk-combobox-border-color, var(--osdk-surface-border-color-default));\n background-color: var(\n --osdk-combobox-input-bg,\n var(--osdk-surface-background-color-default-rest)\n );\n transition: border-color\n var(\n --osdk-combobox-transition-duration,\n var(--osdk-emphasis-transition-duration)\n )\n var(--osdk-combobox-transition-ease, var(--osdk-emphasis-ease-default));\n\n &:focus {\n border-color: var(\n --osdk-combobox-focus-border-color,\n var(--osdk-intent-primary-rest)\n );\n outline: none;\n }\n\n .osdkComboboxInputWrapper & {\n padding: 0;\n border: none;\n border-radius: 0;\n background: transparent;\n\n &:focus {\n border-color: unset;\n outline: none;\n outline-offset: unset;\n }\n }\n font-family: var(\n --osdk-combobox-font-family,\n var(--osdk-typography-family-default)\n );\n font-size: var(\n --osdk-combobox-font-size,\n var(--osdk-typography-size-body-medium)\n );\n line-height: var(\n --osdk-combobox-line-height,\n var(--osdk-typography-line-height-default)\n );\n color: var(\n --osdk-combobox-input-color,\n var(--osdk-typography-color-default-rest)\n );\n outline: none;\n\n &::placeholder {\n color: var(\n --osdk-combobox-placeholder-color,\n var(--osdk-typography-color-muted)\n );\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(\n var(--osdk-combobox-spacing, var(--osdk-surface-spacing)) * 1.5\n );\n border-radius: var(\n --osdk-combobox-border-radius,\n var(--osdk-surface-border-radius)\n );\n border: var(--osdk-combobox-border-width, var(--osdk-surface-border-width))\n solid\n var(--osdk-combobox-border-color, var(--osdk-surface-border-color-default));\n background-color: var(\n --osdk-combobox-popup-bg,\n var(--osdk-surface-background-color-default-rest)\n );\n box-shadow: var(--osdk-combobox-popup-shadow, var(--osdk-surface-shadow-2));\n}\n\n/*\n * When the popup contains a sticky search input, delegate scrolling to the\n * list so the scrollbar doesn't render behind the pinned search input.\n * The popup becomes a non-scrolling flex column; the list fills remaining\n * space and scrolls its own content.\n */\n.osdkComboboxPopup:has(> .osdkComboboxPopupSearchInput) {\n overflow: hidden;\n}\n\n/*\n * When the popup has a search input it stops scrolling (overflow: hidden above).\n * The list fills the remaining space so either its own content or the\n * VirtualizedScroller inside can scroll independently.\n */\n.osdkComboboxPopup:has(> .osdkComboboxPopupSearchInput) > .osdkComboboxList {\n flex: 1;\n min-block-size: 0;\n}\n\n.osdkComboboxItem {\n display: flex;\n align-items: center;\n gap: calc(var(--osdk-combobox-spacing, var(--osdk-surface-spacing)) * 1.5);\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(\n --osdk-combobox-border-radius,\n var(--osdk-surface-border-radius)\n );\n cursor: pointer;\n font-family: var(\n --osdk-combobox-font-family,\n var(--osdk-typography-family-default)\n );\n font-size: var(\n --osdk-combobox-font-size,\n var(--osdk-typography-size-body-medium)\n );\n line-height: var(\n --osdk-combobox-line-height,\n var(--osdk-typography-line-height-default)\n );\n color: var(\n --osdk-combobox-item-color,\n var(--osdk-typography-color-default-rest)\n );\n transition: background-color\n var(\n --osdk-combobox-transition-duration,\n var(--osdk-emphasis-transition-duration)\n )\n var(--osdk-combobox-transition-ease, var(--osdk-emphasis-ease-default));\n\n &[data-highlighted] {\n background-color: var(\n --osdk-combobox-item-bg-highlighted,\n var(--osdk-surface-background-color-default-hover)\n );\n outline: none;\n }\n\n &[data-selected] {\n background-color: var(\n --osdk-combobox-item-bg-selected,\n var(--osdk-surface-layer-primary)\n );\n color: var(\n --osdk-combobox-item-color-selected,\n var(--osdk-intent-primary-rest)\n );\n }\n\n &[data-disabled] {\n cursor: not-allowed;\n opacity: var(--osdk-disabled-opacity, 0.5);\n }\n}\n\n.osdkComboboxItemIndicator {\n display: flex;\n align-items: center;\n justify-content: center;\n width: calc(var(--osdk-combobox-spacing, var(--osdk-surface-spacing)) * 4);\n flex-shrink: 0;\n color: var(\n --osdk-combobox-item-color-selected,\n var(--osdk-intent-primary-rest)\n );\n visibility: hidden;\n\n &[data-selected] {\n visibility: visible;\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(\n var(--osdk-combobox-spacing, var(--osdk-surface-spacing)) * 2\n );\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(\n --osdk-combobox-border-radius,\n var(--osdk-surface-border-radius)\n );\n background-color: var(\n --osdk-combobox-chip-bg,\n var(--osdk-surface-background-color-default-hover)\n );\n font-family: var(\n --osdk-combobox-font-family,\n var(--osdk-typography-family-default)\n );\n font-size: var(\n --osdk-combobox-chip-font-size,\n var(--osdk-typography-size-body-small)\n );\n line-height: var(\n --osdk-combobox-line-height,\n var(--osdk-typography-line-height-default)\n );\n color: var(\n --osdk-combobox-chip-color,\n var(--osdk-typography-color-default-rest)\n );\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(\n --osdk-combobox-chip-remove-color,\n var(--osdk-iconography-color-muted)\n );\n transition: color\n var(\n --osdk-combobox-transition-duration,\n var(--osdk-emphasis-transition-duration)\n )\n var(--osdk-combobox-transition-ease, var(--osdk-emphasis-ease-default));\n\n &:hover {\n color: var(\n --osdk-combobox-chip-remove-color-hover,\n var(--osdk-typography-color-default-rest)\n );\n }\n}\n\n.osdkComboboxClear {\n display: flex;\n align-items: center;\n justify-content: center;\n margin: 0;\n padding: 0;\n line-height: 0;\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(\n --osdk-combobox-border-radius,\n var(--osdk-surface-border-radius)\n );\n transition:\n color\n var(\n --osdk-combobox-transition-duration,\n var(--osdk-emphasis-transition-duration)\n )\n var(--osdk-combobox-transition-ease, var(--osdk-emphasis-ease-default)),\n background-color\n var(\n --osdk-combobox-transition-duration,\n var(--osdk-emphasis-transition-duration)\n )\n var(--osdk-combobox-transition-ease, var(--osdk-emphasis-ease-default));\n\n &:hover {\n color: var(\n --osdk-combobox-clear-color-hover,\n var(--osdk-typography-color-default-rest)\n );\n background-color: var(\n --osdk-combobox-clear-bg-hover,\n var(--osdk-surface-background-color-default-hover)\n );\n }\n}\n\n.osdkComboboxList {\n display: flex;\n flex-direction: column;\n overflow-y: auto;\n}\n\n.osdkComboboxEmpty {\n padding: var(--osdk-combobox-spacing, var(--osdk-surface-spacing))\n var(--osdk-combobox-spacing, var(--osdk-surface-spacing));\n text-align: center;\n color: var(--osdk-combobox-empty-color, var(--osdk-typography-color-muted));\n font-family: var(\n --osdk-combobox-font-family,\n var(--osdk-typography-family-default)\n );\n font-size: var(\n --osdk-combobox-font-size,\n var(--osdk-typography-size-body-medium)\n );\n\n &:empty {\n display: none;\n }\n}\n\n.osdkComboboxItemCheckbox {\n display: flex;\n align-items: center;\n justify-content: center;\n width: calc(var(--osdk-combobox-spacing, var(--osdk-surface-spacing)) * 4);\n height: calc(var(--osdk-combobox-spacing, var(--osdk-surface-spacing)) * 4);\n flex-shrink: 0;\n border-radius: var(\n --osdk-combobox-checkbox-border-radius,\n var(--osdk-surface-border-radius)\n );\n border: var(\n --osdk-combobox-checkbox-border-width,\n var(--osdk-surface-border-width)\n )\n solid\n var(\n --osdk-combobox-checkbox-border-color,\n var(--osdk-surface-border-color-default)\n );\n color: transparent;\n background-color: var(\n --osdk-combobox-checkbox-bg,\n var(--osdk-surface-background-color-default-rest)\n );\n transition:\n background-color\n var(\n --osdk-combobox-transition-duration,\n var(--osdk-emphasis-transition-duration)\n )\n var(--osdk-combobox-transition-ease, var(--osdk-emphasis-ease-default)),\n color\n var(\n --osdk-combobox-transition-duration,\n var(--osdk-emphasis-transition-duration)\n )\n var(--osdk-combobox-transition-ease, var(--osdk-emphasis-ease-default));\n\n &[data-selected] {\n background-color: var(\n --osdk-combobox-checkbox-bg-checked,\n var(--osdk-intent-primary-rest)\n );\n border-color: var(\n --osdk-combobox-checkbox-border-color-checked,\n var(--osdk-intent-primary-rest)\n );\n color: var(\n --osdk-combobox-checkbox-color-checked,\n var(--osdk-surface-background-color-default-rest)\n );\n }\n}\n\n.osdkComboboxTriggerChips {\n display: flex;\n flex-wrap: wrap;\n gap: calc(var(--osdk-combobox-spacing, var(--osdk-surface-spacing)) * 1);\n grid-area: 1 / 1;\n align-items: center;\n}\n\n.osdkComboboxTriggerChip {\n display: inline-flex;\n align-items: center;\n gap: calc(var(--osdk-combobox-spacing, var(--osdk-surface-spacing)) * 1);\n padding: calc(var(--osdk-combobox-spacing, var(--osdk-surface-spacing)) * 1)\n calc(var(--osdk-combobox-spacing, var(--osdk-surface-spacing)) * 1.5);\n border-radius: var(\n --osdk-combobox-border-radius,\n var(--osdk-surface-border-radius)\n );\n background-color: var(\n --osdk-combobox-chip-bg,\n var(--osdk-surface-background-color-default-hover)\n );\n font-size: var(\n --osdk-combobox-chip-font-size,\n var(--osdk-typography-size-body-small)\n );\n line-height: 1;\n color: var(\n --osdk-combobox-chip-color,\n var(--osdk-typography-color-default-rest)\n );\n white-space: nowrap;\n}\n\n.osdkComboboxTriggerChipRemove {\n display: flex;\n align-items: center;\n justify-content: center;\n padding: 0;\n margin: 0;\n border: none;\n background: transparent;\n cursor: pointer;\n line-height: 0;\n color: var(\n --osdk-combobox-chip-remove-color,\n var(--osdk-iconography-color-muted)\n );\n\n &:hover {\n color: var(\n --osdk-combobox-chip-remove-color-hover,\n var(--osdk-typography-color-default-rest)\n );\n }\n}\n\n.osdkComboboxPopupSearchInput {\n position: sticky;\n inset-block-start: 0;\n /* Keeps the sticky search input above scrolled list items */\n z-index: 1;\n background-color: var(\n --osdk-combobox-popup-bg,\n var(--osdk-surface-background-color-default-rest)\n );\n margin-block-end: calc(\n var(--osdk-combobox-spacing, var(--osdk-surface-spacing)) * 1.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/* TODO: Extract each variable into its tokens file and map to default value there */\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: var(\n --osdk-select-trigger-padding,\n calc(var(--osdk-surface-spacing) * 1.5)\n calc(var(--osdk-surface-spacing) * 2.5)\n );\n cursor: pointer;\n border-radius: var(\n --osdk-select-border-radius,\n var(--osdk-surface-border-radius)\n );\n border: var(--osdk-select-border-width, var(--osdk-surface-border-width))\n solid\n var(--osdk-select-border-color, var(--osdk-surface-border-color-default));\n background-color: var(\n --osdk-select-trigger-bg,\n var(--osdk-surface-background-color-default-rest)\n );\n color: var(\n --osdk-select-trigger-color,\n var(--osdk-typography-color-default-rest)\n );\n font-family: var(\n --osdk-select-font-family,\n var(--osdk-typography-family-default)\n );\n font-size: var(\n --osdk-select-font-size,\n var(--osdk-typography-size-body-medium)\n );\n line-height: var(\n --osdk-select-line-height,\n var(--osdk-typography-line-height-default)\n );\n transition:\n background-color\n var(\n --osdk-select-transition-duration,\n var(--osdk-emphasis-transition-duration)\n )\n var(--osdk-select-transition-ease, var(--osdk-emphasis-ease-default)),\n border-color\n var(\n --osdk-select-transition-duration,\n var(--osdk-emphasis-transition-duration)\n )\n var(--osdk-select-transition-ease, var(--osdk-emphasis-ease-default));\n\n &:hover {\n background-color: var(\n --osdk-select-trigger-bg-hover,\n var(--osdk-surface-background-color-default-hover)\n );\n }\n\n &:active {\n background-color: var(\n --osdk-select-trigger-bg-active,\n var(--osdk-surface-background-color-default-active)\n );\n }\n\n &:focus-visible {\n outline: var(--osdk-select-focus-width, var(--osdk-emphasis-focus-width))\n solid var(--osdk-select-focus-color, var(--osdk-emphasis-focus-color));\n outline-offset: var(\n --osdk-select-focus-offset,\n var(--osdk-emphasis-focus-offset)\n );\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(\n --osdk-select-border-color-active,\n var(--osdk-intent-primary-rest)\n );\n }\n}\n\n.osdkSelectValueContainer {\n flex: 1;\n display: grid;\n min-width: 0;\n\n & > * {\n grid-area: 1 / 1;\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n }\n}\n\n.osdkSelectValue {\n text-align: left;\n}\n\n.osdkSelectPlaceholder {\n text-align: left;\n color: var(\n --osdk-select-placeholder-color,\n var(--osdk-typography-color-muted)\n );\n pointer-events: none;\n}\n\n.osdkSelectValue:not([data-placeholder]) ~ .osdkSelectPlaceholder {\n display: none;\n}\n\n.osdkSelectIcon {\n display: flex;\n align-items: center;\n justify-content: center;\n line-height: 0;\n color: var(--osdk-select-icon-color, var(--osdk-iconography-color-muted));\n flex-shrink: 0;\n transition: transform\n var(\n --osdk-select-transition-duration,\n var(--osdk-emphasis-transition-duration)\n )\n var(--osdk-select-transition-ease, var(--osdk-emphasis-ease-default));\n\n [data-popup-open] > & {\n transform: rotate(180deg);\n }\n}\n\n.osdkSelectClear {\n display: flex;\n align-items: center;\n justify-content: center;\n margin: 0;\n padding: 0;\n line-height: 0;\n border: none;\n background: transparent;\n cursor: pointer;\n flex-shrink: 0;\n color: var(--osdk-select-clear-color, var(--osdk-iconography-color-muted));\n border-radius: var(\n --osdk-select-border-radius,\n var(--osdk-surface-border-radius)\n );\n transition:\n color\n var(\n --osdk-select-transition-duration,\n var(--osdk-emphasis-transition-duration)\n )\n var(--osdk-select-transition-ease, var(--osdk-emphasis-ease-default)),\n background-color\n var(\n --osdk-select-transition-duration,\n var(--osdk-emphasis-transition-duration)\n )\n var(--osdk-select-transition-ease, var(--osdk-emphasis-ease-default));\n\n &:hover {\n color: var(\n --osdk-select-clear-color-hover,\n var(--osdk-typography-color-default-rest)\n );\n background-color: var(\n --osdk-select-clear-bg-hover,\n var(--osdk-surface-background-color-default-hover)\n );\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 border-radius: var(\n --osdk-select-border-radius,\n var(--osdk-surface-border-radius)\n );\n border: var(--osdk-select-border-width, var(--osdk-surface-border-width))\n solid\n var(--osdk-select-border-color, var(--osdk-surface-border-color-default));\n background-color: var(\n --osdk-select-popup-bg,\n var(--osdk-surface-background-color-default-rest)\n );\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(\n --osdk-select-border-radius,\n var(--osdk-surface-border-radius)\n );\n cursor: pointer;\n font-family: var(\n --osdk-select-font-family,\n var(--osdk-typography-family-default)\n );\n font-size: var(\n --osdk-select-font-size,\n var(--osdk-typography-size-body-medium)\n );\n line-height: var(\n --osdk-select-line-height,\n var(--osdk-typography-line-height-default)\n );\n color: var(\n --osdk-select-item-color,\n var(--osdk-typography-color-default-rest)\n );\n transition: background-color\n var(\n --osdk-select-transition-duration,\n var(--osdk-emphasis-transition-duration)\n )\n var(--osdk-select-transition-ease, var(--osdk-emphasis-ease-default));\n\n &[data-highlighted] {\n background-color: var(\n --osdk-select-item-bg-highlighted,\n var(--osdk-surface-background-color-default-hover)\n );\n outline: none;\n }\n\n &[data-selected] {\n background-color: var(\n --osdk-select-item-bg-selected,\n var(--osdk-surface-layer-primary)\n );\n color: var(\n --osdk-select-item-color-selected,\n var(--osdk-intent-primary-rest)\n );\n }\n\n &[data-disabled] {\n cursor: not-allowed;\n opacity: var(--osdk-disabled-opacity, 0.5);\n }\n}\n","/*\n * Copyright 2026 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/* Outer wrapper — looks like an input field */\n.osdkFilePickerTrigger {\n display: flex;\n align-items: center;\n width: 100%;\n height: var(--osdk-file-picker-trigger-height);\n border: var(--osdk-file-picker-trigger-border);\n border-radius: var(--osdk-file-picker-trigger-border-radius);\n background: var(--osdk-file-picker-trigger-bg);\n font-family: var(--osdk-file-picker-trigger-font-family);\n font-size: var(--osdk-file-picker-trigger-font-size);\n box-sizing: border-box;\n overflow: hidden;\n transition:\n background-color var(--osdk-file-picker-transition-duration)\n var(--osdk-file-picker-transition-ease),\n border-color var(--osdk-file-picker-transition-duration)\n var(--osdk-file-picker-transition-ease);\n\n &:hover {\n background: var(--osdk-file-picker-trigger-bg-hover);\n }\n\n &:focus-visible {\n border-color: var(--osdk-file-picker-trigger-border-color-focus);\n outline: var(--osdk-file-picker-trigger-focus-width) solid\n var(--osdk-file-picker-trigger-focus-color);\n outline-offset: var(--osdk-file-picker-trigger-focus-offset);\n }\n\n &[aria-invalid] {\n border-color: var(--osdk-file-picker-trigger-border-color-error);\n }\n}\n\n/* display: none fully removes the input from the a11y tree, avoiding\n nested-interactive inside the role=\"button\" trigger. Programmatic\n .click() still opens the file dialog. */\n.osdkFilePickerHiddenInput {\n display: none;\n}\n\n/* File name text (left section) */\n.osdkFilePickerText {\n flex: 1;\n padding: var(--osdk-file-picker-trigger-padding);\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n text-align: left;\n color: var(--osdk-file-picker-trigger-color);\n cursor: pointer;\n background: none;\n border: none;\n font-family: inherit;\n font-size: inherit;\n}\n\n.osdkFilePickerPlaceholder {\n color: var(--osdk-file-picker-trigger-placeholder-color);\n}\n\n/* Clear ✕ button */\n.osdkFilePickerClear {\n display: flex;\n align-items: center;\n justify-content: center;\n flex-shrink: 0;\n width: var(--osdk-file-picker-clear-size);\n height: var(--osdk-file-picker-clear-size);\n margin: var(--osdk-file-picker-clear-margin);\n padding: 0;\n border: none;\n background: none;\n color: var(--osdk-file-picker-clear-color);\n cursor: pointer;\n transition: color var(--osdk-file-picker-transition-duration)\n var(--osdk-file-picker-transition-ease);\n\n &:hover {\n color: var(--osdk-file-picker-clear-color-hover);\n }\n\n &:focus-visible {\n outline: var(--osdk-file-picker-trigger-focus-width) solid\n var(--osdk-file-picker-trigger-focus-color);\n border-radius: var(--osdk-surface-border-radius);\n }\n}\n\n/* Browse label (right section) */\n.osdkFilePickerBrowse {\n flex-shrink: 0;\n align-self: stretch;\n display: flex;\n align-items: center;\n padding: var(--osdk-file-picker-browse-padding);\n border-left: var(--osdk-file-picker-browse-border-left);\n background: var(--osdk-file-picker-browse-bg);\n color: var(--osdk-file-picker-browse-color);\n font-family: var(--osdk-file-picker-trigger-font-family);\n font-size: var(--osdk-file-picker-trigger-font-size);\n pointer-events: none;\n transition: background-color var(--osdk-file-picker-transition-duration)\n var(--osdk-file-picker-transition-ease);\n}\n\n.osdkFilePickerTrigger:hover .osdkFilePickerBrowse {\n background-color: var(--osdk-file-picker-browse-bg-hover);\n}\n\n.osdkFilePickerTrigger:active .osdkFilePickerBrowse {\n background-color: var(--osdk-file-picker-browse-bg-active);\n}\n","/*\n * Copyright 2026 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.osdkNumberInputWrapper {\n display: flex;\n border-radius: var(--osdk-input-border-radius);\n border: var(--osdk-input-border-width) solid var(--osdk-input-border-color);\n background-color: var(--osdk-input-bg);\n transition:\n background-color var(--osdk-input-transition-duration)\n var(--osdk-input-transition-ease),\n border-color var(--osdk-input-transition-duration)\n var(--osdk-input-transition-ease);\n\n &:hover {\n background-color: var(--osdk-input-bg-hover);\n }\n\n &:focus-within {\n outline: var(--osdk-input-focus-width) solid var(--osdk-input-focus-color);\n outline-offset: var(--osdk-input-focus-offset);\n border-color: var(--osdk-input-border-color-focus);\n }\n\n &[aria-invalid] {\n border-color: var(--osdk-input-border-color-error);\n }\n}\n\n.osdkNumberInputField {\n flex: 1;\n min-width: 0;\n min-height: var(--osdk-input-min-height);\n padding: var(--osdk-input-padding);\n border: none;\n border-radius: var(--osdk-input-border-radius) 0 0\n var(--osdk-input-border-radius);\n background: transparent;\n color: var(--osdk-input-color);\n font-family: var(--osdk-input-font-family);\n font-size: var(--osdk-input-font-size);\n line-height: var(\n --osdk-input-line-height,\n var(--osdk-typography-line-height-default)\n );\n\n &::placeholder {\n color: var(--osdk-input-placeholder-color);\n }\n\n &:focus-visible {\n outline: none;\n }\n}\n\n.osdkNumberInputStepper {\n display: flex;\n flex-direction: column;\n border-left: var(--osdk-input-border-width) solid\n var(--osdk-input-border-color);\n}\n\n.osdkNumberInputStepButton {\n display: flex;\n align-items: center;\n justify-content: center;\n flex: 1;\n padding: 0 calc(var(--osdk-surface-spacing) * 1.5);\n border: none;\n background: transparent;\n color: var(--osdk-input-color);\n cursor: pointer;\n line-height: 0;\n\n &:hover {\n background-color: var(--osdk-input-bg-hover);\n }\n\n &:active {\n background-color: var(--osdk-input-border-color);\n }\n\n & + & {\n border-top: var(--osdk-input-border-width) solid\n var(--osdk-input-border-color);\n }\n}\n","/*\n * Copyright 2026 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.osdkAsyncDropdownError {\n color: var(--osdk-async-dropdown-error-color);\n}\n\n.osdkAsyncDropdownStatus {\n padding: var(--osdk-async-dropdown-status-padding);\n color: var(--osdk-async-dropdown-status-color);\n}\n\n.osdkAsyncDropdownSkeleton {\n width: var(--osdk-async-dropdown-skeleton-width);\n height: var(--osdk-async-dropdown-skeleton-height);\n margin: var(--osdk-async-dropdown-skeleton-margin);\n border-radius: var(--osdk-async-dropdown-skeleton-border-radius);\n}\n","/*\n * Copyright 2026 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.osdkObjectSetField {\n display: flex;\n align-items: center;\n gap: var(--osdk-object-set-gap);\n min-height: var(--osdk-object-set-min-height);\n padding: var(--osdk-object-set-padding);\n color: var(--osdk-object-set-color);\n font-family: var(--osdk-object-set-font-family);\n font-size: var(--osdk-object-set-font-size);\n line-height: var(--osdk-object-set-line-height);\n}\n\n.osdkObjectSetFieldEmpty {\n color: var(--osdk-object-set-placeholder-color);\n}\n\n.osdkObjectSetFieldError {\n color: var(--osdk-object-set-error-color);\n}\n\n.osdkObjectSetIconSkeleton {\n width: var(--osdk-object-set-icon-skeleton-width);\n align-self: stretch;\n}\n\n.osdkObjectSetLabelSkeleton {\n width: var(--osdk-object-set-label-skeleton-width);\n align-self: stretch;\n}\n","/*\n * Copyright 2026 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.osdkRadioGroup {\n display: flex;\n flex-direction: column;\n gap: var(--osdk-radio-gap);\n\n &[data-orientation=\"horizontal\"] {\n flex-direction: row;\n flex-wrap: wrap;\n }\n}\n\n.osdkRadioItem {\n display: flex;\n align-items: center;\n gap: var(--osdk-radio-item-gap);\n}\n\n.osdkRadioRoot {\n display: flex;\n align-items: center;\n justify-content: center;\n width: var(--osdk-radio-size);\n height: var(--osdk-radio-size);\n border-radius: 50%;\n border: var(--osdk-radio-border);\n cursor: pointer;\n flex-shrink: 0;\n\n &[data-unchecked] {\n background-color: var(--osdk-radio-bg);\n\n &:hover {\n background-color: var(--osdk-radio-bg-hover);\n }\n }\n\n &[data-checked] {\n background-color: var(--osdk-radio-bg-checked);\n\n &:hover {\n background-color: var(--osdk-radio-bg-checked-hover);\n }\n\n &:active {\n background-color: var(--osdk-radio-bg-checked-active);\n }\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.osdkRadioIndicator {\n width: var(--osdk-radio-indicator-size);\n height: var(--osdk-radio-indicator-size);\n border-radius: 50%;\n background-color: var(--osdk-radio-indicator-color);\n\n &[data-unchecked] {\n display: none;\n }\n}\n\n.osdkRadioLabel {\n font-family: var(--osdk-typography-font-family);\n font-size: var(--osdk-typography-font-size-default);\n line-height: var(--osdk-typography-line-height-default);\n color: var(--osdk-typography-color-default);\n cursor: pointer;\n}\n","/*\n * Copyright 2026 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.osdkBaseInput {\n display: block;\n width: 100%;\n min-height: var(--osdk-input-min-height);\n padding: var(--osdk-input-padding);\n border-radius: var(--osdk-input-border-radius);\n border: var(--osdk-input-border-width) solid var(--osdk-input-border-color);\n background-color: var(--osdk-input-bg);\n color: var(--osdk-input-color);\n font-family: var(--osdk-input-font-family);\n font-size: var(--osdk-input-font-size);\n line-height: var(\n --osdk-input-line-height,\n var(--osdk-typography-line-height-default)\n );\n transition:\n background-color var(--osdk-input-transition-duration)\n var(--osdk-input-transition-ease),\n border-color var(--osdk-input-transition-duration)\n var(--osdk-input-transition-ease);\n\n &::placeholder {\n color: var(--osdk-input-placeholder-color);\n }\n\n &:hover {\n background-color: var(--osdk-input-bg-hover);\n }\n\n &:focus-visible {\n outline: var(--osdk-input-focus-width) solid var(--osdk-input-focus-color);\n outline-offset: var(--osdk-input-focus-offset);\n border-color: var(--osdk-input-border-color-focus);\n }\n\n &:disabled {\n cursor: not-allowed;\n opacity: var(--osdk-input-disabled-opacity);\n }\n\n &[aria-invalid] {\n border-color: var(--osdk-input-border-color-error);\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.osdkFormHeader {\n margin: 0;\n padding-block: var(--osdk-form-header-block-padding);\n padding-inline: var(--osdk-form-header-inline-padding);\n border-bottom: var(--osdk-surface-border-width) solid\n var(--osdk-form-header-border-color);\n font-size: var(--osdk-form-header-font-size);\n font-weight: var(--osdk-form-header-font-weight);\n color: var(--osdk-form-header-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.filterList {\n display: flex;\n flex-direction: column;\n height: 100%;\n}\n\n.filterListCollapsed {\n display: flex;\n flex-direction: column;\n align-items: center;\n width: var(--osdk-filter-list-collapsed-width);\n height: 100%;\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-surface-spacing) 0;\n gap: var(--osdk-surface-spacing);\n}\n\n.expandedContent {\n display: flex;\n flex-direction: column;\n height: 100%;\n overflow: hidden;\n background: var(--osdk-filter-list-bg);\n border: var(--osdk-filter-list-border);\n border-radius: var(--osdk-filter-list-border-radius);\n box-shadow: var(--osdk-filter-list-shadow);\n padding: var(--osdk-filter-list-padding);\n gap: var(--osdk-filter-list-gap);\n}\n\n.scrollableContent {\n display: flex;\n flex-direction: column;\n flex: 1;\n overflow-y: auto;\n min-height: 0;\n}\n\n.hiddenContent {\n display: none;\n}\n\n.expandButton {\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 color: var(--osdk-filter-header-collapse-icon-color);\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.collapsedLabel {\n writing-mode: vertical-rl;\n transform: rotate(180deg);\n font-family: var(--osdk-filter-list-collapsed-label-font-family);\n font-size: var(--osdk-filter-list-collapsed-label-font-size);\n color: var(--osdk-filter-list-collapsed-label-color);\n font-weight: var(--osdk-filter-header-font-weight);\n user-select: none;\n}\n\n.addButtonContainer {\n display: flex;\n justify-content: center;\n padding: var(--osdk-filter-list-addButton-container-padding);\n background: var(--osdk-filter-list-addButton-container-bg);\n border-top: var(--osdk-filter-list-addButton-container-border-top);\n flex-shrink: 0;\n}\n\n.addButtonContainer > * {\n flex: 1;\n}\n\n.addButton {\n display: flex;\n align-items: center;\n justify-content: center;\n font-family: var(--osdk-filter-header-font-family);\n font-size: var(--osdk-filter-header-reset-font-size);\n color: var(--osdk-typography-color-default-rest);\n background: var(--osdk-filter-header-button-bg);\n border: var(--osdk-filter-list-addButton-border);\n cursor: pointer;\n padding: var(--osdk-filter-header-reset-padding);\n min-height: var(--osdk-filter-list-addButton-height);\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.dragOverlay {\n box-shadow: var(--osdk-filter-item-drag-overlay-shadow);\n border-radius: var(--osdk-filter-item-drag-overlay-border-radius);\n background: var(--osdk-filter-item-drag-overlay-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.errorContainer {\n display: flex;\n flex-direction: column;\n align-items: flex-start;\n gap: var(--osdk-error-boundary-gap, 8px);\n padding: var(--osdk-error-boundary-padding, 8px);\n border-radius: var(--osdk-error-boundary-border-radius, 4px);\n background-color: var(--osdk-error-boundary-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-error-boundary-font-size, 13px);\n color: var(--osdk-error-boundary-text-color, var(--osdk-intent-danger-rest, #c23030));\n}\n\n.retryButton {\n padding: var(--osdk-error-boundary-button-padding, 4px 8px);\n border: var(--osdk-surface-border-width, 1px) solid var(--osdk-error-boundary-button-border-color, currentColor);\n border-radius: var(--osdk-error-boundary-button-border-radius, 3px);\n background: transparent;\n font-size: var(--osdk-error-boundary-button-font-size, 12px);\n color: var(--osdk-error-boundary-button-color, inherit);\n cursor: pointer;\n transition: background-color var(--osdk-filter-input-transition, 150ms ease);\n\n &:hover {\n background-color: var(--osdk-error-boundary-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, rgba(45, 114, 210, 0.6));\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.filterItem {\n display: flex;\n flex-direction: column;\n gap: var(--osdk-filter-item-gap);\n border-radius: var(--osdk-filter-item-border-radius);\n padding: var(--osdk-filter-item-padding);\n}\n\n.itemHeader {\n display: flex;\n align-items: center;\n}\n\n.itemLabel {\n flex: 1;\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 min-width: 0;\n overflow: hidden;\n}\n\n.dragHandle {\n display: flex;\n align-items: center;\n justify-content: center;\n padding: var(--osdk-filter-item-drag-handle-padding);\n margin-right: var(--osdk-surface-spacing);\n border: none;\n background: var(--osdk-filter-item-drag-handle-bg);\n cursor: var(--osdk-drag-handle-cursor);\n border-radius: var(--osdk-filter-item-drag-handle-border-radius);\n color: var(--osdk-filter-item-drag-handle-color);\n touch-action: none;\n\n &:hover {\n color: var(--osdk-filter-item-drag-handle-color-hover);\n background: var(--osdk-filter-item-drag-handle-bg-hover);\n }\n\n &:active {\n cursor: var(--osdk-drag-handle-cursor-active);\n }\n\n &:focus-visible {\n outline: var(--osdk-filter-input-focus-outline-width) solid var(--osdk-filter-item-drag-handle-focus-outline-color);\n outline-offset: var(--osdk-filter-input-focus-outline-offset);\n }\n}\n\n.headerActionButton {\n display: flex;\n align-items: center;\n justify-content: center;\n padding: var(--osdk-filter-item-header-action-padding);\n margin-left: calc(var(--osdk-surface-spacing) * 0.5);\n border: none;\n background: transparent;\n cursor: pointer;\n border-radius: var(--osdk-filter-item-header-action-border-radius);\n color: var(--osdk-filter-item-header-action-color);\n opacity: 0;\n transition: opacity var(--osdk-filter-header-button-transition),\n background-color var(--osdk-filter-header-button-transition);\n\n &:hover {\n color: var(--osdk-typography-color-default-rest);\n background: var(--osdk-filter-item-header-action-bg-hover);\n }\n\n &:focus-visible {\n opacity: 1;\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.filterItem:hover .headerActionButton {\n opacity: 1;\n}\n\n.headerActionButton[data-popup-open],\n.headerActionButton[aria-pressed=\"true\"] {\n opacity: 1;\n}\n\n.searchRow {\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}\n\n.searchInput {\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.searchClearButton {\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.excludeRow {\n display: flex;\n align-items: center;\n opacity: 0;\n height: 0;\n overflow: hidden;\n transition: opacity var(--osdk-filter-header-button-transition),\n height var(--osdk-filter-header-button-transition);\n\n @media (prefers-reduced-motion: reduce) {\n transition: none;\n }\n}\n\n.excludeRowVisible {\n opacity: 1;\n height: auto;\n overflow: visible;\n}\n\n.excludeCountLabel {\n font-family: var(--osdk-filter-item-exclude-dropdown-font-family);\n font-size: var(--osdk-filter-item-exclude-dropdown-font-size);\n color: var(--osdk-filter-item-exclude-dropdown-color);\n margin-left: calc(var(--osdk-surface-spacing) * 0.5);\n}\n\n.clearAllButton {\n margin-left: auto;\n background: none;\n border: none;\n cursor: pointer;\n font-family: var(--osdk-filter-item-exclude-dropdown-font-family);\n font-size: var(--osdk-filter-item-exclude-dropdown-font-size);\n color: var(--osdk-filter-item-exclude-dropdown-color);\n padding: 0;\n\n &:hover {\n text-decoration: underline;\n }\n}\n\n.dragging {\n opacity: var(--osdk-filter-item-dragging-opacity);\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: var(--osdk-filter-header-padding);\n gap: var(--osdk-filter-header-gap);\n border-bottom: var(--osdk-filter-header-border-bottom);\n flex-shrink: 0;\n}\n\n.titleContainer {\n display: flex;\n align-items: center;\n gap: var(--osdk-filter-header-titleContainer-gap);\n flex: 1;\n min-width: 0;\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.actions {\n display: flex;\n align-items: center;\n gap: var(--osdk-surface-spacing);\n\n &:empty {\n display: none;\n }\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 color: var(--osdk-filter-header-collapse-icon-color);\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.resetButton {\n display: flex;\n align-items: center;\n gap: calc(var(--osdk-surface-spacing) * 0.5);\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: var(--osdk-filter-header-reset-border);\n cursor: pointer;\n padding: var(--osdk-filter-header-reset-padding);\n border-radius: var(--osdk-filter-header-reset-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 border: var(--osdk-filter-header-reset-border-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","/*\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: calc(var(--osdk-surface-spacing) * 3);\n padding: var(--osdk-surface-spacing) calc(var(--osdk-surface-spacing) * 3);\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 2026 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.positioner {\n z-index: var(--osdk-surface-z-index-3);\n}\n\n.popup {\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.searchContainer {\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.menuItem {\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 overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n\n &:hover,\n &[data-highlighted] {\n background-color: var(--osdk-surface-background-color-default-hover);\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) * 3);\n text-align: center;\n color: var(--osdk-typography-color-muted);\n font-size: var(--osdk-typography-size-body-medium);\n}\n","/*\n * Copyright 2026 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.trigger {\n display: flex;\n align-items: center;\n justify-content: center;\n font-family: var(--osdk-filter-header-font-family);\n font-size: var(--osdk-filter-header-reset-font-size);\n color: var(--osdk-typography-color-default-rest);\n background: var(--osdk-filter-header-button-bg);\n border: var(--osdk-filter-list-addButton-border);\n cursor: pointer;\n padding: var(--osdk-filter-header-reset-padding);\n min-height: var(--osdk-filter-list-addButton-height);\n border-radius: var(--osdk-filter-header-button-border-radius);\n transition: background-color var(--osdk-filter-header-button-transition);\n width: 100%;\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.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.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 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.rangeInput {\n display: flex;\n flex-direction: column;\n gap: var(--osdk-filter-range-gap);\n min-width: 0;\n transition: opacity var(--osdk-filter-content-fade-duration);\n}\n\n.rangeInput[data-loading=\"true\"] {\n opacity: 0.5;\n}\n\n.histogramContainer {\n display: flex;\n align-items: flex-end;\n height: var(--osdk-filter-range-histogram-height);\n gap: var(--osdk-filter-range-histogram-bar-gap);\n padding-bottom: var(--osdk-filter-range-histogram-padding-bottom);\n padding-inline: var(--osdk-filter-range-histogram-padding-inline);\n overflow: hidden;\n}\n\n.histogramBar {\n flex: 1;\n background: var(--osdk-filter-range-histogram-bar-color);\n min-width: var(--osdk-filter-range-histogram-bar-min-width);\n transition: background-color var(--osdk-filter-range-histogram-bar-transition);\n}\n\n.histogramBar[data-in-range=\"true\"] {\n background: var(--osdk-filter-range-histogram-bar-active-color);\n}\n\n.rangeInputs {\n display: flex;\n align-items: flex-end;\n gap: var(--osdk-filter-range-inputs-gap);\n min-width: 0;\n}\n\n.inputWrapper {\n flex: 1;\n display: flex;\n flex-direction: column;\n gap: var(--osdk-filter-range-input-wrapper-gap);\n min-width: 0;\n}\n\n.inputLabel {\n font-family: var(--osdk-filter-range-label-font-family);\n font-size: var(--osdk-filter-range-label-font-size);\n color: var(--osdk-filter-range-label-color);\n}\n\n.input {\n font-family: var(--osdk-filter-input-font-family);\n font-size: var(--osdk-filter-input-font-size);\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 min-width: 0;\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 display: flex;\n align-items: center;\n height: calc(\n var(--osdk-filter-input-font-size) + var(--osdk-filter-input-padding) * 2\n );\n color: var(--osdk-filter-range-separator-color);\n}\n\n@media (prefers-reduced-motion: reduce) {\n .histogramContainer,\n .rangeInput {\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/* Shared message styles for filter inputs */\n.loadingMessage,\n.errorMessage,\n.emptyMessage {\n font-family: var(--osdk-filter-message-font-family);\n font-size: var(--osdk-filter-message-font-size);\n padding: var(--osdk-filter-message-padding);\n}\n\n.loadingMessage,\n.emptyMessage {\n color: var(--osdk-filter-message-color-muted);\n}\n\n.errorMessage {\n color: var(--osdk-filter-message-color-danger);\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.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.osdkCheckboxRoot {\n display: flex;\n align-items: center;\n justify-content: center;\n width: calc(\n var(--osdk-checkbox-icon-size) + var(--osdk-checkbox-padding) * 2\n );\n height: calc(\n var(--osdk-checkbox-icon-size) + var(--osdk-checkbox-padding) * 2\n );\n flex-shrink: 0;\n padding: var(--osdk-checkbox-padding);\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 &[data-excluding][data-checked] {\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-visible {\n outline: var(--osdk-focus-outline);\n outline-offset: calc(-1 * var(--osdk-focus-visible-outline-offset));\n }\n}\n\n.osdkCheckboxIndicator {\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.listogram {\n display: flex;\n flex-direction: column;\n transition: opacity var(--osdk-filter-content-fade-duration);\n}\n\n.listogram[data-loading=\"true\"] {\n opacity: 0.5;\n}\n\n@media (prefers-reduced-motion: reduce) {\n .listogram {\n transition: none;\n }\n}\n\n.container {\n display: flex;\n flex-direction: column;\n gap: var(--osdk-filter-listogram-gap);\n}\n\n.row {\n display: flex;\n align-items: center;\n gap: var(--osdk-filter-listogram-row-gap);\n padding: var(--osdk-filter-listogram-row-padding);\n border: none;\n background: transparent;\n cursor: pointer;\n border-radius: var(--osdk-filter-listogram-row-border-radius);\n text-align: left;\n width: 100%;\n transition: background-color var(--osdk-filter-listogram-row-transition);\n\n &:hover {\n background: var(--osdk-filter-listogram-row-bg-hover);\n }\n\n &:focus-visible {\n outline: var(--osdk-filter-listogram-row-focus-outline);\n outline-offset: var(--osdk-filter-listogram-row-focus-offset);\n }\n}\n\n.row[aria-pressed=\"true\"] {\n background: var(--osdk-filter-listogram-row-bg-active);\n}\n\n.label {\n flex: 1;\n font-family: var(--osdk-filter-listogram-label-font-family);\n font-size: var(--osdk-filter-listogram-label-font-size);\n color: var(--osdk-filter-listogram-label-color);\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n}\n\n.label[data-excluding] {\n text-decoration: line-through;\n}\n\n.emptyLabel {\n color: var(--osdk-filter-listogram-empty-label-color);\n font-style: var(--osdk-filter-listogram-empty-label-font-style);\n}\n\n.bar {\n width: var(--osdk-filter-listogram-bar-width);\n flex-shrink: 0;\n height: var(--osdk-filter-listogram-bar-height);\n background: var(--osdk-filter-listogram-bar-bg);\n border-radius: var(--osdk-filter-listogram-bar-border-radius);\n overflow: hidden;\n}\n\n.barFill {\n display: block;\n height: 100%;\n width: 100%;\n background: var(--osdk-filter-listogram-row-bar-color, var(--osdk-filter-listogram-bar-color));\n border-radius: var(--osdk-filter-listogram-bar-border-radius);\n transform-origin: left;\n transform: scaleX(var(--osdk-filter-listogram-bar-fill-scale, 0));\n transition: transform var(--osdk-filter-listogram-bar-fill-transition);\n}\n\n.row[aria-pressed=\"true\"] .barFill {\n background: var(--osdk-filter-listogram-row-bar-color, var(--osdk-filter-listogram-selected-color));\n}\n\n.viewAllButton {\n display: flex;\n align-items: center;\n border: none;\n background: transparent;\n cursor: pointer;\n font-family: var(--osdk-filter-listogram-label-font-family);\n font-size: var(--osdk-filter-listogram-view-all-font-size);\n color: var(--osdk-filter-listogram-view-all-color);\n padding: var(--osdk-filter-listogram-row-padding);\n text-align: left;\n\n &:hover {\n text-decoration: underline;\n }\n\n &:focus-visible {\n outline: var(--osdk-filter-listogram-row-focus-outline);\n outline-offset: var(--osdk-filter-listogram-row-focus-offset);\n }\n}\n\n.checkbox {\n display: flex;\n}\n\n.count {\n font-family: var(--osdk-filter-listogram-count-font-family);\n font-size: var(--osdk-filter-listogram-count-font-size);\n font-variant-numeric: tabular-nums;\n color: var(--osdk-filter-listogram-count-color);\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.container {\n display: flex;\n flex-direction: column;\n gap: var(--osdk-filter-listogram-gap);\n}\n\n.row {\n display: flex;\n align-items: center;\n gap: var(--osdk-filter-listogram-row-gap);\n padding: var(--osdk-filter-listogram-row-padding);\n}\n\n.flexBar {\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.multiDate {\n display: flex;\n flex-direction: column;\n gap: var(--osdk-filter-multiselect-gap);\n}\n\n.clearAll {\n font-family: var(--osdk-filter-date-clear-font-family);\n font-size: var(--osdk-filter-date-clear-font-size);\n color: var(--osdk-filter-date-clear-color);\n background: transparent;\n border: none;\n cursor: pointer;\n padding: var(--osdk-filter-date-clear-padding);\n\n &:hover {\n text-decoration: underline;\n }\n}\n\n.calendarContainer {\n display: flex;\n}\n\n.input {\n flex: 1;\n font-family: var(--osdk-filter-input-font-family);\n font-size: var(--osdk-filter-timeline-input-font-size);\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.multiSelect {\n display: flex;\n flex-direction: column;\n gap: var(--osdk-filter-multiselect-gap);\n}\n\n.itemLabel {\n flex: 1;\n min-width: 0;\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n}\n\n.itemCount {\n font-family: var(--osdk-filter-multiselect-count-font-family);\n font-size: var(--osdk-filter-multiselect-count-font-size);\n font-variant-numeric: tabular-nums;\n color: var(--osdk-filter-multiselect-count-color);\n flex-shrink: 0;\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-family: var(--osdk-filter-null-count-font-family);\n font-size: var(--osdk-filter-null-count-font-size);\n font-variant-numeric: tabular-nums;\n color: var(--osdk-filter-null-count-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.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-family: var(--osdk-filter-input-font-family);\n font-size: var(--osdk-filter-timeline-input-font-size);\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.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 flex-shrink: 0;\n}\n\n.itemLabel {\n flex: 1;\n min-width: 0;\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n}\n\n.itemCount {\n font-variant-numeric: tabular-nums;\n color: var(--osdk-typography-color-muted);\n flex-shrink: 0;\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);\n}\n\n.labels {\n display: flex;\n align-items: center;\n gap: var(--osdk-filter-timeline-labels-gap);\n font-family: var(--osdk-filter-timeline-labels-font-family);\n font-size: var(--osdk-filter-timeline-labels-font-size);\n color: var(--osdk-filter-timeline-labels-color);\n}\n\n.clearButton {\n display: flex;\n align-items: center;\n justify-content: center;\n padding: var(--osdk-filter-timeline-button-padding);\n border: none;\n background: transparent;\n cursor: pointer;\n color: var(--osdk-filter-timeline-button-color);\n border-radius: var(--osdk-filter-timeline-button-border-radius);\n margin-left: auto;\n\n &:hover {\n background: var(--osdk-filter-timeline-button-bg-hover);\n color: var(--osdk-filter-timeline-button-color-hover);\n }\n}\n\n.brush {\n display: flex;\n align-items: center;\n gap: var(--osdk-filter-timeline-labels-gap);\n}\n\n.brush span {\n color: var(--osdk-filter-timeline-brush-color);\n}\n\n.input {\n flex: 1;\n font-family: var(--osdk-filter-input-font-family);\n font-size: var(--osdk-filter-timeline-input-font-size);\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.excludeDropdownContainer {\n display: flex;\n align-items: center;\n}\n\n.trigger {\n display: inline-flex;\n align-items: center;\n gap: calc(var(--osdk-surface-spacing) * 0.5);\n border: none;\n background: transparent;\n cursor: pointer;\n font-family: var(--osdk-filter-item-exclude-dropdown-font-family);\n font-size: var(--osdk-filter-item-exclude-dropdown-font-size);\n color: var(--osdk-filter-item-exclude-dropdown-trigger-color);\n padding: calc(var(--osdk-surface-spacing) * 1)\n calc(var(--osdk-surface-spacing) * 1);\n border-radius: var(--osdk-filter-item-exclude-dropdown-trigger-border-radius);\n\n &:hover {\n background: var(--osdk-filter-item-header-action-bg-hover);\n }\n\n &:focus-visible {\n outline: var(--osdk-filter-input-focus-outline-width) solid\n var(--osdk-filter-input-focus-outline-color);\n outline-offset: var(--osdk-filter-input-focus-outline-offset);\n }\n}\n\n.triggerLabel {\n white-space: nowrap;\n}\n\n.positioner {\n z-index: var(--osdk-surface-z-index-3);\n}\n\n.popup {\n background: var(--osdk-filter-item-menu-bg);\n border: var(--osdk-filter-item-menu-border);\n border-radius: var(--osdk-filter-item-menu-border-radius);\n box-shadow: var(--osdk-filter-item-menu-shadow);\n padding: var(--osdk-filter-item-menu-padding);\n min-width: var(--osdk-filter-item-exclude-dropdown-min-width);\n}\n\n.menuItem {\n display: flex;\n align-items: center;\n gap: var(--osdk-surface-spacing);\n padding: var(--osdk-filter-item-menu-item-padding);\n font-family: var(--osdk-filter-item-menu-item-font-family);\n font-size: var(--osdk-filter-item-menu-item-font-size);\n color: var(--osdk-filter-item-menu-item-color);\n border-radius: var(--osdk-filter-item-menu-item-border-radius);\n cursor: pointer;\n border: none;\n background: transparent;\n width: 100%;\n text-align: left;\n\n &:hover,\n &[data-highlighted] {\n background: var(--osdk-filter-item-menu-item-bg-hover);\n }\n\n &:focus-visible {\n outline: var(--osdk-filter-input-focus-outline-width) solid\n var(--osdk-filter-input-focus-outline-color);\n outline-offset: var(--osdk-filter-input-focus-outline-offset);\n }\n}\n\n.menuItemCheck {\n display: flex;\n align-items: center;\n width: var(--osdk-filter-item-menu-check-size);\n flex-shrink: 0;\n}\n",".container {\n display: flex;\n flex-direction: column;\n width: 100%;\n height: 100%;\n background-color: var(--osdk-markdown-renderer-bg);\n border: var(--osdk-markdown-renderer-border);\n border-radius: var(--osdk-surface-border-radius);\n overflow: hidden;\n position: relative;\n}\n\n.documentWrapper {\n flex: 1;\n overflow: auto;\n padding: var(--osdk-markdown-renderer-padding);\n}\n\n.document {\n font-family: var(--osdk-typography-family-default);\n font-size: var(--osdk-typography-size-body-medium);\n color: var(--osdk-typography-color-default-rest);\n line-height: var(--osdk-markdown-renderer-line-height);\n}\n\n.document h1,\n.document h2,\n.document h3,\n.document h4,\n.document h5,\n.document h6 {\n color: var(--osdk-typography-color-default-rest);\n margin-top: var(--osdk-markdown-renderer-heading-margin-top);\n margin-bottom: var(--osdk-markdown-renderer-heading-margin-bottom);\n}\n\n.document h1 {\n font-size: var(--osdk-typography-size-heading-large);\n}\n\n.document h2 {\n font-size: var(--osdk-typography-size-heading-medium);\n}\n\n.document h3 {\n font-size: var(--osdk-typography-size-heading-small);\n}\n\n.document p {\n margin-bottom: var(--osdk-markdown-renderer-paragraph-spacing);\n}\n\n.document a {\n color: var(--osdk-markdown-renderer-link-color);\n text-decoration: none;\n}\n\n.document a:hover {\n text-decoration: underline;\n}\n\n.document code {\n background-color: var(--osdk-markdown-renderer-code-bg);\n padding: var(--osdk-markdown-renderer-code-inline-padding);\n border-radius: var(--osdk-markdown-renderer-code-inline-border-radius);\n font-family: var(--osdk-typography-family-monospace);\n font-size: 0.9em;\n}\n\n.document pre {\n background-color: var(--osdk-markdown-renderer-code-bg);\n padding: var(--osdk-surface-spacing);\n border-radius: var(--osdk-surface-border-radius);\n overflow-x: auto;\n}\n\n.document pre code {\n background-color: transparent;\n padding: 0;\n}\n\n.document blockquote {\n border-left: var(--osdk-markdown-renderer-blockquote-border);\n margin-left: 0;\n padding-left: var(--osdk-surface-spacing);\n color: var(--osdk-typography-color-muted);\n}\n\n.document table {\n border-collapse: collapse;\n width: 100%;\n margin-bottom: var(--osdk-markdown-renderer-paragraph-spacing);\n}\n\n.document th,\n.document td {\n border: 1px solid var(--osdk-markdown-renderer-table-border);\n padding: calc(var(--osdk-surface-spacing) / 2) var(--osdk-surface-spacing);\n text-align: left;\n}\n\n.document th {\n background-color: var(--osdk-markdown-renderer-code-bg);\n font-weight: 600;\n}\n\n.document img {\n max-width: 100%;\n height: auto;\n}\n\n.document hr {\n border: none;\n border-top: 1px solid var(--osdk-markdown-renderer-table-border);\n margin: var(--osdk-markdown-renderer-paragraph-spacing) 0;\n}\n\n.document ul,\n.document ol {\n padding-left: 2em;\n margin-bottom: var(--osdk-markdown-renderer-paragraph-spacing);\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.osdkCellSkeleton.osdkCellSkeleton {\n --osdk-background-skeleton-from: var(--osdk-table-skeleton-color-from);\n --osdk-background-skeleton-to: var(--osdk-table-skeleton-color-to);\n border-radius: calc(var(--osdk-surface-border-radius) * 0.5);\n box-shadow: none;\n color: transparent;\n cursor: default;\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: none;\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 flex: 1;\n}\n\n.osdkCheckboxContainer {\n display: flex;\n align-items: center;\n justify-content: center;\n width: 100%;\n height: 100%;\n}\n",".osdkEditableCell {\n width: 100%;\n display: flex;\n justify-content: space-between;\n align-items: center;\n gap: var(--osdk-surface-spacing);\n\n padding: var(--osdk-surface-spacing) calc(var(--osdk-surface-spacing) * 3);\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-within,\n &.osdkEditedInput:focus-within {\n border: var(--osdk-emphasis-focus-width) solid\n var(--osdk-emphasis-focus-color);\n }\n\n &.error {\n border: var(--osdk-table-cell-edited-border-error);\n\n &:focus-within {\n border: var(--osdk-emphasis-focus-width) solid\n var(--osdk-intent-danger-rest);\n }\n }\n }\n\n &.error {\n background: var(--osdk-table-cell-editable-bg);\n border: var(--osdk-table-cell-edited-border-error);\n }\n}\n\n.osdkEditableCellTrigger {\n width: 100%;\n}\n\n.osdkEditableCellDropdown {\n /* Override the default borders in dropdown */\n --osdk-select-border-color: transparent;\n --osdk-combobox-border-color: transparent;\n --osdk-combobox-focus-border-color: transparent;\n\n --osdk-combobox-input-padding: var(--osdk-surface-spacing)\n calc(var(--osdk-surface-spacing) * 3);\n\n --osdk-select-trigger-padding: var(--osdk-surface-spacing)\n calc(var(--osdk-surface-spacing) * 3);\n\n border-radius: var(--osdk-surface-border-radius);\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-within,\n &.osdkEditedInput:focus-within {\n border: var(--osdk-emphasis-focus-width) solid\n var(--osdk-emphasis-focus-color);\n }\n\n &.error {\n border: var(--osdk-table-cell-edited-border-error);\n\n &:focus-within {\n border: var(--osdk-emphasis-focus-width) solid\n var(--osdk-intent-danger-rest);\n }\n }\n }\n\n &.error {\n background: var(--osdk-table-cell-editable-bg);\n border: var(--osdk-table-cell-edited-border-error);\n }\n}\n\n.osdkEditableCellDatePicker {\n /* Override the default borders in date picker */\n --osdk-datetime-input-border-width: 0px;\n --osdk-datetime-input-border-color: transparent;\n --osdk-datetime-input-border-color-focus: transparent;\n --osdk-datetime-input-focus-width: 0px;\n --osdk-datetime-input-bg: transparent;\n --osdk-datetime-input-bg-hover: transparent;\n\n --osdk-datetime-input-padding: var(--osdk-surface-spacing)\n calc(var(--osdk-surface-spacing) * 3);\n\n display: flex;\n align-items: center;\n justify-content: space-between;\n border-radius: var(--osdk-surface-border-radius);\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-within,\n &.osdkEditedInput:focus-within {\n border: var(--osdk-emphasis-focus-width) solid\n var(--osdk-emphasis-focus-color);\n }\n\n &.error {\n border: var(--osdk-table-cell-edited-border-error);\n\n &:focus-within {\n border: var(--osdk-emphasis-focus-width) solid\n var(--osdk-intent-danger-rest);\n }\n }\n }\n\n &.error {\n background: var(--osdk-table-cell-editable-bg);\n border: var(--osdk-table-cell-edited-border-error);\n }\n}\n\n.readonlyDisplayCell {\n padding: calc(var(--osdk-surface-spacing) * 0.5) 0;\n}\n\n.osdkEditableInput {\n width: 100%;\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n text-align: left;\n background: inherit;\n border: none;\n\n &:focus {\n outline: none;\n }\n}\n\n.osdkEditedInput {\n border-radius: var(--osdk-surface-border-radius);\n border: var(--osdk-table-cell-edited-border);\n background: var(--osdk-table-cell-editable-bg);\n}\n\n.validationError {\n display: flex;\n align-items: center;\n gap: var(--osdk-surface-spacing);\n}\n\n.errorIcon {\n color: var(--osdk-intent-danger-rest);\n}\n\n.errorIconWrapper {\n margin-right: calc(var(--osdk-surface-spacing) * 3);\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 — keyed off data index, not DOM position, because rows are virtualized */\n &[data-row-parity=\"odd\"] {\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.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\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 color: var(--osdk-dialog-title-color);\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-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: var(--osdk-drag-handle-cursor);\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: var(--osdk-drag-handle-cursor-active);\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-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.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: space-between;\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 background: none;\n border: none;\n cursor: pointer;\n padding: 0;\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 flex-shrink: 0;\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.selectAllLabel {\n display: flex;\n align-items: center;\n gap: calc(var(--osdk-surface-spacing) * 3);\n cursor: pointer;\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}\n\n.propertyLabel {\n display: flex;\n align-items: center;\n gap: calc(var(--osdk-surface-spacing) * 3);\n cursor: pointer;\n flex: 1;\n min-width: 0;\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 overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\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-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}\n\n.addColumnText {\n flex: 1;\n text-align: left;\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-top: var(--osdk-table-border);\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-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: none;\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.osdkTableSelectionHeaderCell {\n justify-content: center;\n padding: 0;\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.osdkHeaderContentLeftClickable {\n cursor: pointer;\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-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 color: var(--osdk-table-header-menu-icon-color);\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\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-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.editsInfoContainer {\n display: flex;\n align-items: center;\n justify-content: center;\n flex-direction: row;\n gap: calc(var(--osdk-surface-spacing) * 3);\n font-size: var(--osdk-typography-size-body-small);\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\n.validationError {\n display: flex;\n align-items: center;\n gap: calc(var(--osdk-surface-spacing) * 2);\n color: var(--osdk-intent-danger-rest);\n}\n\n.errorIcon {\n color: var(--osdk-intent-danger-rest);\n}\n\n.divider {\n width: 1px;\n height: 8px;\n background-color: var(--osdk-surface-border-color-default);\n align-self: center;\n}\n",".annotationLayer {\n position: absolute;\n top: 0;\n left: 0;\n width: 100%;\n height: 100%;\n pointer-events: none;\n z-index: 3;\n}\n\n.annotationGroup {\n position: absolute;\n top: 0;\n left: 0;\n width: 100%;\n height: 100%;\n pointer-events: none;\n}\n\n.annotationGroup:focus-visible {\n outline: var(--osdk-focus-outline);\n outline-offset: var(--osdk-focus-visible-outline-offset);\n}\n\n.annotationGroup .annotation {\n pointer-events: auto;\n}\n\n.annotation {\n position: absolute;\n pointer-events: auto;\n cursor: pointer;\n transition: opacity var(--osdk-emphasis-transition-duration)\n var(--osdk-emphasis-ease-default);\n}\n\n.annotation:hover {\n opacity: 0.8;\n}\n\n.annotation:focus-visible {\n outline: var(--osdk-focus-outline);\n outline-offset: var(--osdk-focus-visible-outline-offset);\n}\n\n.highlight {\n background-color: var(\n --osdk-pdf-annotation-color,\n var(--osdk-pdf-viewer-annotation-highlight)\n );\n border-radius: 2px;\n}\n\n.underline {\n background-color: transparent;\n border-bottom: 2px solid\n var(\n --osdk-pdf-annotation-color,\n var(--osdk-pdf-viewer-annotation-underline)\n );\n}\n\n.comment {\n background-color: var(\n --osdk-pdf-annotation-color,\n var(--osdk-pdf-viewer-annotation-comment)\n );\n border-radius: 50%;\n width: 16px !important;\n height: 16px !important;\n}\n\n.pin {\n background-color: var(\n --osdk-pdf-annotation-color,\n var(--osdk-pdf-viewer-annotation-pin)\n );\n border-radius: 50% 50% 50% 0;\n width: 16px !important;\n height: 16px !important;\n transform: rotate(-45deg);\n}\n",".sidebar {\n width: var(--osdk-pdf-viewer-sidebar-width);\n flex-shrink: 0;\n display: flex;\n flex-direction: column;\n background-color: var(--osdk-pdf-viewer-sidebar-bg);\n border-right: var(--osdk-pdf-viewer-sidebar-border);\n overflow: hidden;\n}\n\n\n.scrollContainer {\n flex: 1;\n overflow-y: auto;\n padding: var(--osdk-pdf-viewer-sidebar-thumbnail-gap) 0;\n}\n\n.outlineItem {\n display: flex;\n align-items: center;\n gap: var(--osdk-pdf-viewer-outline-item-gap, 6px);\n padding: var(--osdk-pdf-viewer-outline-item-padding-y, 4px)\n var(--osdk-pdf-viewer-outline-item-padding-x, 12px);\n cursor: pointer;\n font-family: var(--osdk-typography-family-default);\n font-size: var(--osdk-typography-size-body-small);\n color: var(--osdk-typography-color-default);\n text-decoration: none;\n border: none;\n background: none;\n text-align: left;\n width: 100%;\n line-height: 1.4;\n border-radius: var(--osdk-pdf-viewer-outline-item-radius, 4px);\n transition: background-color 0.15s ease;\n}\n\n.outlineItem:hover {\n background-color: var(--osdk-pdf-viewer-outline-item-hover-bg, rgba(0, 0, 0, 0.06));\n}\n\n.outlineItem:focus-visible {\n outline: var(--osdk-focus-outline);\n outline-offset: var(--osdk-focus-visible-outline-offset);\n}\n\n.outlineItemActive {\n background-color: var(--osdk-pdf-viewer-outline-item-active-bg, rgba(45, 114, 210, 0.1));\n color: var(--osdk-pdf-viewer-outline-item-active-color, var(--osdk-intent-primary));\n font-weight: var(--osdk-typography-weight-semibold);\n}\n\n.outlineItemBold {\n font-weight: var(--osdk-typography-weight-bold);\n}\n\n.outlineItemItalic {\n font-style: italic;\n}\n\n.outlineItemIcon {\n flex-shrink: 0;\n display: flex;\n align-items: center;\n}\n\n.outlineItemTitle {\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n}\n\n.emptyState {\n display: flex;\n flex-direction: column;\n align-items: center;\n justify-content: center;\n gap: var(--osdk-pdf-viewer-outline-empty-gap, 12px);\n padding: var(--osdk-pdf-viewer-outline-empty-padding, 24px);\n flex: 1;\n text-align: center;\n}\n\n.emptyStateText {\n font-family: var(--osdk-typography-family-default);\n font-size: var(--osdk-typography-size-body-small);\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.sidebarHeader {\n display: flex;\n align-items: center;\n justify-content: flex-start;\n padding: var(--osdk-surface-spacing);\n border-bottom: var(--osdk-pdf-viewer-sidebar-border);\n flex-shrink: 0;\n}\n\n.toggleGroup {\n display: flex;\n align-items: center;\n gap: var(--osdk-spacing-2xs, 2px);\n padding: var(--osdk-spacing-2xs, 2px);\n border: none;\n border-radius: var(--osdk-surface-border-radius);\n background-color: var(--osdk-surface-background-color, transparent);\n}\n\n.modeButton {\n display: flex;\n align-items: center;\n justify-content: center;\n width: 28px;\n height: 28px;\n border: none;\n background: none;\n color: var(--osdk-typography-color-muted);\n cursor: pointer;\n border-radius: var(--osdk-surface-border-radius);\n padding: 0;\n}\n\n.modeButton:hover {\n background-color: var(--osdk-surface-background-color-default-hover);\n}\n\n.modeButton:active {\n background-color: var(--osdk-surface-background-color-default-active);\n}\n\n.modeButton:focus-visible {\n outline: var(--osdk-focus-outline);\n outline-offset: var(--osdk-focus-visible-outline-offset);\n}\n\n.modeButton[data-pressed] {\n background-color: var(--osdk-pdf-viewer-outline-item-active-bg, rgba(45, 114, 210, 0.1));\n color: var(--osdk-pdf-viewer-outline-item-active-color, var(--osdk-intent-primary));\n}\n\n.modeButton[data-pressed]:hover {\n background-color: var(--osdk-pdf-viewer-outline-item-active-bg, rgba(45, 114, 210, 0.1));\n}\n",".searchBar {\n position: absolute;\n top: 0;\n right: 0;\n z-index: var(--osdk-surface-z-index-3);\n display: flex;\n align-items: center;\n gap: var(--osdk-pdf-viewer-toolbar-gap);\n padding: var(--osdk-surface-spacing);\n background-color: var(--osdk-pdf-viewer-search-bar-bg);\n border: var(--osdk-surface-border);\n border-radius: var(--osdk-surface-border-radius);\n box-shadow: var(--osdk-surface-shadow-2);\n margin: var(--osdk-surface-spacing);\n}\n\n.searchInput {\n border: var(--osdk-surface-border);\n border-radius: var(--osdk-surface-border-radius);\n padding: var(--osdk-surface-spacing) calc(var(--osdk-surface-spacing) * 2);\n font-family: var(--osdk-typography-family-default);\n font-size: var(--osdk-typography-size-body-small);\n color: var(--osdk-typography-color-default-rest);\n background-color: var(--osdk-background-primary);\n outline: none;\n min-width: 200px;\n}\n\n.searchInput:focus {\n outline: var(--osdk-focus-outline);\n outline-offset: var(--osdk-focus-visible-outline-offset);\n}\n\n.matchCount {\n font-size: var(--osdk-typography-size-body-x-small);\n color: var(--osdk-typography-color-muted);\n white-space: nowrap;\n}\n\n.navButton {\n display: flex;\n align-items: center;\n justify-content: center;\n width: 24px;\n height: 24px;\n border: none;\n background: none;\n color: var(--osdk-typography-color-default-rest);\n cursor: pointer;\n border-radius: var(--osdk-surface-border-radius);\n padding: 0;\n}\n\n.navButton:hover {\n background-color: var(--osdk-surface-background-color-default-hover);\n}\n\n.navButton:focus-visible {\n outline: var(--osdk-focus-outline);\n outline-offset: var(--osdk-focus-visible-outline-offset);\n}\n\n.closeButton {\n composes: navButton;\n}\n",".sidebar {\n width: var(--osdk-pdf-viewer-sidebar-width);\n flex-shrink: 0;\n display: flex;\n flex-direction: column;\n background-color: var(--osdk-pdf-viewer-sidebar-bg);\n border-right: var(--osdk-pdf-viewer-sidebar-border);\n overflow: hidden;\n}\n\n\n.scrollContainer {\n flex: 1;\n overflow-y: auto;\n}\n\n.thumbnailsContainer {\n position: relative;\n}\n\n.thumbnailWrapper {\n position: absolute;\n left: 0;\n width: 100%;\n display: flex;\n justify-content: center;\n padding: var(--osdk-pdf-viewer-sidebar-thumbnail-gap)\n var(--osdk-pdf-viewer-sidebar-thumbnail-gap) 0;\n}\n\n.pageNumber {\n text-align: center;\n font-family: var(--osdk-typography-family-default);\n font-size: var(--osdk-typography-size-body-small);\n color: var(--osdk-typography-color-muted);\n margin-top: 4px;\n}\n",".thumbnailContainer {\n position: relative;\n cursor: pointer;\n border: 2px solid transparent;\n border-radius: var(--osdk-surface-border-radius);\n box-shadow: var(--osdk-pdf-viewer-page-shadow);\n overflow: hidden;\n transition: border-color var(--osdk-emphasis-transition-duration)\n var(--osdk-emphasis-ease-default);\n}\n\n.thumbnailContainer:hover {\n border-color: var(--osdk-pdf-viewer-sidebar-border);\n}\n\n.active {\n border-color: var(--osdk-pdf-viewer-sidebar-active-border);\n}\n\n.active:hover {\n border-color: var(--osdk-pdf-viewer-sidebar-active-border);\n}\n\n.canvas {\n display: block;\n}\n",".toolbar {\n display: flex;\n align-items: center;\n justify-content: center;\n gap: var(--osdk-pdf-viewer-toolbar-gap);\n padding: var(--osdk-surface-spacing);\n background-color: var(--osdk-pdf-viewer-toolbar-bg);\n border-bottom: var(--osdk-pdf-viewer-toolbar-border);\n color: var(--osdk-pdf-viewer-toolbar-color);\n font-family: var(--osdk-typography-family-default);\n font-size: var(--osdk-typography-size-body-small);\n flex-shrink: 0;\n}\n\n.toolbarGroup {\n display: flex;\n align-items: center;\n gap: var(--osdk-surface-spacing);\n}\n\n.separator {\n width: 1px;\n height: 20px;\n background-color: var(--osdk-surface-border-color-default);\n margin: 0 var(--osdk-surface-spacing);\n}\n\n.toolbarButton {\n display: flex;\n align-items: center;\n justify-content: center;\n width: 28px;\n height: 28px;\n border: none;\n background: none;\n color: var(--osdk-typography-color-muted);\n cursor: pointer;\n border-radius: var(--osdk-surface-border-radius);\n padding: 0;\n}\n\n.toolbarButton:hover {\n background-color: var(--osdk-surface-background-color-default-hover);\n}\n\n.toolbarButton:active {\n background-color: var(--osdk-surface-background-color-default-active);\n}\n\n.toolbarButton:focus-visible {\n outline: var(--osdk-focus-outline);\n outline-offset: var(--osdk-focus-visible-outline-offset);\n}\n\n.toolbarButton:disabled {\n opacity: 0.5;\n cursor: default;\n}\n\n.toolbarButtonActive {\n background-color: var(--osdk-surface-background-color-default-active);\n color: var(--osdk-typography-color-default-rest);\n}\n\n.pageInput {\n width: 48px;\n text-align: center;\n border: var(--osdk-surface-border);\n border-radius: var(--osdk-surface-border-radius);\n padding: calc(0.5 * var(--osdk-surface-spacing)) var(--osdk-surface-spacing);\n font-family: var(--osdk-typography-family-default);\n font-size: var(--osdk-typography-size-body-small);\n color: var(--osdk-typography-color-default-rest);\n background-color: var(--osdk-background-primary);\n}\n\n.pageInput:focus {\n outline: var(--osdk-focus-outline);\n outline-offset: var(--osdk-focus-visible-outline-offset);\n}\n\n.pageCount {\n color: var(--osdk-typography-color-muted);\n}\n\n.scaleDisplay {\n font-size: var(--osdk-typography-size-body-small);\n color: var(--osdk-typography-color-muted);\n min-width: 40px;\n text-align: center;\n}\n",".pdfViewer {\n display: flex;\n flex-direction: column;\n width: 100%;\n height: 100%;\n background-color: var(--osdk-pdf-viewer-bg);\n border: var(--osdk-pdf-viewer-border);\n border-radius: var(--osdk-surface-border-radius);\n overflow: hidden;\n position: relative;\n}\n\n.contentArea {\n display: flex;\n flex: 1;\n overflow: hidden;\n position: relative;\n}\n\n.scrollContainerWrapper {\n flex: 1;\n position: relative;\n overflow: hidden;\n}\n\n.scrollContainer {\n overflow: auto;\n position: absolute;\n top: 0;\n left: 0;\n right: 0;\n bottom: 0;\n}\n\n.loadingContainer {\n display: flex;\n flex-direction: column;\n align-items: center;\n justify-content: center;\n gap: calc(var(--osdk-surface-spacing) * 2);\n height: 100%;\n font-family: var(--osdk-typography-family-default);\n font-size: var(--osdk-typography-size-body-medium);\n color: var(--osdk-typography-color-muted);\n}\n\n.errorContainer {\n display: flex;\n align-items: center;\n justify-content: center;\n gap: var(--osdk-surface-spacing);\n height: 100%;\n font-family: var(--osdk-typography-family-default);\n font-size: var(--osdk-typography-size-body-medium);\n color: var(--osdk-typography-color-danger-rest);\n}\n\n@keyframes spin {\n from {\n transform: rotate(0deg);\n }\n to {\n transform: rotate(360deg);\n }\n}\n\n.spinnerIcon {\n animation: spin 1s linear infinite;\n color: var(--osdk-typography-color-muted);\n}\n\n.errorIcon {\n flex-shrink: 0;\n}\n\n/* PDFViewer page overrides */\n:global(.pdfViewer .page) {\n box-shadow: var(--osdk-pdf-viewer-page-shadow);\n background-color: var(--osdk-palette-white);\n margin: 0 auto var(--osdk-pdf-viewer-page-gap);\n}\n\n/* Search highlight overrides — match pdf.js FindController CSS classes */\n:global(.textLayer) .highlight {\n background-color: var(--osdk-pdf-viewer-search-highlight);\n border-radius: 1px;\n}\n\n:global(.textLayer) .highlight.selected {\n background-color: var(--osdk-pdf-viewer-search-active);\n}\n\n:global(.textLayer)::selection {\n background: var(--osdk-intent-primary-rest);\n}\n",".canvas {\n height: 100%;\n object-fit: contain;\n width: 100%;\n}\n\n.errorContainer {\n display: flex;\n align-items: center;\n justify-content: center;\n gap: var(--osdk-surface-spacing);\n height: 100%;\n font-family: var(--osdk-typography-family-default);\n font-size: var(--osdk-typography-size-body-medium);\n color: var(--osdk-typography-color-danger-rest);\n}\n\n.errorIcon {\n flex-shrink: 0;\n}\n"],"mappings":"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","names":[]}
|