@carbon/ibm-products 2.89.0 → 2.90.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (919) hide show
  1. package/css/carbon.css +374 -417
  2. package/css/carbon.css.map +1 -1
  3. package/css/index-full-carbon.css +496 -430
  4. package/css/index-full-carbon.css.map +1 -1
  5. package/css/index-full-carbon.min.css +1 -1
  6. package/css/index-full-carbon.min.css.map +1 -1
  7. package/css/index-without-carbon-released-only.css +117 -13
  8. package/css/index-without-carbon-released-only.css.map +1 -1
  9. package/css/index-without-carbon-released-only.min.css +1 -1
  10. package/css/index-without-carbon-released-only.min.css.map +1 -1
  11. package/css/index-without-carbon.css +143 -13
  12. package/css/index-without-carbon.css.map +1 -1
  13. package/css/index-without-carbon.min.css +1 -1
  14. package/css/index-without-carbon.min.css.map +1 -1
  15. package/css/index.css +359 -283
  16. package/css/index.css.map +1 -1
  17. package/css/index.min.css +1 -1
  18. package/css/index.min.css.map +1 -1
  19. package/es/_virtual/_rolldown/runtime.js +13 -22
  20. package/es/components/APIKeyModal/APIKeyDownloader.js +19 -3
  21. package/es/components/APIKeyModal/APIKeyModal.js +161 -3
  22. package/es/components/AboutModal/AboutModal.js +44 -3
  23. package/es/components/ActionBar/ActionBar.js +41 -3
  24. package/es/components/ActionBar/ActionBarItem.js +30 -3
  25. package/es/components/ActionBar/ActionBarOverflowItems.js +20 -3
  26. package/es/components/ActionSet/ActionSet.js +35 -3
  27. package/es/components/AddSelect/AddSelect.js +7 -3
  28. package/es/components/AddSelect/AddSelectBody.js +3 -3
  29. package/es/components/AddSelect/AddSelectBreadcrumbs.js +1 -3
  30. package/es/components/AddSelect/AddSelectColumn.js +2 -4
  31. package/es/components/AddSelect/AddSelectFilter.js +1 -3
  32. package/es/components/AddSelect/AddSelectFormControl.js +1 -3
  33. package/es/components/AddSelect/AddSelectList.js +1 -3
  34. package/es/components/AddSelect/AddSelectMetaPanel.js +1 -3
  35. package/es/components/AddSelect/AddSelectRow.js +1 -3
  36. package/es/components/AddSelect/AddSelectSidebar.js +1 -3
  37. package/es/components/AddSelect/AddSelectSort.js +1 -3
  38. package/es/components/AddSelect/add-select-utils.js +1 -2
  39. package/es/components/AddSelect/hooks/useFocus.js +1 -3
  40. package/es/components/AddSelect/hooks/useItemSort.js +1 -3
  41. package/es/components/AddSelect/hooks/useParentSelect.js +1 -3
  42. package/es/components/AddSelect/hooks/usePath.js +1 -3
  43. package/es/components/BigNumber/BigNumber.js +52 -6
  44. package/es/components/BigNumber/BigNumberSkeleton.js +12 -9
  45. package/es/components/BigNumber/constants.js +1 -19
  46. package/es/components/BreadcrumbWithOverflow/BreadcrumbWithOverflow.js +37 -3
  47. package/es/components/ButtonSetWithOverflow/ButtonSetWithOverflow.js +28 -4
  48. package/es/components/Card/Card.js +20 -3
  49. package/es/components/Card/CardFooter.js +1 -3
  50. package/es/components/Card/CardHeader.js +12 -3
  51. package/es/components/Carousel/Carousel.js +33 -3
  52. package/es/components/Carousel/CarouselItem.js +7 -3
  53. package/es/components/Cascade/Cascade.js +12 -3
  54. package/es/components/Checklist/Checklist.js +65 -11
  55. package/es/components/Checklist/ChecklistChart.js +13 -7
  56. package/es/components/Checklist/ChecklistIcon.js +17 -11
  57. package/es/components/Coachmark/Coachmark.js +60 -6
  58. package/es/components/Coachmark/CoachmarkDragbar.js +17 -3
  59. package/es/components/Coachmark/CoachmarkHeader.js +13 -3
  60. package/es/components/Coachmark/CoachmarkOverlay.js +24 -6
  61. package/es/components/Coachmark/CoachmarkTagline.js +13 -3
  62. package/es/components/Coachmark/next/Coachmark/Coachmark.d.ts +5 -1
  63. package/es/components/Coachmark/next/Coachmark/Coachmark.d.ts.map +1 -1
  64. package/es/components/Coachmark/next/Coachmark/Coachmark.js +56 -9
  65. package/es/components/Coachmark/next/Coachmark/CoachmarkBeacon/CoachmarkBeacon.js +17 -3
  66. package/es/components/Coachmark/next/Coachmark/CoachmarkContent.js +8 -3
  67. package/es/components/Coachmark/next/Coachmark/CoachmarkTagline/CoachmarkTagline.js +18 -3
  68. package/es/components/Coachmark/next/Coachmark/ContentBody.js +8 -3
  69. package/es/components/Coachmark/next/Coachmark/ContentHeader.js +13 -3
  70. package/es/components/Coachmark/next/Coachmark/context.js +1 -3
  71. package/es/components/Coachmark/utils/constants.js +15 -23
  72. package/es/components/Coachmark/utils/context.js +1 -3
  73. package/es/components/Coachmark/utils/enums.js +1 -2
  74. package/es/components/Coachmark/utils/hooks.js +3 -5
  75. package/es/components/CoachmarkBeacon/CoachmarkBeacon.js +17 -3
  76. package/es/components/CoachmarkButton/CoachmarkButton.js +7 -3
  77. package/es/components/CoachmarkFixed/CoachmarkFixed.js +31 -5
  78. package/es/components/CoachmarkOverlayElement/CoachmarkOverlayElement.js +14 -3
  79. package/es/components/CoachmarkOverlayElements/CoachmarkOverlayElements.js +33 -3
  80. package/es/components/CoachmarkStack/CoachmarkStack.js +43 -5
  81. package/es/components/CoachmarkStack/CoachmarkStackHome.js +41 -3
  82. package/es/components/ComboButton/ComboButton.js +5 -3
  83. package/es/components/ComboButton/ComboButtonItem/index.js +5 -3
  84. package/es/components/ConditionBuilder/ConditionBlock/ConditionBlock.js +48 -5
  85. package/es/components/ConditionBuilder/ConditionBuilder.d.ts.map +1 -1
  86. package/es/components/ConditionBuilder/ConditionBuilder.js +65 -4
  87. package/es/components/ConditionBuilder/ConditionBuilder.types.d.ts +13 -0
  88. package/es/components/ConditionBuilder/ConditionBuilder.types.d.ts.map +1 -1
  89. package/es/components/ConditionBuilder/ConditionBuilderActions/ConditionBuilderActions.d.ts.map +1 -1
  90. package/es/components/ConditionBuilder/ConditionBuilderActions/ConditionBuilderActions.js +15 -5
  91. package/es/components/ConditionBuilder/ConditionBuilderAdd/ConditionBuilderAdd.js +29 -3
  92. package/es/components/ConditionBuilder/ConditionBuilderButton/ConditionBuilderButton.js +39 -3
  93. package/es/components/ConditionBuilder/ConditionBuilderConnector/ConditionConnector.js +12 -5
  94. package/es/components/ConditionBuilder/ConditionBuilderConnector/GroupConnector.js +1 -3
  95. package/es/components/ConditionBuilder/ConditionBuilderContent/ConditionBuilderContent.d.ts.map +1 -1
  96. package/es/components/ConditionBuilder/ConditionBuilderContent/ConditionBuilderContent.js +37 -15
  97. package/es/components/ConditionBuilder/ConditionBuilderContext/ConditionBuilderProvider.d.ts.map +1 -1
  98. package/es/components/ConditionBuilder/ConditionBuilderContext/ConditionBuilderProvider.js +35 -3
  99. package/es/components/ConditionBuilder/ConditionBuilderContext/translationObject.js +1 -2
  100. package/es/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItem.js +37 -3
  101. package/es/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemDate/ConditionBuilderItemDate.js +10 -3
  102. package/es/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemNumber/ConditionBuilderItemNumber.js +10 -3
  103. package/es/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemOption/ItemOption.js +10 -3
  104. package/es/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemOption/ItemOptionForValueField.js +10 -3
  105. package/es/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemText/ConditionBuilderItemText.js +13 -3
  106. package/es/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemTime/ConditionBuilderItemTime.js +10 -3
  107. package/es/components/ConditionBuilder/ConditionGroupBuilder/ConditionGroupBuilder.d.ts.map +1 -1
  108. package/es/components/ConditionBuilder/ConditionGroupBuilder/ConditionGroupBuilder.js +29 -7
  109. package/es/components/ConditionBuilder/ConditionPreview/ConditionPreview.js +10 -3
  110. package/es/components/ConditionBuilder/utils/handleKeyboardEvents.js +6 -8
  111. package/es/components/ConditionBuilder/utils/useDataConfigs.js +1 -3
  112. package/es/components/ConditionBuilder/utils/useEvent.js +1 -3
  113. package/es/components/ConditionBuilder/utils/useTranslations.js +1 -3
  114. package/es/components/ConditionBuilder/utils/util.js +1 -3
  115. package/es/components/CreateFullPage/CreateFullPage.js +79 -3
  116. package/es/components/CreateFullPage/CreateFullPageStep.js +51 -3
  117. package/es/components/CreateInfluencer/CreateInfluencer.js +16 -3
  118. package/es/components/CreateModal/CreateModal.js +43 -3
  119. package/es/components/CreateSidePanel/CreateSidePanel.js +59 -3
  120. package/es/components/CreateTearsheet/CreateTearsheet.js +82 -4
  121. package/es/components/CreateTearsheet/CreateTearsheetDivider.js +6 -4
  122. package/es/components/CreateTearsheet/CreateTearsheetStep.js +72 -3
  123. package/es/components/CreateTearsheetNarrow/CreateTearsheetNarrow.js +56 -3
  124. package/es/components/DataSpreadsheet/DataSpreadsheet.js +61 -3
  125. package/es/components/DataSpreadsheet/DataSpreadsheetBody.js +115 -3
  126. package/es/components/DataSpreadsheet/DataSpreadsheetHeader.js +76 -3
  127. package/es/components/DataSpreadsheet/hooks/useMoveActiveCell.js +1 -3
  128. package/es/components/DataSpreadsheet/hooks/useMultipleKeyTracking.js +1 -3
  129. package/es/components/DataSpreadsheet/hooks/useResetSpreadsheetFocus.js +1 -3
  130. package/es/components/DataSpreadsheet/hooks/useSpreadsheetEdit.js +1 -3
  131. package/es/components/DataSpreadsheet/hooks/useSpreadsheetMouseMove.js +1 -3
  132. package/es/components/DataSpreadsheet/hooks/useSpreadsheetMouseUp.js +1 -3
  133. package/es/components/DataSpreadsheet/hooks/useSpreadsheetOutsideClick.js +1 -3
  134. package/es/components/DataSpreadsheet/utils/checkActiveHeaderCell.js +1 -3
  135. package/es/components/DataSpreadsheet/utils/checkForHoldingKey.js +1 -2
  136. package/es/components/DataSpreadsheet/utils/checkSelectedHeaderCell.js +1 -3
  137. package/es/components/DataSpreadsheet/utils/commonEventHandlers.js +1 -3
  138. package/es/components/DataSpreadsheet/utils/createActiveCellFn.js +1 -3
  139. package/es/components/DataSpreadsheet/utils/createCellSelectionArea.js +1 -3
  140. package/es/components/DataSpreadsheet/utils/getCellSize.js +1 -3
  141. package/es/components/DataSpreadsheet/utils/getSelectionAreaPoints.js +1 -2
  142. package/es/components/DataSpreadsheet/utils/getSpreadsheetWidth.js +1 -3
  143. package/es/components/DataSpreadsheet/utils/handleActiveCellInSelectionEnter.js +1 -3
  144. package/es/components/DataSpreadsheet/utils/handleActiveCellInSelectionTab.js +1 -3
  145. package/es/components/DataSpreadsheet/utils/handleCellDeletion.js +1 -3
  146. package/es/components/DataSpreadsheet/utils/handleEditSubmit.js +1 -3
  147. package/es/components/DataSpreadsheet/utils/handleHeaderCellSelection.js +1 -3
  148. package/es/components/DataSpreadsheet/utils/handleMultipleKeys.js +1 -3
  149. package/es/components/DataSpreadsheet/utils/moveColumnIndicatorLine.js +1 -3
  150. package/es/components/DataSpreadsheet/utils/removeCellSelections.js +1 -3
  151. package/es/components/DataSpreadsheet/utils/selectAllCells.js +1 -3
  152. package/es/components/Datagrid/Datagrid/Datagrid.js +9 -3
  153. package/es/components/Datagrid/Datagrid/DatagridBody.js +1 -3
  154. package/es/components/Datagrid/Datagrid/DatagridContent.js +3 -5
  155. package/es/components/Datagrid/Datagrid/DatagridEmptyBody.js +1 -3
  156. package/es/components/Datagrid/Datagrid/DatagridExpandedRow.js +1 -3
  157. package/es/components/Datagrid/Datagrid/DatagridHead.js +1 -3
  158. package/es/components/Datagrid/Datagrid/DatagridHeaderRow.js +3 -5
  159. package/es/components/Datagrid/Datagrid/DatagridRefBody.js +1 -3
  160. package/es/components/Datagrid/Datagrid/DatagridRow.js +3 -5
  161. package/es/components/Datagrid/Datagrid/DatagridSelectAll.js +1 -3
  162. package/es/components/Datagrid/Datagrid/DatagridSelectAllWithToggle.js +1 -3
  163. package/es/components/Datagrid/Datagrid/DatagridSimpleBody.js +1 -3
  164. package/es/components/Datagrid/Datagrid/DatagridToolbar.js +1 -3
  165. package/es/components/Datagrid/Datagrid/DatagridVirtualBody.js +1 -3
  166. package/es/components/Datagrid/Datagrid/DraggableElement.js +1 -3
  167. package/es/components/Datagrid/Datagrid/addons/AiLabel/DatagridAiLabel.js +6 -4
  168. package/es/components/Datagrid/Datagrid/addons/CustomizeColumns/Actions.js +1 -3
  169. package/es/components/Datagrid/Datagrid/addons/CustomizeColumns/ButtonWrapper.js +1 -3
  170. package/es/components/Datagrid/Datagrid/addons/CustomizeColumns/Columns.js +1 -3
  171. package/es/components/Datagrid/Datagrid/addons/CustomizeColumns/CustomizeColumnsTearsheet.js +1 -3
  172. package/es/components/Datagrid/Datagrid/addons/CustomizeColumns/DraggableItemsList.js +1 -3
  173. package/es/components/Datagrid/Datagrid/addons/CustomizeColumns/TearsheetWrapper.js +1 -3
  174. package/es/components/Datagrid/Datagrid/addons/CustomizeColumns/common.js +1 -2
  175. package/es/components/Datagrid/Datagrid/addons/Filtering/FilterFlyout.js +43 -3
  176. package/es/components/Datagrid/Datagrid/addons/Filtering/FilterPanel.js +19 -14
  177. package/es/components/Datagrid/Datagrid/addons/Filtering/FilterProvider.js +8 -10
  178. package/es/components/Datagrid/Datagrid/addons/Filtering/OverflowCheckboxes.js +1 -3
  179. package/es/components/Datagrid/Datagrid/addons/Filtering/constants.js +1 -2
  180. package/es/components/Datagrid/Datagrid/addons/Filtering/handleCheckboxChange.js +1 -2
  181. package/es/components/Datagrid/Datagrid/addons/Filtering/hooks/useFilterContext.js +1 -3
  182. package/es/components/Datagrid/Datagrid/addons/Filtering/hooks/useFilters.js +9 -11
  183. package/es/components/Datagrid/Datagrid/addons/Filtering/hooks/useShouldDisableButtons.js +1 -3
  184. package/es/components/Datagrid/Datagrid/addons/Filtering/hooks/useSubscribeToEventEmitter.js +1 -3
  185. package/es/components/Datagrid/Datagrid/addons/Filtering/utils.js +10 -12
  186. package/es/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditButton/InlineEditButton.js +1 -3
  187. package/es/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditCell/InlineEditCell.js +1 -3
  188. package/es/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditContext/InlineEditContext.js +1 -3
  189. package/es/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditContext/getCellIdAsObject.js +1 -2
  190. package/es/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditContext/returnUpdatedActiveCell.js +1 -3
  191. package/es/components/Datagrid/Datagrid/addons/InlineEdit/handleGridFocus.js +1 -2
  192. package/es/components/Datagrid/Datagrid/addons/InlineEdit/handleGridKeyPress.js +1 -3
  193. package/es/components/Datagrid/Datagrid/addons/InlineEdit/handleMultipleKeys.js +1 -3
  194. package/es/components/Datagrid/Datagrid/addons/RowSize/RowSizeDropdown.js +1 -3
  195. package/es/components/Datagrid/Datagrid/addons/RowSize/RowSizeRadioGroup.js +1 -3
  196. package/es/components/Datagrid/Datagrid/addons/stateReducer.js +1 -3
  197. package/es/components/Datagrid/common-column-ids.js +1 -2
  198. package/es/components/Datagrid/useActionsColumn.js +1 -3
  199. package/es/components/Datagrid/useColumnCenterAlign.js +1 -3
  200. package/es/components/Datagrid/useColumnOrder.js +1 -3
  201. package/es/components/Datagrid/useColumnRightAlign.js +1 -3
  202. package/es/components/Datagrid/useCustomizeColumns.js +1 -3
  203. package/es/components/Datagrid/useDatagrid.js +1 -3
  204. package/es/components/Datagrid/useDefaultStringRenderer.js +1 -3
  205. package/es/components/Datagrid/useDisableSelectRows.js +1 -2
  206. package/es/components/Datagrid/useEditableCell.js +1 -3
  207. package/es/components/Datagrid/useExpandedRow.js +1 -3
  208. package/es/components/Datagrid/useFiltering.js +1 -3
  209. package/es/components/Datagrid/useFlexResize.js +1 -3
  210. package/es/components/Datagrid/useFloatingScroll.js +1 -3
  211. package/es/components/Datagrid/useFocusRowExpander.js +1 -3
  212. package/es/components/Datagrid/useInfiniteScroll.js +1 -3
  213. package/es/components/Datagrid/useInitialColumnSort.js +1 -3
  214. package/es/components/Datagrid/useInlineEdit.js +1 -3
  215. package/es/components/Datagrid/useNestedRowExpander.js +1 -3
  216. package/es/components/Datagrid/useNestedRows.js +1 -3
  217. package/es/components/Datagrid/useOnRowClick.js +1 -3
  218. package/es/components/Datagrid/useParentDimensions.js +1 -3
  219. package/es/components/Datagrid/useResizeTable.js +1 -3
  220. package/es/components/Datagrid/useRowExpander.js +1 -3
  221. package/es/components/Datagrid/useRowIsMouseOver.js +1 -3
  222. package/es/components/Datagrid/useRowRenderer.js +1 -3
  223. package/es/components/Datagrid/useRowSize.js +1 -3
  224. package/es/components/Datagrid/useSelectAllToggle.js +4 -6
  225. package/es/components/Datagrid/useSelectRows.js +1 -3
  226. package/es/components/Datagrid/useSkeletonRows.js +1 -2
  227. package/es/components/Datagrid/useSortableColumns.js +1 -3
  228. package/es/components/Datagrid/useStickyColumn.js +1 -3
  229. package/es/components/Datagrid/utils/getAutoSizedColumnWidth.js +1 -2
  230. package/es/components/Decorator/Decorator.js +55 -3
  231. package/es/components/DecoratorBase/DecoratorBase.js +4 -3
  232. package/es/components/DecoratorBase/DecoratorIcon.js +10 -3
  233. package/es/components/DecoratorBase/utils.js +1 -2
  234. package/es/components/DecoratorDualButton/DecoratorDualButton.js +74 -3
  235. package/es/components/DecoratorLink/DecoratorLink.js +66 -3
  236. package/es/components/DecoratorSingleButton/DecoratorSingleButton.js +66 -3
  237. package/es/components/DelimitedList/DelimitedList.js +13 -3
  238. package/es/components/DescriptionList/DescriptionList.js +5 -3
  239. package/es/components/DescriptionList/DescriptionListBody.js +3 -3
  240. package/es/components/DescriptionList/DescriptionListCell.js +3 -3
  241. package/es/components/DescriptionList/DescriptionListRow.js +3 -3
  242. package/es/components/DescriptionList/constants.js +1 -2
  243. package/es/components/EditFullPage/EditFullPage.js +7 -3
  244. package/es/components/EditInPlace/EditInPlace.d.ts.map +1 -1
  245. package/es/components/EditInPlace/EditInPlace.js +136 -28
  246. package/es/components/EditSidePanel/EditSidePanel.js +66 -3
  247. package/es/components/EditTearsheet/EditTearsheet.js +53 -3
  248. package/es/components/EditTearsheet/EditTearsheetForm.js +33 -3
  249. package/es/components/EditTearsheetNarrow/EditTearsheetNarrow.js +7 -3
  250. package/es/components/EditUpdateCards/EditUpdateCards.js +70 -3
  251. package/es/components/EmptyStates/EmptyState.js +41 -9
  252. package/es/components/EmptyStates/EmptyStateContent.js +21 -3
  253. package/es/components/EmptyStates/EmptyStateIllustration.deprecated.js +1 -3
  254. package/es/components/EmptyStates/EmptyStateV2.deprecated.js +39 -3
  255. package/es/components/EmptyStates/ErrorEmptyState/ErrorEmptyState.js +37 -3
  256. package/es/components/EmptyStates/NoDataEmptyState/NoDataEmptyState.js +37 -3
  257. package/es/components/EmptyStates/NoTagsEmptyState/NoTagsEmptyState.js +37 -3
  258. package/es/components/EmptyStates/NotFoundEmptyState/NotFoundEmptyState.js +37 -3
  259. package/es/components/EmptyStates/NotificationsEmptyState/NotificationsEmptyState.js +37 -3
  260. package/es/components/EmptyStates/UnauthorizedEmptyState/UnauthorizedEmptyState.js +37 -3
  261. package/es/components/EmptyStates/assets/ErrorIllustration.js +1 -3
  262. package/es/components/EmptyStates/assets/NoDataIllustration.js +1 -3
  263. package/es/components/EmptyStates/assets/NoTagsIllustration.js +1 -3
  264. package/es/components/EmptyStates/assets/NotFoundIllustration.js +1 -3
  265. package/es/components/EmptyStates/assets/NotificationsIllustration.js +1 -3
  266. package/es/components/EmptyStates/assets/UnauthorizedIllustration.js +1 -3
  267. package/es/components/ExportModal/ExportModal.js +80 -3
  268. package/es/components/ExpressiveCard/ExpressiveCard.js +76 -3
  269. package/es/components/FeatureFlags/index.js +4 -3
  270. package/es/components/FilterPanel/FilterPanel.js +10 -3
  271. package/es/components/FilterPanel/FilterPanelAccordion/FilterPanelAccordion.js +19 -3
  272. package/es/components/FilterPanel/FilterPanelAccordionItem/FilterPanelAccordionItem.js +22 -3
  273. package/es/components/FilterPanel/FilterPanelCheckbox/FilterPanelCheckbox.js +16 -3
  274. package/es/components/FilterPanel/FilterPanelCheckboxWithOverflow/FilterPanelCheckboxWithOverflow.js +34 -3
  275. package/es/components/FilterPanel/FilterPanelGroup/FilterPanelGroup.js +16 -3
  276. package/es/components/FilterPanel/FilterPanelLabel/FilterPanelLabel.js +13 -3
  277. package/es/components/FilterPanel/FilterPanelSearch/FilterPanelSearch.js +13 -4
  278. package/es/components/FilterSummary/FilterSummary.js +2 -3
  279. package/es/components/FullPageError/FullPageError.js +20 -3
  280. package/es/components/FullPageError/assets/Error403SVG.js +1 -3
  281. package/es/components/FullPageError/assets/Error404SVG.js +1 -3
  282. package/es/components/FullPageError/assets/ErrorGenericSVG.js +1 -3
  283. package/es/components/GetStartedCard/GetStartedCard.js +37 -3
  284. package/es/components/Guidebanner/Guidebanner.js +49 -5
  285. package/es/components/Guidebanner/GuidebannerElement.js +14 -3
  286. package/es/components/Guidebanner/GuidebannerElementButton.js +11 -3
  287. package/es/components/Guidebanner/GuidebannerElementLink.js +7 -3
  288. package/es/components/HTTPErrors/HTTPError403/HTTPError403.js +23 -3
  289. package/es/components/HTTPErrors/HTTPError404/HTTPError404.js +23 -3
  290. package/es/components/HTTPErrors/HTTPErrorContent.js +19 -3
  291. package/es/components/HTTPErrors/HTTPErrorOther/HTTPErrorOther.js +23 -3
  292. package/es/components/HTTPErrors/assets/HTTPErrorSvg403.js +1 -3
  293. package/es/components/HTTPErrors/assets/HTTPErrorSvg404.js +1 -3
  294. package/es/components/HTTPErrors/assets/HTTPErrorSvgOther.js +1 -3
  295. package/es/components/ImportModal/ImportModal.js +88 -3
  296. package/es/components/InlineTip/InlineTip.js +56 -3
  297. package/es/components/InlineTip/InlineTipButton.js +7 -3
  298. package/es/components/InlineTip/InlineTipLink.js +7 -3
  299. package/es/components/InlineTip/utils.js +1 -2
  300. package/es/components/InterstitialScreen/InterstitialScreen.js +23 -3
  301. package/es/components/InterstitialScreen/InterstitialScreenBody.js +13 -3
  302. package/es/components/InterstitialScreen/InterstitialScreenFooter.js +24 -3
  303. package/es/components/InterstitialScreen/InterstitialScreenHeader.js +20 -3
  304. package/es/components/InterstitialScreen/InterstitialScreenView.js +13 -3
  305. package/es/components/InterstitialScreen/context.js +1 -3
  306. package/es/components/MultiAddSelect/MultiAddSelect.js +81 -3
  307. package/es/components/Nav/Nav.js +16 -3
  308. package/es/components/Nav/NavItem.js +37 -3
  309. package/es/components/Nav/NavItemLink.js +4 -4
  310. package/es/components/Nav/NavList.js +12 -3
  311. package/es/components/NonLinearReading/NonLinearReading.js +13 -3
  312. package/es/components/NotificationsPanel/NotificationsPanel.js +118 -3
  313. package/es/components/NotificationsPanel/utils.js +1 -2
  314. package/es/components/OptionsTile/OptionsTile.js +52 -3
  315. package/es/components/PageHeader/PageHeader.js +219 -3
  316. package/es/components/PageHeader/PageHeaderTitle.js +24 -3
  317. package/es/components/PageHeader/PageHeaderUtils.js +1 -3
  318. package/es/components/PageHeader/next/PageHeader.d.ts +2 -1
  319. package/es/components/PageHeader/next/PageHeader.d.ts.map +1 -1
  320. package/es/components/PageHeader/next/PageHeader.js +1 -3
  321. package/es/components/PageHeader/next/PageHeaderBreadcrumbBar.d.ts.map +1 -1
  322. package/es/components/PageHeader/next/PageHeaderBreadcrumbBar.js +2 -6
  323. package/es/components/PageHeader/next/PageHeaderBreadcrumbOverflow.js +1 -3
  324. package/es/components/PageHeader/next/PageHeaderBreadcrumbPageActions.js +16 -3
  325. package/es/components/PageHeader/next/PageHeaderContent.d.ts.map +1 -1
  326. package/es/components/PageHeader/next/PageHeaderContent.js +32 -9
  327. package/es/components/PageHeader/next/PageHeaderContentPageActions.d.ts.map +1 -1
  328. package/es/components/PageHeader/next/PageHeaderContentPageActions.js +21 -7
  329. package/es/components/PageHeader/next/PageHeaderContentText.js +10 -3
  330. package/es/components/PageHeader/next/PageHeaderHeroImage.d.ts +13 -1
  331. package/es/components/PageHeader/next/PageHeaderHeroImage.d.ts.map +1 -1
  332. package/es/components/PageHeader/next/PageHeaderHeroImage.js +22 -6
  333. package/es/components/PageHeader/next/PageHeaderScrollButton.js +1 -3
  334. package/es/components/PageHeader/next/PageHeaderTabBar.js +3 -5
  335. package/es/components/PageHeader/next/PageHeaderTagOverflow.js +1 -3
  336. package/es/components/PageHeader/next/PageHeaderTitleBreadcrumb.js +1 -3
  337. package/es/components/PageHeader/next/context.d.ts +2 -2
  338. package/es/components/PageHeader/next/context.d.ts.map +1 -1
  339. package/es/components/PageHeader/next/context.js +1 -3
  340. package/es/components/PageHeader/next/index.js +1 -3
  341. package/es/components/PageHeader/next/overflowHandler.js +1 -2
  342. package/es/components/PageHeader/next/utils.js +1 -2
  343. package/es/components/ProductiveCard/ProductiveCard.js +93 -3
  344. package/es/components/RemoveModal/RemoveModal.js +58 -3
  345. package/es/components/Saving/Saving.js +43 -3
  346. package/es/components/ScrollGradient/ScrollGradient.js +12 -3
  347. package/es/components/ScrollGradient/constants.js +1 -3
  348. package/es/components/SearchBar/SearchBar.js +31 -4
  349. package/es/components/SidePanel/SidePanel.js +116 -3
  350. package/es/components/SidePanel/constants.js +1 -2
  351. package/es/components/SimpleHeader/SimpleHeader.js +15 -3
  352. package/es/components/SingleAddSelect/SingleAddSelect.js +52 -3
  353. package/es/components/StatusIcon/StatusIcon.js +16 -3
  354. package/es/components/StatusIndicator/StatusIndicator.js +21 -3
  355. package/es/components/StatusIndicator/StatusIndicatorStep.js +13 -3
  356. package/es/components/StringFormatter/StringFormatter.js +9 -3
  357. package/es/components/StringFormatter/utils/enums.js +1 -2
  358. package/es/components/TagOverflow/TagOverflow.js +65 -3
  359. package/es/components/TagOverflow/TagOverflowModal.js +1 -3
  360. package/es/components/TagOverflow/TagOverflowPopover.js +31 -3
  361. package/es/components/TagOverflow/constants.js +1 -2
  362. package/es/components/TagSet/TagSet.js +66 -3
  363. package/es/components/TagSet/TagSetModal.js +1 -3
  364. package/es/components/TagSet/TagSetOverflow.js +38 -3
  365. package/es/components/Tearsheet/Tearsheet.js +103 -4
  366. package/es/components/Tearsheet/TearsheetNarrow.js +76 -4
  367. package/es/components/Tearsheet/TearsheetPresence.js +1 -3
  368. package/es/components/Tearsheet/TearsheetShell.js +119 -3
  369. package/es/components/Tearsheet/next/StackContext.js +1 -3
  370. package/es/components/Tearsheet/next/Tearsheet.js +1 -3
  371. package/es/components/Tearsheet/next/TearsheetBody.js +1 -3
  372. package/es/components/Tearsheet/next/TearsheetFooter.js +1 -3
  373. package/es/components/Tearsheet/next/TearsheetHeader.js +1 -3
  374. package/es/components/Tearsheet/next/TearsheetHeaderActions.js +1 -3
  375. package/es/components/Tearsheet/next/TearsheetHeaderContent.js +1 -3
  376. package/es/components/Tearsheet/next/context.js +1 -3
  377. package/es/components/Tearsheet/usePresence.js +7 -3
  378. package/es/components/Tearsheet/usePresenceContext.js +1 -3
  379. package/es/components/Toolbar/Toolbar.js +4 -3
  380. package/es/components/Toolbar/ToolbarButton.js +12 -4
  381. package/es/components/Toolbar/ToolbarGroup.js +3 -3
  382. package/es/components/TooltipTrigger/TooltipTrigger.js +7 -3
  383. package/es/components/TruncatedList/TruncatedList.js +32 -3
  384. package/es/components/TruncatedText/TruncatedText.d.ts.map +1 -1
  385. package/es/components/TruncatedText/TruncatedText.js +7 -6
  386. package/es/components/TruncatedText/useTruncatedText.js +1 -3
  387. package/es/components/UserAvatar/UserAvatar.js +32 -3
  388. package/es/components/UserProfileImage/UserProfileImage.js +37 -3
  389. package/es/components/WebTerminal/WebTerminal.js +27 -3
  390. package/es/components/WebTerminal/WebTerminalContentWrapper.js +6 -4
  391. package/es/components/WebTerminal/hooks/index.js +6 -4
  392. package/es/components/_Canary/Canary.js +3 -3
  393. package/es/global/js/hooks/useActiveElement.js +1 -3
  394. package/es/global/js/hooks/useClickOutside.js +1 -3
  395. package/es/global/js/hooks/useCollapsible.js +1 -3
  396. package/es/global/js/hooks/useControllableState.js +1 -3
  397. package/es/global/js/hooks/useCreateComponentFocus.js +1 -3
  398. package/es/global/js/hooks/useCreateComponentStepChange.js +1 -3
  399. package/es/global/js/hooks/useFocus.js +1 -3
  400. package/es/global/js/hooks/useIsomorphicEffect.js +1 -3
  401. package/es/global/js/hooks/useMatchMedia.js +1 -3
  402. package/es/global/js/hooks/useMergedRefs.js +1 -3
  403. package/es/global/js/hooks/useOverflowItems/useOverflowItems.js +1 -3
  404. package/es/global/js/hooks/useOverflowString.js +1 -3
  405. package/es/global/js/hooks/usePortalTarget.js +1 -3
  406. package/es/global/js/hooks/usePrefersReducedMotion.js +1 -3
  407. package/es/global/js/hooks/usePrefix.js +1 -3
  408. package/es/global/js/hooks/usePresence.js +1 -3
  409. package/es/global/js/hooks/usePreviousValue.js +1 -3
  410. package/es/global/js/hooks/useResetCreateComponent.js +1 -3
  411. package/es/global/js/hooks/useResizeObserver.js +1 -3
  412. package/es/global/js/hooks/useRetrieveFormTitles.js +1 -3
  413. package/es/global/js/hooks/useRetrieveStepData.js +1 -3
  414. package/es/global/js/hooks/useValidCreateStepCount.js +1 -3
  415. package/es/global/js/hooks/useWindowResize.js +1 -3
  416. package/es/global/js/hooks/useWindowScroll.js +1 -3
  417. package/es/global/js/package-settings.js +1 -2
  418. package/es/global/js/utils/Wrap.js +25 -3
  419. package/es/global/js/utils/checkForOverflow.js +1 -2
  420. package/es/global/js/utils/clamp.js +1 -2
  421. package/es/global/js/utils/debounce.js +1 -2
  422. package/es/global/js/utils/deepCloneObject.js +1 -2
  423. package/es/global/js/utils/deepCompareObject.js +1 -2
  424. package/es/global/js/utils/devtools.js +1 -3
  425. package/es/global/js/utils/getFocusableElements.js +1 -2
  426. package/es/global/js/utils/getNodeTextContent.js +1 -2
  427. package/es/global/js/utils/getNumberOfHiddenSteps.js +1 -2
  428. package/es/global/js/utils/getScrollbarWidth.js +1 -2
  429. package/es/global/js/utils/getSupportedLocale.js +1 -2
  430. package/es/global/js/utils/lastIndexInArray.js +1 -2
  431. package/es/global/js/utils/makeDraggable/makeDraggable.js +1 -2
  432. package/es/global/js/utils/pconsole.js +5 -11
  433. package/es/global/js/utils/props-helper.js +1 -3
  434. package/es/global/js/utils/rangeWithCallback.js +1 -2
  435. package/es/global/js/utils/scrollableAncestor.js +1 -2
  436. package/es/global/js/utils/throttle.js +1 -2
  437. package/es/global/js/utils/useId.js +1 -3
  438. package/es/global/js/utils/uuidv4.js +1 -2
  439. package/es/global/js/utils/wait.js +1 -2
  440. package/es/index.js +2 -5
  441. package/es/node_modules/@carbon/colors/es/index.js +1 -2
  442. package/es/node_modules/@carbon/icon-helpers/es/index.js +1 -2
  443. package/es/node_modules/@carbon/icons-react/es/Icon.js +1 -3
  444. package/es/node_modules/@carbon/icons-react/es/generated/bucket-11.js +351 -328
  445. package/es/node_modules/@carbon/icons-react/es/generated/bucket-3.js +185 -192
  446. package/es/node_modules/@carbon/icons-react/es/{iconPropTypes-B1cP964Y.js → iconPropTypes-BElKp6Sn.js} +2 -4
  447. package/es/node_modules/classnames/index.js +1 -4
  448. package/es/settings.js +1 -3
  449. package/lib/_virtual/_rolldown/runtime.js +13 -23
  450. package/lib/components/APIKeyModal/APIKeyDownloader.js +21 -5
  451. package/lib/components/APIKeyModal/APIKeyModal.js +170 -12
  452. package/lib/components/AboutModal/AboutModal.js +51 -10
  453. package/lib/components/ActionBar/ActionBar.js +49 -11
  454. package/lib/components/ActionBar/ActionBarItem.js +33 -6
  455. package/lib/components/ActionBar/ActionBarOverflowItems.js +24 -7
  456. package/lib/components/ActionSet/ActionSet.js +40 -8
  457. package/lib/components/AddSelect/AddSelect.js +10 -6
  458. package/lib/components/AddSelect/AddSelectBody.js +19 -19
  459. package/lib/components/AddSelect/AddSelectBreadcrumbs.js +4 -6
  460. package/lib/components/AddSelect/AddSelectColumn.js +9 -11
  461. package/lib/components/AddSelect/AddSelectFilter.js +4 -6
  462. package/lib/components/AddSelect/AddSelectFormControl.js +4 -6
  463. package/lib/components/AddSelect/AddSelectList.js +6 -8
  464. package/lib/components/AddSelect/AddSelectMetaPanel.js +3 -5
  465. package/lib/components/AddSelect/AddSelectRow.js +5 -7
  466. package/lib/components/AddSelect/AddSelectSidebar.js +5 -7
  467. package/lib/components/AddSelect/AddSelectSort.js +3 -5
  468. package/lib/components/AddSelect/add-select-utils.js +1 -3
  469. package/lib/components/AddSelect/hooks/useFocus.js +2 -4
  470. package/lib/components/AddSelect/hooks/useItemSort.js +2 -4
  471. package/lib/components/AddSelect/hooks/useParentSelect.js +2 -4
  472. package/lib/components/AddSelect/hooks/usePath.js +2 -4
  473. package/lib/components/BigNumber/BigNumber.js +59 -13
  474. package/lib/components/BigNumber/BigNumberSkeleton.js +16 -13
  475. package/lib/components/BigNumber/constants.js +1 -22
  476. package/lib/components/BreadcrumbWithOverflow/BreadcrumbWithOverflow.js +49 -15
  477. package/lib/components/ButtonSetWithOverflow/ButtonSetWithOverflow.js +33 -9
  478. package/lib/components/Card/Card.js +25 -8
  479. package/lib/components/Card/CardFooter.js +4 -6
  480. package/lib/components/Card/CardHeader.js +15 -6
  481. package/lib/components/Carousel/Carousel.js +39 -9
  482. package/lib/components/Carousel/CarouselItem.js +11 -7
  483. package/lib/components/Cascade/Cascade.js +16 -7
  484. package/lib/components/Checklist/Checklist.js +72 -18
  485. package/lib/components/Checklist/ChecklistChart.js +19 -13
  486. package/lib/components/Checklist/ChecklistIcon.js +21 -15
  487. package/lib/components/Coachmark/Coachmark.js +69 -15
  488. package/lib/components/Coachmark/CoachmarkDragbar.js +22 -8
  489. package/lib/components/Coachmark/CoachmarkHeader.js +18 -8
  490. package/lib/components/Coachmark/CoachmarkOverlay.js +35 -17
  491. package/lib/components/Coachmark/CoachmarkTagline.js +18 -8
  492. package/lib/components/Coachmark/next/Coachmark/Coachmark.d.ts +5 -1
  493. package/lib/components/Coachmark/next/Coachmark/Coachmark.d.ts.map +1 -1
  494. package/lib/components/Coachmark/next/Coachmark/Coachmark.js +64 -17
  495. package/lib/components/Coachmark/next/Coachmark/CoachmarkBeacon/CoachmarkBeacon.js +21 -7
  496. package/lib/components/Coachmark/next/Coachmark/CoachmarkContent.js +12 -7
  497. package/lib/components/Coachmark/next/Coachmark/CoachmarkTagline/CoachmarkTagline.js +22 -7
  498. package/lib/components/Coachmark/next/Coachmark/ContentBody.js +11 -6
  499. package/lib/components/Coachmark/next/Coachmark/ContentHeader.js +18 -8
  500. package/lib/components/Coachmark/next/Coachmark/context.js +4 -7
  501. package/lib/components/Coachmark/utils/constants.js +15 -23
  502. package/lib/components/Coachmark/utils/context.js +2 -4
  503. package/lib/components/Coachmark/utils/enums.js +1 -3
  504. package/lib/components/Coachmark/utils/hooks.js +5 -7
  505. package/lib/components/CoachmarkBeacon/CoachmarkBeacon.js +21 -7
  506. package/lib/components/CoachmarkButton/CoachmarkButton.js +12 -8
  507. package/lib/components/CoachmarkFixed/CoachmarkFixed.js +40 -14
  508. package/lib/components/CoachmarkOverlayElement/CoachmarkOverlayElement.js +18 -7
  509. package/lib/components/CoachmarkOverlayElements/CoachmarkOverlayElements.js +41 -11
  510. package/lib/components/CoachmarkStack/CoachmarkStack.js +52 -14
  511. package/lib/components/CoachmarkStack/CoachmarkStackHome.js +48 -10
  512. package/lib/components/ComboButton/ComboButton.js +9 -7
  513. package/lib/components/ComboButton/ComboButtonItem/index.js +6 -4
  514. package/lib/components/ConditionBuilder/ConditionBlock/ConditionBlock.js +64 -21
  515. package/lib/components/ConditionBuilder/ConditionBuilder.d.ts.map +1 -1
  516. package/lib/components/ConditionBuilder/ConditionBuilder.js +72 -11
  517. package/lib/components/ConditionBuilder/ConditionBuilder.types.d.ts +13 -0
  518. package/lib/components/ConditionBuilder/ConditionBuilder.types.d.ts.map +1 -1
  519. package/lib/components/ConditionBuilder/ConditionBuilderActions/ConditionBuilderActions.d.ts.map +1 -1
  520. package/lib/components/ConditionBuilder/ConditionBuilderActions/ConditionBuilderActions.js +25 -15
  521. package/lib/components/ConditionBuilder/ConditionBuilderAdd/ConditionBuilderAdd.js +35 -9
  522. package/lib/components/ConditionBuilder/ConditionBuilderButton/ConditionBuilderButton.js +43 -7
  523. package/lib/components/ConditionBuilder/ConditionBuilderConnector/ConditionConnector.js +19 -12
  524. package/lib/components/ConditionBuilder/ConditionBuilderConnector/GroupConnector.js +8 -10
  525. package/lib/components/ConditionBuilder/ConditionBuilderContent/ConditionBuilderContent.d.ts.map +1 -1
  526. package/lib/components/ConditionBuilder/ConditionBuilderContent/ConditionBuilderContent.js +46 -24
  527. package/lib/components/ConditionBuilder/ConditionBuilderContext/ConditionBuilderProvider.d.ts.map +1 -1
  528. package/lib/components/ConditionBuilder/ConditionBuilderContext/ConditionBuilderProvider.js +37 -5
  529. package/lib/components/ConditionBuilder/ConditionBuilderContext/translationObject.js +1 -3
  530. package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItem.js +45 -11
  531. package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemDate/ConditionBuilderItemDate.js +14 -7
  532. package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemNumber/ConditionBuilderItemNumber.js +13 -6
  533. package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemOption/ItemOption.js +14 -7
  534. package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemOption/ItemOptionForValueField.js +14 -7
  535. package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemText/ConditionBuilderItemText.js +15 -5
  536. package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemTime/ConditionBuilderItemTime.js +12 -5
  537. package/lib/components/ConditionBuilder/ConditionGroupBuilder/ConditionGroupBuilder.d.ts.map +1 -1
  538. package/lib/components/ConditionBuilder/ConditionGroupBuilder/ConditionGroupBuilder.js +40 -18
  539. package/lib/components/ConditionBuilder/ConditionPreview/ConditionPreview.js +16 -9
  540. package/lib/components/ConditionBuilder/utils/handleKeyboardEvents.js +6 -8
  541. package/lib/components/ConditionBuilder/utils/useDataConfigs.js +4 -6
  542. package/lib/components/ConditionBuilder/utils/useEvent.js +2 -4
  543. package/lib/components/ConditionBuilder/utils/useTranslations.js +4 -6
  544. package/lib/components/ConditionBuilder/utils/util.js +2 -5
  545. package/lib/components/CreateFullPage/CreateFullPage.js +92 -16
  546. package/lib/components/CreateFullPage/CreateFullPageStep.js +58 -10
  547. package/lib/components/CreateInfluencer/CreateInfluencer.js +20 -7
  548. package/lib/components/CreateModal/CreateModal.js +48 -8
  549. package/lib/components/CreateSidePanel/CreateSidePanel.js +65 -9
  550. package/lib/components/CreateTearsheet/CreateTearsheet.js +96 -18
  551. package/lib/components/CreateTearsheet/CreateTearsheetDivider.js +9 -7
  552. package/lib/components/CreateTearsheet/CreateTearsheetStep.js +79 -10
  553. package/lib/components/CreateTearsheetNarrow/CreateTearsheetNarrow.js +62 -9
  554. package/lib/components/DataSpreadsheet/DataSpreadsheet.js +85 -27
  555. package/lib/components/DataSpreadsheet/DataSpreadsheetBody.js +128 -16
  556. package/lib/components/DataSpreadsheet/DataSpreadsheetHeader.js +88 -15
  557. package/lib/components/DataSpreadsheet/hooks/useMoveActiveCell.js +2 -4
  558. package/lib/components/DataSpreadsheet/hooks/useMultipleKeyTracking.js +4 -6
  559. package/lib/components/DataSpreadsheet/hooks/useResetSpreadsheetFocus.js +3 -5
  560. package/lib/components/DataSpreadsheet/hooks/useSpreadsheetEdit.js +4 -6
  561. package/lib/components/DataSpreadsheet/hooks/useSpreadsheetMouseMove.js +4 -6
  562. package/lib/components/DataSpreadsheet/hooks/useSpreadsheetMouseUp.js +4 -6
  563. package/lib/components/DataSpreadsheet/hooks/useSpreadsheetOutsideClick.js +4 -6
  564. package/lib/components/DataSpreadsheet/utils/checkActiveHeaderCell.js +2 -4
  565. package/lib/components/DataSpreadsheet/utils/checkForHoldingKey.js +1 -3
  566. package/lib/components/DataSpreadsheet/utils/checkSelectedHeaderCell.js +2 -4
  567. package/lib/components/DataSpreadsheet/utils/commonEventHandlers.js +11 -13
  568. package/lib/components/DataSpreadsheet/utils/createActiveCellFn.js +3 -5
  569. package/lib/components/DataSpreadsheet/utils/createCellSelectionArea.js +4 -6
  570. package/lib/components/DataSpreadsheet/utils/getCellSize.js +2 -4
  571. package/lib/components/DataSpreadsheet/utils/getSelectionAreaPoints.js +1 -3
  572. package/lib/components/DataSpreadsheet/utils/getSpreadsheetWidth.js +2 -4
  573. package/lib/components/DataSpreadsheet/utils/handleActiveCellInSelectionEnter.js +2 -4
  574. package/lib/components/DataSpreadsheet/utils/handleActiveCellInSelectionTab.js +2 -4
  575. package/lib/components/DataSpreadsheet/utils/handleCellDeletion.js +3 -5
  576. package/lib/components/DataSpreadsheet/utils/handleEditSubmit.js +3 -5
  577. package/lib/components/DataSpreadsheet/utils/handleHeaderCellSelection.js +5 -7
  578. package/lib/components/DataSpreadsheet/utils/handleMultipleKeys.js +4 -6
  579. package/lib/components/DataSpreadsheet/utils/moveColumnIndicatorLine.js +3 -5
  580. package/lib/components/DataSpreadsheet/utils/removeCellSelections.js +2 -4
  581. package/lib/components/DataSpreadsheet/utils/selectAllCells.js +3 -5
  582. package/lib/components/Datagrid/Datagrid/Datagrid.js +17 -11
  583. package/lib/components/Datagrid/Datagrid/DatagridBody.js +6 -8
  584. package/lib/components/Datagrid/Datagrid/DatagridContent.js +19 -21
  585. package/lib/components/Datagrid/Datagrid/DatagridEmptyBody.js +7 -9
  586. package/lib/components/Datagrid/Datagrid/DatagridExpandedRow.js +4 -6
  587. package/lib/components/Datagrid/Datagrid/DatagridHead.js +2 -4
  588. package/lib/components/Datagrid/Datagrid/DatagridHeaderRow.js +10 -12
  589. package/lib/components/Datagrid/Datagrid/DatagridRefBody.js +4 -6
  590. package/lib/components/Datagrid/Datagrid/DatagridRow.js +7 -9
  591. package/lib/components/Datagrid/Datagrid/DatagridSelectAll.js +6 -8
  592. package/lib/components/Datagrid/Datagrid/DatagridSelectAllWithToggle.js +5 -7
  593. package/lib/components/Datagrid/Datagrid/DatagridSimpleBody.js +4 -6
  594. package/lib/components/Datagrid/Datagrid/DatagridToolbar.js +6 -8
  595. package/lib/components/Datagrid/Datagrid/DatagridVirtualBody.js +6 -8
  596. package/lib/components/Datagrid/Datagrid/DraggableElement.js +4 -6
  597. package/lib/components/Datagrid/Datagrid/addons/AiLabel/DatagridAiLabel.js +7 -5
  598. package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/Actions.js +3 -5
  599. package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/ButtonWrapper.js +3 -5
  600. package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/Columns.js +6 -8
  601. package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/CustomizeColumnsTearsheet.js +6 -8
  602. package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/DraggableItemsList.js +7 -9
  603. package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/TearsheetWrapper.js +4 -6
  604. package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/common.js +1 -3
  605. package/lib/components/Datagrid/Datagrid/addons/Filtering/FilterFlyout.js +54 -14
  606. package/lib/components/Datagrid/Datagrid/addons/Filtering/FilterPanel.js +31 -26
  607. package/lib/components/Datagrid/Datagrid/addons/Filtering/FilterProvider.js +9 -11
  608. package/lib/components/Datagrid/Datagrid/addons/Filtering/OverflowCheckboxes.js +4 -6
  609. package/lib/components/Datagrid/Datagrid/addons/Filtering/constants.js +1 -3
  610. package/lib/components/Datagrid/Datagrid/addons/Filtering/handleCheckboxChange.js +1 -3
  611. package/lib/components/Datagrid/Datagrid/addons/Filtering/hooks/useFilterContext.js +3 -5
  612. package/lib/components/Datagrid/Datagrid/addons/Filtering/hooks/useFilters.js +16 -18
  613. package/lib/components/Datagrid/Datagrid/addons/Filtering/hooks/useShouldDisableButtons.js +3 -5
  614. package/lib/components/Datagrid/Datagrid/addons/Filtering/hooks/useSubscribeToEventEmitter.js +3 -5
  615. package/lib/components/Datagrid/Datagrid/addons/Filtering/utils.js +10 -12
  616. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditButton/InlineEditButton.js +4 -6
  617. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditCell/InlineEditCell.js +9 -11
  618. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditContext/InlineEditContext.js +4 -6
  619. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditContext/getCellIdAsObject.js +1 -3
  620. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditContext/returnUpdatedActiveCell.js +2 -5
  621. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/handleGridFocus.js +1 -3
  622. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/handleGridKeyPress.js +4 -6
  623. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/handleMultipleKeys.js +4 -6
  624. package/lib/components/Datagrid/Datagrid/addons/RowSize/RowSizeDropdown.js +5 -7
  625. package/lib/components/Datagrid/Datagrid/addons/RowSize/RowSizeRadioGroup.js +3 -5
  626. package/lib/components/Datagrid/Datagrid/addons/stateReducer.js +2 -4
  627. package/lib/components/Datagrid/common-column-ids.js +1 -3
  628. package/lib/components/Datagrid/useActionsColumn.js +5 -7
  629. package/lib/components/Datagrid/useColumnCenterAlign.js +4 -6
  630. package/lib/components/Datagrid/useColumnOrder.js +3 -6
  631. package/lib/components/Datagrid/useColumnRightAlign.js +4 -6
  632. package/lib/components/Datagrid/useCustomizeColumns.js +4 -6
  633. package/lib/components/Datagrid/useDatagrid.js +11 -13
  634. package/lib/components/Datagrid/useDefaultStringRenderer.js +4 -6
  635. package/lib/components/Datagrid/useDisableSelectRows.js +1 -3
  636. package/lib/components/Datagrid/useEditableCell.js +2 -4
  637. package/lib/components/Datagrid/useExpandedRow.js +4 -6
  638. package/lib/components/Datagrid/useFiltering.js +4 -6
  639. package/lib/components/Datagrid/useFlexResize.js +2 -4
  640. package/lib/components/Datagrid/useFloatingScroll.js +4 -6
  641. package/lib/components/Datagrid/useFocusRowExpander.js +2 -4
  642. package/lib/components/Datagrid/useInfiniteScroll.js +5 -7
  643. package/lib/components/Datagrid/useInitialColumnSort.js +3 -5
  644. package/lib/components/Datagrid/useInlineEdit.js +5 -7
  645. package/lib/components/Datagrid/useNestedRowExpander.js +6 -8
  646. package/lib/components/Datagrid/useNestedRows.js +5 -7
  647. package/lib/components/Datagrid/useOnRowClick.js +3 -5
  648. package/lib/components/Datagrid/useParentDimensions.js +2 -4
  649. package/lib/components/Datagrid/useResizeTable.js +2 -4
  650. package/lib/components/Datagrid/useRowExpander.js +5 -7
  651. package/lib/components/Datagrid/useRowIsMouseOver.js +3 -5
  652. package/lib/components/Datagrid/useRowRenderer.js +2 -4
  653. package/lib/components/Datagrid/useRowSize.js +3 -5
  654. package/lib/components/Datagrid/useSelectAllToggle.js +9 -11
  655. package/lib/components/Datagrid/useSelectRows.js +8 -10
  656. package/lib/components/Datagrid/useSkeletonRows.js +1 -3
  657. package/lib/components/Datagrid/useSortableColumns.js +6 -8
  658. package/lib/components/Datagrid/useStickyColumn.js +6 -8
  659. package/lib/components/Datagrid/utils/getAutoSizedColumnWidth.js +1 -3
  660. package/lib/components/Decorator/Decorator.js +65 -13
  661. package/lib/components/DecoratorBase/DecoratorBase.js +9 -8
  662. package/lib/components/DecoratorBase/DecoratorIcon.js +19 -12
  663. package/lib/components/DecoratorBase/utils.js +1 -3
  664. package/lib/components/DecoratorDualButton/DecoratorDualButton.js +84 -13
  665. package/lib/components/DecoratorLink/DecoratorLink.js +76 -13
  666. package/lib/components/DecoratorSingleButton/DecoratorSingleButton.js +76 -13
  667. package/lib/components/DelimitedList/DelimitedList.js +17 -7
  668. package/lib/components/DescriptionList/DescriptionList.js +15 -13
  669. package/lib/components/DescriptionList/DescriptionListBody.js +12 -12
  670. package/lib/components/DescriptionList/DescriptionListCell.js +12 -12
  671. package/lib/components/DescriptionList/DescriptionListRow.js +12 -12
  672. package/lib/components/DescriptionList/constants.js +1 -3
  673. package/lib/components/EditFullPage/EditFullPage.js +11 -7
  674. package/lib/components/EditInPlace/EditInPlace.d.ts.map +1 -1
  675. package/lib/components/EditInPlace/EditInPlace.js +139 -31
  676. package/lib/components/EditSidePanel/EditSidePanel.js +73 -10
  677. package/lib/components/EditTearsheet/EditTearsheet.js +59 -9
  678. package/lib/components/EditTearsheet/EditTearsheetForm.js +39 -9
  679. package/lib/components/EditTearsheetNarrow/EditTearsheetNarrow.js +11 -7
  680. package/lib/components/EditUpdateCards/EditUpdateCards.js +75 -8
  681. package/lib/components/EmptyStates/EmptyState.js +48 -16
  682. package/lib/components/EmptyStates/EmptyStateContent.js +24 -6
  683. package/lib/components/EmptyStates/EmptyStateIllustration.deprecated.js +2 -4
  684. package/lib/components/EmptyStates/EmptyStateV2.deprecated.js +45 -9
  685. package/lib/components/EmptyStates/ErrorEmptyState/ErrorEmptyState.js +44 -10
  686. package/lib/components/EmptyStates/NoDataEmptyState/NoDataEmptyState.js +44 -10
  687. package/lib/components/EmptyStates/NoTagsEmptyState/NoTagsEmptyState.js +44 -10
  688. package/lib/components/EmptyStates/NotFoundEmptyState/NotFoundEmptyState.js +44 -10
  689. package/lib/components/EmptyStates/NotificationsEmptyState/NotificationsEmptyState.js +44 -10
  690. package/lib/components/EmptyStates/UnauthorizedEmptyState/UnauthorizedEmptyState.js +44 -10
  691. package/lib/components/EmptyStates/assets/ErrorIllustration.js +5 -7
  692. package/lib/components/EmptyStates/assets/NoDataIllustration.js +5 -7
  693. package/lib/components/EmptyStates/assets/NoTagsIllustration.js +5 -7
  694. package/lib/components/EmptyStates/assets/NotFoundIllustration.js +5 -7
  695. package/lib/components/EmptyStates/assets/NotificationsIllustration.js +5 -7
  696. package/lib/components/EmptyStates/assets/UnauthorizedIllustration.js +5 -7
  697. package/lib/components/ExportModal/ExportModal.js +86 -9
  698. package/lib/components/ExpressiveCard/ExpressiveCard.js +80 -7
  699. package/lib/components/FeatureFlags/index.js +6 -5
  700. package/lib/components/FilterPanel/FilterPanel.js +19 -12
  701. package/lib/components/FilterPanel/FilterPanelAccordion/FilterPanelAccordion.js +29 -13
  702. package/lib/components/FilterPanel/FilterPanelAccordionItem/FilterPanelAccordionItem.js +33 -14
  703. package/lib/components/FilterPanel/FilterPanelCheckbox/FilterPanelCheckbox.js +26 -13
  704. package/lib/components/FilterPanel/FilterPanelCheckboxWithOverflow/FilterPanelCheckboxWithOverflow.js +44 -13
  705. package/lib/components/FilterPanel/FilterPanelGroup/FilterPanelGroup.js +26 -13
  706. package/lib/components/FilterPanel/FilterPanelLabel/FilterPanelLabel.js +22 -12
  707. package/lib/components/FilterPanel/FilterPanelSearch/FilterPanelSearch.js +22 -13
  708. package/lib/components/FilterSummary/FilterSummary.js +12 -13
  709. package/lib/components/FullPageError/FullPageError.js +27 -10
  710. package/lib/components/FullPageError/assets/Error403SVG.js +2 -4
  711. package/lib/components/FullPageError/assets/Error404SVG.js +2 -4
  712. package/lib/components/FullPageError/assets/ErrorGenericSVG.js +2 -4
  713. package/lib/components/GetStartedCard/GetStartedCard.js +40 -6
  714. package/lib/components/Guidebanner/Guidebanner.js +57 -13
  715. package/lib/components/Guidebanner/GuidebannerElement.js +18 -7
  716. package/lib/components/Guidebanner/GuidebannerElementButton.js +15 -7
  717. package/lib/components/Guidebanner/GuidebannerElementLink.js +11 -7
  718. package/lib/components/HTTPErrors/HTTPError403/HTTPError403.js +29 -9
  719. package/lib/components/HTTPErrors/HTTPError404/HTTPError404.js +29 -9
  720. package/lib/components/HTTPErrors/HTTPErrorContent.js +21 -5
  721. package/lib/components/HTTPErrors/HTTPErrorOther/HTTPErrorOther.js +29 -9
  722. package/lib/components/HTTPErrors/assets/HTTPErrorSvg403.js +3 -5
  723. package/lib/components/HTTPErrors/assets/HTTPErrorSvg404.js +3 -5
  724. package/lib/components/HTTPErrors/assets/HTTPErrorSvgOther.js +3 -5
  725. package/lib/components/ImportModal/ImportModal.js +94 -9
  726. package/lib/components/InlineTip/InlineTip.js +62 -9
  727. package/lib/components/InlineTip/InlineTipButton.js +11 -7
  728. package/lib/components/InlineTip/InlineTipLink.js +11 -7
  729. package/lib/components/InlineTip/utils.js +1 -3
  730. package/lib/components/InterstitialScreen/InterstitialScreen.js +30 -10
  731. package/lib/components/InterstitialScreen/InterstitialScreenBody.js +17 -7
  732. package/lib/components/InterstitialScreen/InterstitialScreenFooter.js +28 -7
  733. package/lib/components/InterstitialScreen/InterstitialScreenHeader.js +24 -7
  734. package/lib/components/InterstitialScreen/InterstitialScreenView.js +15 -5
  735. package/lib/components/InterstitialScreen/context.js +3 -5
  736. package/lib/components/MultiAddSelect/MultiAddSelect.js +84 -6
  737. package/lib/components/Nav/Nav.js +27 -14
  738. package/lib/components/Nav/NavItem.js +48 -14
  739. package/lib/components/Nav/NavItemLink.js +5 -5
  740. package/lib/components/Nav/NavList.js +22 -13
  741. package/lib/components/NonLinearReading/NonLinearReading.js +18 -8
  742. package/lib/components/NotificationsPanel/NotificationsPanel.js +130 -15
  743. package/lib/components/NotificationsPanel/utils.js +1 -3
  744. package/lib/components/OptionsTile/OptionsTile.js +59 -10
  745. package/lib/components/PageHeader/PageHeader.js +234 -18
  746. package/lib/components/PageHeader/PageHeaderTitle.js +28 -7
  747. package/lib/components/PageHeader/PageHeaderUtils.js +5 -7
  748. package/lib/components/PageHeader/next/PageHeader.d.ts +2 -1
  749. package/lib/components/PageHeader/next/PageHeader.d.ts.map +1 -1
  750. package/lib/components/PageHeader/next/PageHeader.js +19 -21
  751. package/lib/components/PageHeader/next/PageHeaderBreadcrumbBar.d.ts.map +1 -1
  752. package/lib/components/PageHeader/next/PageHeaderBreadcrumbBar.js +6 -10
  753. package/lib/components/PageHeader/next/PageHeaderBreadcrumbOverflow.js +6 -8
  754. package/lib/components/PageHeader/next/PageHeaderBreadcrumbPageActions.js +19 -6
  755. package/lib/components/PageHeader/next/PageHeaderContent.d.ts.map +1 -1
  756. package/lib/components/PageHeader/next/PageHeaderContent.js +36 -13
  757. package/lib/components/PageHeader/next/PageHeaderContentPageActions.d.ts.map +1 -1
  758. package/lib/components/PageHeader/next/PageHeaderContentPageActions.js +26 -12
  759. package/lib/components/PageHeader/next/PageHeaderContentText.js +13 -6
  760. package/lib/components/PageHeader/next/PageHeaderHeroImage.d.ts +13 -1
  761. package/lib/components/PageHeader/next/PageHeaderHeroImage.d.ts.map +1 -1
  762. package/lib/components/PageHeader/next/PageHeaderHeroImage.js +25 -9
  763. package/lib/components/PageHeader/next/PageHeaderScrollButton.js +6 -8
  764. package/lib/components/PageHeader/next/PageHeaderTabBar.js +7 -9
  765. package/lib/components/PageHeader/next/PageHeaderTagOverflow.js +6 -8
  766. package/lib/components/PageHeader/next/PageHeaderTitleBreadcrumb.js +5 -7
  767. package/lib/components/PageHeader/next/context.d.ts +2 -2
  768. package/lib/components/PageHeader/next/context.d.ts.map +1 -1
  769. package/lib/components/PageHeader/next/context.js +2 -4
  770. package/lib/components/PageHeader/next/index.js +19 -21
  771. package/lib/components/PageHeader/next/overflowHandler.js +1 -3
  772. package/lib/components/PageHeader/next/utils.js +1 -3
  773. package/lib/components/ProductiveCard/ProductiveCard.js +97 -7
  774. package/lib/components/RemoveModal/RemoveModal.js +65 -10
  775. package/lib/components/Saving/Saving.js +47 -7
  776. package/lib/components/ScrollGradient/ScrollGradient.js +23 -14
  777. package/lib/components/ScrollGradient/constants.js +3 -5
  778. package/lib/components/SearchBar/SearchBar.js +35 -8
  779. package/lib/components/SidePanel/SidePanel.js +129 -16
  780. package/lib/components/SidePanel/constants.js +1 -3
  781. package/lib/components/SimpleHeader/SimpleHeader.js +20 -8
  782. package/lib/components/SingleAddSelect/SingleAddSelect.js +56 -7
  783. package/lib/components/StatusIcon/StatusIcon.js +20 -7
  784. package/lib/components/StatusIndicator/StatusIndicator.js +30 -12
  785. package/lib/components/StatusIndicator/StatusIndicatorStep.js +22 -12
  786. package/lib/components/StringFormatter/StringFormatter.js +21 -15
  787. package/lib/components/StringFormatter/utils/enums.js +1 -3
  788. package/lib/components/TagOverflow/TagOverflow.js +73 -11
  789. package/lib/components/TagOverflow/TagOverflowModal.js +6 -8
  790. package/lib/components/TagOverflow/TagOverflowPopover.js +35 -7
  791. package/lib/components/TagOverflow/constants.js +1 -3
  792. package/lib/components/TagSet/TagSet.js +73 -10
  793. package/lib/components/TagSet/TagSetModal.js +6 -8
  794. package/lib/components/TagSet/TagSetOverflow.js +42 -7
  795. package/lib/components/Tearsheet/Tearsheet.js +107 -8
  796. package/lib/components/Tearsheet/TearsheetNarrow.js +80 -8
  797. package/lib/components/Tearsheet/TearsheetPresence.js +3 -5
  798. package/lib/components/Tearsheet/TearsheetShell.js +135 -19
  799. package/lib/components/Tearsheet/next/StackContext.js +3 -5
  800. package/lib/components/Tearsheet/next/Tearsheet.js +15 -17
  801. package/lib/components/Tearsheet/next/TearsheetBody.js +6 -8
  802. package/lib/components/Tearsheet/next/TearsheetFooter.js +5 -7
  803. package/lib/components/Tearsheet/next/TearsheetHeader.js +4 -6
  804. package/lib/components/Tearsheet/next/TearsheetHeaderActions.js +5 -7
  805. package/lib/components/Tearsheet/next/TearsheetHeaderContent.js +5 -7
  806. package/lib/components/Tearsheet/next/context.js +4 -7
  807. package/lib/components/Tearsheet/usePresence.js +9 -5
  808. package/lib/components/Tearsheet/usePresenceContext.js +3 -5
  809. package/lib/components/Toolbar/Toolbar.js +9 -8
  810. package/lib/components/Toolbar/ToolbarButton.js +15 -7
  811. package/lib/components/Toolbar/ToolbarGroup.js +6 -6
  812. package/lib/components/TooltipTrigger/TooltipTrigger.js +10 -6
  813. package/lib/components/TruncatedList/TruncatedList.js +37 -8
  814. package/lib/components/TruncatedText/TruncatedText.d.ts.map +1 -1
  815. package/lib/components/TruncatedText/TruncatedText.js +12 -11
  816. package/lib/components/TruncatedText/useTruncatedText.js +3 -5
  817. package/lib/components/UserAvatar/UserAvatar.js +38 -9
  818. package/lib/components/UserProfileImage/UserProfileImage.js +43 -9
  819. package/lib/components/WebTerminal/WebTerminal.js +33 -9
  820. package/lib/components/WebTerminal/WebTerminalContentWrapper.js +10 -8
  821. package/lib/components/WebTerminal/hooks/index.js +7 -5
  822. package/lib/components/_Canary/Canary.js +6 -6
  823. package/lib/global/js/hooks/useActiveElement.js +2 -4
  824. package/lib/global/js/hooks/useClickOutside.js +2 -4
  825. package/lib/global/js/hooks/useCollapsible.js +2 -4
  826. package/lib/global/js/hooks/useControllableState.js +2 -4
  827. package/lib/global/js/hooks/useCreateComponentFocus.js +3 -5
  828. package/lib/global/js/hooks/useCreateComponentStepChange.js +2 -4
  829. package/lib/global/js/hooks/useFocus.js +3 -5
  830. package/lib/global/js/hooks/useIsomorphicEffect.js +2 -4
  831. package/lib/global/js/hooks/useMatchMedia.js +2 -4
  832. package/lib/global/js/hooks/useMergedRefs.js +2 -4
  833. package/lib/global/js/hooks/useOverflowItems/useOverflowItems.js +3 -5
  834. package/lib/global/js/hooks/useOverflowString.js +2 -4
  835. package/lib/global/js/hooks/usePortalTarget.js +4 -6
  836. package/lib/global/js/hooks/usePrefersReducedMotion.js +3 -5
  837. package/lib/global/js/hooks/usePrefix.js +2 -4
  838. package/lib/global/js/hooks/usePresence.js +2 -4
  839. package/lib/global/js/hooks/usePreviousValue.js +2 -4
  840. package/lib/global/js/hooks/useResetCreateComponent.js +3 -5
  841. package/lib/global/js/hooks/useResizeObserver.js +3 -5
  842. package/lib/global/js/hooks/useRetrieveFormTitles.js +2 -4
  843. package/lib/global/js/hooks/useRetrieveStepData.js +2 -4
  844. package/lib/global/js/hooks/useValidCreateStepCount.js +2 -4
  845. package/lib/global/js/hooks/useWindowResize.js +3 -5
  846. package/lib/global/js/hooks/useWindowScroll.js +4 -6
  847. package/lib/global/js/package-settings.js +1 -3
  848. package/lib/global/js/utils/Wrap.js +26 -4
  849. package/lib/global/js/utils/checkForOverflow.js +1 -3
  850. package/lib/global/js/utils/clamp.js +1 -3
  851. package/lib/global/js/utils/debounce.js +1 -3
  852. package/lib/global/js/utils/deepCloneObject.js +1 -3
  853. package/lib/global/js/utils/deepCompareObject.js +1 -3
  854. package/lib/global/js/utils/devtools.js +2 -4
  855. package/lib/global/js/utils/getFocusableElements.js +1 -3
  856. package/lib/global/js/utils/getNodeTextContent.js +1 -3
  857. package/lib/global/js/utils/getNumberOfHiddenSteps.js +1 -3
  858. package/lib/global/js/utils/getScrollbarWidth.js +1 -3
  859. package/lib/global/js/utils/getSupportedLocale.js +1 -3
  860. package/lib/global/js/utils/lastIndexInArray.js +1 -3
  861. package/lib/global/js/utils/makeDraggable/makeDraggable.js +1 -3
  862. package/lib/global/js/utils/pconsole.js +4 -9
  863. package/lib/global/js/utils/props-helper.js +2 -4
  864. package/lib/global/js/utils/rangeWithCallback.js +1 -3
  865. package/lib/global/js/utils/scrollableAncestor.js +1 -3
  866. package/lib/global/js/utils/throttle.js +1 -3
  867. package/lib/global/js/utils/useId.js +3 -5
  868. package/lib/global/js/utils/uuidv4.js +1 -3
  869. package/lib/global/js/utils/wait.js +1 -3
  870. package/lib/index.js +264 -267
  871. package/lib/node_modules/@carbon/colors/lib/index.js +15 -21
  872. package/lib/node_modules/@carbon/icon-helpers/lib/index.js +7 -10
  873. package/lib/node_modules/@carbon/icons-react/lib/{Icon.js → Icon-2zUDcllO.js} +44 -17
  874. package/lib/node_modules/@carbon/icons-react/lib/generated/bucket-0.js +274 -278
  875. package/lib/node_modules/@carbon/icons-react/lib/generated/bucket-1.js +303 -316
  876. package/lib/node_modules/@carbon/icons-react/lib/generated/bucket-10.js +478 -472
  877. package/lib/node_modules/@carbon/icons-react/lib/generated/bucket-11.js +491 -468
  878. package/lib/node_modules/@carbon/icons-react/lib/generated/bucket-12.js +482 -474
  879. package/lib/node_modules/@carbon/icons-react/lib/generated/bucket-13.js +509 -547
  880. package/lib/node_modules/@carbon/icons-react/lib/generated/bucket-14.js +546 -596
  881. package/lib/node_modules/@carbon/icons-react/lib/generated/bucket-15.js +596 -538
  882. package/lib/node_modules/@carbon/icons-react/lib/generated/bucket-16.js +571 -616
  883. package/lib/node_modules/@carbon/icons-react/lib/generated/bucket-17.js +669 -654
  884. package/lib/node_modules/@carbon/icons-react/lib/generated/bucket-18.js +683 -661
  885. package/lib/node_modules/@carbon/icons-react/lib/generated/bucket-19.js +701 -718
  886. package/lib/node_modules/@carbon/icons-react/lib/generated/bucket-2.js +332 -330
  887. package/lib/node_modules/@carbon/icons-react/lib/generated/bucket-20.js +743 -783
  888. package/lib/node_modules/@carbon/icons-react/lib/generated/bucket-21.js +548 -40
  889. package/lib/node_modules/@carbon/icons-react/lib/generated/bucket-3.js +340 -349
  890. package/lib/node_modules/@carbon/icons-react/lib/generated/bucket-4.js +360 -380
  891. package/lib/node_modules/@carbon/icons-react/lib/generated/bucket-5.js +397 -405
  892. package/lib/node_modules/@carbon/icons-react/lib/generated/bucket-6.js +405 -392
  893. package/lib/node_modules/@carbon/icons-react/lib/generated/bucket-7.js +418 -437
  894. package/lib/node_modules/@carbon/icons-react/lib/generated/bucket-8.js +456 -496
  895. package/lib/node_modules/@carbon/icons-react/lib/generated/bucket-9.js +489 -480
  896. package/lib/node_modules/@carbon/icons-react/lib/{iconPropTypes-U9gLABJo.js → iconPropTypes-DaTOKOBs.js} +12 -14
  897. package/lib/node_modules/@carbon/icons-react/lib/index.js +425 -395
  898. package/lib/node_modules/classnames/index.js +7 -10
  899. package/lib/settings.js +5 -7
  900. package/package.json +17 -17
  901. package/scss/components/EditInPlace/_edit-in-place.scss +30 -6
  902. package/scss/components/PageHeader/_page-header.scss +66 -6
  903. package/scss/components/TruncatedText/_truncated-text.scss +21 -0
  904. package/telemetry.yml +12 -3
  905. package/es/components/Checklist/Checklist.types.js +0 -30
  906. package/es/components/Coachmark/next/Coachmark/CoachmarkBubble/CoachmarkBubble.d.ts +0 -39
  907. package/es/components/Coachmark/next/Coachmark/CoachmarkBubble/CoachmarkBubble.d.ts.map +0 -1
  908. package/es/components/Coachmark/next/Coachmark/CoachmarkBubble/CoachmarkBubbleHeader.d.ts +0 -25
  909. package/es/components/Coachmark/next/Coachmark/CoachmarkBubble/CoachmarkBubbleHeader.d.ts.map +0 -1
  910. package/es/components/Coachmark/next/Coachmark/CoachmarkBubble/index.d.ts +0 -11
  911. package/es/components/Coachmark/next/Coachmark/CoachmarkBubble/index.d.ts.map +0 -1
  912. package/lib/components/Checklist/Checklist.types.js +0 -32
  913. package/lib/components/Coachmark/next/Coachmark/CoachmarkBubble/CoachmarkBubble.d.ts +0 -39
  914. package/lib/components/Coachmark/next/Coachmark/CoachmarkBubble/CoachmarkBubble.d.ts.map +0 -1
  915. package/lib/components/Coachmark/next/Coachmark/CoachmarkBubble/CoachmarkBubbleHeader.d.ts +0 -25
  916. package/lib/components/Coachmark/next/Coachmark/CoachmarkBubble/CoachmarkBubbleHeader.d.ts.map +0 -1
  917. package/lib/components/Coachmark/next/Coachmark/CoachmarkBubble/index.d.ts +0 -11
  918. package/lib/components/Coachmark/next/Coachmark/CoachmarkBubble/index.d.ts.map +0 -1
  919. package/lib/node_modules/@carbon/icons-react/lib/chunk-CsKB0u1v.js +0 -54
