@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.
- package/dist/index.js +3072 -3079
- package/dist/index.umd.cjs +49 -49
- package/dist/src/components/Breadcrumb/index.d.ts +1 -0
- package/dist/src/components/Filter/components/FilterMenu/FilterMenu.d.ts +1 -1
- package/dist/src/components/Filter/components/FilterMenu/FilterMenu.style.d.ts +3 -1
- package/dist/src/components/utils/PositionInScreen/PositionInScreen.d.ts +1 -7
- package/package.json +1 -1
- package/dist/src/components/utils/PositionInScreen/PositionInScreen.style.d.ts +0 -11
|
@@ -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;
|
|
@@ -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
|
-
|
|
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,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;
|