@mindly/ui-components 8.5.3 → 8.5.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.
@@ -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 IconBusiness({ size, ...props }: IconProps): import("react/jsx-runtime").JSX.Element;
7
+ export {};
@@ -160,3 +160,4 @@ export * from './IconPhotoCamera';
160
160
  export * from './IconAccountBalance';
161
161
  export * from './IconVoiceMode';
162
162
  export * from './IconKeyboard';
163
+ export * from './IconBusiness';
@@ -4,6 +4,7 @@ type ItemProps = React.HTMLAttributes<HTMLIonItemElement> & {
4
4
  rightContent?: React.ReactNode;
5
5
  innerItemClassName?: string;
6
6
  withBorders?: boolean;
7
+ isHighlight?: boolean;
7
8
  isDisabled?: boolean;
8
9
  /** @deprecated Use `status` instead */
9
10
  isError?: boolean;
@@ -14,6 +15,7 @@ export declare const Item: React.ForwardRefExoticComponent<React.HTMLAttributes<
14
15
  rightContent?: React.ReactNode;
15
16
  innerItemClassName?: string;
16
17
  withBorders?: boolean;
18
+ isHighlight?: boolean;
17
19
  isDisabled?: boolean;
18
20
  /** @deprecated Use `status` instead */
19
21
  isError?: boolean;
@@ -1,9 +1,11 @@
1
1
  import * as React from 'react';
2
2
  type ListItemsProps = React.HTMLAttributes<HTMLIonListElement> & {
3
3
  withBorders?: boolean;
4
+ isHighlight?: boolean;
4
5
  };
5
6
  export declare const ListItems: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLIonListElement> & {
6
7
  withBorders?: boolean;
8
+ isHighlight?: boolean;
7
9
  } & {
8
10
  children?: React.ReactNode | undefined;
9
11
  } & React.RefAttributes<HTMLIonListElement>>;
@@ -5,6 +5,9 @@ export declare const listItemsStyles: import("tailwind-variants").TVReturnType<{
5
5
  isDisabled: {
6
6
  true: string;
7
7
  };
8
+ isHighlight: {
9
+ true: string;
10
+ };
8
11
  status: {
9
12
  error: string;
10
13
  attention: string;
@@ -22,6 +25,9 @@ export declare const listItemsStyles: import("tailwind-variants").TVReturnType<{
22
25
  isDisabled: {
23
26
  true: string;
24
27
  };
28
+ isHighlight: {
29
+ true: string;
30
+ };
25
31
  status: {
26
32
  error: string;
27
33
  attention: string;
@@ -39,6 +45,9 @@ export declare const listItemsStyles: import("tailwind-variants").TVReturnType<{
39
45
  isDisabled: {
40
46
  true: string;
41
47
  };
48
+ isHighlight: {
49
+ true: string;
50
+ };
42
51
  status: {
43
52
  error: string;
44
53
  attention: string;
@@ -0,0 +1,10 @@
1
+ import React, { SVGAttributes, FC } from 'react';
2
+ type SpecialistProfileViewCounterProps = {
3
+ countText: string;
4
+ className?: string;
5
+ icon?: FC<SVGAttributes<SVGElement>>;
6
+ iconSize?: number;
7
+ onClick?: () => void;
8
+ };
9
+ declare const SpecialistProfileViewCounter: React.FC<SpecialistProfileViewCounterProps>;
10
+ export default SpecialistProfileViewCounter;
@@ -0,0 +1,6 @@
1
+ import type { Meta, StoryObj } from '@storybook/react';
2
+ import SpecialistProfileViewCounter from './SpecialistProfileViewCounter';
3
+ declare const meta: Meta<typeof SpecialistProfileViewCounter>;
4
+ export default meta;
5
+ type Story = StoryObj<typeof SpecialistProfileViewCounter>;
6
+ export declare const Default: Story;
@@ -0,0 +1 @@
1
+ export { default as SpecialistProfileViewCounter } from './SpecialistProfileViewCounter';
@@ -51,3 +51,4 @@ export * from './PromptCard';
51
51
  export * from './ExploreCard';
52
52
  export * from './ProgressCard';
53
53
  export * from './Slider';
54
+ export * from './SpecialistProfileViewCounter';