@mindly/ui-components 5.69.0 → 5.69.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.
|
@@ -6,12 +6,12 @@ type Tabs = {
|
|
|
6
6
|
behavior: 'tax-country' | 'profile-lang';
|
|
7
7
|
localeOrCountry: `${SupportedLangs}` | SupportedCountryLocale;
|
|
8
8
|
t: WithTranslation['t'];
|
|
9
|
-
jsonTree: TreeNode[];
|
|
9
|
+
jsonTree: TreeNode[][];
|
|
10
10
|
};
|
|
11
11
|
type TabsReturnType = {
|
|
12
12
|
id: `${SupportedLangs}`;
|
|
13
13
|
title: string;
|
|
14
|
-
value: TreeNode;
|
|
14
|
+
value: TreeNode[];
|
|
15
15
|
};
|
|
16
16
|
/**
|
|
17
17
|
* This function takes json tree and locale and
|
|
@@ -6,12 +6,12 @@ type Tabs = {
|
|
|
6
6
|
behavior: 'tax-country' | 'profile-lang';
|
|
7
7
|
localeOrCountry: `${SupportedLangs}` | SupportedCountryLocale;
|
|
8
8
|
t: WithTranslation['t'];
|
|
9
|
-
jsonTree: TreeNode[];
|
|
9
|
+
jsonTree: TreeNode[][];
|
|
10
10
|
};
|
|
11
11
|
type TabsReturnType = {
|
|
12
12
|
id: `${SupportedLangs}`;
|
|
13
13
|
title: string;
|
|
14
|
-
value: TreeNode;
|
|
14
|
+
value: TreeNode[];
|
|
15
15
|
};
|
|
16
16
|
/**
|
|
17
17
|
* This function takes json tree and locale and
|
package/dist/index.d.ts
CHANGED
|
@@ -2780,12 +2780,12 @@ type Tabs = {
|
|
|
2780
2780
|
behavior: 'tax-country' | 'profile-lang';
|
|
2781
2781
|
localeOrCountry: `${SupportedLangs}` | SupportedCountryLocale;
|
|
2782
2782
|
t: WithTranslation['t'];
|
|
2783
|
-
jsonTree: TreeNode[];
|
|
2783
|
+
jsonTree: TreeNode[][];
|
|
2784
2784
|
};
|
|
2785
2785
|
type TabsReturnType = {
|
|
2786
2786
|
id: `${SupportedLangs}`;
|
|
2787
2787
|
title: string;
|
|
2788
|
-
value: TreeNode;
|
|
2788
|
+
value: TreeNode[];
|
|
2789
2789
|
};
|
|
2790
2790
|
/**
|
|
2791
2791
|
* This function takes json tree and locale and
|