@@ -293,6 +293,14 @@ p.c4p--about-modal__copyright-text:first-child {
293
293
  --cds-grid-column-hang: 0.96875rem;
294
294
  }
295
295
 
296
+ .cds--css-grid--with-row-gap {
297
+ row-gap: var(--cds-grid-gutter);
298
+ }
299
+
300
+ .cds--css-grid--narrow.cds--css-grid--with-row-gap {
301
+ row-gap: calc(var(--cds-grid-gutter) / 2);
302
+ }
303
+
296
304
  .cds--css-grid--start {
297
305
  margin-inline-start: 0;
298
306
  }
@@ -323,11 +331,24 @@ p.c4p--about-modal__copyright-text:first-child {
323
331
  }
324
332
 
325
333
  .cds--subgrid--condensed {
334
+ --cds-grid-gutter: 0.0625rem;
326
335
  --cds-grid-gutter-start: 0.03125rem;
327
336
  --cds-grid-gutter-end: 0.03125rem;
328
337
  --cds-grid-column-hang: 0.96875rem;
329
338
  }
330
339
 
340
+ .cds--subgrid--with-row-gap {
341
+ row-gap: 2rem;
342
+ }
343
+
344
+ .cds--subgrid--narrow.cds--subgrid--with-row-gap {
345
+ row-gap: 1rem;
346
+ }
347
+
348
+ .cds--subgrid--condensed.cds--subgrid--with-row-gap {
349
+ row-gap: 0.0625rem;
350
+ }
351
+
331
352
  .cds--grid-column-hang {
332
353
  margin-inline-start: var(--cds-grid-column-hang);
333
354
  }
