@mindly/ui-components 8.2.3 → 8.2.5
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/cjs/index.js +4 -4
- package/dist/cjs/lib2/shared/assets/icons/IconEvening.d.ts +3 -0
- package/dist/cjs/lib2/shared/assets/icons/IconMorning.d.ts +3 -0
- package/dist/cjs/lib2/shared/assets/icons/IconSun.d.ts +3 -0
- package/dist/cjs/lib2/shared/assets/icons/index.d.ts +3 -0
- package/dist/cjs/lib2/shared/utils/filter.d.ts +4 -4
- package/dist/esm/index.js +4 -4
- package/dist/esm/lib2/shared/assets/icons/IconEvening.d.ts +3 -0
- package/dist/esm/lib2/shared/assets/icons/IconMorning.d.ts +3 -0
- package/dist/esm/lib2/shared/assets/icons/IconSun.d.ts +3 -0
- package/dist/esm/lib2/shared/assets/icons/index.d.ts +3 -0
- package/dist/esm/lib2/shared/utils/filter.d.ts +4 -4
- package/dist/index.d.ts +11 -5
- package/package.json +1 -1
|
@@ -25,6 +25,9 @@ export * from './IconResume';
|
|
|
25
25
|
export * from './IconSettings';
|
|
26
26
|
export * from './IconStar';
|
|
27
27
|
export * from './IconStarFilled';
|
|
28
|
+
export * from './IconMorning';
|
|
29
|
+
export * from './IconSun';
|
|
30
|
+
export * from './IconEvening';
|
|
28
31
|
export * from './IconSuccess';
|
|
29
32
|
export * from './IconTime';
|
|
30
33
|
export * from './IconVerifiedUser';
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { FilterItem } from '../../widgets/FiltersWidget/types';
|
|
2
2
|
import { AllowFilterValueType, FilterValue, Sort, SortDirection, SortKey, SortValue } from '../types/filter';
|
|
3
3
|
export declare const getMappedFilterValue: (value?: FilterValue) => AllowFilterValueType[];
|
|
4
|
-
export declare const getFiltersValues: (filters: FilterItem[]) => Record<string, FilterValue>;
|
|
5
|
-
export declare const isFilterSet: (filtersValues: Record<string, FilterValue>) => boolean;
|
|
6
|
-
export declare const getFilterCount: (filtersValues: Record<string, FilterValue>) => number;
|
|
7
|
-
export declare const getFiltersQuery: (filters: Record<string, FilterValue>) => string;
|
|
4
|
+
export declare const getFiltersValues: (filters: FilterItem[]) => Record<string, FilterValue | undefined>;
|
|
5
|
+
export declare const isFilterSet: (filtersValues: Record<string, FilterValue | undefined>) => boolean;
|
|
6
|
+
export declare const getFilterCount: (filtersValues: Record<string, FilterValue | undefined>) => number;
|
|
7
|
+
export declare const getFiltersQuery: (filters: Record<string, FilterValue | undefined>) => string;
|
|
8
8
|
export declare const getSortKey: (sort: SortValue, direction: SortDirection) => string;
|
|
9
9
|
export declare const getSortFromKey: (key: SortKey) => Sort;
|