@fibery/ui-kit 1.26.3 → 1.26.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fibery/ui-kit",
3
- "version": "1.26.3",
3
+ "version": "1.26.4",
4
4
  "private": false,
5
5
  "files": [
6
6
  "src/antd/styles.ts",
@@ -377,7 +377,9 @@ export const themeColors = {
377
377
  // :hover
378
378
  colorBgMenuItemSelectedHover: [indigo.indigo6, indigoDark.indigo6],
379
379
  // :focus, :focus:hover
380
- colorBgObjectEditorSeparator: [slate.slate4, slateDark.slate4],
380
+ colorBgPinnedFieldsLabel: [slate.slate11, slateDark.slate11],
381
+ colorBgObjectEditorSeparator: [slate.slate12, slateDark.slate12],
382
+ colorBgObjectEditorSeparatorButton: [slate.slate4, slateDark.slate4],
381
383
  colorBgMenuItemSelectedFocused: [indigo.indigo6, indigoDark.indigo6],
382
384
  colorBgFieldEditorContainer: [slate.slate2, slateDark.slate3],
383
385
  colorBgFieldEditorLinkEqualSign: [slate.slate6, slateDark.slate2],
@@ -28,8 +28,10 @@ import {
28
28
  import {SelectControlSettingsProvider} from "./select-control-settings-context";
29
29
 
30
30
  const offset = [0, space.s4] as [number, number];
31
- const popupClassName = css`
31
+ const popupContainerClassName = css`
32
32
  z-index: 1050;
33
+ `;
34
+ const popupClassName = css`
33
35
  max-width: 360px;
34
36
  padding-top: ${space.s8}px;
35
37
  padding-bottom: ${space.s4}px;
@@ -277,6 +279,7 @@ function SelectInPopoverInner<Option, IsMulti extends boolean, Group extends Gro
277
279
  {Boolean(triggerElement) && (
278
280
  <Popup
279
281
  offset={offset}
282
+ popupContainerClassName={popupContainerClassName}
280
283
  popupClassName={cx(popupClassName, popupStyles)}
281
284
  placement="bottom-start"
282
285
  renderInPortal={renderInPortal}