@orfium/ictinus 5.26.0 → 5.28.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.
- package/dist/index.js +169 -168
- package/dist/index.umd.cjs +4 -4
- package/dist/src/components/Filter/components/FilterButton/FilterButton.d.ts +2 -2
- package/dist/src/components/Filter/components/FilterMenu/components/Options/Options.d.ts +1 -1
- package/dist/src/components/MultiTextFieldBase/MultiTextFieldBase.d.ts +2 -2
- package/dist/src/components/MultiTextFieldBase/hooks.d.ts +2 -2
- package/package.json +1 -1
|
@@ -1,8 +1,8 @@
|
|
|
1
|
+
import { EventButtonProps } from '../../../ButtonBase';
|
|
2
|
+
import { FilterProps } from '../../Filter.types';
|
|
1
3
|
import { default as React } from 'react';
|
|
2
4
|
import { CommonButtonProps } from '../../../../utils/common';
|
|
3
5
|
import { TestProps } from '../../../../utils/types';
|
|
4
|
-
import { EventButtonProps } from '../../../ButtonBase';
|
|
5
|
-
import { FilterProps } from '../../Filter.types';
|
|
6
6
|
|
|
7
7
|
export type FilterButtonProps = Pick<FilterProps, 'filterType' | 'isMulti'> & {
|
|
8
8
|
children?: React.ReactNode;
|
|
@@ -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
|
export type Props = Pick<FilterProps, 'items' | 'defaultValue' | 'isSearchable' | 'isVirtualized' | 'hasSelectAllOption' | 'dataTestPrefixId'> & (SingleFilterProps | MultiFilterProps) & {
|
|
5
5
|
onOptionSelect: (option: FilterOption) => void;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { default as React } from 'react';
|
|
2
|
-
import { TestProps } from '../../utils/types';
|
|
3
1
|
import { SelectOption } from '../Select';
|
|
4
2
|
import { TextFieldProps } from '../TextField/TextField';
|
|
3
|
+
import { default as React } from 'react';
|
|
4
|
+
import { TestProps } from '../../utils/types';
|
|
5
5
|
|
|
6
6
|
export type Props = {
|
|
7
7
|
/** the values of the MultiTextField if MultiTextField is controlled */
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { default as React } from 'react';
|
|
2
|
-
import { Props as MultiTextFieldBase } from './MultiTextFieldBase';
|
|
3
|
-
import { SelectOption } from '../Select';
|
|
4
2
|
import { TextFieldProps } from '../TextField/TextField';
|
|
3
|
+
import { SelectOption } from '../Select';
|
|
4
|
+
import { Props as MultiTextFieldBase } from './MultiTextFieldBase';
|
|
5
5
|
|
|
6
6
|
type Props = {
|
|
7
7
|
hasValue: boolean;
|