@mindly/ui-components 8.10.1 → 8.11.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.
@@ -5,3 +5,4 @@ export default meta;
5
5
  type Story = StoryObj<typeof EmptySpecialistListFeature>;
6
6
  export declare const Default: Story;
7
7
  export declare const End: Story;
8
+ export declare const AvailableToday: Story;
@@ -2,6 +2,7 @@ import { WithTranslation } from 'react-i18next';
2
2
  export type EmptySpecialistListFeatureProps = {
3
3
  t?: WithTranslation['t'];
4
4
  className?: string;
5
- type?: 'empty' | 'end';
5
+ type?: 'empty' | 'end' | 'empty_available_today';
6
+ showIcon?: boolean;
6
7
  onChangeFiltersClick?: () => void;
7
8
  };
@@ -0,0 +1,7 @@
1
+ import * as React from 'react';
2
+ interface IconProps extends React.SVGAttributes<SVGElement> {
3
+ size?: number | string;
4
+ color?: string;
5
+ }
6
+ export declare function IconArticlePerson({ color, ...other }: IconProps): import("react/jsx-runtime").JSX.Element;
7
+ export {};
@@ -1,3 +1,4 @@
1
+ export * from './IconArticlePerson';
1
2
  export * from './IconArrowLeft';
2
3
  export * from './IconArrowRight';
3
4
  export * from './IconArrowUp';
@@ -11,3 +11,4 @@ export * from './useIsKeyboardShown';
11
11
  export * from './useDelayMount';
12
12
  export * from './useStopPropagationEvent';
13
13
  export * from './useScrollToElement';
14
+ export * from './useSwipe';
@@ -0,0 +1,15 @@
1
+ import { FC } from 'react';
2
+ export interface QuestionnaireAnswer {
3
+ question: string;
4
+ answers: string[];
5
+ }
6
+ export interface OnboardingAnswersContentProps {
7
+ isLoading: boolean;
8
+ requestLabels: string[];
9
+ questionnaireAnswers: QuestionnaireAnswer[];
10
+ requestTitle: string;
11
+ questionnaireTitle: string;
12
+ emptyText?: string;
13
+ className?: string;
14
+ }
15
+ export declare const OnboardingAnswersContent: FC<OnboardingAnswersContentProps>;
@@ -0,0 +1 @@
1
+ export * from './OnboardingAnswersContent';
@@ -57,3 +57,4 @@ export * from './SpecialistProfileViewCounter';
57
57
  export * from './NoticeCard';
58
58
  export * from './IconInfoCard';
59
59
  export * from './StepList';
60
+ export * from './OnboardingAnswersContent';