@@ -5825,6 +5846,27 @@ button.c4p--add-select__global-filter-toggle--open {
5825
5846
  padding-block: 0.03125rem;
5826
5847
  }
5827
5848
 
5849
+ .cds--grid--with-row-gap {
5850
+ --cds-grid-row-gap: 2rem;
5851
+ }
5852
+
5853
+ .cds--grid--with-row-gap > .cds--row {
5854
+ gap: var(--cds-grid-row-gap) 0;
5855
+ margin-block-end: var(--cds-grid-row-gap);
5856
+ }
5857
+
5858
+ .cds--grid--with-row-gap.cds--grid--condensed {
5859
+ --cds-grid-row-gap: 0;
5860
+ }
5861
+
5862
+ .cds--grid--with-row-gap.cds--grid--narrow {
5863
+ --cds-grid-row-gap: calc(2rem / 2);
5864
+ }
5865
+
5866
+ .cds--grid--with-row-gap > .cds--row:last-child {
5867
+ margin-block-end: 0;
5868
+ }
5869
+
5828
5870
  .cds--col {
5829
5871
  inline-size: 100%;
5830
5872
  padding-inline: 1rem;
@@ -8178,6 +8220,7 @@ button.c4p--add-select__global-filter-toggle--open {
8178
8220
  }
8179
8221
  .c4p--page-header__next .c4p--page-header__content__contextual-actions {
8180
8222
  display: flex;
8223
+ align-items: center;
8181
8224
  }
8182
8225
  .c4p--page-header__next .c4p--page-header__content__title {
8183
8226
  font-size: var(--cds-productive-heading-04-font-size, 1.75rem);
@@ -8249,9 +8292,44 @@ button.c4p--add-select__global-filter-toggle--open {
8249
8292
  justify-content: flex-end;
8250
8293
  block-size: 100%;
8251
8294
  }
8295
+ .c4p--page-header__next .c4p--page-header__hero-image--object-fit-cover picture,
8296
+ .c4p--page-header__next .c4p--page-header__hero-image--object-fit-cover img, .c4p--page-header__next .c4p--page-header__hero-image--object-fit-contain picture,
8297
+ .c4p--page-header__next .c4p--page-header__hero-image--object-fit-contain img, .c4p--page-header__next .c4p--page-header__hero-image--object-fit-fill picture,
8298
+ .c4p--page-header__next .c4p--page-header__hero-image--object-fit-fill img, .c4p--page-header__next .c4p--page-header__hero-image--object-fit-none picture,
8299
+ .c4p--page-header__next .c4p--page-header__hero-image--object-fit-none img {
8300
+ block-size: 100%;
8301
+ inline-size: 100%;
8302
+ }
8303
+ .c4p--page-header__next .c4p--page-header__hero-image--object-fit-cover picture,
8304
+ .c4p--page-header__next .c4p--page-header__hero-image--object-fit-cover img {
8305
+ object-fit: cover;
8306
+ object-position: center;
8307
+ }
8308
+ .c4p--page-header__next .c4p--page-header__hero-image--object-fit-contain picture,
8309
+ .c4p--page-header__next .c4p--page-header__hero-image--object-fit-contain img {
8310
+ object-fit: contain;
8311
+ object-position: center;
8312
+ }
8313
+ .c4p--page-header__next .c4p--page-header__hero-image--object-fit-fill picture,
8314
+ .c4p--page-header__next .c4p--page-header__hero-image--object-fit-fill img {
8315
+ object-fit: fill;
8316
+ }
8317
+ .c4p--page-header__next .c4p--page-header__hero-image--object-fit-none picture,
8318
+ .c4p--page-header__next .c4p--page-header__hero-image--object-fit-none img {
8319
+ object-fit: none;
8320
+ object-position: center;
8321
+ }
8252
8322
  .c4p--page-header__next .c4p--page-header__tab-bar {
8323
+ position: relative;
8324
+ display: flex;
8325
+ align-items: center;
8253
8326
  background-color: var(--cds-layer);
8254
8327
  }
8328
+ @media (min-width: 99rem) {
8329
+ .c4p--page-header__next .c4p--page-header__tab-bar {
8330
+ display: block;
8331
+ }
8332
+ }
8255
8333
  .c4p--page-header__next .c4p--page-header__tab-bar--tablist {
8256
8334
  display: flex;
8257
8335
  align-items: center;
@@ -8311,19 +8389,15 @@ button.c4p--add-select__global-filter-toggle--open {
8311
8389
  align-content: center;
8312
8390
  justify-content: flex-end;
8313
8391
  inline-size: 40%;
8392
+ padding-inline-end: 0.5rem;
8314
8393
  text-align: end;
8315
8394
  }
8316
8395
  .c4p--page-header__next .c4p--page-header--tag-overflow-container .cds--tag {
8317
8396
  flex-shrink: 0;
8318
8397
  margin-inline-end: 0.5rem;
8319
8398
  }
8320
- @media (max-width: 41.98rem) {
8321
- .c4p--page-header__next .c4p--page-header--tag-overflow-container {
8322
- inline-size: auto;
8323
- }
8324
- }
8325
8399
  .c4p--page-header__next .c4p--page-header--tag-overflow-popover__hidden {
8326
- visibility: hidden;
8400
+ display: none;
8327
8401
  }
8328
8402
  .c4p--page-header__next .c4p--page-header__tag-item {
8329
8403
  flex-shrink: 0;
@@ -8342,8 +8416,18 @@ button.c4p--add-select__global-filter-toggle--open {
8342
8416
  }
8343
8417
  .c4p--page-header__next .c4p--page-header--scroller-button-container {
8344
8418
  position: relative;
8419
+ display: inline-flex;
8420
+ align-items: center;
8345
8421
  margin-inline-start: 0.5rem;
8346
- padding-inline-end: 1rem;
8422
+ }
8423
+ @media (min-width: 99rem) {
8424
+ .c4p--page-header__next .c4p--page-header--scroller-button-container {
8425
+ position: absolute;
8426
+ inset-block-start: 0;
8427
+ inset-inline-end: 0;
8428
+ margin-inline-start: 0;
8429
+ padding-inline-end: 0;
8430
+ }
8347
8431
  }
8348
8432
  @keyframes page-header-title-breadcrumb-animation {
8349
8433
  0% {
@@ -9904,6 +9988,7 @@ button.c4p--add-select__global-filter-toggle--open {
9904
9988
  --cds-syntax-definition: #33b1ff;
9905
9989
  --cds-syntax-definition-keyword: #33b1ff;
9906
9990
  --cds-syntax-definition-operator: #33b1ff;
9991
+ --cds-syntax-deleted: #a2191f;
9907
9992
  --cds-syntax-deref-operator: #e0e0e0;
9908
9993
  --cds-syntax-doc-comment: #42be65;
9909
9994
  --cds-syntax-doc-string: #f4f4f4;
@@ -9919,6 +10004,7 @@ button.c4p--add-select__global-filter-toggle--open {
9919
10004
  --cds-syntax-heading-4: #33b1ff;
9920
10005
  --cds-syntax-heading-5: #33b1ff;
9921
10006
  --cds-syntax-heading-6: #33b1ff;
10007
+ --cds-syntax-inserted: #198038;
9922
10008
  --cds-syntax-integer: #6fdc8c;
9923
10009
  --cds-syntax-invalid: #fa4d56;
9924
10010
  --cds-syntax-keyword: #4589ff;
@@ -10461,6 +10547,7 @@ button.c4p--add-select__global-filter-toggle--open {
10461
10547
  --cds-syntax-definition: #33b1ff;
10462
10548
  --cds-syntax-definition-keyword: #33b1ff;
10463
10549
  --cds-syntax-definition-operator: #33b1ff;
10550
+ --cds-syntax-deleted: #a2191f;
10464
10551
  --cds-syntax-deref-operator: #e0e0e0;
10465
10552
  --cds-syntax-doc-comment: #42be65;
10466
10553
  --cds-syntax-doc-string: #f4f4f4;
@@ -10476,6 +10563,7 @@ button.c4p--add-select__global-filter-toggle--open {
10476
10563
  --cds-syntax-heading-4: #33b1ff;
10477
10564
  --cds-syntax-heading-5: #33b1ff;
10478
10565
  --cds-syntax-heading-6: #33b1ff;
10566
+ --cds-syntax-inserted: #198038;
10479
10567
  --cds-syntax-integer: #6fdc8c;
10480
10568
  --cds-syntax-invalid: #fa4d56;
10481
10569
  --cds-syntax-keyword: #4589ff;
@@ -11332,16 +11420,15 @@ button.c4p--add-select__global-filter-toggle--open {
11332
11420
  }
11333
11421
 
11334
11422
  .c4p--edit-in-place--sm {
11335
- --c4p--edit-in-place--size: 2rem;
11423
+ --c4p--edit-in-place--size: 2.5rem;
11336
11424
  }
11337
11425
 
11338
11426
  .c4p--edit-in-place--md {
11339
- --c4p--edit-in-place--size: 2.5rem;
11427
+ --c4p--edit-in-place--size: 3rem;
11340
11428
  }
11341
11429
 
11342
11430
  .c4p--edit-in-place--lg {
11343
- /* April 2023 max text input size */
11344
- --c4p--edit-in-place--size: 3rem;
11431
+ --c4p--edit-in-place--size: 4rem;
11345
11432
  }
11346
11433
 
11347
11434
  .c4p--edit-in-place__toggletip-wrapper {
@@ -11373,9 +11460,16 @@ button.c4p--add-select__global-filter-toggle--open {
11373
11460
 
11374
11461
  .c4p--edit-in-place--focused {
11375
11462
  background: var(--cds-field-01, #f4f4f4);
11463
+ }
11464
+
11465
+ .c4p--edit-in-place--focused:has(.c4p--edit-in-place__text-input:focus) {
11376
11466
  outline: 2px solid var(--cds-focus, #0f62fe);
11377
11467
  }
11378
11468
 
11469
+ .c4p--edit-in-place--invalid.c4p--edit-in-place--focused {
11470
+ border: none;
11471
+ }
11472
+
11379
11473
  .c4p--edit-in-place__text-input {
11380
11474
  flex: 1;
11381
11475
  }
@@ -11414,8 +11508,8 @@ button.c4p--add-select__global-filter-toggle--open {
11414
11508
  outline: none;
11415
11509
  }
11416
11510
 
11417
- .c4p--edit-in-place__text-input.cds--text-input:focus,
11418
- .c4p--edit-in-place__text-input.cds--text-input:active {
11511
+ .c4p--edit-in-place:not(.c4p--edit-in-place--focused) .c4p--edit-in-place__text-input.cds--text-input:focus,
11512
+ .c4p--edit-in-place:not(.c4p--edit-in-place--focused) .c4p--edit-in-place__text-input.cds--text-input:active {
11419
11513
  outline: none;
11420
11514
  }
11421
11515
 
@@ -11423,8 +11517,18 @@ button.c4p--add-select__global-filter-toggle--open {
11423
11517
  --toolbar-width: var(--c4p--edit-in-place--size);
11424
11518
  --toolbar-width-focussed: calc(2 * var(--c4p--edit-in-place--size));
11425
11519
  display: inline-flex;
11520
+ align-self: stretch;
11426
11521
  inline-size: var(--toolbar-width);
11427
11522
  }
11523
+ .c4p--edit-in-place__toolbar .cds--btn.cds--btn--icon-only {
11524
+ padding: 0;
11525
+ min-block-size: unset;
11526
+ }
11527
+
11528
+ .c4p--edit-in-place__toolbar .cds--btn.cds--btn--icon-only {
11529
+ block-size: var(--c4p--edit-in-place--size);
11530
+ inline-size: var(--c4p--edit-in-place--size);
11531
+ }
11428
11532
 
11429
11533
  .c4p--edit-in-place--invalid .c4p--edit-in-place__toolbar {
11430
11534
  --toolbar-width: calc(var(--c4p--edit-in-place--size) + 2rem);
@@ -14413,6 +14517,7 @@ th.c4p--datagrid__select-all-toggle-on.button {
14413
14517
  --cds-syntax-definition: #33b1ff;
14414
14518
  --cds-syntax-definition-keyword: #33b1ff;
14415
14519
  --cds-syntax-definition-operator: #33b1ff;
14520
+ --cds-syntax-deleted: #a2191f;
14416
14521
  --cds-syntax-deref-operator: #e0e0e0;
14417
14522
  --cds-syntax-doc-comment: #42be65;
14418
14523
  --cds-syntax-doc-string: #f4f4f4;
@@ -14428,6 +14533,7 @@ th.c4p--datagrid__select-all-toggle-on.button {
14428
14533
  --cds-syntax-heading-4: #33b1ff;
14429
14534
  --cds-syntax-heading-5: #33b1ff;
14430
14535
  --cds-syntax-heading-6: #33b1ff;
14536
+ --cds-syntax-inserted: #198038;
14431
14537
  --cds-syntax-integer: #6fdc8c;
14432
14538
  --cds-syntax-invalid: #fa4d56;
14433
14539
  --cds-syntax-keyword: #4589ff;
@@ -15338,6 +15444,7 @@ th.c4p--datagrid__select-all-toggle-on.button {
15338
15444
  --cds-syntax-definition: #33b1ff;
15339
15445
  --cds-syntax-definition-keyword: #33b1ff;
15340
15446
  --cds-syntax-definition-operator: #33b1ff;
15447
+ --cds-syntax-deleted: #a2191f;
15341
15448
  --cds-syntax-deref-operator: #e0e0e0;
15342
15449
  --cds-syntax-doc-comment: #42be65;
15343
15450
  --cds-syntax-doc-string: #f4f4f4;
@@ -15353,6 +15460,7 @@ th.c4p--datagrid__select-all-toggle-on.button {
15353
15460
  --cds-syntax-heading-4: #33b1ff;
15354
15461
  --cds-syntax-heading-5: #33b1ff;
15355
15462
  --cds-syntax-heading-6: #33b1ff;
15463
+ --cds-syntax-inserted: #198038;
15356
15464
  --cds-syntax-integer: #6fdc8c;
15357
15465
  --cds-syntax-invalid: #fa4d56;
15358
15466
  --cds-syntax-keyword: #4589ff;
@@ -15992,6 +16100,24 @@ th.c4p--datagrid__select-all-toggle-on.button {
15992
16100
  color: var(--cds-link-primary, #0f62fe);
15993
16101
  cursor: pointer;
15994
16102
  }
16103
+ .c4p--truncated-text__expand-toggle:focus-visible {
16104
+ outline: 2px solid var(--cds-focus, #0f62fe);
16105
+ outline-offset: 2px;
16106
+ }
16107
+ .c4p--truncated-text__tooltip-trigger {
16108
+ display: inline;
16109
+ padding: 0;
16110
+ border: 0;
16111
+ background: none;
16112
+ color: inherit;
16113
+ cursor: default;
16114
+ font: inherit;
16115
+ text-align: inherit;
16116
+ }
16117
+ .c4p--truncated-text__tooltip-trigger:focus-visible {
16118
+ outline: 2px solid var(--cds-focus, #0f62fe);
16119
+ outline-offset: 2px;
16120
+ }
15995
16121
 
15996
16122
  /* stylelint-disable max-nesting-depth */
15997
16123
  /* stylelint-disable declaration-no-important */
@@ -16302,6 +16428,7 @@ th.c4p--datagrid__select-all-toggle-on.button {
16302
16428
  --cds-syntax-definition: #00539a;
16303
16429
  --cds-syntax-definition-keyword: #00539a;
16304
16430
  --cds-syntax-definition-operator: #00539a;
16431
+ --cds-syntax-deleted: #ffd7d9;
16305
16432
  --cds-syntax-deref-operator: #343a3f;
16306
16433
  --cds-syntax-doc-comment: #198038;
16307
16434
  --cds-syntax-doc-string: #161616;
@@ -16317,6 +16444,7 @@ th.c4p--datagrid__select-all-toggle-on.button {
16317
16444
  --cds-syntax-heading-4: #00539a;
16318
16445
  --cds-syntax-heading-5: #00539a;
16319
16446
  --cds-syntax-heading-6: #00539a;
16447
+ --cds-syntax-inserted: #a7f0ba;
16320
16448
  --cds-syntax-integer: #198038;
16321
16449
  --cds-syntax-invalid: #da1e28;
16322
16450
  --cds-syntax-keyword: #0f62fe;
@@ -16835,6 +16963,7 @@ th.c4p--datagrid__select-all-toggle-on.button {
16835
16963
  --cds-syntax-definition: #33b1ff;
16836
16964
  --cds-syntax-definition-keyword: #33b1ff;
16837
16965
  --cds-syntax-definition-operator: #33b1ff;
16966
+ --cds-syntax-deleted: #a2191f;
16838
16967
  --cds-syntax-deref-operator: #e0e0e0;
16839
16968
  --cds-syntax-doc-comment: #42be65;
16840
16969
  --cds-syntax-doc-string: #f4f4f4;
@@ -16850,6 +16979,7 @@ th.c4p--datagrid__select-all-toggle-on.button {
16850
16979
  --cds-syntax-heading-4: #33b1ff;
16851
16980
  --cds-syntax-heading-5: #33b1ff;
16852
16981
  --cds-syntax-heading-6: #33b1ff;
16982
+ --cds-syntax-inserted: #198038;
16853
16983
  --cds-syntax-integer: #6fdc8c;
16854
16984
  --cds-syntax-invalid: #fa4d56;
16855
16985
  --cds-syntax-keyword: #4589ff;
@@ -20443,7 +20573,7 @@ em {
20443
20573
  font-style: normal;
20444
20574
  font-weight: 300;
20445
20575
  src: url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-Light-Cyrillic.woff2") format("woff2");
20446
- unicode-range: U+0400-045F, U+0472-0473, U+0490-049D, U+04A0-04A5, U+04AA-04AB, U+04AE-04B3, U+04B6-04BB, U+04C0-04C2, U+04CF-04D9, U+04DC-04DF, U+04E2-04E9, U+04EE-04F5, U+04F8-04F9;
20576
+ unicode-range: U+0400-045F, U+0462-0463, U+046A-046B, U+0472-0475, U+0490-04C2, U+04CF-04D9, U+04DC-04E9, U+04EE-04F9, U+0524-0525;
20447
20577
  }
20448
20578
  @font-face {
20449
20579
  font-display: swap;
@@ -20451,7 +20581,7 @@ em {
20451
20581
  font-style: normal;
20452
20582
  font-weight: 300;
20453
20583
  src: url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-Light-Pi.woff2") format("woff2");
20454
- unicode-range: U+0E3F, U+2032-2033, U+2070, U+2075-2079, U+2080-2081, U+2083, U+2085-2089, U+2113, U+2116, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+2713, U+274C, U+2B0E-2B11, U+EBE1-EBE7, U+ECE0, U+EFCC;
20584
+ unicode-range: U+03C0, U+0E3F, U+2000-200D, U+2028-2029, U+202F, U+2032-2033, U+205F, U+2070, U+2074-2079, U+2080-2089, U+2113, U+2116, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211, U+2215, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+2500-259F, U+25CA, U+2713, U+274C, U+2B0E-2B11, U+3000, U+FEFF, U+FFFD;
20455
20585
  }
20456
20586
  @font-face {
20457
20587
  font-display: swap;
@@ -20459,7 +20589,7 @@ em {
20459
20589
  font-style: normal;
20460
20590
  font-weight: 300;
20461
20591
  src: url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-Light-Latin3.woff2") format("woff2");
20462
- unicode-range: U+0102-0103, U+1EA0-1EF9, U+20AB;
20592
+ unicode-range: U+0102-0103, U+01CD-01DC, U+1EA0-1EF9, U+20AB;
20463
20593
  }
20464
20594
  @font-face {
20465
20595
  font-display: swap;
@@ -20467,7 +20597,7 @@ em {
20467
20597
  font-style: normal;
20468
20598
  font-weight: 300;
20469
20599
  src: url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-Light-Latin2.woff2") format("woff2");
20470
- unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF, U+FB01-FB02;
20600
+ unicode-range: U+0100-0101, U+0104-0130, U+0132-0151, U+0154-017F, U+018F, U+0192, U+01A0-01A1, U+01AF-01B0, U+01FA-01FF, U+0218-021B, U+0237, U+0259, U+1E80-1E85, U+1E9E, U+20A1, U+20A4, U+20A6, U+20A8-20AA, U+20AD-20AE, U+20B1-20B2, U+20B4-20B5, U+20B8-20BA, U+20BD, U+20BF;
20471
20601
  }
20472
20602
  @font-face {
20473
20603
  font-display: swap;
@@ -20475,7 +20605,7 @@ em {
20475
20605
  font-style: normal;
20476
20606
  font-weight: 300;
20477
20607
  src: url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-Light-Latin1.woff2") format("woff2");
20478
- unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00A3, U+00A4-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2074, U+20AC, U+2122, U+2212, U+FB01-FB02;
20608
+ unicode-range: U+0020-007E, U+00A0-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+20AC, U+2122, U+2212, U+FB01-FB02;
20479
20609
  }
20480
20610
  @font-face {
20481
20611
  font-display: swap;
@@ -20483,7 +20613,7 @@ em {
20483
20613
  font-style: italic;
20484
20614
  font-weight: 300;
20485
20615
  src: url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-LightItalic-Cyrillic.woff2") format("woff2");
20486
- unicode-range: U+0400-045F, U+0472-0473, U+0490-049D, U+04A0-04A5, U+04AA-04AB, U+04AE-04B3, U+04B6-04BB, U+04C0-04C2, U+04CF-04D9, U+04DC-04DF, U+04E2-04E9, U+04EE-04F5, U+04F8-04F9;
20616
+ unicode-range: U+0400-045F, U+0462-0463, U+046A-046B, U+0472-0475, U+0490-04C2, U+04CF-04D9, U+04DC-04E9, U+04EE-04F9, U+0524-0525;
20487
20617
  }
20488
20618
  @font-face {
20489
20619
  font-display: swap;
@@ -20491,7 +20621,7 @@ em {
20491
20621
  font-style: italic;
20492
20622
  font-weight: 300;
20493
20623
  src: url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-LightItalic-Pi.woff2") format("woff2");
20494
- unicode-range: U+0E3F, U+2032-2033, U+2070, U+2075-2079, U+2080-2081, U+2083, U+2085-2089, U+2113, U+2116, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+2713, U+274C, U+2B0E-2B11, U+EBE1-EBE7, U+ECE0, U+EFCC;
20624
+ unicode-range: U+03C0, U+0E3F, U+2000-200D, U+2028-2029, U+202F, U+2032-2033, U+205F, U+2070, U+2074-2079, U+2080-2089, U+2113, U+2116, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211, U+2215, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+2500-259F, U+25CA, U+2713, U+274C, U+2B0E-2B11, U+3000, U+FEFF, U+FFFD;
20495
20625
  }
20496
20626
  @font-face {
20497
20627
  font-display: swap;
@@ -20499,7 +20629,7 @@ em {
20499
20629
  font-style: italic;
20500
20630
  font-weight: 300;
20501
20631
  src: url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-LightItalic-Latin3.woff2") format("woff2");
20502
- unicode-range: U+0102-0103, U+1EA0-1EF9, U+20AB;
20632
+ unicode-range: U+0102-0103, U+01CD-01DC, U+1EA0-1EF9, U+20AB;
20503
20633
  }
20504
20634
  @font-face {
20505
20635
  font-display: swap;
@@ -20507,7 +20637,7 @@ em {
20507
20637
  font-style: italic;
20508
20638
  font-weight: 300;
20509
20639
  src: url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-LightItalic-Latin2.woff2") format("woff2");
20510
- unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF, U+FB01-FB02;
20640
+ unicode-range: U+0100-0101, U+0104-0130, U+0132-0151, U+0154-017F, U+018F, U+0192, U+01A0-01A1, U+01AF-01B0, U+01FA-01FF, U+0218-021B, U+0237, U+0259, U+1E80-1E85, U+1E9E, U+20A1, U+20A4, U+20A6, U+20A8-20AA, U+20AD-20AE, U+20B1-20B2, U+20B4-20B5, U+20B8-20BA, U+20BD, U+20BF;
20511
20641
  }
20512
20642
  @font-face {
20513
20643
  font-display: swap;
@@ -20515,7 +20645,7 @@ em {
20515
20645
  font-style: italic;
20516
20646
  font-weight: 300;
20517
20647
  src: url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-LightItalic-Latin1.woff2") format("woff2");
20518
- unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00A3, U+00A4-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2074, U+20AC, U+2122, U+2212, U+FB01-FB02;
20648
+ unicode-range: U+0020-007E, U+00A0-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+20AC, U+2122, U+2212, U+FB01-FB02;
20519
20649
  }
20520
20650
  @font-face {
20521
20651
  font-display: swap;
@@ -20523,7 +20653,7 @@ em {
20523
20653
  font-style: normal;
20524
20654
  font-weight: 400;
20525
20655
  src: url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-Regular-Cyrillic.woff2") format("woff2");
20526
- unicode-range: U+0400-045F, U+0472-0473, U+0490-049D, U+04A0-04A5, U+04AA-04AB, U+04AE-04B3, U+04B6-04BB, U+04C0-04C2, U+04CF-04D9, U+04DC-04DF, U+04E2-04E9, U+04EE-04F5, U+04F8-04F9;
20656
+ unicode-range: U+0400-045F, U+0462-0463, U+046A-046B, U+0472-0475, U+0490-04C2, U+04CF-04D9, U+04DC-04E9, U+04EE-04F9, U+0524-0525;
20527
20657
  }
20528
20658
  @font-face {
20529
20659
  font-display: swap;
@@ -20531,7 +20661,7 @@ em {
20531
20661
  font-style: normal;
20532
20662
  font-weight: 400;
20533
20663
  src: url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-Regular-Pi.woff2") format("woff2");
20534
- unicode-range: U+0E3F, U+2032-2033, U+2070, U+2075-2079, U+2080-2081, U+2083, U+2085-2089, U+2113, U+2116, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+2713, U+274C, U+2B0E-2B11, U+EBE1-EBE7, U+ECE0, U+EFCC;
20664
+ unicode-range: U+03C0, U+0E3F, U+2000-200D, U+2028-2029, U+202F, U+2032-2033, U+205F, U+2070, U+2074-2079, U+2080-2089, U+2113, U+2116, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211, U+2215, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+2500-259F, U+25CA, U+2713, U+274C, U+2B0E-2B11, U+3000, U+FEFF, U+FFFD;
20535
20665
  }
20536
20666
  @font-face {
20537
20667
  font-display: swap;
@@ -20539,7 +20669,7 @@ em {
20539
20669
  font-style: normal;
20540
20670
  font-weight: 400;
20541
20671
  src: url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-Regular-Latin3.woff2") format("woff2");
20542
- unicode-range: U+0102-0103, U+1EA0-1EF9, U+20AB;
20672
+ unicode-range: U+0102-0103, U+01CD-01DC, U+1EA0-1EF9, U+20AB;
20543
20673
  }
20544
20674
  @font-face {
20545
20675
  font-display: swap;
@@ -20547,7 +20677,7 @@ em {
20547
20677
  font-style: normal;
20548
20678
  font-weight: 400;
20549
20679
  src: url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-Regular-Latin2.woff2") format("woff2");
20550
- unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF, U+FB01-FB02;
20680
+ unicode-range: U+0100-0101, U+0104-0130, U+0132-0151, U+0154-017F, U+018F, U+0192, U+01A0-01A1, U+01AF-01B0, U+01FA-01FF, U+0218-021B, U+0237, U+0259, U+1E80-1E85, U+1E9E, U+20A1, U+20A4, U+20A6, U+20A8-20AA, U+20AD-20AE, U+20B1-20B2, U+20B4-20B5, U+20B8-20BA, U+20BD, U+20BF;
20551
20681
  }
20552
20682
  @font-face {
20553
20683
  font-display: swap;
@@ -20555,7 +20685,7 @@ em {
20555
20685
  font-style: normal;
20556
20686
  font-weight: 400;
20557
20687
  src: url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-Regular-Latin1.woff2") format("woff2");
20558
- unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00A3, U+00A4-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2074, U+20AC, U+2122, U+2212, U+FB01-FB02;
20688
+ unicode-range: U+0020-007E, U+00A0-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+20AC, U+2122, U+2212, U+FB01-FB02;
20559
20689
  }
20560
20690
  @font-face {
20561
20691
  font-display: swap;
@@ -20563,7 +20693,7 @@ em {
20563
20693
  font-style: italic;
20564
20694
  font-weight: 400;
20565
20695
  src: url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-Italic-Cyrillic.woff2") format("woff2");
20566
- unicode-range: U+0400-045F, U+0472-0473, U+0490-049D, U+04A0-04A5, U+04AA-04AB, U+04AE-04B3, U+04B6-04BB, U+04C0-04C2, U+04CF-04D9, U+04DC-04DF, U+04E2-04E9, U+04EE-04F5, U+04F8-04F9;
20696
+ unicode-range: U+0400-045F, U+0462-0463, U+046A-046B, U+0472-0475, U+0490-04C2, U+04CF-04D9, U+04DC-04E9, U+04EE-04F9, U+0524-0525;
20567
20697
  }
20568
20698
  @font-face {
20569
20699
  font-display: swap;
@@ -20571,7 +20701,7 @@ em {
20571
20701
  font-style: italic;
20572
20702
  font-weight: 400;
20573
20703
  src: url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-Italic-Pi.woff2") format("woff2");
20574
- unicode-range: U+0E3F, U+2032-2033, U+2070, U+2075-2079, U+2080-2081, U+2083, U+2085-2089, U+2113, U+2116, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+2713, U+274C, U+2B0E-2B11, U+EBE1-EBE7, U+ECE0, U+EFCC;
20704
+ unicode-range: U+03C0, U+0E3F, U+2000-200D, U+2028-2029, U+202F, U+2032-2033, U+205F, U+2070, U+2074-2079, U+2080-2089, U+2113, U+2116, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211, U+2215, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+2500-259F, U+25CA, U+2713, U+274C, U+2B0E-2B11, U+3000, U+FEFF, U+FFFD;
20575
20705
  }
20576
20706
  @font-face {
20577
20707
  font-display: swap;
@@ -20579,7 +20709,7 @@ em {
20579
20709
  font-style: italic;
20580
20710
  font-weight: 400;
20581
20711
  src: url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-Italic-Latin3.woff2") format("woff2");
20582
- unicode-range: U+0102-0103, U+1EA0-1EF9, U+20AB;
20712
+ unicode-range: U+0102-0103, U+01CD-01DC, U+1EA0-1EF9, U+20AB;
20583
20713
  }
20584
20714
  @font-face {
20585
20715
  font-display: swap;
@@ -20587,7 +20717,7 @@ em {
20587
20717
  font-style: italic;
20588
20718
  font-weight: 400;
20589
20719
  src: url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-Italic-Latin2.woff2") format("woff2");
20590
- unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF, U+FB01-FB02;
20720
+ unicode-range: U+0100-0101, U+0104-0130, U+0132-0151, U+0154-017F, U+018F, U+0192, U+01A0-01A1, U+01AF-01B0, U+01FA-01FF, U+0218-021B, U+0237, U+0259, U+1E80-1E85, U+1E9E, U+20A1, U+20A4, U+20A6, U+20A8-20AA, U+20AD-20AE, U+20B1-20B2, U+20B4-20B5, U+20B8-20BA, U+20BD, U+20BF;
20591
20721
  }
20592
20722
  @font-face {
20593
20723
  font-display: swap;
@@ -20595,7 +20725,7 @@ em {
20595
20725
  font-style: italic;
20596
20726
  font-weight: 400;
20597
20727
  src: url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-Italic-Latin1.woff2") format("woff2");
20598
- unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00A3, U+00A4-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2074, U+20AC, U+2122, U+2212, U+FB01-FB02;
20728
+ unicode-range: U+0020-007E, U+00A0-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+20AC, U+2122, U+2212, U+FB01-FB02;
20599
20729
  }
20600
20730
  @font-face {
20601
20731
  font-display: swap;
@@ -20603,7 +20733,7 @@ em {
20603
20733
  font-style: normal;
20604
20734
  font-weight: 600;
20605
20735
  src: url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-SemiBold-Cyrillic.woff2") format("woff2");
20606
- unicode-range: U+0400-045F, U+0472-0473, U+0490-049D, U+04A0-04A5, U+04AA-04AB, U+04AE-04B3, U+04B6-04BB, U+04C0-04C2, U+04CF-04D9, U+04DC-04DF, U+04E2-04E9, U+04EE-04F5, U+04F8-04F9;
20736
+ unicode-range: U+0400-045F, U+0462-0463, U+046A-046B, U+0472-0475, U+0490-04C2, U+04CF-04D9, U+04DC-04E9, U+04EE-04F9, U+0524-0525;
20607
20737
  }
20608
20738
  @font-face {
20609
20739
  font-display: swap;
@@ -20611,7 +20741,7 @@ em {
20611
20741
  font-style: normal;
20612
20742
  font-weight: 600;
20613
20743
  src: url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-SemiBold-Pi.woff2") format("woff2");
20614
- unicode-range: U+0E3F, U+2032-2033, U+2070, U+2075-2079, U+2080-2081, U+2083, U+2085-2089, U+2113, U+2116, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+2713, U+274C, U+2B0E-2B11, U+EBE1-EBE7, U+ECE0, U+EFCC;
20744
+ unicode-range: U+03C0, U+0E3F, U+2000-200D, U+2028-2029, U+202F, U+2032-2033, U+205F, U+2070, U+2074-2079, U+2080-2089, U+2113, U+2116, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211, U+2215, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+2500-259F, U+25CA, U+2713, U+274C, U+2B0E-2B11, U+3000, U+FEFF, U+FFFD;
20615
20745
  }
20616
20746
  @font-face {
20617
20747
  font-display: swap;
@@ -20619,7 +20749,7 @@ em {
20619
20749
  font-style: normal;
20620
20750
  font-weight: 600;
20621
20751
  src: url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-SemiBold-Latin3.woff2") format("woff2");
20622
- unicode-range: U+0102-0103, U+1EA0-1EF9, U+20AB;
20752
+ unicode-range: U+0102-0103, U+01CD-01DC, U+1EA0-1EF9, U+20AB;
20623
20753
  }
20624
20754
  @font-face {
20625
20755
  font-display: swap;
@@ -20627,7 +20757,7 @@ em {
20627
20757
  font-style: normal;
20628
20758
  font-weight: 600;
20629
20759
  src: url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-SemiBold-Latin2.woff2") format("woff2");
20630
- unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF, U+FB01-FB02;
20760
+ unicode-range: U+0100-0101, U+0104-0130, U+0132-0151, U+0154-017F, U+018F, U+0192, U+01A0-01A1, U+01AF-01B0, U+01FA-01FF, U+0218-021B, U+0237, U+0259, U+1E80-1E85, U+1E9E, U+20A1, U+20A4, U+20A6, U+20A8-20AA, U+20AD-20AE, U+20B1-20B2, U+20B4-20B5, U+20B8-20BA, U+20BD, U+20BF;
20631
20761
  }
20632
20762
  @font-face {
20633
20763
  font-display: swap;
@@ -20635,7 +20765,7 @@ em {
20635
20765
  font-style: normal;
20636
20766
  font-weight: 600;
20637
20767
  src: url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-SemiBold-Latin1.woff2") format("woff2");
20638
- unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00A3, U+00A4-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2074, U+20AC, U+2122, U+2212, U+FB01-FB02;
20768
+ unicode-range: U+0020-007E, U+00A0-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+20AC, U+2122, U+2212, U+FB01-FB02;
20639
20769
  }
20640
20770
  @font-face {
20641
20771
  font-display: swap;
@@ -20643,7 +20773,7 @@ em {
20643
20773
  font-style: italic;
20644
20774
  font-weight: 600;
20645
20775
  src: url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-SemiBoldItalic-Cyrillic.woff2") format("woff2");
20646
- unicode-range: U+0400-045F, U+0472-0473, U+0490-049D, U+04A0-04A5, U+04AA-04AB, U+04AE-04B3, U+04B6-04BB, U+04C0-04C2, U+04CF-04D9, U+04DC-04DF, U+04E2-04E9, U+04EE-04F5, U+04F8-04F9;
20776
+ unicode-range: U+0400-045F, U+0462-0463, U+046A-046B, U+0472-0475, U+0490-04C2, U+04CF-04D9, U+04DC-04E9, U+04EE-04F9, U+0524-0525;
20647
20777
  }
20648
20778
  @font-face {
20649
20779
  font-display: swap;
@@ -20651,7 +20781,7 @@ em {
20651
20781
  font-style: italic;
20652
20782
  font-weight: 600;
20653
20783
  src: url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-SemiBoldItalic-Pi.woff2") format("woff2");
20654
- unicode-range: U+0E3F, U+2032-2033, U+2070, U+2075-2079, U+2080-2081, U+2083, U+2085-2089, U+2113, U+2116, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+2713, U+274C, U+2B0E-2B11, U+EBE1-EBE7, U+ECE0, U+EFCC;
20784
+ unicode-range: U+03C0, U+0E3F, U+2000-200D, U+2028-2029, U+202F, U+2032-2033, U+205F, U+2070, U+2074-2079, U+2080-2089, U+2113, U+2116, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211, U+2215, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+2500-259F, U+25CA, U+2713, U+274C, U+2B0E-2B11, U+3000, U+FEFF, U+FFFD;
20655
20785
  }
20656
20786
  @font-face {
20657
20787
  font-display: swap;
@@ -20659,7 +20789,7 @@ em {
20659
20789
  font-style: italic;
20660
20790
  font-weight: 600;
20661
20791
  src: url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-SemiBoldItalic-Latin3.woff2") format("woff2");
20662
- unicode-range: U+0102-0103, U+1EA0-1EF9, U+20AB;
20792
+ unicode-range: U+0102-0103, U+01CD-01DC, U+1EA0-1EF9, U+20AB;
20663
20793
  }
20664
20794
  @font-face {
20665
20795
  font-display: swap;
@@ -20667,7 +20797,7 @@ em {
20667
20797
  font-style: italic;
20668
20798
  font-weight: 600;
20669
20799
  src: url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-SemiBoldItalic-Latin2.woff2") format("woff2");
20670
- unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF, U+FB01-FB02;
20800
+ unicode-range: U+0100-0101, U+0104-0130, U+0132-0151, U+0154-017F, U+018F, U+0192, U+01A0-01A1, U+01AF-01B0, U+01FA-01FF, U+0218-021B, U+0237, U+0259, U+1E80-1E85, U+1E9E, U+20A1, U+20A4, U+20A6, U+20A8-20AA, U+20AD-20AE, U+20B1-20B2, U+20B4-20B5, U+20B8-20BA, U+20BD, U+20BF;
20671
20801
  }
20672
20802
  @font-face {
20673
20803
  font-display: swap;
@@ -20675,7 +20805,7 @@ em {
20675
20805
  font-style: italic;
20676
20806
  font-weight: 600;
20677
20807
  src: url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-SemiBoldItalic-Latin1.woff2") format("woff2");
20678
- unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00A3, U+00A4-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2074, U+20AC, U+2122, U+2212, U+FB01-FB02;
20808
+ unicode-range: U+0020-007E, U+00A0-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+20AC, U+2122, U+2212, U+FB01-FB02;
20679
20809
  }
20680
20810
  @font-face {
20681
20811
  font-display: swap;
@@ -20683,7 +20813,7 @@ em {
20683
20813
  font-style: normal;
20684
20814
  font-weight: 300;
20685
20815
  src: url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-Light-Cyrillic.woff2") format("woff2");
20686
- unicode-range: U+0400-045F, U+0472-0473, U+0490-049D, U+04A0-04A5, U+04AA-04AB, U+04AE-04B3, U+04B6-04BB, U+04C0-04C2, U+04CF-04D9, U+04DC-04DF, U+04E2-04E9, U+04EE-04F5, U+04F8-04F9;
20816
+ unicode-range: U+0400-045F, U+0462-0463, U+046A-046B, U+0472-0475, U+0490-04C2, U+04CF-04D9, U+04DC-04E9, U+04EE-04F9, U+0524-0525;
20687
20817
  }
20688
20818
  @font-face {
20689
20819
  font-display: swap;
@@ -20691,7 +20821,7 @@ em {
20691
20821
  font-style: normal;
20692
20822
  font-weight: 300;
20693
20823
  src: url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-Light-Pi.woff2") format("woff2");
20694
- unicode-range: U+0E3F, U+2032-2033, U+2070, U+2075-2079, U+2080-2081, U+2083, U+2085-2089, U+2113, U+2116, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+2713, U+274C, U+2B0E-2B11, U+EBE1-EBE7, U+ECE0, U+EFCC;
20824
+ unicode-range: U+0E3F, U+2000-200D, U+2015, U+2028-2029, U+202F, U+2032-2033, U+2070, U+2074-2079, U+2080-2089, U+2113, U+2116, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211, U+2215, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+2713, U+274C, U+2B0E-2B11, U+ECE0, U+EFCC, U+FEFF, U+FFFD;
20695
20825
  }
20696
20826
  @font-face {
20697
20827
  font-display: swap;
@@ -20699,7 +20829,7 @@ em {
20699
20829
  font-style: normal;
20700
20830
  font-weight: 300;
20701
20831
  src: url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-Light-Latin3.woff2") format("woff2");
20702
- unicode-range: U+0102-0103, U+1EA0-1EF9, U+20AB;
20832
+ unicode-range: U+0102-0103, U+01CD-01DC, U+1EA0-1EF9, U+20AB;
20703
20833
  }
20704
20834
  @font-face {
20705
20835
  font-display: swap;
@@ -20707,7 +20837,7 @@ em {
20707
20837
  font-style: normal;
20708
20838
  font-weight: 300;
20709
20839
  src: url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-Light-Latin2.woff2") format("woff2");
20710
- unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF, U+FB01-FB02;
20840
+ unicode-range: U+0100-0101, U+0104-0130, U+0132-0151, U+0154-017F, U+018F, U+0192, U+01A0-01A1, U+01AF-01B0, U+01FA-01FF, U+0218-021B, U+0237, U+0259, U+1E80-1E85, U+1E9E, U+20A1, U+20A4, U+20A6, U+20A8-20AA, U+20AD-20AE, U+20B1-20B2, U+20B4-20B5, U+20B8-20BA, U+20BD, U+20BF;
20711
20841
  }
20712
20842
  @font-face {
20713
20843
  font-display: swap;
@@ -20715,7 +20845,7 @@ em {
20715
20845
  font-style: normal;
20716
20846
  font-weight: 300;
20717
20847
  src: url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-Light-Latin1.woff2") format("woff2");
20718
- unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00A3, U+00A4-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2074, U+20AC, U+2122, U+2212, U+FB01-FB02;
20848
+ unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+20AC, U+2122, U+2212, U+FB01-FB02;
20719
20849
  }
20720
20850
  @font-face {
20721
20851
  font-display: swap;
@@ -20723,7 +20853,7 @@ em {
20723
20853
  font-style: italic;
20724
20854
  font-weight: 300;
20725
20855
  src: url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-LightItalic-Cyrillic.woff2") format("woff2");
20726
- unicode-range: U+0400-045F, U+0472-0473, U+0490-049D, U+04A0-04A5, U+04AA-04AB, U+04AE-04B3, U+04B6-04BB, U+04C0-04C2, U+04CF-04D9, U+04DC-04DF, U+04E2-04E9, U+04EE-04F5, U+04F8-04F9;
20856
+ unicode-range: U+0400-045F, U+0462-0463, U+046A-046B, U+0472-0475, U+0490-04C2, U+04CF-04D9, U+04DC-04E9, U+04EE-04F9, U+0524-0525;
20727
20857
  }
20728
20858
  @font-face {
20729
20859
  font-display: swap;
@@ -20731,7 +20861,7 @@ em {
20731
20861
  font-style: italic;
20732
20862
  font-weight: 300;
20733
20863
  src: url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-LightItalic-Pi.woff2") format("woff2");
20734
- unicode-range: U+0E3F, U+2032-2033, U+2070, U+2075-2079, U+2080-2081, U+2083, U+2085-2089, U+2113, U+2116, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+2713, U+274C, U+2B0E-2B11, U+EBE1-EBE7, U+ECE0, U+EFCC;
20864
+ unicode-range: U+0E3F, U+2000-200D, U+2015, U+2028-2029, U+202F, U+2032-2033, U+2070, U+2074-2079, U+2080-2089, U+2113, U+2116, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211, U+2215, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+2713, U+274C, U+2B0E-2B11, U+ECE0, U+EFCC, U+FEFF, U+FFFD;
20735
20865
  }
20736
20866
  @font-face {
20737
20867
  font-display: swap;
@@ -20739,7 +20869,7 @@ em {
20739
20869
  font-style: italic;
20740
20870
  font-weight: 300;
20741
20871
  src: url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-LightItalic-Latin3.woff2") format("woff2");
20742
- unicode-range: U+0102-0103, U+1EA0-1EF9, U+20AB;
20872
+ unicode-range: U+0102-0103, U+01CD-01DC, U+1EA0-1EF9, U+20AB;
20743
20873
  }
20744
20874
  @font-face {
20745
20875
  font-display: swap;
@@ -20747,7 +20877,7 @@ em {
20747
20877
  font-style: italic;
20748
20878
  font-weight: 300;
20749
20879
  src: url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-LightItalic-Latin2.woff2") format("woff2");
20750
- unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF, U+FB01-FB02;
20880
+ unicode-range: U+0100-0101, U+0104-0130, U+0132-0151, U+0154-017F, U+018F, U+0192, U+01A0-01A1, U+01AF-01B0, U+01FA-01FF, U+0218-021B, U+0237, U+0259, U+1E80-1E85, U+1E9E, U+20A1, U+20A4, U+20A6, U+20A8-20AA, U+20AD-20AE, U+20B1-20B2, U+20B4-20B5, U+20B8-20BA, U+20BD, U+20BF;
20751
20881
  }
20752
20882
  @font-face {
20753
20883
  font-display: swap;
@@ -20755,7 +20885,7 @@ em {
20755
20885
  font-style: italic;
20756
20886
  font-weight: 300;
20757
20887
  src: url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-LightItalic-Latin1.woff2") format("woff2");
20758
- unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00A3, U+00A4-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2074, U+20AC, U+2122, U+2212, U+FB01-FB02;
20888
+ unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+20AC, U+2122, U+2212, U+FB01-FB02;
20759
20889
  }
20760
20890
  @font-face {
20761
20891
  font-display: swap;
@@ -20763,7 +20893,7 @@ em {
20763
20893
  font-style: normal;
20764
20894
  font-weight: 400;
20765
20895
  src: url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-Regular-Cyrillic.woff2") format("woff2");
20766
- unicode-range: U+0400-045F, U+0472-0473, U+0490-049D, U+04A0-04A5, U+04AA-04AB, U+04AE-04B3, U+04B6-04BB, U+04C0-04C2, U+04CF-04D9, U+04DC-04DF, U+04E2-04E9, U+04EE-04F5, U+04F8-04F9;
20896
+ unicode-range: U+0400-045F, U+0462-0463, U+046A-046B, U+0472-0475, U+0490-04C2, U+04CF-04D9, U+04DC-04E9, U+04EE-04F9, U+0524-0525;
20767
20897
  }
20768
20898
  @font-face {
20769
20899
  font-display: swap;
@@ -20771,7 +20901,7 @@ em {
20771
20901
  font-style: normal;
20772
20902
  font-weight: 400;
20773
20903
  src: url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-Regular-Pi.woff2") format("woff2");
20774
- unicode-range: U+0E3F, U+2032-2033, U+2070, U+2075-2079, U+2080-2081, U+2083, U+2085-2089, U+2113, U+2116, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+2713, U+274C, U+2B0E-2B11, U+EBE1-EBE7, U+ECE0, U+EFCC;
20904
+ unicode-range: U+0E3F, U+2000-200D, U+2015, U+2028-2029, U+202F, U+2032-2033, U+2070, U+2074-2079, U+2080-2089, U+2113, U+2116, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211, U+2215, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+2713, U+274C, U+2B0E-2B11, U+ECE0, U+EFCC, U+FEFF, U+FFFD;
20775
20905
  }
20776
20906
  @font-face {
20777
20907
  font-display: swap;
@@ -20779,7 +20909,7 @@ em {
20779
20909
  font-style: normal;
20780
20910
  font-weight: 400;
20781
20911
  src: url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-Regular-Latin3.woff2") format("woff2");
20782
- unicode-range: U+0102-0103, U+1EA0-1EF9, U+20AB;
20912
+ unicode-range: U+0102-0103, U+01CD-01DC, U+1EA0-1EF9, U+20AB;
20783
20913
  }
20784
20914
  @font-face {
20785
20915
  font-display: swap;
@@ -20787,7 +20917,7 @@ em {
20787
20917
  font-style: normal;
20788
20918
  font-weight: 400;
20789
20919
  src: url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-Regular-Latin2.woff2") format("woff2");
20790
- unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF, U+FB01-FB02;
20920
+ unicode-range: U+0100-0101, U+0104-0130, U+0132-0151, U+0154-017F, U+018F, U+0192, U+01A0-01A1, U+01AF-01B0, U+01FA-01FF, U+0218-021B, U+0237, U+0259, U+1E80-1E85, U+1E9E, U+20A1, U+20A4, U+20A6, U+20A8-20AA, U+20AD-20AE, U+20B1-20B2, U+20B4-20B5, U+20B8-20BA, U+20BD, U+20BF;
20791
20921
  }
20792
20922
  @font-face {
20793
20923
  font-display: swap;
@@ -20795,7 +20925,7 @@ em {
20795
20925
  font-style: normal;
20796
20926
  font-weight: 400;
20797
20927
  src: url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-Regular-Latin1.woff2") format("woff2");
20798
- unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00A3, U+00A4-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2074, U+20AC, U+2122, U+2212, U+FB01-FB02;
20928
+ unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+20AC, U+2122, U+2212, U+FB01-FB02;
20799
20929
  }
20800
20930
  @font-face {
20801
20931
  font-display: swap;
@@ -20803,7 +20933,7 @@ em {
20803
20933
  font-style: italic;
20804
20934
  font-weight: 400;
20805
20935
  src: url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-Italic-Cyrillic.woff2") format("woff2");
20806
- unicode-range: U+0400-045F, U+0472-0473, U+0490-049D, U+04A0-04A5, U+04AA-04AB, U+04AE-04B3, U+04B6-04BB, U+04C0-04C2, U+04CF-04D9, U+04DC-04DF, U+04E2-04E9, U+04EE-04F5, U+04F8-04F9;
20936
+ unicode-range: U+0400-045F, U+0462-0463, U+046A-046B, U+0472-0475, U+0490-04C2, U+04CF-04D9, U+04DC-04E9, U+04EE-04F9, U+0524-0525;
20807
20937
  }
20808
20938
  @font-face {
20809
20939
  font-display: swap;
@@ -20811,7 +20941,7 @@ em {
20811
20941
  font-style: italic;
20812
20942
  font-weight: 400;
20813
20943
  src: url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-Italic-Pi.woff2") format("woff2");
20814
- unicode-range: U+0E3F, U+2032-2033, U+2070, U+2075-2079, U+2080-2081, U+2083, U+2085-2089, U+2113, U+2116, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+2713, U+274C, U+2B0E-2B11, U+EBE1-EBE7, U+ECE0, U+EFCC;
20944
+ unicode-range: U+0E3F, U+2000-200D, U+2015, U+2028-2029, U+202F, U+2032-2033, U+2070, U+2074-2079, U+2080-2089, U+2113, U+2116, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211, U+2215, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+2713, U+274C, U+2B0E-2B11, U+ECE0, U+EFCC, U+FEFF, U+FFFD;
20815
20945
  }
20816
20946
  @font-face {
20817
20947
  font-display: swap;
@@ -20819,7 +20949,7 @@ em {
20819
20949
  font-style: italic;
20820
20950
  font-weight: 400;
20821
20951
  src: url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-Italic-Latin3.woff2") format("woff2");
20822
- unicode-range: U+0102-0103, U+1EA0-1EF9, U+20AB;
20952
+ unicode-range: U+0102-0103, U+01CD-01DC, U+1EA0-1EF9, U+20AB;
20823
20953
  }
20824
20954
  @font-face {
20825
20955
  font-display: swap;
@@ -20827,7 +20957,7 @@ em {
20827
20957
  font-style: italic;
20828
20958
  font-weight: 400;
20829
20959
  src: url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-Italic-Latin2.woff2") format("woff2");
20830
- unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF, U+FB01-FB02;
20960
+ unicode-range: U+0100-0101, U+0104-0130, U+0132-0151, U+0154-017F, U+018F, U+0192, U+01A0-01A1, U+01AF-01B0, U+01FA-01FF, U+0218-021B, U+0237, U+0259, U+1E80-1E85, U+1E9E, U+20A1, U+20A4, U+20A6, U+20A8-20AA, U+20AD-20AE, U+20B1-20B2, U+20B4-20B5, U+20B8-20BA, U+20BD, U+20BF;
20831
20961
  }
20832
20962
  @font-face {
20833
20963
  font-display: swap;
@@ -20835,7 +20965,7 @@ em {
20835
20965
  font-style: italic;
20836
20966
  font-weight: 400;
20837
20967
  src: url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-Italic-Latin1.woff2") format("woff2");
20838
- unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00A3, U+00A4-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2074, U+20AC, U+2122, U+2212, U+FB01-FB02;
20968
+ unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+20AC, U+2122, U+2212, U+FB01-FB02;
20839
20969
  }
20840
20970
  @font-face {
20841
20971
  font-display: swap;
@@ -20843,7 +20973,7 @@ em {
20843
20973
  font-style: normal;
20844
20974
  font-weight: 600;
20845
20975
  src: url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-SemiBold-Cyrillic.woff2") format("woff2");
20846
- unicode-range: U+0400-045F, U+0472-0473, U+0490-049D, U+04A0-04A5, U+04AA-04AB, U+04AE-04B3, U+04B6-04BB, U+04C0-04C2, U+04CF-04D9, U+04DC-04DF, U+04E2-04E9, U+04EE-04F5, U+04F8-04F9;
20976
+ unicode-range: U+0400-045F, U+0462-0463, U+046A-046B, U+0472-0475, U+0490-04C2, U+04CF-04D9, U+04DC-04E9, U+04EE-04F9, U+0524-0525;
20847
20977
  }
20848
20978
  @font-face {
20849
20979
  font-display: swap;
@@ -20851,7 +20981,7 @@ em {
20851
20981
  font-style: normal;
20852
20982
  font-weight: 600;
20853
20983
  src: url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-SemiBold-Pi.woff2") format("woff2");
20854
- unicode-range: U+0E3F, U+2032-2033, U+2070, U+2075-2079, U+2080-2081, U+2083, U+2085-2089, U+2113, U+2116, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+2713, U+274C, U+2B0E-2B11, U+EBE1-EBE7, U+ECE0, U+EFCC;
20984
+ unicode-range: U+0E3F, U+2000-200D, U+2015, U+2028-2029, U+202F, U+2032-2033, U+2070, U+2074-2079, U+2080-2089, U+2113, U+2116, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211, U+2215, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+2713, U+274C, U+2B0E-2B11, U+ECE0, U+EFCC, U+FEFF, U+FFFD;
20855
20985
  }
20856
20986
  @font-face {
20857
20987
  font-display: swap;
@@ -20859,7 +20989,7 @@ em {
20859
20989
  font-style: normal;
20860
20990
  font-weight: 600;
20861
20991
  src: url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-SemiBold-Latin3.woff2") format("woff2");
20862
- unicode-range: U+0102-0103, U+1EA0-1EF9, U+20AB;
20992
+ unicode-range: U+0102-0103, U+01CD-01DC, U+1EA0-1EF9, U+20AB;
20863
20993
  }
20864
20994
  @font-face {
20865
20995
  font-display: swap;
@@ -20867,7 +20997,7 @@ em {
20867
20997
  font-style: normal;
20868
20998
  font-weight: 600;
20869
20999
  src: url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-SemiBold-Latin2.woff2") format("woff2");
20870
- unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF, U+FB01-FB02;
21000
+ unicode-range: U+0100-0101, U+0104-0130, U+0132-0151, U+0154-017F, U+018F, U+0192, U+01A0-01A1, U+01AF-01B0, U+01FA-01FF, U+0218-021B, U+0237, U+0259, U+1E80-1E85, U+1E9E, U+20A1, U+20A4, U+20A6, U+20A8-20AA, U+20AD-20AE, U+20B1-20B2, U+20B4-20B5, U+20B8-20BA, U+20BD, U+20BF;
20871
21001
  }
20872
21002
  @font-face {
20873
21003
  font-display: swap;
@@ -20875,7 +21005,7 @@ em {
20875
21005
  font-style: normal;
20876
21006
  font-weight: 600;
20877
21007
  src: url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-SemiBold-Latin1.woff2") format("woff2");
20878
- unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00A3, U+00A4-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2074, U+20AC, U+2122, U+2212, U+FB01-FB02;
21008
+ unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+20AC, U+2122, U+2212, U+FB01-FB02;
20879
21009
  }
20880
21010
  @font-face {
20881
21011
  font-display: swap;
@@ -20883,7 +21013,7 @@ em {
20883
21013
  font-style: italic;
20884
21014
  font-weight: 600;
20885
21015
  src: url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-SemiBoldItalic-Cyrillic.woff2") format("woff2");
20886
- unicode-range: U+0400-045F, U+0472-0473, U+0490-049D, U+04A0-04A5, U+04AA-04AB, U+04AE-04B3, U+04B6-04BB, U+04C0-04C2, U+04CF-04D9, U+04DC-04DF, U+04E2-04E9, U+04EE-04F5, U+04F8-04F9;
21016
+ unicode-range: U+0400-045F, U+0462-0463, U+046A-046B, U+0472-0475, U+0490-04C2, U+04CF-04D9, U+04DC-04E9, U+04EE-04F9, U+0524-0525;
20887
21017
  }
20888
21018
  @font-face {
20889
21019
  font-display: swap;
@@ -20891,7 +21021,7 @@ em {
20891
21021
  font-style: italic;
20892
21022
  font-weight: 600;
20893
21023
  src: url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-SemiBoldItalic-Pi.woff2") format("woff2");
20894
- unicode-range: U+0E3F, U+2032-2033, U+2070, U+2075-2079, U+2080-2081, U+2083, U+2085-2089, U+2113, U+2116, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+2713, U+274C, U+2B0E-2B11, U+EBE1-EBE7, U+ECE0, U+EFCC;
21024
+ unicode-range: U+0E3F, U+2000-200D, U+2015, U+2028-2029, U+202F, U+2032-2033, U+2070, U+2074-2079, U+2080-2089, U+2113, U+2116, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211, U+2215, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+2713, U+274C, U+2B0E-2B11, U+ECE0, U+EFCC, U+FEFF, U+FFFD;
20895
21025
  }
20896
21026
  @font-face {
20897
21027
  font-display: swap;
@@ -20899,7 +21029,7 @@ em {
20899
21029
  font-style: italic;
20900
21030
  font-weight: 600;
20901
21031
  src: url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-SemiBoldItalic-Latin3.woff2") format("woff2");
20902
- unicode-range: U+0102-0103, U+1EA0-1EF9, U+20AB;
21032
+ unicode-range: U+0102-0103, U+01CD-01DC, U+1EA0-1EF9, U+20AB;
20903
21033
  }
20904
21034
  @font-face {
20905
21035
  font-display: swap;
@@ -20907,7 +21037,7 @@ em {
20907
21037
  font-style: italic;
20908
21038
  font-weight: 600;
20909
21039
  src: url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-SemiBoldItalic-Latin2.woff2") format("woff2");
20910
- unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF, U+FB01-FB02;
21040
+ unicode-range: U+0100-0101, U+0104-0130, U+0132-0151, U+0154-017F, U+018F, U+0192, U+01A0-01A1, U+01AF-01B0, U+01FA-01FF, U+0218-021B, U+0237, U+0259, U+1E80-1E85, U+1E9E, U+20A1, U+20A4, U+20A6, U+20A8-20AA, U+20AD-20AE, U+20B1-20B2, U+20B4-20B5, U+20B8-20BA, U+20BD, U+20BF;
20911
21041
  }
20912
21042
  @font-face {
20913
21043
  font-display: swap;
@@ -20915,7 +21045,7 @@ em {
20915
21045
  font-style: italic;
20916
21046
  font-weight: 600;
20917
21047
  src: url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-SemiBoldItalic-Latin1.woff2") format("woff2");
20918
- unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00A3, U+00A4-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2074, U+20AC, U+2122, U+2212, U+FB01-FB02;
21048
+ unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+20AC, U+2122, U+2212, U+FB01-FB02;
20919
21049
  }
20920
21050
  @font-face {
20921
21051
  font-display: swap;
@@ -20923,7 +21053,7 @@ em {
20923
21053
  font-style: normal;
20924
21054
  font-weight: 300;
20925
21055
  src: url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff2/IBMPlexSerif-Light-Cyrillic.woff2") format("woff2");
20926
- unicode-range: U+0400-045F, U+0472-0473, U+0490-049D, U+04A0-04A5, U+04AA-04AB, U+04AE-04B3, U+04B6-04BB, U+04C0-04C2, U+04CF-04D9, U+04DC-04DF, U+04E2-04E9, U+04EE-04F5, U+04F8-04F9;
21056
+ unicode-range: U+0400-045F, U+0462-0463, U+046A-046B, U+0472-0475, U+0490-04C2, U+04CF-04D9, U+04DC-04E9, U+04EE-04F9, U+0524-0525;
20927
21057
  }
20928
21058
  @font-face {
20929
21059
  font-display: swap;
@@ -20931,7 +21061,7 @@ em {
20931
21061
  font-style: normal;
20932
21062
  font-weight: 300;
20933
21063
  src: url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff2/IBMPlexSerif-Light-Pi.woff2") format("woff2");
20934
- unicode-range: U+0E3F, U+2032-2033, U+2070, U+2075-2079, U+2080-2081, U+2083, U+2085-2089, U+2113, U+2116, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+2713, U+274C, U+2B0E-2B11, U+EBE1-EBE7, U+ECE0, U+EFCC;
21064
+ unicode-range: U+0E3F, U+2000-200D, U+2010-2012, U+2015, U+2028-2029, U+202F, U+2032-2033, U+2070, U+2074-2079, U+2080-2089, U+2113, U+2116, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211, U+2215, U+2219-221A, U+221E, U+222B, U+2236, U+2248, U+2260, U+2264-2265, U+25CA, U+2713, U+274C, U+2B0E-2B11, U+ECE0, U+EFCC, U+FEFF, U+FFFD;
20935
21065
  }
20936
21066
  @font-face {
20937
21067
  font-display: swap;
@@ -20939,7 +21069,7 @@ em {
20939
21069
  font-style: normal;
20940
21070
  font-weight: 300;
20941
21071
  src: url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff2/IBMPlexSerif-Light-Latin3.woff2") format("woff2");
20942
- unicode-range: U+0102-0103, U+1EA0-1EF9, U+20AB;
21072
+ unicode-range: U+0102-0103, U+01CD-01DC, U+1EA0-1EF9, U+20AB;
20943
21073
  }
20944
21074
  @font-face {
20945
21075
  font-display: swap;
@@ -20947,7 +21077,7 @@ em {
20947
21077
  font-style: normal;
20948
21078
  font-weight: 300;
20949
21079
  src: url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff2/IBMPlexSerif-Light-Latin2.woff2") format("woff2");
20950
- unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF, U+FB01-FB02;
21080
+ unicode-range: U+0100-0101, U+0104-0130, U+0132-0151, U+0154-017F, U+018F, U+0192, U+01A0-01A1, U+01AF-01B0, U+01FA-01FF, U+0218-021B, U+0237, U+0259, U+1E80-1E85, U+1E9E, U+20A1, U+20A4, U+20A6, U+20A8-20AA, U+20AD-20AE, U+20B1-20B2, U+20B4-20B5, U+20B8-20BA, U+20BD, U+20BF;
20951
21081
  }
20952
21082
  @font-face {
20953
21083
  font-display: swap;
@@ -20955,7 +21085,7 @@ em {
20955
21085
  font-style: normal;
20956
21086
  font-weight: 300;
20957
21087
  src: url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff2/IBMPlexSerif-Light-Latin1.woff2") format("woff2");
20958
- unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00A3, U+00A4-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2074, U+20AC, U+2122, U+2212, U+FB01-FB02;
21088
+ unicode-range: U+0020-007E, U+00A0-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+20AC, U+2122, U+2212, U+FB01-FB02;
20959
21089
  }
20960
21090
  @font-face {
20961
21091
  font-display: swap;
@@ -20963,7 +21093,7 @@ em {
20963
21093
  font-style: italic;
20964
21094
  font-weight: 300;
20965
21095
  src: url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff2/IBMPlexSerif-LightItalic-Cyrillic.woff2") format("woff2");
20966
- unicode-range: U+0400-045F, U+0472-0473, U+0490-049D, U+04A0-04A5, U+04AA-04AB, U+04AE-04B3, U+04B6-04BB, U+04C0-04C2, U+04CF-04D9, U+04DC-04DF, U+04E2-04E9, U+04EE-04F5, U+04F8-04F9;
21096
+ unicode-range: U+0400-045F, U+0462-0463, U+046A-046B, U+0472-0475, U+0490-04C2, U+04CF-04D9, U+04DC-04E9, U+04EE-04F9, U+0524-0525;
20967
21097
  }
20968
21098
  @font-face {
20969
21099
  font-display: swap;
@@ -20971,7 +21101,7 @@ em {
20971
21101
  font-style: italic;
20972
21102
  font-weight: 300;
20973
21103
  src: url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff2/IBMPlexSerif-LightItalic-Pi.woff2") format("woff2");
20974
- unicode-range: U+0E3F, U+2032-2033, U+2070, U+2075-2079, U+2080-2081, U+2083, U+2085-2089, U+2113, U+2116, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+2713, U+274C, U+2B0E-2B11, U+EBE1-EBE7, U+ECE0, U+EFCC;
21104
+ unicode-range: U+0E3F, U+2000-200D, U+2010-2012, U+2015, U+2028-2029, U+202F, U+2032-2033, U+2070, U+2074-2079, U+2080-2089, U+2113, U+2116, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211, U+2215, U+2219-221A, U+221E, U+222B, U+2236, U+2248, U+2260, U+2264-2265, U+25CA, U+2713, U+274C, U+2B0E-2B11, U+ECE0, U+EFCC, U+FEFF, U+FFFD;
20975
21105
  }
20976
21106
  @font-face {
20977
21107
  font-display: swap;
@@ -20979,7 +21109,7 @@ em {
20979
21109
  font-style: italic;
20980
21110
  font-weight: 300;
20981
21111
  src: url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff2/IBMPlexSerif-LightItalic-Latin3.woff2") format("woff2");
20982
- unicode-range: U+0102-0103, U+1EA0-1EF9, U+20AB;
21112
+ unicode-range: U+0102-0103, U+01CD-01DC, U+1EA0-1EF9, U+20AB;
20983
21113
  }
20984
21114
  @font-face {
20985
21115
  font-display: swap;
@@ -20987,7 +21117,7 @@ em {
20987
21117
  font-style: italic;
20988
21118
  font-weight: 300;
20989
21119
  src: url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff2/IBMPlexSerif-LightItalic-Latin2.woff2") format("woff2");
20990
- unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF, U+FB01-FB02;
21120
+ unicode-range: U+0100-0101, U+0104-0130, U+0132-0151, U+0154-017F, U+018F, U+0192, U+01A0-01A1, U+01AF-01B0, U+01FA-01FF, U+0218-021B, U+0237, U+0259, U+1E80-1E85, U+1E9E, U+20A1, U+20A4, U+20A6, U+20A8-20AA, U+20AD-20AE, U+20B1-20B2, U+20B4-20B5, U+20B8-20BA, U+20BD, U+20BF;
20991
21121
  }
20992
21122
  @font-face {
20993
21123
  font-display: swap;
@@ -20995,7 +21125,7 @@ em {
20995
21125
  font-style: italic;
20996
21126
  font-weight: 300;
20997
21127
  src: url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff2/IBMPlexSerif-LightItalic-Latin1.woff2") format("woff2");
20998
- unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00A3, U+00A4-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2074, U+20AC, U+2122, U+2212, U+FB01-FB02;
21128
+ unicode-range: U+0020-007E, U+00A0-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+20AC, U+2122, U+2212, U+FB01-FB02;
20999
21129
  }
21000
21130
  @font-face {
21001
21131
  font-display: swap;
@@ -21003,7 +21133,7 @@ em {
21003
21133
  font-style: normal;
21004
21134
  font-weight: 400;
21005
21135
  src: url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff2/IBMPlexSerif-Regular-Cyrillic.woff2") format("woff2");
21006
- unicode-range: U+0400-045F, U+0472-0473, U+0490-049D, U+04A0-04A5, U+04AA-04AB, U+04AE-04B3, U+04B6-04BB, U+04C0-04C2, U+04CF-04D9, U+04DC-04DF, U+04E2-04E9, U+04EE-04F5, U+04F8-04F9;
21136
+ unicode-range: U+0400-045F, U+0462-0463, U+046A-046B, U+0472-0475, U+0490-04C2, U+04CF-04D9, U+04DC-04E9, U+04EE-04F9, U+0524-0525;
21007
21137
  }
21008
21138
  @font-face {
21009
21139
  font-display: swap;
@@ -21011,7 +21141,7 @@ em {
21011
21141
  font-style: normal;
21012
21142
  font-weight: 400;
21013
21143
  src: url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff2/IBMPlexSerif-Regular-Pi.woff2") format("woff2");
21014
- unicode-range: U+0E3F, U+2032-2033, U+2070, U+2075-2079, U+2080-2081, U+2083, U+2085-2089, U+2113, U+2116, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+2713, U+274C, U+2B0E-2B11, U+EBE1-EBE7, U+ECE0, U+EFCC;
21144
+ unicode-range: U+0E3F, U+2000-200D, U+2010-2012, U+2015, U+2028-2029, U+202F, U+2032-2033, U+2070, U+2074-2079, U+2080-2089, U+2113, U+2116, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211, U+2215, U+2219-221A, U+221E, U+222B, U+2236, U+2248, U+2260, U+2264-2265, U+25CA, U+2713, U+274C, U+2B0E-2B11, U+ECE0, U+EFCC, U+FEFF, U+FFFD;
21015
21145
  }
21016
21146
  @font-face {
21017
21147
  font-display: swap;
@@ -21019,7 +21149,7 @@ em {
21019
21149
  font-style: normal;
21020
21150
  font-weight: 400;
21021
21151
  src: url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff2/IBMPlexSerif-Regular-Latin3.woff2") format("woff2");
21022
- unicode-range: U+0102-0103, U+1EA0-1EF9, U+20AB;
21152
+ unicode-range: U+0102-0103, U+01CD-01DC, U+1EA0-1EF9, U+20AB;
21023
21153
  }
21024
21154
  @font-face {
21025
21155
  font-display: swap;
@@ -21027,7 +21157,7 @@ em {
21027
21157
  font-style: normal;
21028
21158
  font-weight: 400;
21029
21159
  src: url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff2/IBMPlexSerif-Regular-Latin2.woff2") format("woff2");
21030
- unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF, U+FB01-FB02;
21160
+ unicode-range: U+0100-0101, U+0104-0130, U+0132-0151, U+0154-017F, U+018F, U+0192, U+01A0-01A1, U+01AF-01B0, U+01FA-01FF, U+0218-021B, U+0237, U+0259, U+1E80-1E85, U+1E9E, U+20A1, U+20A4, U+20A6, U+20A8-20AA, U+20AD-20AE, U+20B1-20B2, U+20B4-20B5, U+20B8-20BA, U+20BD, U+20BF;
21031
21161
  }
21032
21162
  @font-face {
21033
21163
  font-display: swap;
@@ -21035,7 +21165,7 @@ em {
21035
21165
  font-style: normal;
21036
21166
  font-weight: 400;
21037
21167
  src: url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff2/IBMPlexSerif-Regular-Latin1.woff2") format("woff2");
21038
- unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00A3, U+00A4-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2074, U+20AC, U+2122, U+2212, U+FB01-FB02;
21168
+ unicode-range: U+0020-007E, U+00A0-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+20AC, U+2122, U+2212, U+FB01-FB02;
21039
21169
  }
21040
21170
  @font-face {
21041
21171
  font-display: swap;
@@ -21043,7 +21173,7 @@ em {
21043
21173
  font-style: italic;
21044
21174
  font-weight: 400;
21045
21175
  src: url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff2/IBMPlexSerif-Italic-Cyrillic.woff2") format("woff2");
21046
- unicode-range: U+0400-045F, U+0472-0473, U+0490-049D, U+04A0-04A5, U+04AA-04AB, U+04AE-04B3, U+04B6-04BB, U+04C0-04C2, U+04CF-04D9, U+04DC-04DF, U+04E2-04E9, U+04EE-04F5, U+04F8-04F9;
21176
+ unicode-range: U+0400-045F, U+0462-0463, U+046A-046B, U+0472-0475, U+0490-04C2, U+04CF-04D9, U+04DC-04E9, U+04EE-04F9, U+0524-0525;
21047
21177
  }
21048
21178
  @font-face {
21049
21179
  font-display: swap;
@@ -21051,7 +21181,7 @@ em {
21051
21181
  font-style: italic;
21052
21182
  font-weight: 400;
21053
21183
  src: url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff2/IBMPlexSerif-Italic-Pi.woff2") format("woff2");
21054
- unicode-range: U+0E3F, U+2032-2033, U+2070, U+2075-2079, U+2080-2081, U+2083, U+2085-2089, U+2113, U+2116, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+2713, U+274C, U+2B0E-2B11, U+EBE1-EBE7, U+ECE0, U+EFCC;
21184
+ unicode-range: U+0E3F, U+2000-200D, U+2010-2012, U+2015, U+2028-2029, U+202F, U+2032-2033, U+2070, U+2074-2079, U+2080-2089, U+2113, U+2116, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211, U+2215, U+2219-221A, U+221E, U+222B, U+2236, U+2248, U+2260, U+2264-2265, U+25CA, U+2713, U+274C, U+2B0E-2B11, U+ECE0, U+EFCC, U+FEFF, U+FFFD;
21055
21185
  }
21056
21186
  @font-face {
21057
21187
  font-display: swap;
@@ -21059,7 +21189,7 @@ em {
21059
21189
  font-style: italic;
21060
21190
  font-weight: 400;
21061
21191
  src: url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff2/IBMPlexSerif-Italic-Latin3.woff2") format("woff2");
21062
- unicode-range: U+0102-0103, U+1EA0-1EF9, U+20AB;
21192
+ unicode-range: U+0102-0103, U+01CD-01DC, U+1EA0-1EF9, U+20AB;
21063
21193
  }
21064
21194
  @font-face {
21065
21195
  font-display: swap;
@@ -21067,7 +21197,7 @@ em {
21067
21197
  font-style: italic;
21068
21198
  font-weight: 400;
21069
21199
  src: url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff2/IBMPlexSerif-Italic-Latin2.woff2") format("woff2");
21070
- unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF, U+FB01-FB02;
21200
+ unicode-range: U+0100-0101, U+0104-0130, U+0132-0151, U+0154-017F, U+018F, U+0192, U+01A0-01A1, U+01AF-01B0, U+01FA-01FF, U+0218-021B, U+0237, U+0259, U+1E80-1E85, U+1E9E, U+20A1, U+20A4, U+20A6, U+20A8-20AA, U+20AD-20AE, U+20B1-20B2, U+20B4-20B5, U+20B8-20BA, U+20BD, U+20BF;
21071
21201
  }
21072
21202
  @font-face {
21073
21203
  font-display: swap;
@@ -21075,7 +21205,7 @@ em {
21075
21205
  font-style: italic;
21076
21206
  font-weight: 400;
21077
21207
  src: url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff2/IBMPlexSerif-Italic-Latin1.woff2") format("woff2");
21078
- unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00A3, U+00A4-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2074, U+20AC, U+2122, U+2212, U+FB01-FB02;
21208
+ unicode-range: U+0020-007E, U+00A0-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+20AC, U+2122, U+2212, U+FB01-FB02;
21079
21209
  }
21080
21210
  @font-face {
21081
21211
  font-display: swap;
@@ -21083,7 +21213,7 @@ em {
21083
21213
  font-style: normal;
21084
21214
  font-weight: 600;
21085
21215
  src: url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff2/IBMPlexSerif-SemiBold-Cyrillic.woff2") format("woff2");
21086
- unicode-range: U+0400-045F, U+0472-0473, U+0490-049D, U+04A0-04A5, U+04AA-04AB, U+04AE-04B3, U+04B6-04BB, U+04C0-04C2, U+04CF-04D9, U+04DC-04DF, U+04E2-04E9, U+04EE-04F5, U+04F8-04F9;
21216
+ unicode-range: U+0400-045F, U+0462-0463, U+046A-046B, U+0472-0475, U+0490-04C2, U+04CF-04D9, U+04DC-04E9, U+04EE-04F9, U+0524-0525;
21087
21217
  }
21088
21218
  @font-face {
21089
21219
  font-display: swap;
@@ -21091,7 +21221,7 @@ em {
21091
21221
  font-style: normal;
21092
21222
  font-weight: 600;
21093
21223
  src: url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff2/IBMPlexSerif-SemiBold-Pi.woff2") format("woff2");
21094
- unicode-range: U+0E3F, U+2032-2033, U+2070, U+2075-2079, U+2080-2081, U+2083, U+2085-2089, U+2113, U+2116, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+2713, U+274C, U+2B0E-2B11, U+EBE1-EBE7, U+ECE0, U+EFCC;
21224
+ unicode-range: U+0E3F, U+2000-200D, U+2010-2012, U+2015, U+2028-2029, U+202F, U+2032-2033, U+2070, U+2074-2079, U+2080-2089, U+2113, U+2116, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211, U+2215, U+2219-221A, U+221E, U+222B, U+2236, U+2248, U+2260, U+2264-2265, U+25CA, U+2713, U+274C, U+2B0E-2B11, U+ECE0, U+EFCC, U+FEFF, U+FFFD;
21095
21225
  }
21096
21226
  @font-face {
21097
21227
  font-display: swap;
@@ -21099,7 +21229,7 @@ em {
21099
21229
  font-style: normal;
21100
21230
  font-weight: 600;
21101
21231
  src: url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff2/IBMPlexSerif-SemiBold-Latin3.woff2") format("woff2");
21102
- unicode-range: U+0102-0103, U+1EA0-1EF9, U+20AB;
21232
+ unicode-range: U+0102-0103, U+01CD-01DC, U+1EA0-1EF9, U+20AB;
21103
21233
  }
21104
21234
  @font-face {
21105
21235
  font-display: swap;
@@ -21107,7 +21237,7 @@ em {
21107
21237
  font-style: normal;
21108
21238
  font-weight: 600;
21109
21239
  src: url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff2/IBMPlexSerif-SemiBold-Latin2.woff2") format("woff2");
21110
- unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF, U+FB01-FB02;
21240
+ unicode-range: U+0100-0101, U+0104-0130, U+0132-0151, U+0154-017F, U+018F, U+0192, U+01A0-01A1, U+01AF-01B0, U+01FA-01FF, U+0218-021B, U+0237, U+0259, U+1E80-1E85, U+1E9E, U+20A1, U+20A4, U+20A6, U+20A8-20AA, U+20AD-20AE, U+20B1-20B2, U+20B4-20B5, U+20B8-20BA, U+20BD, U+20BF;
21111
21241
  }
21112
21242
  @font-face {
21113
21243
  font-display: swap;
@@ -21115,7 +21245,7 @@ em {
21115
21245
  font-style: normal;
21116
21246
  font-weight: 600;
21117
21247
  src: url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff2/IBMPlexSerif-SemiBold-Latin1.woff2") format("woff2");
21118
- unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00A3, U+00A4-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2074, U+20AC, U+2122, U+2212, U+FB01-FB02;
21248
+ unicode-range: U+0020-007E, U+00A0-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+20AC, U+2122, U+2212, U+FB01-FB02;
21119
21249
  }
21120
21250
  @font-face {
21121
21251
  font-display: swap;
@@ -21123,7 +21253,7 @@ em {
21123
21253
  font-style: italic;
21124
21254
  font-weight: 600;
21125
21255
  src: url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff2/IBMPlexSerif-SemiBoldItalic-Cyrillic.woff2") format("woff2");
21126
- unicode-range: U+0400-045F, U+0472-0473, U+0490-049D, U+04A0-04A5, U+04AA-04AB, U+04AE-04B3, U+04B6-04BB, U+04C0-04C2, U+04CF-04D9, U+04DC-04DF, U+04E2-04E9, U+04EE-04F5, U+04F8-04F9;
21256
+ unicode-range: U+0400-045F, U+0462-0463, U+046A-046B, U+0472-0475, U+0490-04C2, U+04CF-04D9, U+04DC-04E9, U+04EE-04F9, U+0524-0525;
21127
21257
  }
21128
21258
  @font-face {
21129
21259
  font-display: swap;
@@ -21131,7 +21261,7 @@ em {
21131
21261
  font-style: italic;
21132
21262
  font-weight: 600;
21133
21263
  src: url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff2/IBMPlexSerif-SemiBoldItalic-Pi.woff2") format("woff2");
21134
- unicode-range: U+0E3F, U+2032-2033, U+2070, U+2075-2079, U+2080-2081, U+2083, U+2085-2089, U+2113, U+2116, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+2713, U+274C, U+2B0E-2B11, U+EBE1-EBE7, U+ECE0, U+EFCC;
21264
+ unicode-range: U+0E3F, U+2000-200D, U+2010-2012, U+2015, U+2028-2029, U+202F, U+2032-2033, U+2070, U+2074-2079, U+2080-2089, U+2113, U+2116, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211, U+2215, U+2219-221A, U+221E, U+222B, U+2236, U+2248, U+2260, U+2264-2265, U+25CA, U+2713, U+274C, U+2B0E-2B11, U+ECE0, U+EFCC, U+FEFF, U+FFFD;
21135
21265
  }
21136
21266
  @font-face {
21137
21267
  font-display: swap;
@@ -21139,7 +21269,7 @@ em {
21139
21269
  font-style: italic;
21140
21270
  font-weight: 600;
21141
21271
  src: url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff2/IBMPlexSerif-SemiBoldItalic-Latin3.woff2") format("woff2");
21142
- unicode-range: U+0102-0103, U+1EA0-1EF9, U+20AB;
21272
+ unicode-range: U+0102-0103, U+01CD-01DC, U+1EA0-1EF9, U+20AB;
21143
21273
  }
21144
21274
  @font-face {
21145
21275
  font-display: swap;
@@ -21147,7 +21277,7 @@ em {
21147
21277
  font-style: italic;
21148
21278
  font-weight: 600;
21149
21279
  src: url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff2/IBMPlexSerif-SemiBoldItalic-Latin2.woff2") format("woff2");
21150
- unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF, U+FB01-FB02;
21280
+ unicode-range: U+0100-0101, U+0104-0130, U+0132-0151, U+0154-017F, U+018F, U+0192, U+01A0-01A1, U+01AF-01B0, U+01FA-01FF, U+0218-021B, U+0237, U+0259, U+1E80-1E85, U+1E9E, U+20A1, U+20A4, U+20A6, U+20A8-20AA, U+20AD-20AE, U+20B1-20B2, U+20B4-20B5, U+20B8-20BA, U+20BD, U+20BF;
21151
21281
  }
21152
21282
  @font-face {
21153
21283
  font-display: swap;
@@ -21155,7 +21285,7 @@ em {
21155
21285
  font-style: italic;
21156
21286
  font-weight: 600;
21157
21287
  src: url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff2/IBMPlexSerif-SemiBoldItalic-Latin1.woff2") format("woff2");
21158
- unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00A3, U+00A4-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2074, U+20AC, U+2122, U+2212, U+FB01-FB02;
21288
+ unicode-range: U+0020-007E, U+00A0-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+20AC, U+2122, U+2212, U+FB01-FB02;
21159
21289
  }
21160
21290
  :root {
21161
21291
  --cds-layer: var(--cds-layer-01, #f4f4f4);
@@ -21407,6 +21537,7 @@ em {
21407
21537
  --cds-syntax-definition: #00539a;
21408
21538
  --cds-syntax-definition-keyword: #00539a;
21409
21539
  --cds-syntax-definition-operator: #00539a;
21540
+ --cds-syntax-deleted: #ffd7d9;
21410
21541
  --cds-syntax-deref-operator: #343a3f;
21411
21542
  --cds-syntax-doc-comment: #198038;
21412
21543
  --cds-syntax-doc-string: #161616;
@@ -21422,6 +21553,7 @@ em {
21422
21553
  --cds-syntax-heading-4: #00539a;
21423
21554
  --cds-syntax-heading-5: #00539a;
21424
21555
  --cds-syntax-heading-6: #00539a;
21556
+ --cds-syntax-inserted: #a7f0ba;
21425
21557
  --cds-syntax-integer: #198038;
21426
21558
  --cds-syntax-invalid: #da1e28;
21427
21559
  --cds-syntax-keyword: #0f62fe;
@@ -21738,6 +21870,7 @@ em {
21738
21870
  --cds-syntax-definition: #00539a;
21739
21871
  --cds-syntax-definition-keyword: #00539a;
21740
21872
  --cds-syntax-definition-operator: #00539a;
21873
+ --cds-syntax-deleted: #ffd7d9;
21741
21874
  --cds-syntax-deref-operator: #343a3f;
21742
21875
  --cds-syntax-doc-comment: #198038;
21743
21876
  --cds-syntax-doc-string: #161616;
@@ -21753,6 +21886,7 @@ em {
21753
21886
  --cds-syntax-heading-4: #00539a;
21754
21887
  --cds-syntax-heading-5: #00539a;
21755
21888
  --cds-syntax-heading-6: #00539a;
21889
+ --cds-syntax-inserted: #a7f0ba;
21756
21890
  --cds-syntax-integer: #198038;
21757
21891
  --cds-syntax-invalid: #da1e28;
21758
21892
  --cds-syntax-keyword: #0f62fe;
@@ -22069,6 +22203,7 @@ em {
22069
22203
  --cds-syntax-definition: #33b1ff;
22070
22204
  --cds-syntax-definition-keyword: #33b1ff;
22071
22205
  --cds-syntax-definition-operator: #33b1ff;
22206
+ --cds-syntax-deleted: #a2191f;
22072
22207
  --cds-syntax-deref-operator: #e0e0e0;
22073
22208
  --cds-syntax-doc-comment: #42be65;
22074
22209
  --cds-syntax-doc-string: #f4f4f4;
@@ -22084,6 +22219,7 @@ em {
22084
22219
  --cds-syntax-heading-4: #33b1ff;
22085
22220
  --cds-syntax-heading-5: #33b1ff;
22086
22221
  --cds-syntax-heading-6: #33b1ff;
22222
+ --cds-syntax-inserted: #198038;
22087
22223
  --cds-syntax-integer: #6fdc8c;
22088
22224
  --cds-syntax-invalid: #fa4d56;
22089
22225
  --cds-syntax-keyword: #4589ff;
@@ -22399,6 +22535,7 @@ em {
22399
22535
  --cds-syntax-definition: #33b1ff;
22400
22536
  --cds-syntax-definition-keyword: #33b1ff;
22401
22537
  --cds-syntax-definition-operator: #33b1ff;
22538
+ --cds-syntax-deleted: #a2191f;
22402
22539
  --cds-syntax-deref-operator: #e0e0e0;
22403
22540
  --cds-syntax-doc-comment: #42be65;
22404
22541
  --cds-syntax-doc-string: #f4f4f4;
@@ -22414,6 +22551,7 @@ em {
22414
22551
  --cds-syntax-heading-4: #33b1ff;
22415
22552
  --cds-syntax-heading-5: #33b1ff;
22416
22553
  --cds-syntax-heading-6: #33b1ff;
22554
+ --cds-syntax-inserted: #198038;
22417
22555
  --cds-syntax-integer: #6fdc8c;
22418
22556
  --cds-syntax-invalid: #fa4d56;
22419
22557
  --cds-syntax-keyword: #4589ff;
@@ -23064,7 +23202,7 @@ li.cds--accordion__item--disabled:last-of-type {
23064
23202
  inset-inline-end: calc(100% + 0.25rem);
23065
23203
  }
23066
23204
 
23067
- [dir=rtl] .cds--popover--bottom:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-content {
23205
+ .cds--popover--bottom:not(.cds--popover--auto-align):dir(rtl) > .cds--popover > .cds--popover-content {
23068
23206
  transform: translate(50%, calc(100% + var(--cds-popover-offset, 0rem)));
23069
23207
  }
23070
23208
 
@@ -23075,8 +23213,8 @@ li.cds--accordion__item--disabled:last-of-type {
23075
23213
  transform: translate(calc(-1 * var(--cds-popover-offset, 0rem)), calc(100% + var(--cds-popover-offset, 0rem)));
23076
23214
  }
23077
23215
 
23078
- [dir=rtl] .cds--popover--bottom-left:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-content,
23079
- [dir=rtl] .cds--popover--bottom-start:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-content {
23216
+ .cds--popover--bottom-left:not(.cds--popover--auto-align):dir(rtl) > .cds--popover > .cds--popover-content,
23217
+ .cds--popover--bottom-start:not(.cds--popover--auto-align):dir(rtl) > .cds--popover > .cds--popover-content {
23080
23218
  inset-inline-end: calc(50% - var(--cds-popover-offset, 0rem));
23081
23219
  inset-inline-start: initial;
23082
23220
  }
@@ -23088,8 +23226,8 @@ li.cds--accordion__item--disabled:last-of-type {
23088
23226
  transform: translate(var(--cds-popover-offset, 0rem), calc(100% + var(--cds-popover-offset, 0rem)));
23089
23227
  }
23090
23228
 
23091
- [dir=rtl] .cds--popover--bottom-right:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-content,
23092
- [dir=rtl] .cds--popover--bottom-end:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-content {
23229
+ .cds--popover--bottom-right:not(.cds--popover--auto-align):dir(rtl) > .cds--popover > .cds--popover-content,
23230
+ .cds--popover--bottom-end:not(.cds--popover--auto-align):dir(rtl) > .cds--popover > .cds--popover-content {
23093
23231
  inset-inline-start: calc(50% - var(--cds-popover-offset, 0rem));
23094
23232
  }
23095
23233
 
@@ -23144,11 +23282,11 @@ li.cds--accordion__item--disabled:last-of-type {
23144
23282
  inset-inline-start: 0.5px;
23145
23283
  }
23146
23284
 
23147
- [dir=rtl] .cds--popover--bottom > .cds--popover > .cds--popover-caret,
23148
- [dir=rtl] .cds--popover--bottom-left > .cds--popover > .cds--popover-caret,
23149
- [dir=rtl] .cds--popover--bottom-start > .cds--popover > .cds--popover-caret,
23150
- [dir=rtl] .cds--popover--bottom-right > .cds--popover > .cds--popover-caret,
23151
- [dir=rtl] .cds--popover--bottom-end > .cds--popover > .cds--popover-caret {
23285
+ .cds--popover--bottom:dir(rtl) > .cds--popover > .cds--popover-caret,
23286
+ .cds--popover--bottom-left:dir(rtl) > .cds--popover > .cds--popover-caret,
23287
+ .cds--popover--bottom-start:dir(rtl) > .cds--popover > .cds--popover-caret,
23288
+ .cds--popover--bottom-right:dir(rtl) > .cds--popover > .cds--popover-caret,
23289
+ .cds--popover--bottom-end:dir(rtl) > .cds--popover > .cds--popover-caret {
23152
23290
  transform: translate(50%, var(--cds-popover-offset, 0rem));
23153
23291
  }
23154
23292
 
@@ -23195,7 +23333,7 @@ li.cds--accordion__item--disabled:last-of-type {
23195
23333
  transform: translate(-50%, calc(-100% - var(--cds-popover-offset, 0rem)));
23196
23334
  }
23197
23335
 
23198
- [dir=rtl] .cds--popover--top:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-content {
23336
+ .cds--popover--top:not(.cds--popover--auto-align):dir(rtl) > .cds--popover > .cds--popover-content {
23199
23337
  transform: translate(50%, calc(-100% - var(--cds-popover-offset, 0rem)));
23200
23338
  }
23201
23339
 
@@ -23206,8 +23344,8 @@ li.cds--accordion__item--disabled:last-of-type {
23206
23344
  transform: translate(calc(-1 * var(--cds-popover-offset, 0rem)), calc(-100% - var(--cds-popover-offset, 0rem)));
23207
23345
  }
23208
23346
 
23209
- [dir=rtl] .cds--popover--top-left:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-content,
23210
- [dir=rtl] .cds--popover--top-start:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-content {
23347
+ .cds--popover--top-left:not(.cds--popover--auto-align):dir(rtl) > .cds--popover > .cds--popover-content,
23348
+ .cds--popover--top-start:not(.cds--popover--auto-align):dir(rtl) > .cds--popover > .cds--popover-content {
23211
23349
  inset-inline-end: calc(50% - var(--cds-popover-offset, 0rem));
23212
23350
  inset-inline-start: initial;
23213
23351
  }
@@ -23219,8 +23357,8 @@ li.cds--accordion__item--disabled:last-of-type {
23219
23357
  transform: translate(var(--cds-popover-offset, 0rem), calc(-100% - var(--cds-popover-offset, 0rem)));
23220
23358
  }
23221
23359
 
23222
- [dir=rtl] .cds--popover--top-right:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-content,
23223
- [dir=rtl] .cds--popover--top-end:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-content {
23360
+ .cds--popover--top-right:not(.cds--popover--auto-align):dir(rtl) > .cds--popover > .cds--popover-content,
23361
+ .cds--popover--top-end:not(.cds--popover--auto-align):dir(rtl) > .cds--popover > .cds--popover-content {
23224
23362
  inset-inline-start: calc(50% - var(--cds-popover-offset, 0rem));
23225
23363
  }
23226
23364
 
@@ -23275,11 +23413,11 @@ li.cds--accordion__item--disabled:last-of-type {
23275
23413
  inset-inline-start: 0.5px;
23276
23414
  }
23277
23415
 
23278
- [dir=rtl] .cds--popover--top:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret,
23279
- [dir=rtl] .cds--popover--top-left:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret,
23280
- [dir=rtl] .cds--popover--top-start:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret,
23281
- [dir=rtl] .cds--popover--top-right:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret,
23282
- [dir=rtl] .cds--popover--top-end:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret {
23416
+ .cds--popover--top:not(.cds--popover--auto-align):dir(rtl) > .cds--popover > .cds--popover-caret,
23417
+ .cds--popover--top-left:not(.cds--popover--auto-align):dir(rtl) > .cds--popover > .cds--popover-caret,
23418
+ .cds--popover--top-start:not(.cds--popover--auto-align):dir(rtl) > .cds--popover > .cds--popover-caret,
23419
+ .cds--popover--top-right:not(.cds--popover--auto-align):dir(rtl) > .cds--popover > .cds--popover-caret,
23420
+ .cds--popover--top-end:not(.cds--popover--auto-align):dir(rtl) > .cds--popover > .cds--popover-caret {
23283
23421
  transform: translate(50%, calc(-1 * var(--cds-popover-offset, 0rem)));
23284
23422
  }
23285
23423
 
@@ -23340,11 +23478,11 @@ li.cds--accordion__item--disabled:last-of-type {
23340
23478
  transform: translate(var(--cds-popover-offset, 0rem), calc(0.5 * var(--cds-popover-offset, 0rem) + 16px));
23341
23479
  }
23342
23480
 
23343
- [dir=rtl] .cds--popover--right:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-content,
23344
- [dir=rtl] .cds--popover--right-bottom:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-content,
23345
- [dir=rtl] .cds--popover--right-end:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-content,
23346
- [dir=rtl] .cds--popover--right-top:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-content,
23347
- [dir=rtl] .cds--popover--right-start:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-content {
23481
+ .cds--popover--right:not(.cds--popover--auto-align):dir(rtl) > .cds--popover > .cds--popover-content,
23482
+ .cds--popover--right-bottom:not(.cds--popover--auto-align):dir(rtl) > .cds--popover > .cds--popover-content,
23483
+ .cds--popover--right-end:not(.cds--popover--auto-align):dir(rtl) > .cds--popover > .cds--popover-content,
23484
+ .cds--popover--right-top:not(.cds--popover--auto-align):dir(rtl) > .cds--popover > .cds--popover-content,
23485
+ .cds--popover--right-start:not(.cds--popover--auto-align):dir(rtl) > .cds--popover > .cds--popover-content {
23348
23486
  inset-inline-end: 100%;
23349
23487
  inset-inline-start: initial;
23350
23488
  }
@@ -23381,11 +23519,11 @@ li.cds--accordion__item--disabled:last-of-type {
23381
23519
  inline-size: var(--cds-popover-caret-height, 0.375rem);
23382
23520
  }
23383
23521
 
23384
- [dir=rtl] .cds--popover--right:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret,
23385
- [dir=rtl] .cds--popover--right-top:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret,
23386
- [dir=rtl] .cds--popover--right-start:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret,
23387
- [dir=rtl] .cds--popover--right-bottom:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret,
23388
- [dir=rtl] .cds--popover--right-end:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret {
23522
+ .cds--popover--right:not(.cds--popover--auto-align):dir(rtl) > .cds--popover > .cds--popover-caret,
23523
+ .cds--popover--right-top:not(.cds--popover--auto-align):dir(rtl) > .cds--popover > .cds--popover-caret,
23524
+ .cds--popover--right-start:not(.cds--popover--auto-align):dir(rtl) > .cds--popover > .cds--popover-caret,
23525
+ .cds--popover--right-bottom:not(.cds--popover--auto-align):dir(rtl) > .cds--popover > .cds--popover-caret,
23526
+ .cds--popover--right-end:not(.cds--popover--auto-align):dir(rtl) > .cds--popover > .cds--popover-caret {
23389
23527
  inset-inline-end: 100%;
23390
23528
  inset-inline-start: initial;
23391
23529
  }
@@ -23407,11 +23545,11 @@ li.cds--accordion__item--disabled:last-of-type {
23407
23545
  inset-inline-start: 1px;
23408
23546
  }
23409
23547
 
23410
- [dir=rtl] .cds--popover--border.cds--popover--right:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret::after,
23411
- [dir=rtl] .cds--popover--border.cds--popover--right-top:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret::after,
23412
- [dir=rtl] .cds--popover--border.cds--popover--right-start:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret::after,
23413
- [dir=rtl] .cds--popover--border.cds--popover--right-bottom:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret::after,
23414
- [dir=rtl] .cds--popover--border.cds--popover--right-end:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret::after {
23548
+ .cds--popover--border.cds--popover--right:not(.cds--popover--auto-align):dir(rtl) > .cds--popover > .cds--popover-caret::after,
23549
+ .cds--popover--border.cds--popover--right-top:not(.cds--popover--auto-align):dir(rtl) > .cds--popover > .cds--popover-caret::after,
23550
+ .cds--popover--border.cds--popover--right-start:not(.cds--popover--auto-align):dir(rtl) > .cds--popover > .cds--popover-caret::after,
23551
+ .cds--popover--border.cds--popover--right-bottom:not(.cds--popover--auto-align):dir(rtl) > .cds--popover > .cds--popover-caret::after,
23552
+ .cds--popover--border.cds--popover--right-end:not(.cds--popover--auto-align):dir(rtl) > .cds--popover > .cds--popover-caret::after {
23415
23553
  inset-inline-start: -1px;
23416
23554
  }
23417
23555
 
@@ -23450,18 +23588,18 @@ li.cds--accordion__item--disabled:last-of-type {
23450
23588
  inset-inline-start: 1px;
23451
23589
  }
23452
23590
 
23453
- [dir=rtl] .cds--popover--border.cds--popover--right.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::before,
23454
- [dir=rtl] .cds--popover--border.cds--popover--right-top.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::before,
23455
- [dir=rtl] .cds--popover--border.cds--popover--right-start.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::before,
23456
- [dir=rtl] .cds--popover--border.cds--popover--right-bottom.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::before,
23457
- [dir=rtl] .cds--popover--border.cds--popover--right-end.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::before {
23591
+ .cds--popover--border.cds--popover--right.cds--popover--auto-align:dir(rtl) > .cds--popover > .cds--popover-content > .cds--popover-caret::before,
23592
+ .cds--popover--border.cds--popover--right-top.cds--popover--auto-align:dir(rtl) > .cds--popover > .cds--popover-content > .cds--popover-caret::before,
23593
+ .cds--popover--border.cds--popover--right-start.cds--popover--auto-align:dir(rtl) > .cds--popover > .cds--popover-content > .cds--popover-caret::before,
23594
+ .cds--popover--border.cds--popover--right-bottom.cds--popover--auto-align:dir(rtl) > .cds--popover > .cds--popover-content > .cds--popover-caret::before,
23595
+ .cds--popover--border.cds--popover--right-end.cds--popover--auto-align:dir(rtl) > .cds--popover > .cds--popover-content > .cds--popover-caret::before {
23458
23596
  margin-inline-start: 1px;
23459
23597
  }
23460
- [dir=rtl] .cds--popover--border.cds--popover--right.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::after,
23461
- [dir=rtl] .cds--popover--border.cds--popover--right-top.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::after,
23462
- [dir=rtl] .cds--popover--border.cds--popover--right-start.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::after,
23463
- [dir=rtl] .cds--popover--border.cds--popover--right-bottom.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::after,
23464
- [dir=rtl] .cds--popover--border.cds--popover--right-end.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::after {
23598
+ .cds--popover--border.cds--popover--right.cds--popover--auto-align:dir(rtl) > .cds--popover > .cds--popover-content > .cds--popover-caret::after,
23599
+ .cds--popover--border.cds--popover--right-top.cds--popover--auto-align:dir(rtl) > .cds--popover > .cds--popover-content > .cds--popover-caret::after,
23600
+ .cds--popover--border.cds--popover--right-start.cds--popover--auto-align:dir(rtl) > .cds--popover > .cds--popover-content > .cds--popover-caret::after,
23601
+ .cds--popover--border.cds--popover--right-bottom.cds--popover--auto-align:dir(rtl) > .cds--popover > .cds--popover-content > .cds--popover-caret::after,
23602
+ .cds--popover--border.cds--popover--right-end.cds--popover--auto-align:dir(rtl) > .cds--popover > .cds--popover-content > .cds--popover-caret::after {
23465
23603
  inset-inline-start: 0;
23466
23604
  }
23467
23605
 
@@ -23485,11 +23623,11 @@ li.cds--accordion__item--disabled:last-of-type {
23485
23623
  transform: translate(calc(-1 * var(--cds-popover-offset, 0rem)), calc(0.5 * var(--cds-popover-offset, 0rem) + 16px));
23486
23624
  }
23487
23625
 
23488
- [dir=rtl] .cds--popover--left:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-content,
23489
- [dir=rtl] .cds--popover--left-bottom:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-content,
23490
- [dir=rtl] .cds--popover--left-end:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-content,
23491
- [dir=rtl] .cds--popover--left-top:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-content,
23492
- [dir=rtl] .cds--popover--left-start:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-content {
23626
+ .cds--popover--left:not(.cds--popover--auto-align):dir(rtl) > .cds--popover > .cds--popover-content,
23627
+ .cds--popover--left-bottom:not(.cds--popover--auto-align):dir(rtl) > .cds--popover > .cds--popover-content,
23628
+ .cds--popover--left-end:not(.cds--popover--auto-align):dir(rtl) > .cds--popover > .cds--popover-content,
23629
+ .cds--popover--left-top:not(.cds--popover--auto-align):dir(rtl) > .cds--popover > .cds--popover-content,
23630
+ .cds--popover--left-start:not(.cds--popover--auto-align):dir(rtl) > .cds--popover > .cds--popover-content {
23493
23631
  inset-inline-end: initial;
23494
23632
  inset-inline-start: 100%;
23495
23633
  }
@@ -23526,11 +23664,11 @@ li.cds--accordion__item--disabled:last-of-type {
23526
23664
  inline-size: var(--cds-popover-caret-height, 0.375rem);
23527
23665
  }
23528
23666
 
23529
- [dir=rtl] .cds--popover--left:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret,
23530
- [dir=rtl] .cds--popover--left-top:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret,
23531
- [dir=rtl] .cds--popover--left-start:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret,
23532
- [dir=rtl] .cds--popover--left-bottom:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret,
23533
- [dir=rtl] .cds--popover--left-end:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret {
23667
+ .cds--popover--left:not(.cds--popover--auto-align):dir(rtl) > .cds--popover > .cds--popover-caret,
23668
+ .cds--popover--left-top:not(.cds--popover--auto-align):dir(rtl) > .cds--popover > .cds--popover-caret,
23669
+ .cds--popover--left-start:not(.cds--popover--auto-align):dir(rtl) > .cds--popover > .cds--popover-caret,
23670
+ .cds--popover--left-bottom:not(.cds--popover--auto-align):dir(rtl) > .cds--popover > .cds--popover-caret,
23671
+ .cds--popover--left-end:not(.cds--popover--auto-align):dir(rtl) > .cds--popover > .cds--popover-caret {
23534
23672
  inset-inline-end: initial;
23535
23673
  inset-inline-start: 100%;
23536
23674
  }
@@ -23552,11 +23690,11 @@ li.cds--accordion__item--disabled:last-of-type {
23552
23690
  inset-inline-start: -1px;
23553
23691
  }
23554
23692
 
23555
- [dir=rtl] .cds--popover--border.cds--popover--left:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret::after,
23556
- [dir=rtl] .cds--popover--border.cds--popover--left-top:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret::after,
23557
- [dir=rtl] .cds--popover--border.cds--popover--left-start:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret::after,
23558
- [dir=rtl] .cds--popover--border.cds--popover--left-bottom:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret::after,
23559
- [dir=rtl] .cds--popover--border.cds--popover--left-end:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-caret::after {
23693
+ .cds--popover--border.cds--popover--left:not(.cds--popover--auto-align):dir(rtl) > .cds--popover > .cds--popover-caret::after,
23694
+ .cds--popover--border.cds--popover--left-top:not(.cds--popover--auto-align):dir(rtl) > .cds--popover > .cds--popover-caret::after,
23695
+ .cds--popover--border.cds--popover--left-start:not(.cds--popover--auto-align):dir(rtl) > .cds--popover > .cds--popover-caret::after,
23696
+ .cds--popover--border.cds--popover--left-bottom:not(.cds--popover--auto-align):dir(rtl) > .cds--popover > .cds--popover-caret::after,
23697
+ .cds--popover--border.cds--popover--left-end:not(.cds--popover--auto-align):dir(rtl) > .cds--popover > .cds--popover-caret::after {
23560
23698
  inset-inline-start: 1px;
23561
23699
  }
23562
23700
 
@@ -23595,18 +23733,18 @@ li.cds--accordion__item--disabled:last-of-type {
23595
23733
  inset-inline-start: -1px;
23596
23734
  }
23597
23735
 
23598
- [dir=rtl] .cds--popover--border.cds--popover--left.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::before,
23599
- [dir=rtl] .cds--popover--border.cds--popover--left-top.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::before,
23600
- [dir=rtl] .cds--popover--border.cds--popover--left-start.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::before,
23601
- [dir=rtl] .cds--popover--border.cds--popover--left-bottom.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::before,
23602
- [dir=rtl] .cds--popover--border.cds--popover--left-end.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::before {
23736
+ .cds--popover--border.cds--popover--left.cds--popover--auto-align:dir(rtl) > .cds--popover > .cds--popover-content > .cds--popover-caret::before,
23737
+ .cds--popover--border.cds--popover--left-top.cds--popover--auto-align:dir(rtl) > .cds--popover > .cds--popover-content > .cds--popover-caret::before,
23738
+ .cds--popover--border.cds--popover--left-start.cds--popover--auto-align:dir(rtl) > .cds--popover > .cds--popover-content > .cds--popover-caret::before,
23739
+ .cds--popover--border.cds--popover--left-bottom.cds--popover--auto-align:dir(rtl) > .cds--popover > .cds--popover-content > .cds--popover-caret::before,
23740
+ .cds--popover--border.cds--popover--left-end.cds--popover--auto-align:dir(rtl) > .cds--popover > .cds--popover-content > .cds--popover-caret::before {
23603
23741
  margin-inline-start: -1px;
23604
23742
  }
23605
- [dir=rtl] .cds--popover--border.cds--popover--left.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::after,
23606
- [dir=rtl] .cds--popover--border.cds--popover--left-top.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::after,
23607
- [dir=rtl] .cds--popover--border.cds--popover--left-start.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::after,
23608
- [dir=rtl] .cds--popover--border.cds--popover--left-bottom.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::after,
23609
- [dir=rtl] .cds--popover--border.cds--popover--left-end.cds--popover--auto-align > .cds--popover > .cds--popover-content > .cds--popover-caret::after {
23743
+ .cds--popover--border.cds--popover--left.cds--popover--auto-align:dir(rtl) > .cds--popover > .cds--popover-content > .cds--popover-caret::after,
23744
+ .cds--popover--border.cds--popover--left-top.cds--popover--auto-align:dir(rtl) > .cds--popover > .cds--popover-content > .cds--popover-caret::after,
23745
+ .cds--popover--border.cds--popover--left-start.cds--popover--auto-align:dir(rtl) > .cds--popover > .cds--popover-content > .cds--popover-caret::after,
23746
+ .cds--popover--border.cds--popover--left-bottom.cds--popover--auto-align:dir(rtl) > .cds--popover > .cds--popover-content > .cds--popover-caret::after,
23747
+ .cds--popover--border.cds--popover--left-end.cds--popover--auto-align:dir(rtl) > .cds--popover > .cds--popover-content > .cds--popover-caret::after {
23610
23748
  inset-inline-start: 0;
23611
23749
  }
23612
23750
 
@@ -23616,15 +23754,15 @@ li.cds--accordion__item--disabled:last-of-type {
23616
23754
 
23617
23755
  .cds--popover--tab-tip.cds--popover--top-start:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-content,
23618
23756
  .cds--popover--tab-tip.cds--popover--bottom-start:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-content,
23619
- [dir=rtl] .cds--popover--tab-tip.cds--popover--top-end:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-content,
23620
- [dir=rtl] .cds--popover--tab-tip.cds--popover--bottom-end:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-content {
23757
+ .cds--popover--tab-tip.cds--popover--top-end:not(.cds--popover--auto-align):dir(rtl) > .cds--popover > .cds--popover-content,
23758
+ .cds--popover--tab-tip.cds--popover--bottom-end:not(.cds--popover--auto-align):dir(rtl) > .cds--popover > .cds--popover-content {
23621
23759
  inset-inline-start: 0;
23622
23760
  }
23623
23761
 
23624
23762
  .cds--popover--tab-tip.cds--popover--top-end:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-content,
23625
23763
  .cds--popover--tab-tip.cds--popover--bottom-end:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-content,
23626
- [dir=rtl] .cds--popover--tab-tip.cds--popover--top-start:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-content,
23627
- [dir=rtl] .cds--popover--tab-tip.cds--popover--bottom-start:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-content {
23764
+ .cds--popover--tab-tip.cds--popover--top-start:not(.cds--popover--auto-align):dir(rtl) > .cds--popover > .cds--popover-content,
23765
+ .cds--popover--tab-tip.cds--popover--bottom-start:not(.cds--popover--auto-align):dir(rtl) > .cds--popover > .cds--popover-content {
23628
23766
  inset-inline-end: 0;
23629
23767
  inset-inline-start: initial;
23630
23768
  }
@@ -23865,8 +24003,10 @@ li.cds--accordion__item--disabled:last-of-type {
23865
24003
  background-color: var(--cds-button-primary, #0f62fe);
23866
24004
  color: var(--cds-text-on-color, #ffffff);
23867
24005
  }
23868
- .cds--btn--primary:hover {
23869
- background-color: var(--cds-button-primary-hover, #0050e6);
24006
+ @media (any-hover: hover) {
24007
+ .cds--btn--primary:hover {
24008
+ background-color: var(--cds-button-primary-hover, #0050e6);
24009
+ }
23870
24010
  }
23871
24011
  .cds--btn--primary:focus {
23872
24012
  border-color: var(--cds-button-focus-color, var(--cds-focus, #0f62fe));
@@ -23890,8 +24030,10 @@ li.cds--accordion__item--disabled:last-of-type {
23890
24030
  background-color: var(--cds-button-secondary, #393939);
23891
24031
  color: var(--cds-text-on-color, #ffffff);
23892
24032
  }
23893
- .cds--btn--secondary:hover {
23894
- background-color: var(--cds-button-secondary-hover, #474747);
24033
+ @media (any-hover: hover) {
24034
+ .cds--btn--secondary:hover {
24035
+ background-color: var(--cds-button-secondary-hover, #474747);
24036
+ }
23895
24037
  }
23896
24038
  .cds--btn--secondary:focus {
23897
24039
  border-color: var(--cds-button-focus-color, var(--cds-focus, #0f62fe));
@@ -23915,8 +24057,10 @@ li.cds--accordion__item--disabled:last-of-type {
23915
24057
  background-color: transparent;
23916
24058
  color: var(--cds-button-tertiary, #0f62fe);
23917
24059
  }
23918
- .cds--btn--tertiary:hover {
23919
- background-color: var(--cds-button-tertiary-hover, #0050e6);
24060
+ @media (any-hover: hover) {
24061
+ .cds--btn--tertiary:hover {
24062
+ background-color: var(--cds-button-tertiary-hover, #0050e6);
24063
+ }
23920
24064
  }
23921
24065
  .cds--btn--tertiary:focus {
23922
24066
  border-color: var(--cds-button-focus-color, var(--cds-focus, #0f62fe));
@@ -23929,8 +24073,10 @@ li.cds--accordion__item--disabled:last-of-type {
23929
24073
  .cds--btn--tertiary .cds--btn__icon path:not([data-icon-path]):not([fill=none]) {
23930
24074
  fill: currentColor;
23931
24075
  }
23932
- .cds--btn--tertiary:hover {
23933
- color: var(--cds-text-inverse, #ffffff);
24076
+ @media (any-hover: hover) {
24077
+ .cds--btn--tertiary:hover {
24078
+ color: var(--cds-text-inverse, #ffffff);
24079
+ }
23934
24080
  }
23935
24081
  .cds--btn--tertiary:focus {
23936
24082
  background-color: var(--cds-button-tertiary, #0f62fe);
@@ -23954,8 +24100,10 @@ li.cds--accordion__item--disabled:last-of-type {
23954
24100
  background-color: transparent;
23955
24101
  color: var(--cds-link-primary, #0f62fe);
23956
24102
  }
23957
- .cds--btn--ghost:hover {
23958
- background-color: var(--cds-background-hover, rgba(141, 141, 141, 0.12));
24103
+ @media (any-hover: hover) {
24104
+ .cds--btn--ghost:hover {
24105
+ background-color: var(--cds-background-hover, rgba(141, 141, 141, 0.12));
24106
+ }
23959
24107
  }
23960
24108
  .cds--btn--ghost:focus {
23961
24109
  border-color: var(--cds-button-focus-color, var(--cds-focus, #0f62fe));
@@ -23976,11 +24124,14 @@ li.cds--accordion__item--disabled:last-of-type {
23976
24124
  align-self: center;
23977
24125
  margin-inline-start: 0.5rem;
23978
24126
  }
23979
- .cds--btn--ghost:hover, .cds--btn--ghost:active {
23980
- color: var(--cds-link-primary-hover, #0043ce);
24127
+ @media (hover: hover) {
24128
+ .cds--btn--ghost:hover {
24129
+ color: var(--cds-link-primary-hover, #0043ce);
24130
+ }
23981
24131
  }
23982
24132
  .cds--btn--ghost:active {
23983
24133
  background-color: var(--cds-background-active, rgba(141, 141, 141, 0.5));
24134
+ color: var(--cds-link-primary-hover, #0043ce);
23984
24135
  }
23985
24136
  .cds--btn--ghost:disabled, .cds--btn--ghost:hover:disabled, .cds--btn--ghost:focus:disabled, .cds--btn--ghost.cds--btn--disabled, .cds--btn--ghost.cds--btn--disabled:hover, .cds--btn--ghost.cds--btn--disabled:focus {
23986
24137
  border-color: transparent;
@@ -24065,8 +24216,10 @@ li.cds--accordion__item--disabled:last-of-type {
24065
24216
  background-color: var(--cds-button-danger-primary, #da1e28);
24066
24217
  color: var(--cds-text-on-color, #ffffff);
24067
24218
  }
24068
- .cds--btn--danger:hover {
24069
- background-color: var(--cds-button-danger-hover, #b81921);
24219
+ @media (any-hover: hover) {
24220
+ .cds--btn--danger:hover {
24221
+ background-color: var(--cds-button-danger-hover, #b81921);
24222
+ }
24070
24223
  }
24071
24224
  .cds--btn--danger:focus {
24072
24225
  border-color: var(--cds-button-focus-color, var(--cds-focus, #0f62fe));
@@ -24089,8 +24242,10 @@ li.cds--accordion__item--disabled:last-of-type {
24089
24242
  background-color: transparent;
24090
24243
  color: var(--cds-button-danger-secondary, #da1e28);
24091
24244
  }
24092
- .cds--btn--danger--tertiary:hover {
24093
- background-color: var(--cds-button-danger-hover, #b81921);
24245
+ @media (any-hover: hover) {
24246
+ .cds--btn--danger--tertiary:hover {
24247
+ background-color: var(--cds-button-danger-hover, #b81921);
24248
+ }
24094
24249
  }
24095
24250
  .cds--btn--danger--tertiary:focus {
24096
24251
  border-color: var(--cds-button-focus-color, var(--cds-focus, #0f62fe));
@@ -24103,9 +24258,11 @@ li.cds--accordion__item--disabled:last-of-type {
24103
24258
  .cds--btn--danger--tertiary .cds--btn__icon path:not([data-icon-path]):not([fill=none]) {
24104
24259
  fill: currentColor;
24105
24260
  }
24106
- .cds--btn--danger--tertiary:hover {
24107
- border-color: var(--cds-button-danger-hover, #b81921);
24108
- color: var(--cds-text-on-color, #ffffff);
24261
+ @media (hover: hover) {
24262
+ .cds--btn--danger--tertiary:hover {
24263
+ border-color: var(--cds-button-danger-hover, #b81921);
24264
+ color: var(--cds-text-on-color, #ffffff);
24265
+ }
24109
24266
  }
24110
24267
  .cds--btn--danger--tertiary:focus {
24111
24268
  background-color: var(--cds-button-danger-primary, #da1e28);
@@ -24128,8 +24285,10 @@ li.cds--accordion__item--disabled:last-of-type {
24128
24285
  background-color: transparent;
24129
24286
  color: var(--cds-button-danger-secondary, #da1e28);
24130
24287
  }
24131
- .cds--btn--danger--ghost:hover {
24132
- background-color: var(--cds-button-danger-hover, #b81921);
24288
+ @media (any-hover: hover) {
24289
+ .cds--btn--danger--ghost:hover {
24290
+ background-color: var(--cds-button-danger-hover, #b81921);
24291
+ }
24133
24292
  }
24134
24293
  .cds--btn--danger--ghost:focus {
24135
24294
  border-color: var(--cds-button-focus-color, var(--cds-focus, #0f62fe));
@@ -24149,7 +24308,12 @@ li.cds--accordion__item--disabled:last-of-type {
24149
24308
  position: static;
24150
24309
  margin-inline-start: 0.5rem;
24151
24310
  }
24152
- .cds--btn--danger--ghost:hover, .cds--btn--danger--ghost:active {
24311
+ @media (hover: hover) {
24312
+ .cds--btn--danger--ghost:hover {
24313
+ color: var(--cds-text-on-color, #ffffff);
24314
+ }
24315
+ }
24316
+ .cds--btn--danger--ghost:active {
24153
24317
  color: var(--cds-text-on-color, #ffffff);
24154
24318
  }
24155
24319
  .cds--btn--danger--ghost:disabled, .cds--btn--danger--ghost:hover:disabled, .cds--btn--danger--ghost:focus:disabled, .cds--btn--danger--ghost.cds--btn--disabled, .cds--btn--danger--ghost.cds--btn--disabled:hover, .cds--btn--danger--ghost.cds--btn--disabled:focus {
@@ -25247,6 +25411,11 @@ li.cds--accordion__item--disabled:last-of-type {
25247
25411
  .cds--slug .cds--toggletip-content {
25248
25412
  padding-block: 1.5rem 5rem;
25249
25413
  padding-inline: 1.5rem;
25414
+ --cds-button-focus-color: initial;
25415
+ --cds-link-text-color: initial;
25416
+ --cds-link-hover-text-color: initial;
25417
+ --cds-link-visited-text-color: initial;
25418
+ --cds-link-focus-text-color: initial;
25250
25419
  }
25251
25420
 
25252
25421
  .cds--ai-label .cds--ai-label-content .cds--toggletip-content,
@@ -26536,6 +26705,8 @@ input:not(output, [data-invalid]):-moz-ui-invalid {
26536
26705
  overflow: hidden;
26537
26706
  margin: 0.25rem 0 0;
26538
26707
  max-block-size: 0;
26708
+ overflow-wrap: break-word;
26709
+ word-break: break-word;
26539
26710
  }
26540
26711
 
26541
26712
  .cds--select--inline .cds--form__helper-text {
@@ -27660,7 +27831,7 @@ fieldset[disabled] .cds--form__helper-text {
27660
27831
  }
27661
27832
 
27662
27833
  .cds--text-input {
27663
- --cds-layout-size-height-local: clamp(max(var(--cds-layout-size-height-min), var(--cds-layout-size-height-sm)), var(--cds-layout-size-height, var(--cds-layout-size-height-md)), min(var(--cds-layout-size-height-max), var(--cds-layout-size-height-lg)));
27834
+ --cds-layout-size-height-local: clamp(max(var(--cds-layout-size-height-min), var(--cds-layout-size-height-xs)), var(--cds-layout-size-height, var(--cds-layout-size-height-md)), min(var(--cds-layout-size-height-max), var(--cds-layout-size-height-lg)));
27664
27835
  --cds-layout-density-padding-inline-local: clamp(var(--cds-layout-density-padding-inline-min), var(--cds-layout-density-padding-inline, var(--cds-layout-density-padding-inline-normal)), var(--cds-layout-density-padding-inline-max));
27665
27836
  box-sizing: border-box;
27666
27837
  padding: 0;
@@ -27706,15 +27877,7 @@ fieldset[disabled] .cds--form__helper-text {
27706
27877
  }
27707
27878
 
27708
27879
  .cds--password-input {
27709
- padding-inline-end: 2.5rem;
27710
- }
27711
-
27712
- .cds--text-input--sm.cds--password-input {
27713
- padding-inline-end: 2rem;
27714
- }
27715
-
27716
- .cds--text-input--lg.cds--password-input {
27717
- padding-inline-end: 3rem;
27880
+ padding-inline-end: var(--cds-layout-size-height-local);
27718
27881
  }
27719
27882
 
27720
27883
  .cds--text-input::placeholder {
@@ -27945,31 +28108,25 @@ fieldset[disabled] .cds--form__helper-text {
27945
28108
  justify-content: center;
27946
28109
  padding: 0;
27947
28110
  border: 0;
28111
+ aspect-ratio: 1;
27948
28112
  background: none;
27949
28113
  block-size: 100%;
27950
28114
  cursor: pointer;
27951
- inline-size: 2.5rem;
27952
28115
  inset-inline-end: 0;
27953
28116
  min-block-size: auto;
27954
28117
  transition: outline 70ms cubic-bezier(0.2, 0, 0.38, 0.9);
27955
28118
  }
27956
28119
 
27957
28120
  .cds--toggle-password-tooltip .cds--popover {
27958
- inset-inline-start: -2.5rem;
28121
+ --cds-layout-size-height-local: clamp(max(var(--cds-layout-size-height-min), var(--cds-layout-size-height-xs)), var(--cds-layout-size-height, var(--cds-layout-size-height-md)), min(var(--cds-layout-size-height-max), var(--cds-layout-size-height-lg)));
28122
+ gap: 0.25rem;
28123
+ inset-inline-start: calc(-1 * (var(--cds-layout-size-height-local)));
27959
28124
  }
27960
28125
 
27961
28126
  .cds--toggle-password-tooltip .cds--popover-content {
27962
28127
  min-inline-size: 2.5rem;
27963
28128
  }
27964
28129
 
27965
- .cds--text-input--sm + .cds--btn.cds--text-input--password__visibility__toggle.cds--tooltip__trigger {
27966
- inline-size: 2rem;
27967
- }
27968
-
27969
- .cds--text-input--lg + .cds--btn.cds--text-input--password__visibility__toggle.cds--tooltip__trigger {
27970
- inline-size: 3rem;
27971
- }
27972
-
27973
28130
  .cds--btn.cds--text-input--password__visibility__toggle.cds--tooltip__trigger svg {
27974
28131
  fill: var(--cds-icon-primary, #161616);
27975
28132
  }
@@ -27989,16 +28146,14 @@ fieldset[disabled] .cds--form__helper-text {
27989
28146
  padding-inline-end: 2.5rem;
27990
28147
  }
27991
28148
 
27992
- .cds--text-input--invalid.cds--password-input {
27993
- padding-inline-end: 4rem;
27994
- }
27995
-
27996
- .cds--text-input--invalid + .cds--text-input--password__visibility__toggle {
27997
- inset-inline-end: 1rem;
28149
+ .cds--text-input--invalid.cds--password-input,
28150
+ .cds--text-input--warning.cds--password-input {
28151
+ padding-inline-end: calc(var(--cds-layout-size-height-local) + 1.5rem);
27998
28152
  }
27999
28153
 
28000
28154
  .cds--password-input-wrapper .cds--text-input__invalid-icon {
28001
- inset-inline-end: 2.5rem;
28155
+ --cds-layout-size-height-local: clamp(max(var(--cds-layout-size-height-min), var(--cds-layout-size-height-xs)), var(--cds-layout-size-height, var(--cds-layout-size-height-md)), min(var(--cds-layout-size-height-max), var(--cds-layout-size-height-lg)));
28156
+ inset-inline-end: var(--cds-layout-size-height-local);
28002
28157
  }
28003
28158
 
28004
28159
  .cds--text-input:disabled ~ .cds--text-input--password__visibility__toggle.cds--tooltip__trigger {
@@ -28068,9 +28223,6 @@ fieldset[disabled] .cds--form__helper-text {
28068
28223
  .cds--text-input--invalid {
28069
28224
  box-shadow: none;
28070
28225
  }
28071
- .cds--text-input--invalid .cds--text-input--password__visibility__toggle {
28072
- inset-inline-end: 2.5rem;
28073
- }
28074
28226
 
28075
28227
  .cds--skeleton.cds--text-input {
28076
28228
  position: relative;
@@ -28196,36 +28348,39 @@ fieldset[disabled] .cds--form__helper-text {
28196
28348
  }
28197
28349
 
28198
28350
  .cds--text-input-wrapper.cds--text-input-wrapper--inline {
28199
- flex-flow: row wrap;
28351
+ flex-flow: row nowrap;
28352
+ align-items: center;
28200
28353
  }
28201
28354
 
28202
28355
  .cds--text-input-wrapper .cds--label--inline {
28203
- flex: 1;
28204
- margin: 0.8125rem 0 0 0;
28356
+ flex: 0 1 auto;
28357
+ margin: 0;
28205
28358
  overflow-wrap: break-word;
28206
28359
  word-break: break-word;
28207
28360
  }
28208
28361
 
28209
- .cds--text-input-wrapper .cds--label--inline--sm {
28210
- margin-block-start: 0.5625rem;
28211
- }
28212
-
28213
- .cds--text-input-wrapper .cds--label--inline--lg {
28214
- margin-block-start: 1.0625rem;
28215
- }
28216
-
28217
28362
  .cds--text-input__label-helper-wrapper {
28218
- flex: 2;
28363
+ flex: 0 1 auto;
28219
28364
  flex-direction: column;
28220
- margin-inline-end: 1.5rem;
28221
- max-inline-size: 8rem;
28365
+ max-inline-size: 8.875rem;
28222
28366
  overflow-wrap: break-word;
28223
28367
  }
28368
+ .cds--text-input__label-helper-wrapper:first-of-type {
28369
+ margin-inline-end: 0.5rem;
28370
+ }
28371
+ .cds--text-input__label-helper-wrapper:last-of-type {
28372
+ margin-inline-start: 0.5rem;
28373
+ }
28224
28374
 
28225
28375
  .cds--text-input-wrapper .cds--form__helper-text--inline {
28226
28376
  margin-block-start: 0.125rem;
28227
28377
  }
28228
28378
 
28379
+ .cds--text-input-wrapper--inline .cds--form__helper-text--inline,
28380
+ .cds--text-input-wrapper--inline .cds--form-requirement {
28381
+ margin: 0;
28382
+ }
28383
+
28229
28384
  .cds--text-input__field-outer-wrapper {
28230
28385
  display: flex;
28231
28386
  flex: 1 1 auto;
@@ -28272,9 +28427,9 @@ fieldset[disabled] .cds--form__helper-text {
28272
28427
  border-block-end-color: var(--cds-ai-border-strong, #4589ff);
28273
28428
  }
28274
28429
 
28275
- .cds--text-input__field-wrapper--decorator .cds--text-input:has(~ .cds--text-input__field-inner-wrapper--decorator > *),
28276
- .cds--text-input__field-wrapper--slug .cds--text-input:has(~ .cds--ai-label),
28277
- .cds--text-input__field-wrapper--slug .cds--text-input:has(~ .cds--slug) {
28430
+ .cds--text-input__field-wrapper--decorator .cds--text-input:not(.cds--text-input--invalid):not(.cds--text-input--warning):has(~ .cds--text-input__field-inner-wrapper--decorator > *),
28431
+ .cds--text-input__field-wrapper--slug .cds--text-input:not(.cds--text-input--invalid):not(.cds--text-input--warning):has(~ .cds--ai-label),
28432
+ .cds--text-input__field-wrapper--slug .cds--text-input:not(.cds--text-input--invalid):not(.cds--text-input--warning):has(~ .cds--slug) {
28278
28433
  padding-inline-end: 2.5rem;
28279
28434
  }
28280
28435
 
@@ -28287,14 +28442,26 @@ fieldset[disabled] .cds--form__helper-text {
28287
28442
  padding-inline-end: 4rem;
28288
28443
  }
28289
28444
 
28290
- .cds--text-input--invalid ~ .cds--text-input__field-inner-wrapper--decorator > *,
28291
- .cds--text-input--warning ~ .cds--text-input__field-inner-wrapper--decorator > *,
28292
- .cds--text-input--invalid ~ .cds--ai-label,
28293
- .cds--text-input--warning ~ .cds--ai-label,
28294
- .cds--text-input--invalid ~ .cds--slug,
28295
- .cds--text-input--warning ~ .cds--slug {
28445
+ .cds--text-input__field-wrapper--decorator .cds--text-input--invalid ~ .cds--text-input__invalid-icon,
28446
+ .cds--text-input__field-wrapper--decorator .cds--text-input--warning ~ .cds--text-input__invalid-icon,
28447
+ .cds--text-input__field-wrapper--slug .cds--text-input--invalid ~ .cds--text-input__invalid-icon,
28448
+ .cds--text-input__field-wrapper--slug .cds--text-input--warning ~ .cds--text-input__invalid-icon {
28296
28449
  inset-inline-end: 2.5rem;
28297
28450
  }
28451
+ .cds--text-input__field-wrapper--decorator .cds--text-input--invalid ~ .cds--text-input__field-inner-wrapper--decorator > *,
28452
+ .cds--text-input__field-wrapper--decorator .cds--text-input--warning ~ .cds--text-input__field-inner-wrapper--decorator > *,
28453
+ .cds--text-input__field-wrapper--decorator .cds--text-input--invalid ~ .cds--ai-label,
28454
+ .cds--text-input__field-wrapper--decorator .cds--text-input--warning ~ .cds--ai-label,
28455
+ .cds--text-input__field-wrapper--decorator .cds--text-input--invalid ~ .cds--slug,
28456
+ .cds--text-input__field-wrapper--decorator .cds--text-input--warning ~ .cds--slug,
28457
+ .cds--text-input__field-wrapper--slug .cds--text-input--invalid ~ .cds--text-input__field-inner-wrapper--decorator > *,
28458
+ .cds--text-input__field-wrapper--slug .cds--text-input--warning ~ .cds--text-input__field-inner-wrapper--decorator > *,
28459
+ .cds--text-input__field-wrapper--slug .cds--text-input--invalid ~ .cds--ai-label,
28460
+ .cds--text-input__field-wrapper--slug .cds--text-input--warning ~ .cds--ai-label,
28461
+ .cds--text-input__field-wrapper--slug .cds--text-input--invalid ~ .cds--slug,
28462
+ .cds--text-input__field-wrapper--slug .cds--text-input--warning ~ .cds--slug {
28463
+ inset-inline-end: 1rem;
28464
+ }
28298
28465
 
28299
28466
  .cds--text-input__field-wrapper--decorator .cds--text-input__field-inner-wrapper--decorator:not(:has(.cds--ai-label)) > * {
28300
28467
  block-size: 1rem;
@@ -28950,7 +29117,7 @@ fieldset[disabled] .cds--form__helper-text {
28950
29117
  max-inline-size: none;
28951
29118
  }
28952
29119
  .cds--list-box__wrapper--inline .cds--form-requirement {
28953
- grid-column: 2;
29120
+ grid-column: 3;
28954
29121
  }
28955
29122
 
28956
29123
  .cds--list-box html {
@@ -32228,11 +32395,21 @@ tr.cds--parent-row:not(.cds--expandable-row):not(:first-of-type) td.cds--table-c
32228
32395
  }
32229
32396
 
32230
32397
  .cds--search {
32398
+ --cds-layout-size-height-local: clamp(max(var(--cds-layout-size-height-min), var(--cds-layout-size-height-xs)), var(--cds-layout-size-height, var(--cds-layout-size-height-md)), min(var(--cds-layout-size-height-max), var(--cds-layout-size-height-lg)));
32231
32399
  position: relative;
32232
32400
  display: flex;
32233
32401
  align-items: center;
32234
32402
  inline-size: 100%;
32235
32403
  }
32404
+ .cds--search .cds--search-close,
32405
+ .cds--search ~ .cds--search-button {
32406
+ block-size: var(--cds-layout-size-height-local);
32407
+ inline-size: var(--cds-layout-size-height-local);
32408
+ }
32409
+ .cds--search.cds--search--expandable, .cds--search.cds--search--expandable .cds--search-magnifier {
32410
+ block-size: var(--cds-layout-size-height-local);
32411
+ inline-size: var(--cds-layout-size-height-local);
32412
+ }
32236
32413
 
32237
32414
  .cds--search .cds--label {
32238
32415
  position: absolute;
@@ -32248,6 +32425,8 @@ tr.cds--parent-row:not(.cds--expandable-row):not(:first-of-type) td.cds--table-c
32248
32425
  }
32249
32426
 
32250
32427
  .cds--search-input {
32428
+ --cds-layout-size-height-local: clamp(max(var(--cds-layout-size-height-min), var(--cds-layout-size-height-xs)), var(--cds-layout-size-height, var(--cds-layout-size-height-md)), min(var(--cds-layout-size-height-max), var(--cds-layout-size-height-lg)));
32429
+ --cds-layout-density-padding-inline-local: clamp(var(--cds-layout-density-padding-inline-min), var(--cds-layout-density-padding-inline, var(--cds-layout-density-padding-inline-normal)), var(--cds-layout-density-padding-inline-max));
32251
32430
  box-sizing: border-box;
32252
32431
  padding: 0;
32253
32432
  border: 0;
@@ -32269,10 +32448,11 @@ tr.cds--parent-row:not(.cds--expandable-row):not(:first-of-type) td.cds--table-c
32269
32448
  outline: 2px solid transparent;
32270
32449
  outline-offset: -2px;
32271
32450
  order: 1;
32272
- padding: 0 2.5rem;
32451
+ padding: 0 var(--cds-layout-size-height-local);
32273
32452
  border: none;
32274
32453
  appearance: none;
32275
32454
  background-color: var(--cds-field);
32455
+ block-size: var(--cds-layout-size-height-local);
32276
32456
  border-block-end: 1px solid var(--cds-border-strong);
32277
32457
  color: var(--cds-text-primary, #161616);
32278
32458
  inline-size: 100%;
@@ -32319,33 +32499,8 @@ tr.cds--parent-row:not(.cds--expandable-row):not(:first-of-type) td.cds--table-c
32319
32499
  background: var(--cds-field-02, #ffffff);
32320
32500
  }
32321
32501
 
32322
- .cds--search--sm .cds--search-input,
32323
- .cds--search--sm.cds--search--expandable.cds--search--expanded .cds--search-input {
32324
- padding: 0 2rem;
32325
- block-size: 2rem;
32326
- }
32327
-
32328
- .cds--search--sm .cds--search-magnifier-icon {
32329
- inset-inline-start: 0.5rem;
32330
- }
32331
-
32332
- .cds--search--md .cds--search-input,
32333
- .cds--search--md.cds--search--expandable.cds--search--expanded .cds--search-input {
32334
- padding: 0 2.5rem;
32335
- block-size: 2.5rem;
32336
- }
32337
-
32338
- .cds--search--md .cds--search-magnifier-icon {
32339
- inset-inline-start: 0.75rem;
32340
- }
32341
-
32342
- .cds--search--lg .cds--search-input,
32343
- .cds--search--lg.cds--search--expandable.cds--search--expanded .cds--search-input {
32344
- padding: 0 3rem;
32345
- block-size: 3rem;
32346
- }
32347
-
32348
32502
  .cds--search-magnifier-icon {
32503
+ --cds-layout-size-height-local: clamp(max(var(--cds-layout-size-height-min), var(--cds-layout-size-height-xs)), var(--cds-layout-size-height, var(--cds-layout-size-height-md)), min(var(--cds-layout-size-height-max), var(--cds-layout-size-height-lg)));
32349
32504
  box-sizing: border-box;
32350
32505
  padding: 0;
32351
32506
  border: 0;
@@ -32366,7 +32521,7 @@ tr.cds--parent-row:not(.cds--expandable-row):not(:first-of-type) td.cds--table-c
32366
32521
  fill: var(--cds-icon-secondary, #525252);
32367
32522
  inline-size: 1rem;
32368
32523
  inset-block-start: 50%;
32369
- inset-inline-start: 1rem;
32524
+ inset-inline-start: calc((var(--cds-layout-size-height-local) - 1rem) / 2);
32370
32525
  pointer-events: none;
32371
32526
  transform: translateY(-50%);
32372
32527
  }
@@ -32402,28 +32557,9 @@ tr.cds--parent-row:not(.cds--expandable-row):not(:first-of-type) td.cds--table-c
32402
32557
  inset-block-start: 0;
32403
32558
  inset-inline-end: 0;
32404
32559
  }
32405
- .cds--search-close::before {
32406
- position: absolute;
32407
- display: block;
32408
- background-color: var(--cds-field);
32409
- block-size: calc(100% - 2px);
32410
- content: "";
32411
- inline-size: 2px;
32412
- inset-block-start: 0.0625rem;
32413
- inset-inline-start: 0;
32414
- transition: background-color 110ms cubic-bezier(0.2, 0, 0.38, 0.9);
32415
- }
32416
- @media screen and (prefers-reduced-motion: reduce) {
32417
- .cds--search-close::before {
32418
- transition: none;
32419
- }
32420
- }
32421
32560
  .cds--search-close:hover {
32422
32561
  border-block-end: 1px solid var(--cds-border-strong);
32423
32562
  }
32424
- .cds--search-close:hover::before {
32425
- background-color: var(--cds-field-hover);
32426
- }
32427
32563
 
32428
32564
  .cds--search-button {
32429
32565
  flex-shrink: 0;
@@ -32436,23 +32572,25 @@ tr.cds--parent-row:not(.cds--expandable-row):not(:first-of-type) td.cds--table-c
32436
32572
  }
32437
32573
 
32438
32574
  .cds--search-close svg {
32575
+ position: relative;
32576
+ z-index: 1;
32439
32577
  fill: inherit;
32440
32578
  }
32441
32579
 
32442
32580
  .cds--search-close,
32443
32581
  .cds--search-button {
32582
+ --cds-layout-size-height-local: clamp(max(var(--cds-layout-size-height-min), var(--cds-layout-size-height-xs)), var(--cds-layout-size-height, var(--cds-layout-size-height-md)), min(var(--cds-layout-size-height-max), var(--cds-layout-size-height-lg)));
32444
32583
  display: flex;
32445
32584
  align-items: center;
32446
32585
  justify-content: center;
32447
- border-width: 1px 0;
32586
+ border-width: 0 0 1px;
32448
32587
  border-style: solid;
32449
32588
  border-color: transparent;
32450
- block-size: 2.5rem;
32589
+ block-size: var(--cds-layout-size-height-local);
32451
32590
  cursor: pointer;
32452
32591
  fill: var(--cds-icon-primary, #161616);
32453
- inline-size: 2.5rem;
32592
+ inline-size: var(--cds-layout-size-height-local);
32454
32593
  opacity: 1;
32455
- transition: opacity 110ms cubic-bezier(0.2, 0, 0.38, 0.9), background-color 110ms cubic-bezier(0.2, 0, 0.38, 0.9), outline 110ms cubic-bezier(0.2, 0, 0.38, 0.9), border 110ms cubic-bezier(0.2, 0, 0.38, 0.9);
32456
32594
  visibility: inherit;
32457
32595
  }
32458
32596
  .cds--search-close:hover,
@@ -32486,6 +32624,20 @@ tr.cds--parent-row:not(.cds--expandable-row):not(:first-of-type) td.cds--table-c
32486
32624
  background-color: var(--cds-background-selected, rgba(141, 141, 141, 0.2));
32487
32625
  }
32488
32626
 
32627
+ .cds--search-input:focus ~ .cds--search-close:hover {
32628
+ background-color: transparent;
32629
+ border-block-end-color: transparent;
32630
+ outline: none;
32631
+ }
32632
+ .cds--search-input:focus ~ .cds--search-close:hover::after {
32633
+ position: absolute;
32634
+ background-color: var(--cds-field-hover);
32635
+ content: "";
32636
+ inset-block: 0.125rem;
32637
+ inset-inline: 0 0.125rem;
32638
+ pointer-events: none;
32639
+ }
32640
+
32489
32641
  .cds--search--disabled .cds--search-close,
32490
32642
  .cds--search--disabled.cds--search--expandable .cds--search-magnifier {
32491
32643
  cursor: not-allowed;
@@ -32505,56 +32657,12 @@ tr.cds--parent-row:not(.cds--expandable-row):not(:first-of-type) td.cds--table-c
32505
32657
  fill: var(--cds-icon-on-color-disabled, #8d8d8d);
32506
32658
  }
32507
32659
 
32508
- .cds--search-close:focus::before,
32509
- .cds--search-close:active::before {
32510
- background-color: var(--cds-focus, #0f62fe);
32511
- }
32512
-
32513
- .cds--search-input:focus ~ .cds--search-close:hover {
32514
- outline: 2px solid var(--cds-focus, #0f62fe);
32515
- outline-offset: -2px;
32516
- }
32517
- @media screen and (prefers-contrast) {
32518
- .cds--search-input:focus ~ .cds--search-close:hover {
32519
- outline-style: dotted;
32520
- }
32521
- }
32522
-
32523
- .cds--search--sm .cds--search-close,
32524
- .cds--search--sm ~ .cds--search-button, .cds--search--sm.cds--search--expandable, .cds--search--sm.cds--search--expandable .cds--search-magnifier {
32525
- block-size: 2rem;
32526
- inline-size: 2rem;
32527
- }
32528
- .cds--search--sm.cds--search--expandable .cds--search-input::placeholder {
32529
- padding: 0 2rem;
32530
- }
32531
-
32532
- .cds--search--md .cds--search-close,
32533
- .cds--search--md ~ .cds--search-button, .cds--search--md.cds--search--expandable, .cds--search--md.cds--search--expandable .cds--search-magnifier {
32534
- block-size: 2.5rem;
32535
- inline-size: 2.5rem;
32536
- }
32537
- .cds--search--md.cds--search--expandable .cds--search-input::placeholder {
32538
- padding: 0 2.5rem;
32539
- }
32540
-
32541
- .cds--search--lg .cds--search-close,
32542
- .cds--search--lg ~ .cds--search-button, .cds--search--lg.cds--search--expandable, .cds--search--lg.cds--search--expandable .cds--search-magnifier {
32543
- block-size: 3rem;
32544
- inline-size: 3rem;
32545
- }
32546
- .cds--search--lg.cds--search--expandable .cds--search-input::placeholder {
32547
- padding: 0 3rem;
32548
- }
32549
-
32550
32660
  .cds--search-close--hidden {
32551
32661
  opacity: 0;
32552
32662
  visibility: hidden;
32553
32663
  }
32554
32664
 
32555
- .cds--search--lg.cds--skeleton .cds--search-input,
32556
- .cds--search--md.cds--skeleton .cds--search-input,
32557
- .cds--search--sm.cds--skeleton .cds--search-input {
32665
+ .cds--skeleton .cds--search-input {
32558
32666
  position: relative;
32559
32667
  padding: 0;
32560
32668
  border: none;
@@ -32562,20 +32670,12 @@ tr.cds--parent-row:not(.cds--expandable-row):not(:first-of-type) td.cds--table-c
32562
32670
  box-shadow: none;
32563
32671
  pointer-events: none;
32564
32672
  }
32565
- .cds--search--lg.cds--skeleton .cds--search-input:hover, .cds--search--lg.cds--skeleton .cds--search-input:focus, .cds--search--lg.cds--skeleton .cds--search-input:active,
32566
- .cds--search--md.cds--skeleton .cds--search-input:hover,
32567
- .cds--search--md.cds--skeleton .cds--search-input:focus,
32568
- .cds--search--md.cds--skeleton .cds--search-input:active,
32569
- .cds--search--sm.cds--skeleton .cds--search-input:hover,
32570
- .cds--search--sm.cds--skeleton .cds--search-input:focus,
32571
- .cds--search--sm.cds--skeleton .cds--search-input:active {
32673
+ .cds--skeleton .cds--search-input:hover, .cds--skeleton .cds--search-input:focus, .cds--skeleton .cds--search-input:active {
32572
32674
  border: none;
32573
32675
  cursor: default;
32574
32676
  outline: none;
32575
32677
  }
32576
- .cds--search--lg.cds--skeleton .cds--search-input::before,
32577
- .cds--search--md.cds--skeleton .cds--search-input::before,
32578
- .cds--search--sm.cds--skeleton .cds--search-input::before {
32678
+ .cds--skeleton .cds--search-input::before {
32579
32679
  position: absolute;
32580
32680
  animation: 3000ms ease-in-out cds--skeleton infinite;
32581
32681
  background: var(--cds-skeleton-element, #c6c6c6);
@@ -32586,33 +32686,23 @@ tr.cds--parent-row:not(.cds--expandable-row):not(:first-of-type) td.cds--table-c
32586
32686
  will-change: transform-origin, transform, opacity;
32587
32687
  }
32588
32688
  @media (prefers-reduced-motion: reduce) {
32589
- .cds--search--lg.cds--skeleton .cds--search-input::before,
32590
- .cds--search--md.cds--skeleton .cds--search-input::before,
32591
- .cds--search--sm.cds--skeleton .cds--search-input::before {
32689
+ .cds--skeleton .cds--search-input::before {
32592
32690
  animation: none;
32593
32691
  }
32594
32692
  }
32595
32693
  @media screen and (-ms-high-contrast: active), (forced-colors: active) {
32596
- .cds--search--lg.cds--skeleton .cds--search-input,
32597
- .cds--search--md.cds--skeleton .cds--search-input,
32598
- .cds--search--sm.cds--skeleton .cds--search-input {
32694
+ .cds--skeleton .cds--search-input {
32599
32695
  background: CanvasText;
32600
32696
  }
32601
- .cds--search--lg.cds--skeleton .cds--search-input::before,
32602
- .cds--search--md.cds--skeleton .cds--search-input::before,
32603
- .cds--search--sm.cds--skeleton .cds--search-input::before {
32697
+ .cds--skeleton .cds--search-input::before {
32604
32698
  background: Canvas;
32605
32699
  forced-color-adjust: none;
32606
32700
  }
32607
32701
  }
32608
- .cds--search--lg.cds--skeleton .cds--search-input,
32609
- .cds--search--md.cds--skeleton .cds--search-input,
32610
- .cds--search--sm.cds--skeleton .cds--search-input {
32702
+ .cds--skeleton .cds--search-input {
32611
32703
  inline-size: 100%;
32612
32704
  }
32613
- .cds--search--lg.cds--skeleton .cds--search-input::placeholder,
32614
- .cds--search--md.cds--skeleton .cds--search-input::placeholder,
32615
- .cds--search--sm.cds--skeleton .cds--search-input::placeholder {
32705
+ .cds--skeleton .cds--search-input::placeholder {
32616
32706
  color: transparent;
32617
32707
  }
32618
32708
 
@@ -32638,6 +32728,7 @@ tr.cds--parent-row:not(.cds--expandable-row):not(:first-of-type) td.cds--table-c
32638
32728
  }
32639
32729
 
32640
32730
  .cds--search--expandable.cds--search--expanded .cds--search-input {
32731
+ padding: 0 var(--cds-layout-size-height-local);
32641
32732
  inline-size: 100%;
32642
32733
  transition: padding 70ms cubic-bezier(0.2, 0, 0.38, 0.9);
32643
32734
  }
@@ -35011,6 +35102,8 @@ because the nesting selector cannot represent pseudo-elements. */
35011
35102
 
35012
35103
  .cds--dialog-container {
35013
35104
  display: grid;
35105
+ box-sizing: border-box;
35106
+ border: 1px solid var(--cds-border-subtle-01, #c6c6c6);
35014
35107
  background-color: var(--cds-layer);
35015
35108
  grid-template-areas: "header" "content" "footer";
35016
35109
  grid-template-columns: 100%;
@@ -35058,6 +35151,11 @@ because the nesting selector cannot represent pseudo-elements. */
35058
35151
  mask-image: none;
35059
35152
  }
35060
35153
 
35154
+ .cds--dialog-scroll-content.cds--dialog-scroll-content--no-fade,
35155
+ .cds--dialog-scroll-content--no-fade {
35156
+ mask-image: none;
35157
+ }
35158
+
35061
35159
  .cds--dialog-footer {
35062
35160
  display: flex;
35063
35161
  align-items: center;
@@ -35119,8 +35217,8 @@ because the nesting selector cannot represent pseudo-elements. */
35119
35217
  .cds--dropdown__wrapper--inline {
35120
35218
  display: inline-grid;
35121
35219
  align-items: center;
35122
- grid-gap: 0 1.5rem;
35123
- grid-template: auto/auto min-content;
35220
+ grid-gap: 0 0.5rem;
35221
+ grid-template: auto/auto min-content auto;
35124
35222
  }
35125
35223
  .cds--dropdown__wrapper--inline:has(.cds--label.cds--visually-hidden) {
35126
35224
  grid-template: auto/auto;
@@ -35137,7 +35235,7 @@ because the nesting selector cannot represent pseudo-elements. */
35137
35235
  margin: 0;
35138
35236
  }
35139
35237
  .cds--dropdown__wrapper--inline .cds--form-requirement {
35140
- grid-column: 2;
35238
+ grid-column: 3;
35141
35239
  }
35142
35240
 
35143
35241
  .cds--dropdown html {
@@ -38087,6 +38185,7 @@ button.cds--dropdown-text:focus {
38087
38185
  box-sizing: inherit;
38088
38186
  }
38089
38187
  .cds--select {
38188
+ --cds-layout-size-height-local: clamp(max(var(--cds-layout-size-height-min), var(--cds-layout-size-height-xs)), var(--cds-layout-size-height, var(--cds-layout-size-height-md)), min(var(--cds-layout-size-height-max), var(--cds-layout-size-height-lg)));
38090
38189
  position: relative;
38091
38190
  display: flex;
38092
38191
  flex-direction: column;
@@ -38108,12 +38207,14 @@ button.cds--dropdown-text:focus {
38108
38207
  letter-spacing: var(--cds-body-compact-01-letter-spacing, 0.16px);
38109
38208
  outline: 2px solid transparent;
38110
38209
  outline-offset: -2px;
38210
+ --cds-layout-size-height-local: clamp(max(var(--cds-layout-size-height-min), var(--cds-layout-size-height-xs)), var(--cds-layout-size-height, var(--cds-layout-size-height-md)), min(var(--cds-layout-size-height-max), var(--cds-layout-size-height-lg)));
38211
+ --cds-layout-density-padding-inline-local: clamp(var(--cds-layout-density-padding-inline-min), var(--cds-layout-density-padding-inline, var(--cds-layout-density-padding-inline-normal)), var(--cds-layout-density-padding-inline-max));
38111
38212
  display: block;
38112
38213
  border: none;
38113
38214
  border-radius: 0;
38114
38215
  appearance: none;
38115
38216
  background-color: var(--cds-field);
38116
- block-size: 2.5rem;
38217
+ block-size: var(--cds-layout-size-height-local);
38117
38218
  border-block-end: 1px solid var(--cds-border-strong);
38118
38219
  color: var(--cds-text-primary, #161616);
38119
38220
  cursor: pointer;
@@ -38163,16 +38264,6 @@ button.cds--dropdown-text:focus {
38163
38264
  cursor: not-allowed;
38164
38265
  }
38165
38266
 
38166
- .cds--select-input--sm {
38167
- block-size: 2rem;
38168
- max-block-size: 2rem;
38169
- }
38170
-
38171
- .cds--select-input--lg {
38172
- block-size: 3rem;
38173
- max-block-size: 3rem;
38174
- }
38175
-
38176
38267
  .cds--select--disabled .cds--label,
38177
38268
  .cds--select--disabled .cds--form__helper-text {
38178
38269
  color: var(--cds-text-disabled, rgba(22, 22, 22, 0.25));
@@ -38426,6 +38517,12 @@ optgroup.cds--select-optgroup:disabled,
38426
38517
  inset-inline-end: -1px;
38427
38518
  }
38428
38519
 
38520
+ .cds--select--decorator .cds--select-input__wrapper .cds--select-input ~ .cds--select__invalid-icon,
38521
+ .cds--select--slug .cds--select-input__wrapper[data-invalid] .cds--select-input ~ .cds--select__invalid-icon,
38522
+ .cds--select--slug .cds--select-input__wrapper .cds--select-input ~ .cds--select__invalid-icon {
38523
+ inset-inline-end: 5rem;
38524
+ }
38525
+
38429
38526
  .cds--select--decorator .cds--select-input:has(~ .cds--select__inner-wrapper--decorator),
38430
38527
  .cds--select--slug .cds--select-input:has(~ .cds--ai-label),
38431
38528
  .cds--select--slug .cds--select-input:has(~ .cds--slug) {
@@ -38452,12 +38549,6 @@ optgroup.cds--select-optgroup:disabled,
38452
38549
  display: block;
38453
38550
  }
38454
38551
 
38455
- .cds--select--decorator .cds--select-input__wrapper .cds--select-input ~ .cds--select__invalid-icon,
38456
- .cds--select--slug .cds--select-input__wrapper[data-invalid] .cds--select-input ~ .cds--select__invalid-icon,
38457
- .cds--select--slug .cds--select-input__wrapper .cds--select-input ~ .cds--select__invalid-icon {
38458
- inset-inline-end: 5rem;
38459
- }
38460
-
38461
38552
  .cds--select--fluid .cds--select {
38462
38553
  position: relative;
38463
38554
  background: var(--cds-field);
@@ -41187,8 +41278,10 @@ optgroup.cds--select-optgroup:disabled,
41187
41278
  background-color: transparent;
41188
41279
  color: var(--cds-notification-action-tertiary-inverse, #ffffff);
41189
41280
  }
41190
- .cds--actionable-notification:not(.cds--actionable-notification--low-contrast) .cds--actionable-notification__action-button.cds--btn--tertiary:hover {
41191
- background-color: var(--cds-notification-action-tertiary-inverse-hover, #f4f4f4);
41281
+ @media (any-hover: hover) {
41282
+ .cds--actionable-notification:not(.cds--actionable-notification--low-contrast) .cds--actionable-notification__action-button.cds--btn--tertiary:hover {
41283
+ background-color: var(--cds-notification-action-tertiary-inverse-hover, #f4f4f4);
41284
+ }
41192
41285
  }
41193
41286
  .cds--actionable-notification:not(.cds--actionable-notification--low-contrast) .cds--actionable-notification__action-button.cds--btn--tertiary:focus {
41194
41287
  border-color: var(--cds-button-focus-color, var(--cds-focus, #0f62fe));
@@ -41497,6 +41590,7 @@ optgroup.cds--select-optgroup:disabled,
41497
41590
  font-weight: var(--cds-body-compact-01-font-weight, 400);
41498
41591
  line-height: var(--cds-body-compact-01-line-height, 1.28572);
41499
41592
  letter-spacing: var(--cds-body-compact-01-letter-spacing, 0.16px);
41593
+ --cds-layout-size-height-local: clamp(max(var(--cds-layout-size-height-min), var(--cds-layout-size-height-xs)), var(--cds-layout-size-height, var(--cds-layout-size-height-md)), min(var(--cds-layout-size-height-max), var(--cds-layout-size-height-lg)));
41500
41594
  display: flex;
41501
41595
  overflow: initial;
41502
41596
  align-items: center;
@@ -41506,7 +41600,7 @@ optgroup.cds--select-optgroup:disabled,
41506
41600
  container-name: pagination;
41507
41601
  container-type: inline-size;
41508
41602
  inline-size: calc(100% - 1px);
41509
- min-block-size: 2.5rem;
41603
+ min-block-size: var(--cds-layout-size-height-local);
41510
41604
  }
41511
41605
  @container pagination (min-width: 42rem) {
41512
41606
  .cds--pagination .cds--pagination__control-buttons {
@@ -41526,14 +41620,6 @@ optgroup.cds--select-optgroup:disabled,
41526
41620
  }
41527
41621
  }
41528
41622
 
41529
- .cds--pagination--sm {
41530
- min-block-size: 2rem;
41531
- }
41532
-
41533
- .cds--pagination--lg {
41534
- min-block-size: 3rem;
41535
- }
41536
-
41537
41623
  .cds--pagination .cds--select {
41538
41624
  align-items: center;
41539
41625
  block-size: 100%;
@@ -41551,7 +41637,7 @@ optgroup.cds--select-optgroup:disabled,
41551
41637
  letter-spacing: var(--cds-body-compact-01-letter-spacing, 0.16px);
41552
41638
  block-size: 100%;
41553
41639
  inline-size: auto;
41554
- line-height: 2.5rem;
41640
+ line-height: var(--cds-layout-size-height-local);
41555
41641
  min-inline-size: auto;
41556
41642
  }
41557
41643
  @-moz-document url-prefix() {
@@ -41565,14 +41651,6 @@ optgroup.cds--select-optgroup:disabled,
41565
41651
  padding-inline: 1rem 2.25rem;
41566
41652
  }
41567
41653
 
41568
- .cds--pagination--sm .cds--select-input {
41569
- line-height: 2rem;
41570
- }
41571
-
41572
- .cds--pagination--lg .cds--select-input {
41573
- line-height: 3rem;
41574
- }
41575
-
41576
41654
  .cds--pagination .cds--select-input:hover {
41577
41655
  background: var(--cds-layer-hover);
41578
41656
  }
@@ -41650,11 +41728,11 @@ optgroup.cds--select-optgroup:disabled,
41650
41728
 
41651
41729
  span.cds--pagination__text {
41652
41730
  color: var(--cds-text-primary, #161616);
41653
- margin-inline-start: 1rem;
41654
41731
  }
41655
41732
 
41656
41733
  span.cds--pagination__text.cds--pagination__items-count {
41657
41734
  color: var(--cds-text-secondary, #525252);
41735
+ margin-inline-start: 1rem;
41658
41736
  }
41659
41737
 
41660
41738
  .cds--pagination__button,
@@ -41683,12 +41761,12 @@ span.cds--pagination__text.cds--pagination__items-count {
41683
41761
  border: none;
41684
41762
  margin: 0;
41685
41763
  background: none;
41686
- block-size: 2.5rem;
41764
+ block-size: var(--cds-layout-size-height-local);
41687
41765
  border-inline-start: 1px solid var(--cds-border-subtle);
41688
41766
  cursor: pointer;
41689
41767
  fill: var(--cds-icon-primary, #161616);
41690
- inline-size: 2.5rem;
41691
- min-block-size: 2rem;
41768
+ inline-size: var(--cds-layout-size-height-local);
41769
+ min-block-size: 1.5rem;
41692
41770
  transition: outline 110ms cubic-bezier(0.2, 0, 0.38, 0.9), background-color 110ms cubic-bezier(0.2, 0, 0.38, 0.9);
41693
41771
  }
41694
41772
 
@@ -41702,18 +41780,6 @@ span.cds--pagination__text.cds--pagination__items-count {
41702
41780
  transform: rotate(0.5turn);
41703
41781
  }
41704
41782
 
41705
- .cds--pagination--sm .cds--pagination__button,
41706
- .cds--pagination--sm .cds--btn--ghost.cds--pagination__button {
41707
- block-size: 2rem;
41708
- inline-size: 2rem;
41709
- }
41710
-
41711
- .cds--pagination--lg .cds--pagination__button,
41712
- .cds--pagination--lg .cds--btn--ghost.cds--pagination__button {
41713
- block-size: 3rem;
41714
- inline-size: 3rem;
41715
- }
41716
-
41717
41783
  .cds--pagination__button:focus,
41718
41784
  .cds--btn--ghost:focus.cds--pagination__button {
41719
41785
  outline: 2px solid var(--cds-focus, #0f62fe);