@mindly/ui-components 5.28.1 → 5.29.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.
@@ -0,0 +1,10 @@
1
+ import { FC } from 'react';
2
+ import { WithTranslation } from 'react-i18next';
3
+ type CountdownTimerFeatureProps = {
4
+ minutes: number;
5
+ seconds: number;
6
+ onCompleted?: () => void;
7
+ t?: WithTranslation['t'];
8
+ };
9
+ declare const CountdownTimerFeature: FC<CountdownTimerFeatureProps>;
10
+ export default CountdownTimerFeature;
@@ -0,0 +1,6 @@
1
+ import type { Meta, StoryObj } from '@storybook/react';
2
+ import CountdownTimerFeature from './CountdownTimerFeature';
3
+ declare const meta: Meta<typeof CountdownTimerFeature>;
4
+ export default meta;
5
+ type Story = StoryObj<typeof CountdownTimerFeature>;
6
+ export declare const Default: Story;
@@ -0,0 +1 @@
1
+ export { default as CountdownTimerFeature } from './CountdownTimerFeature';
@@ -6,3 +6,4 @@ export * from './PushNotificationsModal';
6
6
  export * from './PushNotificationsIsDisabledBanner';
7
7
  export * from './SpecialistShortInfoItemFeature';
8
8
  export * from './SpecialistInfoColumnFeature';
9
+ export * from './CountdownTimerFeature';
@@ -3,6 +3,7 @@ type ProgressBar_v2Props = {
3
3
  variant?: 'default' | 'danger' | 'success';
4
4
  progress: number;
5
5
  className?: string;
6
+ reversed?: boolean;
6
7
  };
7
8
  declare const _default: React.NamedExoticComponent<ProgressBar_v2Props>;
8
9
  export default _default;