@mindly/ui-components 6.5.4 → 6.5.6

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.
@@ -39,6 +39,7 @@ export type Specialist = {
39
39
  about?: string;
40
40
  areas_of_work: Array<string> | [];
41
41
  areas_of_work_by_client_problem: Array<string> | [];
42
+ localized_areas_of_work_by_client_problem: string[];
42
43
  therapy_description?: string;
43
44
  avatar_link?: string;
44
45
  time_zone: string;
@@ -18,6 +18,10 @@ export type SpecialistDetailWidgetProps = {
18
18
  onOpenContract?(): void;
19
19
  onRateSession?(): void;
20
20
  onEditSpecialistReview?: (review: Pick<SpecialistReview, 'id' | 'review_rating' | 'text_of_review'>) => Promise<void>;
21
+ areasOfWorkByClientProblem: {
22
+ names: string[];
23
+ label: string;
24
+ };
21
25
  events: {
22
26
  onSuperSpecialistArticleClick?(): void;
23
27
  onNewSpecialistArticleClick?(): void;
@@ -13,6 +13,10 @@ export type SpecialistDetailWithTabsWidgetProps = {
13
13
  currentUser?: UserType;
14
14
  presentingElement?: HTMLElement;
15
15
  onEditSpecialistReview?: (review: Pick<SpecialistReview, 'id' | 'review_rating' | 'text_of_review'>) => Promise<void>;
16
+ areasOfWorkByClientProblem: {
17
+ names: string[];
18
+ label: string;
19
+ };
16
20
  events: {
17
21
  onOpenSuperSpecialistArticle?(): void;
18
22
  onOpenNewSpecialistArticle?(): void;
package/dist/index.d.ts CHANGED
@@ -1597,6 +1597,7 @@ type Specialist = {
1597
1597
  about?: string;
1598
1598
  areas_of_work: Array<string> | [];
1599
1599
  areas_of_work_by_client_problem: Array<string> | [];
1600
+ localized_areas_of_work_by_client_problem: string[];
1600
1601
  therapy_description?: string;
1601
1602
  avatar_link?: string;
1602
1603
  time_zone: string;
@@ -4287,6 +4288,10 @@ type SpecialistDetailWidgetProps = {
4287
4288
  onOpenContract?(): void;
4288
4289
  onRateSession?(): void;
4289
4290
  onEditSpecialistReview?: (review: Pick<SpecialistReview$1, 'id' | 'review_rating' | 'text_of_review'>) => Promise<void>;
4291
+ areasOfWorkByClientProblem: {
4292
+ names: string[];
4293
+ label: string;
4294
+ };
4290
4295
  events: {
4291
4296
  onSuperSpecialistArticleClick?(): void;
4292
4297
  onNewSpecialistArticleClick?(): void;
@@ -4389,6 +4394,10 @@ type SpecialistDetailWithTabsWidgetProps = {
4389
4394
  currentUser?: UserType;
4390
4395
  presentingElement?: HTMLElement;
4391
4396
  onEditSpecialistReview?: (review: Pick<SpecialistReview$1, 'id' | 'review_rating' | 'text_of_review'>) => Promise<void>;
4397
+ areasOfWorkByClientProblem: {
4398
+ names: string[];
4399
+ label: string;
4400
+ };
4392
4401
  events: {
4393
4402
  onOpenSuperSpecialistArticle?(): void;
4394
4403
  onOpenNewSpecialistArticle?(): void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mindly/ui-components",
3
- "version": "6.5.4",
3
+ "version": "6.5.6",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "clean": "rimraf dist",