@osdk/react-components 0.26.0 → 0.27.0-main-db8df2423f72b154e84da1e327691afbc569c5aa
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/AGENTS.md +27 -19
- package/CHANGELOG.md +14 -0
- package/README.md +1 -0
- package/build/browser/cbac-picker/CbacBanner.js +42 -0
- package/build/browser/cbac-picker/CbacBanner.js.map +1 -0
- package/build/browser/cbac-picker/CbacBannerPopover.js +83 -0
- package/build/browser/cbac-picker/CbacBannerPopover.js.map +1 -0
- package/build/browser/cbac-picker/CbacPicker.js +69 -0
- package/build/browser/cbac-picker/CbacPicker.js.map +1 -0
- package/build/browser/cbac-picker/CbacPickerDialog.js +81 -0
- package/build/browser/cbac-picker/CbacPickerDialog.js.map +1 -0
- package/build/browser/cbac-picker/base/BaseCbacBanner.js +64 -0
- package/build/browser/cbac-picker/base/BaseCbacBanner.js.map +1 -0
- package/build/browser/cbac-picker/base/BaseCbacBanner.module.css +74 -0
- package/build/browser/cbac-picker/base/BaseCbacBanner.module.css.js +9 -0
- package/build/browser/cbac-picker/base/BaseCbacBannerPopover.js +168 -0
- package/build/browser/cbac-picker/base/BaseCbacBannerPopover.js.map +1 -0
- package/build/browser/cbac-picker/base/BaseCbacBannerPopover.module.css +193 -0
- package/build/browser/cbac-picker/base/BaseCbacBannerPopover.module.css.js +30 -0
- package/build/browser/cbac-picker/base/BaseCbacPicker.js +74 -0
- package/build/browser/cbac-picker/base/BaseCbacPicker.js.map +1 -0
- package/build/browser/cbac-picker/base/BaseCbacPicker.module.css +47 -0
- package/build/browser/cbac-picker/base/BaseCbacPicker.module.css.js +9 -0
- package/build/browser/cbac-picker/base/BaseCbacPickerDialog.js +51 -0
- package/build/browser/cbac-picker/base/BaseCbacPickerDialog.js.map +1 -0
- package/build/browser/cbac-picker/base/CategoryMarkingGroup.js +91 -0
- package/build/browser/cbac-picker/base/CategoryMarkingGroup.js.map +1 -0
- package/build/browser/cbac-picker/base/CategoryMarkingGroup.module.css +69 -0
- package/build/browser/cbac-picker/base/CategoryMarkingGroup.module.css.js +12 -0
- package/build/browser/cbac-picker/base/CbacPickerDialogFooter.js +43 -0
- package/build/browser/cbac-picker/base/CbacPickerDialogFooter.js.map +1 -0
- package/build/browser/cbac-picker/base/CbacPickerDialogFooter.module.css +19 -0
- package/build/browser/cbac-picker/base/CbacPickerDialogFooter.module.css.js +6 -0
- package/build/browser/cbac-picker/base/InfoBanner.js +32 -0
- package/build/browser/cbac-picker/base/InfoBanner.js.map +1 -0
- package/build/browser/cbac-picker/base/InfoBanner.module.css +30 -0
- package/build/browser/cbac-picker/base/InfoBanner.module.css.js +7 -0
- package/build/browser/cbac-picker/base/MarkingButton.js +83 -0
- package/build/browser/cbac-picker/base/MarkingButton.js.map +1 -0
- package/build/browser/cbac-picker/base/MarkingButton.module.css +104 -0
- package/build/browser/cbac-picker/base/MarkingButton.module.css.js +14 -0
- package/build/browser/cbac-picker/base/MaxClassificationField.js +42 -0
- package/build/browser/cbac-picker/base/MaxClassificationField.js.map +1 -0
- package/build/browser/cbac-picker/base/MaxClassificationField.module.css +39 -0
- package/build/browser/cbac-picker/base/MaxClassificationField.module.css.js +9 -0
- package/build/browser/cbac-picker/base/OverflowButton.js +51 -0
- package/build/browser/cbac-picker/base/OverflowButton.js.map +1 -0
- package/build/browser/cbac-picker/base/OverflowButton.module.css +57 -0
- package/build/browser/cbac-picker/base/OverflowButton.module.css.js +8 -0
- package/build/browser/cbac-picker/base/OverflowItem.js +64 -0
- package/build/browser/cbac-picker/base/OverflowItem.js.map +1 -0
- package/build/browser/cbac-picker/base/OverflowItem.module.css +75 -0
- package/build/browser/cbac-picker/base/OverflowItem.module.css.js +11 -0
- package/build/browser/cbac-picker/base/ValidationWarning.js +44 -0
- package/build/browser/cbac-picker/base/ValidationWarning.js.map +1 -0
- package/build/browser/cbac-picker/base/ValidationWarning.module.css +71 -0
- package/build/browser/cbac-picker/base/ValidationWarning.module.css.js +12 -0
- package/build/browser/cbac-picker/base/selectionStateHelpers.js +35 -0
- package/build/browser/cbac-picker/base/selectionStateHelpers.js.map +1 -0
- package/build/browser/cbac-picker/types.js +2 -0
- package/build/browser/cbac-picker/types.js.map +1 -0
- package/build/browser/cbac-picker/useCbacPickerState.js +104 -0
- package/build/browser/cbac-picker/useCbacPickerState.js.map +1 -0
- package/build/browser/cbac-picker/useCbacSelection.js +52 -0
- package/build/browser/cbac-picker/useCbacSelection.js.map +1 -0
- package/build/browser/cbac-picker/useConstraintCallout.js +42 -0
- package/build/browser/cbac-picker/useConstraintCallout.js.map +1 -0
- package/build/browser/cbac-picker/utils/cbacPickerUtils.js +60 -0
- package/build/browser/cbac-picker/utils/cbacPickerUtils.js.map +1 -0
- package/build/browser/cbac-picker/utils/errorMessages.js +78 -0
- package/build/browser/cbac-picker/utils/errorMessages.js.map +1 -0
- package/build/browser/cbac-picker/utils/selectionLogic.js +91 -0
- package/build/browser/cbac-picker/utils/selectionLogic.js.map +1 -0
- package/build/browser/cbac-picker/utils/validationMessages.js +34 -0
- package/build/browser/cbac-picker/utils/validationMessages.js.map +1 -0
- package/build/browser/filter-list/base/inputs/ListogramInput.module.css +2 -5
- package/build/browser/public/experimental/cbac-picker.js +36 -0
- package/build/browser/public/experimental/cbac-picker.js.map +1 -0
- package/build/browser/public/experimental.js +1 -0
- package/build/browser/public/experimental.js.map +1 -1
- package/build/browser/styles.css +815 -7
- package/build/browser/tokens/component-tokens/filter-list.css +2 -2
- package/build/browser/util/UserAgent.js +1 -1
- package/build/browser/util/UserAgent.js.map +1 -1
- package/build/cjs/chunk-6IIKW56G.cjs +11 -0
- package/build/cjs/{chunk-W6C6UWUN.cjs.map → chunk-6IIKW56G.cjs.map} +1 -1
- package/build/cjs/{chunk-Y4OUZFGE.cjs → chunk-B7QEY2ER.cjs} +4 -4
- package/build/cjs/{chunk-Y4OUZFGE.cjs.map → chunk-B7QEY2ER.cjs.map} +1 -1
- package/build/cjs/{chunk-OZ3OGPEA.cjs → chunk-DAWQ5KT5.cjs} +4 -4
- package/build/cjs/{chunk-OZ3OGPEA.cjs.map → chunk-DAWQ5KT5.cjs.map} +1 -1
- package/build/cjs/chunk-EI62HPZN.cjs +11 -0
- package/build/cjs/{chunk-YLYICFCA.cjs.map → chunk-EI62HPZN.cjs.map} +1 -1
- package/build/cjs/{chunk-RDILWZTC.cjs → chunk-JQ67SCIO.cjs} +6 -6
- package/build/cjs/{chunk-RDILWZTC.cjs.map → chunk-JQ67SCIO.cjs.map} +1 -1
- package/build/cjs/{chunk-DY6YZDDT.cjs → chunk-MUITA6EM.cjs} +4 -4
- package/build/cjs/{chunk-DY6YZDDT.cjs.map → chunk-MUITA6EM.cjs.map} +1 -1
- package/build/cjs/{chunk-3VL5YVFA.cjs → chunk-NPT4RHWG.cjs} +4 -4
- package/build/cjs/{chunk-3VL5YVFA.cjs.map → chunk-NPT4RHWG.cjs.map} +1 -1
- package/build/cjs/{chunk-3FFHTVG7.cjs → chunk-NSXB2TXV.cjs} +6 -6
- package/build/cjs/{chunk-3FFHTVG7.cjs.map → chunk-NSXB2TXV.cjs.map} +1 -1
- package/build/cjs/chunk-PJVK32YR.cjs +11 -0
- package/build/cjs/{chunk-GKWXRVFO.cjs.map → chunk-PJVK32YR.cjs.map} +1 -1
- package/build/cjs/chunk-V6CDK4G4.cjs +11 -0
- package/build/cjs/{chunk-JPVZGQXS.cjs.map → chunk-V6CDK4G4.cjs.map} +1 -1
- package/build/cjs/chunk-VFRZREZV.cjs +4 -0
- package/build/cjs/chunk-VFRZREZV.cjs.map +1 -0
- package/build/cjs/chunk-W4T7KB4R.cjs +11 -0
- package/build/cjs/{chunk-UJXNFENA.cjs.map → chunk-W4T7KB4R.cjs.map} +1 -1
- package/build/cjs/{chunk-IFOPHNX3.cjs → chunk-X7AKMQQW.cjs} +8 -8
- package/build/cjs/{chunk-IFOPHNX3.cjs.map → chunk-X7AKMQQW.cjs.map} +1 -1
- package/build/cjs/chunk-Y47SHEG7.cjs +1190 -0
- package/build/cjs/chunk-Y47SHEG7.cjs.map +1 -0
- package/build/cjs/{chunk-UTB55N5Y.cjs → chunk-YBGT4WIE.cjs} +3 -3
- package/build/cjs/chunk-YBGT4WIE.cjs.map +1 -0
- package/build/cjs/public/experimental/action-form.cjs +6 -6
- package/build/cjs/public/experimental/cbac-picker.cjs +60 -0
- package/build/cjs/public/experimental/cbac-picker.cjs.map +1 -0
- package/build/cjs/public/experimental/cbac-picker.css +731 -0
- package/build/cjs/public/experimental/cbac-picker.css.map +1 -0
- package/build/cjs/public/experimental/cbac-picker.d.cts +122 -0
- package/build/cjs/public/experimental/document-viewer.cjs +6 -6
- package/build/cjs/public/experimental/email-viewer.cjs +3 -3
- package/build/cjs/public/experimental/excel-viewer.cjs +3 -3
- package/build/cjs/public/experimental/filter-list.cjs +16 -16
- package/build/cjs/public/experimental/filter-list.css +2 -5
- package/build/cjs/public/experimental/filter-list.css.map +1 -1
- package/build/cjs/public/experimental/image-viewer.cjs +3 -3
- package/build/cjs/public/experimental/markdown-renderer.cjs +3 -3
- package/build/cjs/public/experimental/object-table.cjs +12 -12
- package/build/cjs/public/experimental/pdf-viewer.cjs +7 -7
- package/build/cjs/public/experimental/tiff-renderer.cjs +3 -3
- package/build/cjs/public/experimental/video-viewer.cjs +3 -3
- package/build/cjs/public/experimental/xml-viewer.cjs +3 -3
- package/build/cjs/public/experimental.cjs +151 -105
- package/build/cjs/public/experimental.css +612 -76
- package/build/cjs/public/experimental.css.map +1 -1
- package/build/cjs/public/experimental.d.cts +1 -0
- package/build/cjs/public/primitives.cjs +2 -1
- package/build/esm/cbac-picker/CbacBanner.js +42 -0
- package/build/esm/cbac-picker/CbacBanner.js.map +1 -0
- package/build/esm/cbac-picker/CbacBannerPopover.js +83 -0
- package/build/esm/cbac-picker/CbacBannerPopover.js.map +1 -0
- package/build/esm/cbac-picker/CbacPicker.js +69 -0
- package/build/esm/cbac-picker/CbacPicker.js.map +1 -0
- package/build/esm/cbac-picker/CbacPickerDialog.js +81 -0
- package/build/esm/cbac-picker/CbacPickerDialog.js.map +1 -0
- package/build/esm/cbac-picker/base/BaseCbacBanner.js +64 -0
- package/build/esm/cbac-picker/base/BaseCbacBanner.js.map +1 -0
- package/build/esm/cbac-picker/base/BaseCbacBanner.module.css +74 -0
- package/build/esm/cbac-picker/base/BaseCbacBannerPopover.js +168 -0
- package/build/esm/cbac-picker/base/BaseCbacBannerPopover.js.map +1 -0
- package/build/esm/cbac-picker/base/BaseCbacBannerPopover.module.css +193 -0
- package/build/esm/cbac-picker/base/BaseCbacPicker.js +74 -0
- package/build/esm/cbac-picker/base/BaseCbacPicker.js.map +1 -0
- package/build/esm/cbac-picker/base/BaseCbacPicker.module.css +47 -0
- package/build/esm/cbac-picker/base/BaseCbacPickerDialog.js +51 -0
- package/build/esm/cbac-picker/base/BaseCbacPickerDialog.js.map +1 -0
- package/build/esm/cbac-picker/base/CategoryMarkingGroup.js +91 -0
- package/build/esm/cbac-picker/base/CategoryMarkingGroup.js.map +1 -0
- package/build/esm/cbac-picker/base/CategoryMarkingGroup.module.css +69 -0
- package/build/esm/cbac-picker/base/CbacPickerDialogFooter.js +43 -0
- package/build/esm/cbac-picker/base/CbacPickerDialogFooter.js.map +1 -0
- package/build/esm/cbac-picker/base/CbacPickerDialogFooter.module.css +19 -0
- package/build/esm/cbac-picker/base/InfoBanner.js +32 -0
- package/build/esm/cbac-picker/base/InfoBanner.js.map +1 -0
- package/build/esm/cbac-picker/base/InfoBanner.module.css +30 -0
- package/build/esm/cbac-picker/base/MarkingButton.js +83 -0
- package/build/esm/cbac-picker/base/MarkingButton.js.map +1 -0
- package/build/esm/cbac-picker/base/MarkingButton.module.css +104 -0
- package/build/esm/cbac-picker/base/MaxClassificationField.js +42 -0
- package/build/esm/cbac-picker/base/MaxClassificationField.js.map +1 -0
- package/build/esm/cbac-picker/base/MaxClassificationField.module.css +39 -0
- package/build/esm/cbac-picker/base/OverflowButton.js +51 -0
- package/build/esm/cbac-picker/base/OverflowButton.js.map +1 -0
- package/build/esm/cbac-picker/base/OverflowButton.module.css +57 -0
- package/build/esm/cbac-picker/base/OverflowItem.js +64 -0
- package/build/esm/cbac-picker/base/OverflowItem.js.map +1 -0
- package/build/esm/cbac-picker/base/OverflowItem.module.css +75 -0
- package/build/esm/cbac-picker/base/ValidationWarning.js +44 -0
- package/build/esm/cbac-picker/base/ValidationWarning.js.map +1 -0
- package/build/esm/cbac-picker/base/ValidationWarning.module.css +71 -0
- package/build/esm/cbac-picker/base/selectionStateHelpers.js +35 -0
- package/build/esm/cbac-picker/base/selectionStateHelpers.js.map +1 -0
- package/build/esm/cbac-picker/types.js +2 -0
- package/build/esm/cbac-picker/types.js.map +1 -0
- package/build/esm/cbac-picker/useCbacPickerState.js +104 -0
- package/build/esm/cbac-picker/useCbacPickerState.js.map +1 -0
- package/build/esm/cbac-picker/useCbacSelection.js +52 -0
- package/build/esm/cbac-picker/useCbacSelection.js.map +1 -0
- package/build/esm/cbac-picker/useConstraintCallout.js +42 -0
- package/build/esm/cbac-picker/useConstraintCallout.js.map +1 -0
- package/build/esm/cbac-picker/utils/cbacPickerUtils.js +60 -0
- package/build/esm/cbac-picker/utils/cbacPickerUtils.js.map +1 -0
- package/build/esm/cbac-picker/utils/errorMessages.js +78 -0
- package/build/esm/cbac-picker/utils/errorMessages.js.map +1 -0
- package/build/esm/cbac-picker/utils/selectionLogic.js +91 -0
- package/build/esm/cbac-picker/utils/selectionLogic.js.map +1 -0
- package/build/esm/cbac-picker/utils/validationMessages.js +34 -0
- package/build/esm/cbac-picker/utils/validationMessages.js.map +1 -0
- package/build/esm/filter-list/base/inputs/ListogramInput.module.css +2 -5
- package/build/esm/public/experimental/cbac-picker.js +36 -0
- package/build/esm/public/experimental/cbac-picker.js.map +1 -0
- package/build/esm/public/experimental.js +1 -0
- package/build/esm/public/experimental.js.map +1 -1
- package/build/esm/tokens/component-tokens/filter-list.css +2 -2
- package/build/esm/util/UserAgent.js +1 -1
- package/build/esm/util/UserAgent.js.map +1 -1
- package/build/types/cbac-picker/CbacBanner.d.ts +8 -0
- package/build/types/cbac-picker/CbacBanner.d.ts.map +1 -0
- package/build/types/cbac-picker/CbacBannerPopover.d.ts +9 -0
- package/build/types/cbac-picker/CbacBannerPopover.d.ts.map +1 -0
- package/build/types/cbac-picker/CbacPicker.d.ts +10 -0
- package/build/types/cbac-picker/CbacPicker.d.ts.map +1 -0
- package/build/types/cbac-picker/CbacPickerDialog.d.ts +10 -0
- package/build/types/cbac-picker/CbacPickerDialog.d.ts.map +1 -0
- package/build/types/cbac-picker/base/BaseCbacBanner.d.ts +10 -0
- package/build/types/cbac-picker/base/BaseCbacBanner.d.ts.map +1 -0
- package/build/types/cbac-picker/base/BaseCbacBannerPopover.d.ts +18 -0
- package/build/types/cbac-picker/base/BaseCbacBannerPopover.d.ts.map +1 -0
- package/build/types/cbac-picker/base/BaseCbacPicker.d.ts +18 -0
- package/build/types/cbac-picker/base/BaseCbacPicker.d.ts.map +1 -0
- package/build/types/cbac-picker/base/BaseCbacPickerDialog.d.ts +11 -0
- package/build/types/cbac-picker/base/BaseCbacPickerDialog.d.ts.map +1 -0
- package/build/types/cbac-picker/base/CategoryMarkingGroup.d.ts +15 -0
- package/build/types/cbac-picker/base/CategoryMarkingGroup.d.ts.map +1 -0
- package/build/types/cbac-picker/base/CbacPickerDialogFooter.d.ts +8 -0
- package/build/types/cbac-picker/base/CbacPickerDialogFooter.d.ts.map +1 -0
- package/build/types/cbac-picker/base/InfoBanner.d.ts +6 -0
- package/build/types/cbac-picker/base/InfoBanner.d.ts.map +1 -0
- package/build/types/cbac-picker/base/MarkingButton.d.ts +11 -0
- package/build/types/cbac-picker/base/MarkingButton.d.ts.map +1 -0
- package/build/types/cbac-picker/base/MaxClassificationField.d.ts +9 -0
- package/build/types/cbac-picker/base/MaxClassificationField.d.ts.map +1 -0
- package/build/types/cbac-picker/base/OverflowButton.d.ts +14 -0
- package/build/types/cbac-picker/base/OverflowButton.d.ts.map +1 -0
- package/build/types/cbac-picker/base/OverflowItem.d.ts +11 -0
- package/build/types/cbac-picker/base/OverflowItem.d.ts.map +1 -0
- package/build/types/cbac-picker/base/ValidationWarning.d.ts +7 -0
- package/build/types/cbac-picker/base/ValidationWarning.d.ts.map +1 -0
- package/build/types/cbac-picker/base/selectionStateHelpers.d.ts +5 -0
- package/build/types/cbac-picker/base/selectionStateHelpers.d.ts.map +1 -0
- package/build/types/cbac-picker/types.d.ts +32 -0
- package/build/types/cbac-picker/types.d.ts.map +1 -0
- package/build/types/cbac-picker/useCbacPickerState.d.ts +14 -0
- package/build/types/cbac-picker/useCbacPickerState.d.ts.map +1 -0
- package/build/types/cbac-picker/useCbacSelection.d.ts +11 -0
- package/build/types/cbac-picker/useCbacSelection.d.ts.map +1 -0
- package/build/types/cbac-picker/useConstraintCallout.d.ts +3 -0
- package/build/types/cbac-picker/useConstraintCallout.d.ts.map +1 -0
- package/build/types/cbac-picker/utils/cbacPickerUtils.d.ts +22 -0
- package/build/types/cbac-picker/utils/cbacPickerUtils.d.ts.map +1 -0
- package/build/types/cbac-picker/utils/errorMessages.d.ts +5 -0
- package/build/types/cbac-picker/utils/errorMessages.d.ts.map +1 -0
- package/build/types/cbac-picker/utils/selectionLogic.d.ts +4 -0
- package/build/types/cbac-picker/utils/selectionLogic.d.ts.map +1 -0
- package/build/types/cbac-picker/utils/validationMessages.d.ts +9 -0
- package/build/types/cbac-picker/utils/validationMessages.d.ts.map +1 -0
- package/build/types/public/experimental/cbac-picker.d.ts +12 -0
- package/build/types/public/experimental/cbac-picker.d.ts.map +1 -0
- package/build/types/public/experimental.d.ts +1 -0
- package/build/types/public/experimental.d.ts.map +1 -1
- package/docs/CbacPicker.md +495 -0
- package/package.json +18 -9
- package/build/cjs/chunk-GKWXRVFO.cjs +0 -11
- package/build/cjs/chunk-JPVZGQXS.cjs +0 -11
- package/build/cjs/chunk-UJXNFENA.cjs +0 -11
- package/build/cjs/chunk-UTB55N5Y.cjs.map +0 -1
- package/build/cjs/chunk-W6C6UWUN.cjs +0 -11
- package/build/cjs/chunk-YLYICFCA.cjs +0 -11
package/build/browser/styles.css
CHANGED
|
@@ -1292,8 +1292,8 @@
|
|
|
1292
1292
|
|
|
1293
1293
|
--osdk-filter-listogram-bar-height: calc(var(--osdk-surface-spacing) * 2);
|
|
1294
1294
|
--osdk-filter-listogram-bar-width: calc(var(--osdk-surface-spacing) * 12.5);
|
|
1295
|
-
--osdk-filter-listogram-bar-bg: var(--osdk-
|
|
1296
|
-
--osdk-filter-listogram-bar-border-radius: var(--osdk-surface-border-radius);
|
|
1295
|
+
--osdk-filter-listogram-bar-bg: var(--osdk-background-tertiary);
|
|
1296
|
+
--osdk-filter-listogram-bar-border-radius: calc(var(--osdk-surface-border-radius) * 0.5);
|
|
1297
1297
|
--osdk-filter-listogram-bar-color: var(--osdk-intent-primary-rest);
|
|
1298
1298
|
--osdk-filter-listogram-bar-fill-transition: var(
|
|
1299
1299
|
--osdk-emphasis-transition-duration
|
|
@@ -4742,6 +4742,817 @@
|
|
|
4742
4742
|
}
|
|
4743
4743
|
|
|
4744
4744
|
|
|
4745
|
+
/* cbac-picker/base/BaseCbacBanner.module.css */
|
|
4746
|
+
/*
|
|
4747
|
+
* Copyright 2026 Palantir Technologies, Inc. All rights reserved.
|
|
4748
|
+
*
|
|
4749
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
4750
|
+
* you may not use this file except in compliance with the License.
|
|
4751
|
+
* You may obtain a copy of the License at
|
|
4752
|
+
*
|
|
4753
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
4754
|
+
*
|
|
4755
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
4756
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
4757
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
4758
|
+
* See the License for the specific language governing permissions and
|
|
4759
|
+
* limitations under the License.
|
|
4760
|
+
*/
|
|
4761
|
+
|
|
4762
|
+
.BaseCbacBanner-module__bannerRow___oxu42hEl {
|
|
4763
|
+
display: flex;
|
|
4764
|
+
align-items: center;
|
|
4765
|
+
border-radius: var(--osdk-cbac-banner-border-radius);
|
|
4766
|
+
width: 100%;
|
|
4767
|
+
box-sizing: border-box;
|
|
4768
|
+
background: var(--osdk-cbac-banner-bg);
|
|
4769
|
+
color: var(--osdk-cbac-banner-color);
|
|
4770
|
+
}
|
|
4771
|
+
|
|
4772
|
+
.BaseCbacBanner-module__banner___IjvLA5g7 {
|
|
4773
|
+
flex: 1;
|
|
4774
|
+
padding: var(--osdk-cbac-banner-padding);
|
|
4775
|
+
font-size: var(--osdk-cbac-banner-font-size);
|
|
4776
|
+
font-weight: var(--osdk-cbac-banner-font-weight);
|
|
4777
|
+
text-align: var(--osdk-cbac-banner-text-align);
|
|
4778
|
+
font-family: inherit;
|
|
4779
|
+
border: none;
|
|
4780
|
+
background: transparent;
|
|
4781
|
+
color: inherit;
|
|
4782
|
+
}
|
|
4783
|
+
|
|
4784
|
+
.BaseCbacBanner-module__clickable___EhVZQgrU {
|
|
4785
|
+
cursor: pointer;
|
|
4786
|
+
}
|
|
4787
|
+
|
|
4788
|
+
.BaseCbacBanner-module__clickable___EhVZQgrU:focus-visible {
|
|
4789
|
+
outline: var(--osdk-focus-outline);
|
|
4790
|
+
outline-offset: var(--osdk-focus-visible-outline-offset);
|
|
4791
|
+
}
|
|
4792
|
+
|
|
4793
|
+
.BaseCbacBanner-module__clickable___EhVZQgrU:hover {
|
|
4794
|
+
filter: brightness(0.9);
|
|
4795
|
+
text-decoration: underline;
|
|
4796
|
+
}
|
|
4797
|
+
|
|
4798
|
+
.BaseCbacBanner-module__dismissButton___pEhcnzSL {
|
|
4799
|
+
display: flex;
|
|
4800
|
+
align-items: center;
|
|
4801
|
+
justify-content: center;
|
|
4802
|
+
padding: calc(var(--osdk-surface-spacing) * 1);
|
|
4803
|
+
margin-right: calc(var(--osdk-surface-spacing) * 1);
|
|
4804
|
+
background: transparent;
|
|
4805
|
+
border: none;
|
|
4806
|
+
color: inherit;
|
|
4807
|
+
cursor: pointer;
|
|
4808
|
+
border-radius: var(--osdk-surface-border-radius);
|
|
4809
|
+
flex-shrink: 0;
|
|
4810
|
+
}
|
|
4811
|
+
|
|
4812
|
+
.BaseCbacBanner-module__dismissButton___pEhcnzSL:hover {
|
|
4813
|
+
filter: brightness(0.8);
|
|
4814
|
+
}
|
|
4815
|
+
|
|
4816
|
+
.BaseCbacBanner-module__dismissButton___pEhcnzSL:focus-visible {
|
|
4817
|
+
outline: var(--osdk-focus-outline);
|
|
4818
|
+
outline-offset: var(--osdk-focus-visible-outline-offset);
|
|
4819
|
+
}
|
|
4820
|
+
|
|
4821
|
+
|
|
4822
|
+
/* cbac-picker/base/BaseCbacBannerPopover.module.css */
|
|
4823
|
+
/*
|
|
4824
|
+
* Copyright 2026 Palantir Technologies, Inc. All rights reserved.
|
|
4825
|
+
*
|
|
4826
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
4827
|
+
* you may not use this file except in compliance with the License.
|
|
4828
|
+
* You may obtain a copy of the License at
|
|
4829
|
+
*
|
|
4830
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
4831
|
+
*
|
|
4832
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
4833
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
4834
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
4835
|
+
* See the License for the specific language governing permissions and
|
|
4836
|
+
* limitations under the License.
|
|
4837
|
+
*/
|
|
4838
|
+
|
|
4839
|
+
.BaseCbacBannerPopover-module__popover___vnZHHx-- {
|
|
4840
|
+
max-width: var(--osdk-cbac-popover-max-width);
|
|
4841
|
+
padding: var(--osdk-cbac-popover-padding);
|
|
4842
|
+
background: var(--osdk-surface-background-color-default);
|
|
4843
|
+
border: 1px solid var(--osdk-surface-border-color-default);
|
|
4844
|
+
border-radius: var(--osdk-surface-border-radius);
|
|
4845
|
+
box-shadow: var(--osdk-surface-elevation-2);
|
|
4846
|
+
display: flex;
|
|
4847
|
+
flex-direction: column;
|
|
4848
|
+
gap: var(--osdk-cbac-popover-section-gap);
|
|
4849
|
+
}
|
|
4850
|
+
|
|
4851
|
+
.BaseCbacBannerPopover-module__pill___GoT-3iQV {
|
|
4852
|
+
display: inline-flex;
|
|
4853
|
+
align-items: center;
|
|
4854
|
+
padding: var(--osdk-cbac-popover-pill-padding);
|
|
4855
|
+
border-radius: var(--osdk-cbac-popover-pill-border-radius);
|
|
4856
|
+
font-size: var(--osdk-typography-size-body-small);
|
|
4857
|
+
font-weight: var(--osdk-typography-weight-bold);
|
|
4858
|
+
width: fit-content;
|
|
4859
|
+
}
|
|
4860
|
+
|
|
4861
|
+
.BaseCbacBannerPopover-module__sectionLabel___ErzKeZAy {
|
|
4862
|
+
font-size: var(--osdk-typography-size-body-small);
|
|
4863
|
+
font-weight: var(--osdk-typography-weight-bold);
|
|
4864
|
+
color: var(--osdk-typography-color-default-muted);
|
|
4865
|
+
text-transform: uppercase;
|
|
4866
|
+
margin: 0;
|
|
4867
|
+
}
|
|
4868
|
+
|
|
4869
|
+
.BaseCbacBannerPopover-module__markingGroup___h7Iz--bI {
|
|
4870
|
+
display: flex;
|
|
4871
|
+
flex-direction: column;
|
|
4872
|
+
gap: calc(var(--osdk-surface-spacing) * 0.5);
|
|
4873
|
+
}
|
|
4874
|
+
|
|
4875
|
+
.BaseCbacBannerPopover-module__markingCategoryName___O22vgxpy {
|
|
4876
|
+
font-size: var(--osdk-typography-size-body-small);
|
|
4877
|
+
font-weight: var(--osdk-typography-weight-bold);
|
|
4878
|
+
color: var(--osdk-typography-color-default-rest);
|
|
4879
|
+
margin: 0;
|
|
4880
|
+
}
|
|
4881
|
+
|
|
4882
|
+
.BaseCbacBannerPopover-module__markingName___DLZC3G04 {
|
|
4883
|
+
font-size: var(--osdk-typography-size-body-small);
|
|
4884
|
+
color: var(--osdk-typography-color-default-rest);
|
|
4885
|
+
margin: 0;
|
|
4886
|
+
padding-left: calc(var(--osdk-surface-spacing) * 2);
|
|
4887
|
+
}
|
|
4888
|
+
|
|
4889
|
+
.BaseCbacBannerPopover-module__noMarkings___2zHI3tFA {
|
|
4890
|
+
font-size: var(--osdk-typography-size-body-small);
|
|
4891
|
+
color: var(--osdk-typography-color-default-muted);
|
|
4892
|
+
margin: 0;
|
|
4893
|
+
}
|
|
4894
|
+
|
|
4895
|
+
.BaseCbacBannerPopover-module__divider___4DQ3X1Tf {
|
|
4896
|
+
border: none;
|
|
4897
|
+
border-top: 1px solid var(--osdk-surface-border-color-default);
|
|
4898
|
+
margin: 0;
|
|
4899
|
+
}
|
|
4900
|
+
|
|
4901
|
+
.BaseCbacBannerPopover-module__editButton___11s-TzHx {
|
|
4902
|
+
width: 100%;
|
|
4903
|
+
}
|
|
4904
|
+
|
|
4905
|
+
.BaseCbacBannerPopover-module__description___KLqXnfqX {
|
|
4906
|
+
font-size: var(--osdk-typography-size-body-small);
|
|
4907
|
+
color: var(--osdk-typography-color-default-muted);
|
|
4908
|
+
margin: 0;
|
|
4909
|
+
}
|
|
4910
|
+
|
|
4911
|
+
/* Skeleton loading */
|
|
4912
|
+
.BaseCbacBannerPopover-module__skeletonContainer___Qxh-mq9l {
|
|
4913
|
+
display: flex;
|
|
4914
|
+
flex-direction: column;
|
|
4915
|
+
gap: calc(var(--osdk-surface-spacing) * 1.5);
|
|
4916
|
+
}
|
|
4917
|
+
|
|
4918
|
+
.BaseCbacBannerPopover-module__skeletonPill___N8QouMJL {
|
|
4919
|
+
width: var(--osdk-cbac-skeleton-pill-width);
|
|
4920
|
+
height: var(--osdk-cbac-skeleton-pill-height);
|
|
4921
|
+
}
|
|
4922
|
+
|
|
4923
|
+
.BaseCbacBannerPopover-module__skeletonLine___nZxotm7- {
|
|
4924
|
+
width: 100%;
|
|
4925
|
+
height: var(--osdk-cbac-skeleton-line-height);
|
|
4926
|
+
}
|
|
4927
|
+
|
|
4928
|
+
.BaseCbacBannerPopover-module__skeletonLineNarrow___e6FBTwRB {
|
|
4929
|
+
width: var(--osdk-cbac-skeleton-line-narrow-width);
|
|
4930
|
+
height: var(--osdk-cbac-skeleton-line-height);
|
|
4931
|
+
}
|
|
4932
|
+
|
|
4933
|
+
/* Error state */
|
|
4934
|
+
.BaseCbacBannerPopover-module__errorContainer___zuPXZ2jF {
|
|
4935
|
+
display: flex;
|
|
4936
|
+
flex-direction: column;
|
|
4937
|
+
align-items: center;
|
|
4938
|
+
gap: var(--osdk-surface-spacing);
|
|
4939
|
+
padding: calc(var(--osdk-surface-spacing) * 2) 0;
|
|
4940
|
+
}
|
|
4941
|
+
|
|
4942
|
+
.BaseCbacBannerPopover-module__errorMessage___KH1kWTJ6 {
|
|
4943
|
+
font-size: var(--osdk-typography-size-body-small);
|
|
4944
|
+
color: var(--osdk-typography-color-default-rest);
|
|
4945
|
+
font-weight: var(--osdk-typography-weight-bold);
|
|
4946
|
+
margin: 0;
|
|
4947
|
+
text-align: center;
|
|
4948
|
+
}
|
|
4949
|
+
|
|
4950
|
+
.BaseCbacBannerPopover-module__errorRemediation___2sT01xLQ {
|
|
4951
|
+
font-size: var(--osdk-typography-size-body-small);
|
|
4952
|
+
color: var(--osdk-typography-color-default-muted);
|
|
4953
|
+
margin: 0;
|
|
4954
|
+
text-align: center;
|
|
4955
|
+
}
|
|
4956
|
+
|
|
4957
|
+
/* Warnings section */
|
|
4958
|
+
.BaseCbacBannerPopover-module__warningsSection___CXm-bDOw {
|
|
4959
|
+
display: flex;
|
|
4960
|
+
flex-direction: column;
|
|
4961
|
+
gap: calc(var(--osdk-surface-spacing) * 1.5);
|
|
4962
|
+
}
|
|
4963
|
+
|
|
4964
|
+
.BaseCbacBannerPopover-module__warningsHeader___MtRYmMOy {
|
|
4965
|
+
font-size: var(--osdk-typography-size-body-small);
|
|
4966
|
+
font-weight: var(--osdk-typography-weight-bold);
|
|
4967
|
+
color: var(--osdk-typography-color-default-muted);
|
|
4968
|
+
text-transform: uppercase;
|
|
4969
|
+
margin: 0;
|
|
4970
|
+
}
|
|
4971
|
+
|
|
4972
|
+
.BaseCbacBannerPopover-module__warningCallout___8vnlqA17 {
|
|
4973
|
+
display: flex;
|
|
4974
|
+
align-items: flex-start;
|
|
4975
|
+
gap: var(--osdk-surface-spacing);
|
|
4976
|
+
padding: var(--osdk-cbac-warning-callout-padding);
|
|
4977
|
+
background: var(--osdk-cbac-warning-callout-bg);
|
|
4978
|
+
color: var(--osdk-cbac-warning-callout-color);
|
|
4979
|
+
border-radius: var(--osdk-cbac-warning-callout-border-radius);
|
|
4980
|
+
font-size: var(--osdk-cbac-warning-callout-font-size);
|
|
4981
|
+
}
|
|
4982
|
+
|
|
4983
|
+
.BaseCbacBannerPopover-module__warningIcon___-Go7liEd {
|
|
4984
|
+
flex-shrink: 0;
|
|
4985
|
+
margin-top: calc(var(--osdk-surface-spacing) * 0.125);
|
|
4986
|
+
}
|
|
4987
|
+
|
|
4988
|
+
.BaseCbacBannerPopover-module__warningText___X8omxSGR {
|
|
4989
|
+
margin: 0;
|
|
4990
|
+
}
|
|
4991
|
+
|
|
4992
|
+
/* Banner trigger wrapper with caret */
|
|
4993
|
+
.BaseCbacBannerPopover-module__bannerTriggerWrapper___LvP1g-bt {
|
|
4994
|
+
position: relative;
|
|
4995
|
+
display: flex;
|
|
4996
|
+
align-items: center;
|
|
4997
|
+
width: 100%;
|
|
4998
|
+
}
|
|
4999
|
+
|
|
5000
|
+
.BaseCbacBannerPopover-module__caretIcon___zCPBfoKh {
|
|
5001
|
+
position: absolute;
|
|
5002
|
+
right: calc(var(--osdk-surface-spacing) * 1.5);
|
|
5003
|
+
display: flex;
|
|
5004
|
+
align-items: center;
|
|
5005
|
+
color: inherit;
|
|
5006
|
+
opacity: 0;
|
|
5007
|
+
transition: opacity var(--osdk-emphasis-transition-duration)
|
|
5008
|
+
var(--osdk-emphasis-ease-default);
|
|
5009
|
+
pointer-events: none;
|
|
5010
|
+
}
|
|
5011
|
+
|
|
5012
|
+
.BaseCbacBannerPopover-module__bannerTriggerWrapper___LvP1g-bt:hover .BaseCbacBannerPopover-module__caretIcon___zCPBfoKh,
|
|
5013
|
+
.BaseCbacBannerPopover-module__caretIconVisible___cWFnLC0K {
|
|
5014
|
+
opacity: 1;
|
|
5015
|
+
}
|
|
5016
|
+
|
|
5017
|
+
|
|
5018
|
+
/* cbac-picker/base/BaseCbacPicker.module.css */
|
|
5019
|
+
/*
|
|
5020
|
+
* Copyright 2026 Palantir Technologies, Inc. All rights reserved.
|
|
5021
|
+
*
|
|
5022
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5023
|
+
* you may not use this file except in compliance with the License.
|
|
5024
|
+
* You may obtain a copy of the License at
|
|
5025
|
+
*
|
|
5026
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
5027
|
+
*
|
|
5028
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
5029
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
5030
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
5031
|
+
* See the License for the specific language governing permissions and
|
|
5032
|
+
* limitations under the License.
|
|
5033
|
+
*/
|
|
5034
|
+
|
|
5035
|
+
.BaseCbacPicker-module__picker___MceZY02I {
|
|
5036
|
+
display: flex;
|
|
5037
|
+
flex-direction: column;
|
|
5038
|
+
gap: var(--osdk-cbac-picker-category-gap);
|
|
5039
|
+
padding: var(--osdk-cbac-picker-padding);
|
|
5040
|
+
width: 100%;
|
|
5041
|
+
}
|
|
5042
|
+
|
|
5043
|
+
.BaseCbacPicker-module__categoriesContainer___nXngi1OL {
|
|
5044
|
+
display: flex;
|
|
5045
|
+
flex-direction: column;
|
|
5046
|
+
gap: var(--osdk-cbac-picker-category-gap);
|
|
5047
|
+
overflow-y: auto;
|
|
5048
|
+
}
|
|
5049
|
+
|
|
5050
|
+
.BaseCbacPicker-module__innerBanner___VcvOQHCz {
|
|
5051
|
+
border: 1px solid var(--osdk-cbac-banner-border-color);
|
|
5052
|
+
}
|
|
5053
|
+
|
|
5054
|
+
.BaseCbacPicker-module__statusMessage___Rf2tId8K {
|
|
5055
|
+
display: flex;
|
|
5056
|
+
flex-direction: column;
|
|
5057
|
+
gap: calc(var(--osdk-surface-spacing) * 0.5);
|
|
5058
|
+
padding: calc(var(--osdk-surface-spacing) * 3) 0;
|
|
5059
|
+
color: var(--osdk-typography-color-muted);
|
|
5060
|
+
font-style: italic;
|
|
5061
|
+
}
|
|
5062
|
+
|
|
5063
|
+
.BaseCbacPicker-module__statusMessage___Rf2tId8K p {
|
|
5064
|
+
margin: 0;
|
|
5065
|
+
}
|
|
5066
|
+
|
|
5067
|
+
|
|
5068
|
+
/* cbac-picker/base/CategoryMarkingGroup.module.css */
|
|
5069
|
+
/*
|
|
5070
|
+
* Copyright 2026 Palantir Technologies, Inc. All rights reserved.
|
|
5071
|
+
*
|
|
5072
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5073
|
+
* you may not use this file except in compliance with the License.
|
|
5074
|
+
* You may obtain a copy of the License at
|
|
5075
|
+
*
|
|
5076
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
5077
|
+
*
|
|
5078
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
5079
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
5080
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
5081
|
+
* See the License for the specific language governing permissions and
|
|
5082
|
+
* limitations under the License.
|
|
5083
|
+
*/
|
|
5084
|
+
|
|
5085
|
+
.CategoryMarkingGroup-module__categoryGroup___YLFH-t86 {
|
|
5086
|
+
display: flex;
|
|
5087
|
+
flex-direction: column;
|
|
5088
|
+
gap: var(--osdk-cbac-marking-button-gap);
|
|
5089
|
+
}
|
|
5090
|
+
|
|
5091
|
+
.CategoryMarkingGroup-module__categoryHeader___uwdmF3aG {
|
|
5092
|
+
display: flex;
|
|
5093
|
+
align-items: center;
|
|
5094
|
+
gap: calc(var(--osdk-surface-spacing) * 0.75);
|
|
5095
|
+
}
|
|
5096
|
+
|
|
5097
|
+
.CategoryMarkingGroup-module__categoryName___7n2BZ6EY {
|
|
5098
|
+
font-size: var(--osdk-cbac-picker-category-title-font-size);
|
|
5099
|
+
font-weight: var(--osdk-cbac-picker-category-title-font-weight);
|
|
5100
|
+
color: var(--osdk-cbac-picker-category-title-color);
|
|
5101
|
+
letter-spacing: var(--osdk-cbac-picker-category-title-letter-spacing);
|
|
5102
|
+
margin: 0;
|
|
5103
|
+
}
|
|
5104
|
+
|
|
5105
|
+
.CategoryMarkingGroup-module__infoIcon___-diV2RjV {
|
|
5106
|
+
display: inline-flex;
|
|
5107
|
+
color: var(--osdk-typography-color-muted);
|
|
5108
|
+
cursor: help;
|
|
5109
|
+
}
|
|
5110
|
+
|
|
5111
|
+
.CategoryMarkingGroup-module__infoTooltip___tU-JHUm5 {
|
|
5112
|
+
z-index: var(--osdk-cbac-marking-tooltip-z-index);
|
|
5113
|
+
max-width: var(--osdk-cbac-marking-tooltip-max-width);
|
|
5114
|
+
padding: var(--osdk-cbac-marking-tooltip-padding);
|
|
5115
|
+
background-color: var(--osdk-tooltip-bg);
|
|
5116
|
+
border: 1px solid var(--osdk-tooltip-border-color);
|
|
5117
|
+
border-radius: var(--osdk-surface-border-radius);
|
|
5118
|
+
box-shadow: var(--osdk-tooltip-shadow);
|
|
5119
|
+
font-size: var(--osdk-cbac-marking-tooltip-font-size);
|
|
5120
|
+
line-height: 1.4;
|
|
5121
|
+
color: var(--osdk-typography-color-muted);
|
|
5122
|
+
}
|
|
5123
|
+
|
|
5124
|
+
.CategoryMarkingGroup-module__markingGrid___1y6ahlKa {
|
|
5125
|
+
display: grid;
|
|
5126
|
+
grid-template-columns: repeat(
|
|
5127
|
+
var(--osdk-cbac-picker-marking-grid-columns),
|
|
5128
|
+
1fr
|
|
5129
|
+
);
|
|
5130
|
+
border-top: 1px solid var(--osdk-cbac-picker-marking-grid-border-color);
|
|
5131
|
+
border-left: 1px solid var(--osdk-cbac-picker-marking-grid-border-color);
|
|
5132
|
+
}
|
|
5133
|
+
|
|
5134
|
+
.CategoryMarkingGroup-module__emptyCell___ByBo51l5 {
|
|
5135
|
+
border-right: 1px solid var(--osdk-cbac-marking-button-border-color-default);
|
|
5136
|
+
border-bottom: 1px solid var(--osdk-cbac-marking-button-border-color-default);
|
|
5137
|
+
}
|
|
5138
|
+
|
|
5139
|
+
|
|
5140
|
+
/* cbac-picker/base/CbacPickerDialogFooter.module.css */
|
|
5141
|
+
/*
|
|
5142
|
+
* Copyright 2026 Palantir Technologies, Inc. All rights reserved.
|
|
5143
|
+
*
|
|
5144
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5145
|
+
* you may not use this file except in compliance with the License.
|
|
5146
|
+
* You may obtain a copy of the License at
|
|
5147
|
+
*
|
|
5148
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
5149
|
+
*
|
|
5150
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
5151
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
5152
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
5153
|
+
* See the License for the specific language governing permissions and
|
|
5154
|
+
* limitations under the License.
|
|
5155
|
+
*/
|
|
5156
|
+
|
|
5157
|
+
.CbacPickerDialogFooter-module__tooltipTriggerWrapper___J-ZltPM0 {
|
|
5158
|
+
display: contents;
|
|
5159
|
+
}
|
|
5160
|
+
|
|
5161
|
+
|
|
5162
|
+
/* cbac-picker/base/InfoBanner.module.css */
|
|
5163
|
+
/*
|
|
5164
|
+
* Copyright 2026 Palantir Technologies, Inc. All rights reserved.
|
|
5165
|
+
*
|
|
5166
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5167
|
+
* you may not use this file except in compliance with the License.
|
|
5168
|
+
* You may obtain a copy of the License at
|
|
5169
|
+
*
|
|
5170
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
5171
|
+
*
|
|
5172
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
5173
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
5174
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
5175
|
+
* See the License for the specific language governing permissions and
|
|
5176
|
+
* limitations under the License.
|
|
5177
|
+
*/
|
|
5178
|
+
|
|
5179
|
+
.InfoBanner-module__infoBanner___UqeHvalP {
|
|
5180
|
+
display: flex;
|
|
5181
|
+
align-items: center;
|
|
5182
|
+
gap: calc(var(--osdk-surface-spacing) * 1.5);
|
|
5183
|
+
padding: var(--osdk-cbac-info-banner-padding);
|
|
5184
|
+
background: var(--osdk-cbac-info-banner-bg);
|
|
5185
|
+
color: var(--osdk-cbac-info-banner-color);
|
|
5186
|
+
font-size: var(--osdk-cbac-info-banner-font-size);
|
|
5187
|
+
border-radius: var(--osdk-cbac-info-banner-border-radius);
|
|
5188
|
+
}
|
|
5189
|
+
|
|
5190
|
+
.InfoBanner-module__icon___Pl0HKY0f {
|
|
5191
|
+
flex-shrink: 0;
|
|
5192
|
+
}
|
|
5193
|
+
|
|
5194
|
+
|
|
5195
|
+
/* cbac-picker/base/MarkingButton.module.css */
|
|
5196
|
+
/*
|
|
5197
|
+
* Copyright 2026 Palantir Technologies, Inc. All rights reserved.
|
|
5198
|
+
*
|
|
5199
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5200
|
+
* you may not use this file except in compliance with the License.
|
|
5201
|
+
* You may obtain a copy of the License at
|
|
5202
|
+
*
|
|
5203
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
5204
|
+
*
|
|
5205
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
5206
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
5207
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
5208
|
+
* See the License for the specific language governing permissions and
|
|
5209
|
+
* limitations under the License.
|
|
5210
|
+
*/
|
|
5211
|
+
|
|
5212
|
+
.MarkingButton-module__markingButton___Ra7r3hu1 {
|
|
5213
|
+
display: inline-flex;
|
|
5214
|
+
align-items: center;
|
|
5215
|
+
justify-content: center;
|
|
5216
|
+
text-align: center;
|
|
5217
|
+
padding: var(--osdk-cbac-marking-button-padding);
|
|
5218
|
+
border-radius: var(--osdk-cbac-marking-button-border-radius);
|
|
5219
|
+
font-size: var(--osdk-cbac-marking-button-font-size);
|
|
5220
|
+
font-family: inherit;
|
|
5221
|
+
cursor: pointer;
|
|
5222
|
+
border: none;
|
|
5223
|
+
border-right: 1px solid var(--osdk-cbac-marking-button-border-color-default);
|
|
5224
|
+
border-bottom: 1px solid var(--osdk-cbac-marking-button-border-color-default);
|
|
5225
|
+
color: var(--osdk-cbac-marking-button-color-default);
|
|
5226
|
+
background-color: var(--osdk-cbac-marking-button-bg-default, transparent);
|
|
5227
|
+
}
|
|
5228
|
+
|
|
5229
|
+
.MarkingButton-module__markingButton___Ra7r3hu1:hover:not(:disabled):not([aria-disabled="true"]):not(.MarkingButton-module__disallowed___gqq-bTvz):not(.MarkingButton-module__impliedDisallowed___cpzuUIxC):not(.MarkingButton-module__selected___HC8AEwJx):not(.MarkingButton-module__implied___dIs7pIKM) {
|
|
5230
|
+
background-color: var(--osdk-surface-background-color-default-hover);
|
|
5231
|
+
}
|
|
5232
|
+
|
|
5233
|
+
.MarkingButton-module__selected___HC8AEwJx {
|
|
5234
|
+
color: var(--osdk-cbac-marking-button-color-selected);
|
|
5235
|
+
background-color: var(--osdk-cbac-marking-button-bg-selected);
|
|
5236
|
+
border-color: var(--osdk-cbac-marking-button-border-color-selected);
|
|
5237
|
+
}
|
|
5238
|
+
|
|
5239
|
+
.MarkingButton-module__selected___HC8AEwJx:hover:not(:disabled):not([aria-disabled="true"]) {
|
|
5240
|
+
background-color: var(
|
|
5241
|
+
--osdk-cbac-marking-button-bg-selected-hover,
|
|
5242
|
+
var(--osdk-cbac-marking-button-bg-selected)
|
|
5243
|
+
);
|
|
5244
|
+
filter: brightness(0.85);
|
|
5245
|
+
}
|
|
5246
|
+
|
|
5247
|
+
.MarkingButton-module__implied___dIs7pIKM {
|
|
5248
|
+
color: var(--osdk-cbac-marking-button-color-implied);
|
|
5249
|
+
background-color: var(--osdk-cbac-marking-button-bg-implied);
|
|
5250
|
+
border-color: var(--osdk-cbac-marking-button-border-color-implied);
|
|
5251
|
+
}
|
|
5252
|
+
|
|
5253
|
+
.MarkingButton-module__disallowed___gqq-bTvz,
|
|
5254
|
+
.MarkingButton-module__impliedDisallowed___cpzuUIxC {
|
|
5255
|
+
color: var(--osdk-cbac-marking-button-color-disallowed);
|
|
5256
|
+
background-color: var(--osdk-cbac-marking-button-bg-disallowed);
|
|
5257
|
+
border-color: var(--osdk-cbac-marking-button-border-color-disallowed);
|
|
5258
|
+
cursor: not-allowed;
|
|
5259
|
+
opacity: var(--osdk-cbac-disabled-opacity);
|
|
5260
|
+
text-decoration: line-through;
|
|
5261
|
+
}
|
|
5262
|
+
|
|
5263
|
+
.MarkingButton-module__markingButton___Ra7r3hu1:focus-visible {
|
|
5264
|
+
outline: var(--osdk-focus-outline);
|
|
5265
|
+
outline-offset: var(--osdk-focus-visible-outline-offset);
|
|
5266
|
+
}
|
|
5267
|
+
|
|
5268
|
+
.MarkingButton-module__markingButton___Ra7r3hu1:disabled {
|
|
5269
|
+
cursor: not-allowed;
|
|
5270
|
+
}
|
|
5271
|
+
|
|
5272
|
+
.MarkingButton-module__tooltip___ry4qh1Hy {
|
|
5273
|
+
z-index: var(--osdk-cbac-marking-tooltip-z-index);
|
|
5274
|
+
max-width: var(--osdk-cbac-marking-tooltip-max-width);
|
|
5275
|
+
padding: var(--osdk-cbac-marking-tooltip-padding);
|
|
5276
|
+
background-color: var(--osdk-tooltip-bg);
|
|
5277
|
+
border: 1px solid var(--osdk-tooltip-border-color);
|
|
5278
|
+
border-radius: var(--osdk-surface-border-radius);
|
|
5279
|
+
box-shadow: var(--osdk-tooltip-shadow);
|
|
5280
|
+
font-size: var(--osdk-cbac-marking-tooltip-font-size);
|
|
5281
|
+
line-height: 1.4;
|
|
5282
|
+
}
|
|
5283
|
+
|
|
5284
|
+
.MarkingButton-module__tooltipTitle___i0pEeK3a {
|
|
5285
|
+
margin: 0;
|
|
5286
|
+
font-weight: var(--osdk-typography-weight-bold);
|
|
5287
|
+
color: var(--osdk-typography-color-default-rest);
|
|
5288
|
+
}
|
|
5289
|
+
|
|
5290
|
+
.MarkingButton-module__tooltipDescription___IWc-RpKb {
|
|
5291
|
+
margin: calc(var(--osdk-surface-spacing) * 0.5) 0 0;
|
|
5292
|
+
color: var(--osdk-typography-color-muted);
|
|
5293
|
+
}
|
|
5294
|
+
|
|
5295
|
+
.MarkingButton-module__tooltipHint___aduxbl1- {
|
|
5296
|
+
margin: calc(var(--osdk-surface-spacing) * 0.5) 0 0;
|
|
5297
|
+
font-style: italic;
|
|
5298
|
+
color: var(--osdk-typography-color-muted);
|
|
5299
|
+
}
|
|
5300
|
+
|
|
5301
|
+
|
|
5302
|
+
/* cbac-picker/base/MaxClassificationField.module.css */
|
|
5303
|
+
/*
|
|
5304
|
+
* Copyright 2026 Palantir Technologies, Inc. All rights reserved.
|
|
5305
|
+
*
|
|
5306
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5307
|
+
* you may not use this file except in compliance with the License.
|
|
5308
|
+
* You may obtain a copy of the License at
|
|
5309
|
+
*
|
|
5310
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
5311
|
+
*
|
|
5312
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
5313
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
5314
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
5315
|
+
* See the License for the specific language governing permissions and
|
|
5316
|
+
* limitations under the License.
|
|
5317
|
+
*/
|
|
5318
|
+
|
|
5319
|
+
.MaxClassificationField-module__container___O58GeGhK {
|
|
5320
|
+
display: flex;
|
|
5321
|
+
flex-direction: column;
|
|
5322
|
+
gap: var(--osdk-cbac-marking-button-gap);
|
|
5323
|
+
}
|
|
5324
|
+
|
|
5325
|
+
.MaxClassificationField-module__label___xbttryjN {
|
|
5326
|
+
font-size: var(--osdk-cbac-picker-category-title-font-size);
|
|
5327
|
+
font-weight: var(--osdk-cbac-picker-category-title-font-weight);
|
|
5328
|
+
color: var(--osdk-cbac-picker-category-title-color);
|
|
5329
|
+
letter-spacing: var(--osdk-cbac-picker-category-title-letter-spacing);
|
|
5330
|
+
margin: 0;
|
|
5331
|
+
}
|
|
5332
|
+
|
|
5333
|
+
.MaxClassificationField-module__bannerWrapper___LV-TqjDR {
|
|
5334
|
+
pointer-events: none;
|
|
5335
|
+
}
|
|
5336
|
+
|
|
5337
|
+
.MaxClassificationField-module__helperText___kNhDCQbP {
|
|
5338
|
+
font-size: var(--osdk-typography-size-body-small);
|
|
5339
|
+
color: var(--osdk-typography-color-muted);
|
|
5340
|
+
margin: 0;
|
|
5341
|
+
}
|
|
5342
|
+
|
|
5343
|
+
|
|
5344
|
+
/* cbac-picker/base/OverflowButton.module.css */
|
|
5345
|
+
/*
|
|
5346
|
+
* Copyright 2026 Palantir Technologies, Inc. All rights reserved.
|
|
5347
|
+
*
|
|
5348
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5349
|
+
* you may not use this file except in compliance with the License.
|
|
5350
|
+
* You may obtain a copy of the License at
|
|
5351
|
+
*
|
|
5352
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
5353
|
+
*
|
|
5354
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
5355
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
5356
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
5357
|
+
* See the License for the specific language governing permissions and
|
|
5358
|
+
* limitations under the License.
|
|
5359
|
+
*/
|
|
5360
|
+
|
|
5361
|
+
.OverflowButton-module__moreButton___cpjbpYWQ {
|
|
5362
|
+
display: inline-flex;
|
|
5363
|
+
align-items: center;
|
|
5364
|
+
justify-content: center;
|
|
5365
|
+
text-align: center;
|
|
5366
|
+
padding: var(--osdk-cbac-overflow-button-padding);
|
|
5367
|
+
font-size: var(--osdk-cbac-overflow-button-font-size);
|
|
5368
|
+
font-family: inherit;
|
|
5369
|
+
cursor: pointer;
|
|
5370
|
+
border: none;
|
|
5371
|
+
border-right: 1px solid var(--osdk-cbac-marking-button-border-color-default);
|
|
5372
|
+
border-bottom: 1px solid var(--osdk-cbac-marking-button-border-color-default);
|
|
5373
|
+
color: var(--osdk-cbac-marking-button-color-default);
|
|
5374
|
+
background: var(--osdk-cbac-marking-button-bg-default);
|
|
5375
|
+
font-weight: var(--osdk-typography-weight-bold);
|
|
5376
|
+
}
|
|
5377
|
+
|
|
5378
|
+
.OverflowButton-module__moreButton___cpjbpYWQ:hover {
|
|
5379
|
+
background: var(--osdk-surface-background-color-default-hover);
|
|
5380
|
+
}
|
|
5381
|
+
|
|
5382
|
+
.OverflowButton-module__moreButton___cpjbpYWQ:focus-visible {
|
|
5383
|
+
outline: var(--osdk-focus-outline);
|
|
5384
|
+
outline-offset: var(--osdk-focus-visible-outline-offset);
|
|
5385
|
+
}
|
|
5386
|
+
|
|
5387
|
+
.OverflowButton-module__moreButtonActive___zNMk3W-5 {
|
|
5388
|
+
color: var(--osdk-intent-primary-rest);
|
|
5389
|
+
}
|
|
5390
|
+
|
|
5391
|
+
.OverflowButton-module__overflowList___7llfP4BH {
|
|
5392
|
+
display: flex;
|
|
5393
|
+
flex-direction: column;
|
|
5394
|
+
max-height: var(--osdk-cbac-overflow-list-max-height);
|
|
5395
|
+
overflow-y: auto;
|
|
5396
|
+
padding: calc(var(--osdk-surface-spacing) * 0.5);
|
|
5397
|
+
background: var(--osdk-surface-background-color-default);
|
|
5398
|
+
border: 1px solid var(--osdk-surface-border-color-default);
|
|
5399
|
+
border-radius: var(--osdk-surface-border-radius);
|
|
5400
|
+
box-shadow: var(--osdk-surface-elevation-2);
|
|
5401
|
+
}
|
|
5402
|
+
|
|
5403
|
+
|
|
5404
|
+
/* cbac-picker/base/OverflowItem.module.css */
|
|
5405
|
+
/*
|
|
5406
|
+
* Copyright 2026 Palantir Technologies, Inc. All rights reserved.
|
|
5407
|
+
*
|
|
5408
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5409
|
+
* you may not use this file except in compliance with the License.
|
|
5410
|
+
* You may obtain a copy of the License at
|
|
5411
|
+
*
|
|
5412
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
5413
|
+
*
|
|
5414
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
5415
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
5416
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
5417
|
+
* See the License for the specific language governing permissions and
|
|
5418
|
+
* limitations under the License.
|
|
5419
|
+
*/
|
|
5420
|
+
|
|
5421
|
+
.OverflowItem-module__overflowItem___VAefeIsF {
|
|
5422
|
+
display: flex;
|
|
5423
|
+
align-items: center;
|
|
5424
|
+
width: 100%;
|
|
5425
|
+
text-align: left;
|
|
5426
|
+
padding: var(--osdk-surface-spacing)
|
|
5427
|
+
calc(var(--osdk-surface-spacing) * 1.5);
|
|
5428
|
+
font-size: var(--osdk-cbac-overflow-button-font-size);
|
|
5429
|
+
font-family: inherit;
|
|
5430
|
+
cursor: pointer;
|
|
5431
|
+
border: none;
|
|
5432
|
+
border-radius: var(--osdk-surface-border-radius);
|
|
5433
|
+
color: var(--osdk-cbac-marking-button-color-default);
|
|
5434
|
+
background: transparent;
|
|
5435
|
+
}
|
|
5436
|
+
|
|
5437
|
+
.OverflowItem-module__overflowItem___VAefeIsF:hover:not(:disabled):not([aria-disabled="true"]) {
|
|
5438
|
+
background: var(--osdk-surface-background-color-default-hover);
|
|
5439
|
+
}
|
|
5440
|
+
|
|
5441
|
+
.OverflowItem-module__overflowItem___VAefeIsF:focus-visible {
|
|
5442
|
+
outline: var(--osdk-focus-outline);
|
|
5443
|
+
outline-offset: var(--osdk-focus-visible-outline-offset);
|
|
5444
|
+
}
|
|
5445
|
+
|
|
5446
|
+
.OverflowItem-module__overflowItemSelected___5UNc9Ql9 {
|
|
5447
|
+
color: var(--osdk-intent-primary-rest);
|
|
5448
|
+
font-weight: var(--osdk-typography-weight-bold);
|
|
5449
|
+
}
|
|
5450
|
+
|
|
5451
|
+
.OverflowItem-module__overflowItemDisabled___UKHy9SIU {
|
|
5452
|
+
color: var(--osdk-cbac-marking-button-color-disallowed);
|
|
5453
|
+
cursor: not-allowed;
|
|
5454
|
+
opacity: var(--osdk-cbac-disabled-opacity);
|
|
5455
|
+
text-decoration: line-through;
|
|
5456
|
+
}
|
|
5457
|
+
|
|
5458
|
+
.OverflowItem-module__tooltip___ObWv3jhA {
|
|
5459
|
+
z-index: var(--osdk-cbac-marking-tooltip-z-index);
|
|
5460
|
+
max-width: var(--osdk-cbac-marking-tooltip-max-width);
|
|
5461
|
+
padding: var(--osdk-cbac-marking-tooltip-padding);
|
|
5462
|
+
background-color: var(--osdk-tooltip-bg);
|
|
5463
|
+
border: 1px solid var(--osdk-tooltip-border-color);
|
|
5464
|
+
border-radius: var(--osdk-surface-border-radius);
|
|
5465
|
+
box-shadow: var(--osdk-tooltip-shadow);
|
|
5466
|
+
font-size: var(--osdk-cbac-marking-tooltip-font-size);
|
|
5467
|
+
line-height: 1.4;
|
|
5468
|
+
}
|
|
5469
|
+
|
|
5470
|
+
.OverflowItem-module__tooltipDescription___CMC3TFap {
|
|
5471
|
+
margin: 0;
|
|
5472
|
+
color: var(--osdk-typography-color-muted);
|
|
5473
|
+
}
|
|
5474
|
+
|
|
5475
|
+
.OverflowItem-module__tooltipHint___O58KYUm3 {
|
|
5476
|
+
margin: calc(var(--osdk-surface-spacing) * 0.25) 0 0;
|
|
5477
|
+
font-style: italic;
|
|
5478
|
+
color: var(--osdk-typography-color-muted);
|
|
5479
|
+
}
|
|
5480
|
+
|
|
5481
|
+
|
|
5482
|
+
/* cbac-picker/base/ValidationWarning.module.css */
|
|
5483
|
+
/*
|
|
5484
|
+
* Copyright 2026 Palantir Technologies, Inc. All rights reserved.
|
|
5485
|
+
*
|
|
5486
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5487
|
+
* you may not use this file except in compliance with the License.
|
|
5488
|
+
* You may obtain a copy of the License at
|
|
5489
|
+
*
|
|
5490
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
5491
|
+
*
|
|
5492
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
5493
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
5494
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
5495
|
+
* See the License for the specific language governing permissions and
|
|
5496
|
+
* limitations under the License.
|
|
5497
|
+
*/
|
|
5498
|
+
|
|
5499
|
+
.ValidationWarning-module__validationWarning___oADBKhG- {
|
|
5500
|
+
display: flex;
|
|
5501
|
+
flex-direction: column;
|
|
5502
|
+
gap: calc(var(--osdk-surface-spacing) * 1.5);
|
|
5503
|
+
padding: var(--osdk-cbac-validation-warning-padding);
|
|
5504
|
+
background: var(--osdk-cbac-validation-warning-bg);
|
|
5505
|
+
color: var(--osdk-cbac-validation-warning-color);
|
|
5506
|
+
font-size: var(--osdk-cbac-validation-warning-font-size);
|
|
5507
|
+
border-radius: var(--osdk-cbac-validation-warning-border-radius);
|
|
5508
|
+
max-height: var(--osdk-cbac-validation-warning-max-height);
|
|
5509
|
+
overflow-y: auto;
|
|
5510
|
+
}
|
|
5511
|
+
|
|
5512
|
+
.ValidationWarning-module__header___ylq-kIOW {
|
|
5513
|
+
display: flex;
|
|
5514
|
+
align-items: center;
|
|
5515
|
+
gap: calc(var(--osdk-surface-spacing) * 1.5);
|
|
5516
|
+
}
|
|
5517
|
+
|
|
5518
|
+
.ValidationWarning-module__icon___PuGol1EB {
|
|
5519
|
+
flex-shrink: 0;
|
|
5520
|
+
}
|
|
5521
|
+
|
|
5522
|
+
.ValidationWarning-module__groupList___ua5t3Rm2 {
|
|
5523
|
+
list-style: none;
|
|
5524
|
+
margin: 0;
|
|
5525
|
+
padding: 0;
|
|
5526
|
+
padding-left: calc(var(--osdk-surface-spacing) * 3);
|
|
5527
|
+
display: flex;
|
|
5528
|
+
flex-direction: column;
|
|
5529
|
+
gap: var(--osdk-surface-spacing);
|
|
5530
|
+
}
|
|
5531
|
+
|
|
5532
|
+
.ValidationWarning-module__groupItem___0BGH5HxZ {
|
|
5533
|
+
display: flex;
|
|
5534
|
+
align-items: center;
|
|
5535
|
+
gap: var(--osdk-surface-spacing);
|
|
5536
|
+
flex-wrap: wrap;
|
|
5537
|
+
}
|
|
5538
|
+
|
|
5539
|
+
.ValidationWarning-module__groupNumber___rTdfnH3f {
|
|
5540
|
+
font-weight: var(--osdk-typography-weight-bold);
|
|
5541
|
+
flex-shrink: 0;
|
|
5542
|
+
}
|
|
5543
|
+
|
|
5544
|
+
.ValidationWarning-module__chip___3EH1UeL0 {
|
|
5545
|
+
display: inline-flex;
|
|
5546
|
+
align-items: center;
|
|
5547
|
+
padding: 0 var(--osdk-surface-spacing);
|
|
5548
|
+
border: 1px solid var(--osdk-cbac-validation-warning-chip-border-color);
|
|
5549
|
+
border-radius: var(--osdk-surface-border-radius);
|
|
5550
|
+
background: var(--osdk-cbac-validation-warning-chip-bg);
|
|
5551
|
+
font-size: var(--osdk-cbac-validation-warning-font-size);
|
|
5552
|
+
color: var(--osdk-typography-color-default-rest);
|
|
5553
|
+
}
|
|
5554
|
+
|
|
5555
|
+
|
|
4745
5556
|
/* document-viewer/DocumentViewer.module.css */
|
|
4746
5557
|
.LoadingError-module__loadingContainer___bPqIqyjp {
|
|
4747
5558
|
display: flex;
|
|
@@ -6175,18 +6986,15 @@
|
|
|
6175
6986
|
height: var(--osdk-filter-listogram-bar-height);
|
|
6176
6987
|
background: var(--osdk-filter-listogram-bar-bg);
|
|
6177
6988
|
border-radius: var(--osdk-filter-listogram-bar-border-radius);
|
|
6178
|
-
overflow: hidden;
|
|
6179
6989
|
}
|
|
6180
6990
|
|
|
6181
6991
|
.ListogramInput-module__barFill___za7KWtcm {
|
|
6182
6992
|
display: block;
|
|
6183
6993
|
height: 100%;
|
|
6184
|
-
width: 100
|
|
6994
|
+
width: calc(var(--osdk-filter-listogram-bar-fill-scale, 0) * 100%);
|
|
6185
6995
|
background: var(--osdk-filter-listogram-row-bar-color, var(--osdk-filter-listogram-bar-color));
|
|
6186
6996
|
border-radius: var(--osdk-filter-listogram-bar-border-radius);
|
|
6187
|
-
|
|
6188
|
-
transform: scaleX(var(--osdk-filter-listogram-bar-fill-scale, 0));
|
|
6189
|
-
transition: transform var(--osdk-filter-listogram-bar-fill-transition);
|
|
6997
|
+
transition: width var(--osdk-filter-listogram-bar-fill-transition);
|
|
6190
6998
|
}
|
|
6191
6999
|
|
|
6192
7000
|
.ListogramInput-module__row___rps-rpjo[aria-pressed="true"] .ListogramInput-module__barFill___za7KWtcm {
|