@aveonline/ui-react 2.17.0 → 2.19.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.d.ts +0 -1
- package/dist/tailwind.css +1 -1
- package/dist/ui/atoms/Icon/IIcon.d.ts +1 -1
- package/dist/ui/index.d.ts +0 -1
- package/dist/ui-react.mjs +7004 -7198
- package/package.json +1 -1
- package/dist/ui/molecules/Dropdowns/DropdownFilterPlain/DropdownFilterPlain.d.ts +0 -2
- package/dist/ui/molecules/Dropdowns/DropdownFilterPlain/IDropdownFilterPlain.d.ts +0 -27
- package/dist/ui/molecules/Dropdowns/DropdownFilterPlain/atoms/ListDropdownFilter.d.ts +0 -8
- package/dist/ui/molecules/Dropdowns/DropdownFilterPlain/atoms/PriceDropdownFilter.d.ts +0 -7
- package/dist/ui/molecules/Dropdowns/DropdownFilterPlain/atoms/RangeDropdownFilter.d.ts +0 -8
- package/dist/ui/molecules/Dropdowns/DropdownFilterPlain/index.d.ts +0 -2
package/package.json
CHANGED
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
import { IDropdownFilterPlain } from './IDropdownFilterPlain';
|
|
2
|
-
export default function DropdownFilterPlain({ classNameContainer, classNameButton, isSingleLineTitle, title, variantButton, isOpen, variantFilter, optionsFilterList, optionsFilterPrice, limitList, maxRange, minRange, valueRange, onSelected }: IDropdownFilterPlain): JSX.Element;
|
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
import { Variant as ButtonVariant } from '../../..';
|
|
2
|
-
declare type OptionDropdownFilterPlainList = {
|
|
3
|
-
label: string;
|
|
4
|
-
value: string | number;
|
|
5
|
-
};
|
|
6
|
-
declare type OptionDropdownFilterPlainPrice = {
|
|
7
|
-
label: string;
|
|
8
|
-
value: [string, string];
|
|
9
|
-
};
|
|
10
|
-
declare type IDropdownFilterPlain = {
|
|
11
|
-
classNameButton?: string;
|
|
12
|
-
classNameContainer?: string;
|
|
13
|
-
isSingleLineTitle?: boolean;
|
|
14
|
-
title: string;
|
|
15
|
-
variantButton?: ButtonVariant;
|
|
16
|
-
isOpen?: boolean;
|
|
17
|
-
variantFilter: 'list' | 'range' | 'price';
|
|
18
|
-
optionsFilterList?: OptionDropdownFilterPlainList[];
|
|
19
|
-
optionsFilterPrice?: OptionDropdownFilterPlainPrice[];
|
|
20
|
-
limitList?: number;
|
|
21
|
-
showCountSelected?: boolean;
|
|
22
|
-
minRange?: number;
|
|
23
|
-
maxRange?: number;
|
|
24
|
-
valueRange?: number;
|
|
25
|
-
onSelected: (value: string[]) => void;
|
|
26
|
-
};
|
|
27
|
-
export type { IDropdownFilterPlain, OptionDropdownFilterPlainPrice, OptionDropdownFilterPlainList };
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import { OptionDropdownFilterPlainList } from '../IDropdownFilterPlain';
|
|
2
|
-
interface IListDropdownFilter {
|
|
3
|
-
optionsFilterList: OptionDropdownFilterPlainList[];
|
|
4
|
-
limitList: number | undefined;
|
|
5
|
-
onSelected: (values: string[]) => void;
|
|
6
|
-
}
|
|
7
|
-
export default function ListDropdownFilter({ optionsFilterList, limitList, onSelected }: IListDropdownFilter): JSX.Element;
|
|
8
|
-
export {};
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import { OptionDropdownFilterPlainPrice } from '../IDropdownFilterPlain';
|
|
2
|
-
interface IPriceDropdownFilter {
|
|
3
|
-
onSelected: (value: string[]) => void;
|
|
4
|
-
optionsFilterPrice: OptionDropdownFilterPlainPrice[];
|
|
5
|
-
}
|
|
6
|
-
export default function PriceDropdownFilter({ optionsFilterPrice, onSelected }: IPriceDropdownFilter): JSX.Element;
|
|
7
|
-
export {};
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
interface IRangeDropdownFilter {
|
|
2
|
-
onSelected: (value: string[]) => void;
|
|
3
|
-
minRange?: number;
|
|
4
|
-
maxRange?: number;
|
|
5
|
-
valueRange?: number;
|
|
6
|
-
}
|
|
7
|
-
export default function RangeDropdownFilter({ valueRange, minRange, maxRange, onSelected }: IRangeDropdownFilter): JSX.Element;
|
|
8
|
-
export {};
|