@mindly/ui-components 5.95.2 → 5.95.3

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.
@@ -1,5 +1,7 @@
1
1
  import { AriaTabListProps } from 'react-aria';
2
- type TabsProps<T> = AriaTabListProps<T>;
2
+ type TabsProps<T> = AriaTabListProps<T> & {
3
+ className?: string;
4
+ };
3
5
  export declare function Tabs<T extends Record<string, unknown>>(props: TabsProps<T>): JSX.Element;
4
6
  export declare namespace Tabs {
5
7
  var displayName: string;
@@ -0,0 +1,3 @@
1
+ import { Specialist } from '../types';
2
+ export type ContractStatus = 'pending' | 'not_signed' | 'expired' | 'expired_none' | 'none' | 'active';
3
+ export declare const getContractStatus: (specialist?: Specialist) => ContractStatus;
@@ -13,3 +13,4 @@ export declare const Future: Story;
13
13
  export declare const Loading: Story;
14
14
  export declare const SpecialistBlocked: Story;
15
15
  export declare const TrialSession: Story;
16
+ export declare const ContractNotValid: Story;
@@ -5,4 +5,5 @@ export default meta;
5
5
  type Story = StoryObj<typeof SessionsListWidget>;
6
6
  export declare const Default: Story;
7
7
  export declare const Loading: Story;
8
+ export declare const SmallAmount: Story;
8
9
  export declare const Empty: Story;
package/dist/index.d.ts CHANGED
@@ -2075,7 +2075,9 @@ type CollapsableTextProps = {
2075
2075
  };
2076
2076
  declare function CollapsableText({ t, text, size, fontWeight, }: CollapsableTextProps & TranslationType): JSX.Element;
2077
2077
 
2078
- type TabsProps<T> = AriaTabListProps<T>;
2078
+ type TabsProps<T> = AriaTabListProps<T> & {
2079
+ className?: string;
2080
+ };
2079
2081
  declare function Tabs$1<T extends Record<string, unknown>>(props: TabsProps<T>): JSX.Element;
2080
2082
  declare namespace Tabs$1 {
2081
2083
  var displayName: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mindly/ui-components",
3
- "version": "5.95.2",
3
+ "version": "5.95.3",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "clean": "rimraf dist",