@orfium/ictinus 5.29.2 → 5.29.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.
@@ -1,2 +1,3 @@
1
1
  export { default } from './Breadcrumb';
2
2
  export * from './Breadcrumb';
3
+ export * from './Breadcrumb.types';
@@ -1,5 +1,5 @@
1
- import { default as React } from 'react';
2
1
  import { FilterOption, FilterProps, MultiFilterProps, SingleFilterProps } from '../../Filter.types';
2
+ import { default as React } from 'react';
3
3
 
4
4
  type Props = Pick<FilterProps, 'isSearchable' | 'isLoading' | 'onClear' | 'onFilterDelete' | 'isVirtualized' | 'hasSelectAllOption' | 'dataTestPrefixId'> & {
5
5
  searchValue: string;
@@ -1,3 +1,5 @@
1
1
  import { Theme } from 'theme';
2
2
 
3
- export declare const menuStyle: () => (theme: Theme) => import('@emotion/utils').SerializedStyles;
3
+ export declare const menuStyle: ({ isMulti }: {
4
+ isMulti: any;
5
+ }) => (theme: Theme) => import('@emotion/utils').SerializedStyles;
@@ -7,8 +7,6 @@ export type PositionInScreenProps = {
7
7
  isVisible: boolean;
8
8
  /** Function to set the visibility of the item */
9
9
  setIsVisible: (visible: boolean) => void;
10
- /** Configures the container's overflow */
11
- isOverflowAllowed?: boolean;
12
10
  /** Whether the overlay is able to interact outside */
13
11
  isNonModal?: boolean;
14
12
  /** Whether the item to be positioned uses the parent's wrapper width */
@@ -20,10 +18,6 @@ export type PositionInScreenProps = {
20
18
  /** The parent element */
21
19
  parent: JSX.Element;
22
20
  placement?: 'top' | 'bottom';
23
- /** Sx prop to override specific properties */
24
- sx?: {
25
- container?: CSSObject;
26
- itemContainer?: CSSObject;
27
- };
21
+ sx?: CSSObject;
28
22
  };
29
23
  export declare const PositionInScreen: React.FCC<PositionInScreenProps>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@orfium/ictinus",
3
- "version": "5.29.2",
3
+ "version": "5.29.4",
4
4
  "type": "module",
5
5
  "main": "./dist/index.umd.cjs",
6
6
  "module": "./dist/index.js",
@@ -1,11 +0,0 @@
1
- import { SerializedStyles } from '@emotion/react';
2
- import { CSSObject } from '@emotion/serialize';
3
-
4
- export declare const container: (hasOverflow?: boolean, isVisible?: boolean, sx?: {
5
- container?: CSSObject;
6
- itemContainer?: CSSObject;
7
- }) => () => SerializedStyles;
8
- export declare const itemContainer: (clientX: number, clientY: number, width?: number, sx?: {
9
- container?: CSSObject;
10
- itemContainer?: CSSObject;
11
- }) => () => SerializedStyles;