@mindly/ui-components 5.96.1 → 5.97.1
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 +6 -6
- package/dist/cjs/lib2/features/EmptySpecialistListFeature/EmptySpecialistListFeature.d.ts +4 -0
- package/dist/cjs/lib2/features/EmptySpecialistListFeature/EmptySpecialistListFeature.stories.d.ts +7 -0
- package/dist/cjs/lib2/features/EmptySpecialistListFeature/index.d.ts +1 -0
- package/dist/cjs/lib2/features/EmptySpecialistListFeature/types.d.ts +7 -0
- package/dist/cjs/lib2/features/index.d.ts +1 -0
- package/dist/cjs/lib2/shared/assets/icons/IconExperience.d.ts +3 -0
- package/dist/cjs/lib2/shared/assets/icons/IconSpecialistsEnded.d.ts +3 -0
- package/dist/cjs/lib2/shared/assets/icons/index.d.ts +2 -0
- package/dist/cjs/lib2/shared/utils/filter.d.ts +1 -0
- package/dist/cjs/lib2/shared/utils/specialistStatus.d.ts +1 -1
- package/dist/cjs/lib2/widgets/SpecialistCardWidget/SpecialistCardWidget.stories.d.ts +6 -0
- package/dist/esm/index.js +6 -6
- package/dist/esm/lib2/features/EmptySpecialistListFeature/EmptySpecialistListFeature.d.ts +4 -0
- package/dist/esm/lib2/features/EmptySpecialistListFeature/EmptySpecialistListFeature.stories.d.ts +7 -0
- package/dist/esm/lib2/features/EmptySpecialistListFeature/index.d.ts +1 -0
- package/dist/esm/lib2/features/EmptySpecialistListFeature/types.d.ts +7 -0
- package/dist/esm/lib2/features/index.d.ts +1 -0
- package/dist/esm/lib2/shared/assets/icons/IconExperience.d.ts +3 -0
- package/dist/esm/lib2/shared/assets/icons/IconSpecialistsEnded.d.ts +3 -0
- package/dist/esm/lib2/shared/assets/icons/index.d.ts +2 -0
- package/dist/esm/lib2/shared/utils/filter.d.ts +1 -0
- package/dist/esm/lib2/shared/utils/specialistStatus.d.ts +1 -1
- package/dist/esm/lib2/widgets/SpecialistCardWidget/SpecialistCardWidget.stories.d.ts +6 -0
- package/dist/index.d.ts +16 -2
- package/package.json +1 -1
package/dist/cjs/lib2/features/EmptySpecialistListFeature/EmptySpecialistListFeature.stories.d.ts
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { Meta, StoryObj } from '@storybook/react';
|
|
2
|
+
import EmptySpecialistListFeature from './EmptySpecialistListFeature';
|
|
3
|
+
declare const meta: Meta<typeof EmptySpecialistListFeature>;
|
|
4
|
+
export default meta;
|
|
5
|
+
type Story = StoryObj<typeof EmptySpecialistListFeature>;
|
|
6
|
+
export declare const Default: Story;
|
|
7
|
+
export declare const End: Story;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as EmptySpecialistListFeature } from './EmptySpecialistListFeature';
|
|
@@ -2,4 +2,5 @@ import { FilterItem } from '../../widgets/FiltersWidget/types';
|
|
|
2
2
|
import { AllowFilterValueType, FilterValue } from '../types/filter';
|
|
3
3
|
export declare const getMappedFilterValue: (value?: FilterValue) => AllowFilterValueType[];
|
|
4
4
|
export declare const getFiltersValues: (filters: FilterItem[]) => Record<string, FilterValue>;
|
|
5
|
+
export declare const isFilterSet: (filtersValues: Record<string, FilterValue>) => boolean;
|
|
5
6
|
export declare const getFiltersQuery: (filters: Record<string, FilterValue>) => string;
|
|
@@ -3,4 +3,4 @@ export declare const isSpecialistActive: (specialist: Specialist) => boolean;
|
|
|
3
3
|
export declare const isSpecialistPublic: (specialist: Specialist) => boolean;
|
|
4
4
|
export declare const isSpecialistBlocked: (specialist: Specialist) => boolean;
|
|
5
5
|
export declare const isSuperSpecialist: (specialist: Specialist) => boolean;
|
|
6
|
-
export declare const isNewSpecialist: (specialist: Specialist) => boolean;
|
|
6
|
+
export declare const isNewSpecialist: (specialist: Specialist, skipSuperSpecialist?: boolean) => boolean;
|
|
@@ -9,3 +9,9 @@ export declare const AvarageMatch: Story;
|
|
|
9
9
|
export declare const IsAddedToFavourite: Story;
|
|
10
10
|
export declare const IsNewSpecialist: Story;
|
|
11
11
|
export declare const WithoutBadges: Story;
|
|
12
|
+
export declare const WithoutMatch: Story;
|
|
13
|
+
export declare const WithoutMatchAndRating: Story;
|
|
14
|
+
export declare const WithoutRatingAndExperience: Story;
|
|
15
|
+
export declare const WithoutExperience: Story;
|
|
16
|
+
export declare const WithSuperSpecialistAndNewSpecialist: Story;
|
|
17
|
+
export declare const WithSuperSpecialistAndNewSpecialistWithoutMatch: Story;
|