@salutejs/sdds-finportal 0.146.2-dev.0 → 0.146.4-canary.1502.11499843355.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -20,8 +20,8 @@ import { BaseboxProps } from '@salutejs/plasma-new-hope/styled-components';
20
20
  import { BaseCallbackChangeInstance } from '@salutejs/plasma-new-hope/types/components/Range/Range.types';
21
21
  import { BaseCallbackKeyboardInstance } from '@salutejs/plasma-new-hope/types/components/Range/Range.types';
22
22
  import { BaseProps } from '@salutejs/plasma-new-hope/types/components/Autocomplete/Autocomplete.types';
23
- import { BaseTabItemProps } from '@salutejs/plasma-new-hope/types/components/Tabs/TabItem.types';
24
- import { BaseTabsProps } from '@salutejs/plasma-new-hope/types/components/Tabs/Tabs.types';
23
+ import { BaseTabItemProps } from '@salutejs/plasma-new-hope/styled-components';
24
+ import { BaseTabsProps } from '@salutejs/plasma-new-hope/styled-components';
25
25
  import { bodyL } from '@salutejs/sdds-themes/tokens';
26
26
  import { bodyLBold } from '@salutejs/sdds-themes/tokens';
27
27
  import { bodyM } from '@salutejs/sdds-themes/tokens';
@@ -67,6 +67,7 @@ import { CommitInstanceCallback } from '@salutejs/plasma-new-hope/types/componen
67
67
  import { ComponentProps } from 'react';
68
68
  import { CounterProps } from '@salutejs/plasma-new-hope/styled-components';
69
69
  import { counterTokens } from '@salutejs/plasma-new-hope/styled-components';
70
+ import { CustomHeaderTabsProps } from '@salutejs/plasma-new-hope/types/components/Tabs/Tabs.types';
70
71
  import { CustomHorizontalTabsProps } from '@salutejs/plasma-new-hope/types/components/Tabs/Tabs.types';
71
72
  import { CustomPopoverProps } from '@salutejs/plasma-new-hope/types/components/Popover/Popover.types';
72
73
  import { CustomToastProps } from '@salutejs/plasma-new-hope/types/components/Toast/Toast.types';
@@ -23,26 +23,39 @@ declare const HorizontalTabItem: React.FunctionComponent<import("@salutejs/plasm
23
23
  pilled: {
24
24
  true: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
25
25
  };
26
- }> & ((import("@salutejs/plasma-new-hope/types/components/Tabs/TabItem.types").BaseTabItemProps & {
26
+ }> & ((import("@salutejs/plasma-new-hope/styled-components").BaseTabItemProps & {
27
27
  orientation?: "horizontal" | undefined;
28
+ contentLeft?: React.ReactNode;
28
29
  pilled?: boolean | undefined;
29
30
  animated?: boolean | undefined;
30
31
  view?: string | undefined;
31
- size?: string | undefined;
32
+ size?: "s" | "m" | "l" | "xs" | undefined;
32
33
  isActive?: boolean | undefined;
33
34
  } & {
34
35
  value?: string | number | undefined;
35
36
  contentRight?: undefined;
36
- } & React.RefAttributes<HTMLDivElement>) | (import("@salutejs/plasma-new-hope/types/components/Tabs/TabItem.types").BaseTabItemProps & {
37
+ } & React.RefAttributes<HTMLDivElement>) | (import("@salutejs/plasma-new-hope/styled-components").BaseTabItemProps & {
37
38
  orientation?: "horizontal" | undefined;
39
+ contentLeft?: React.ReactNode;
38
40
  pilled?: boolean | undefined;
39
41
  animated?: boolean | undefined;
40
42
  view?: string | undefined;
41
- size?: string | undefined;
43
+ size?: "s" | "m" | "l" | "xs" | undefined;
42
44
  isActive?: boolean | undefined;
43
45
  } & {
44
46
  value?: undefined;
45
47
  contentRight?: React.ReactNode;
48
+ } & React.RefAttributes<HTMLDivElement>) | (import("@salutejs/plasma-new-hope/styled-components").BaseTabItemProps & {
49
+ orientation?: "horizontal" | undefined;
50
+ contentLeft?: undefined;
51
+ pilled?: undefined;
52
+ animated?: undefined;
53
+ view?: string | undefined;
54
+ size: "h1" | "h2" | "h3" | "h4" | "h5";
55
+ isActive?: undefined;
56
+ } & {
57
+ value?: string | number | undefined;
58
+ contentRight?: undefined;
46
59
  } & React.RefAttributes<HTMLDivElement>))>;
47
60
  declare const VerticalTabItem: React.FunctionComponent<import("@salutejs/plasma-new-hope/types/engines/types").PropsType<{
48
61
  view: {
@@ -57,15 +70,17 @@ declare const VerticalTabItem: React.FunctionComponent<import("@salutejs/plasma-
57
70
  disabled: {
58
71
  true: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
59
72
  };
60
- }> & ((import("@salutejs/plasma-new-hope/types/components/Tabs/TabItem.types").BaseTabItemProps & {
73
+ }> & ((import("@salutejs/plasma-new-hope/styled-components").BaseTabItemProps & {
61
74
  orientation: "vertical";
75
+ contentLeft?: React.ReactNode;
62
76
  view?: string | undefined;
63
77
  size?: string | undefined;
64
78
  } & {
65
79
  value?: string | number | undefined;
66
80
  contentRight?: undefined;
67
- } & React.RefAttributes<HTMLButtonElement>) | (import("@salutejs/plasma-new-hope/types/components/Tabs/TabItem.types").BaseTabItemProps & {
81
+ } & React.RefAttributes<HTMLButtonElement>) | (import("@salutejs/plasma-new-hope/styled-components").BaseTabItemProps & {
68
82
  orientation: "vertical";
83
+ contentLeft?: React.ReactNode;
69
84
  view?: string | undefined;
70
85
  size?: string | undefined;
71
86
  } & {
@@ -25,7 +25,7 @@ declare const HorizontalTabs: React.FunctionComponent<import("@salutejs/plasma-n
25
25
  pilled: {
26
26
  true: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
27
27
  };
28
- }> & import("@salutejs/plasma-new-hope/types/components/Tabs/Tabs.types").BaseTabsProps & import("@salutejs/plasma-new-hope/types/components/Tabs/Tabs.types").CustomHorizontalTabsProps & React.RefAttributes<HTMLDivElement>>;
28
+ }> & ((import("@salutejs/plasma-new-hope/styled-components").BaseTabsProps & import("@salutejs/plasma-new-hope/types/components/Tabs/Tabs.types").CustomHorizontalTabsProps & React.RefAttributes<HTMLDivElement>) | (import("@salutejs/plasma-new-hope/styled-components").BaseTabsProps & import("@salutejs/plasma-new-hope/types/components/Tabs/Tabs.types").CustomHeaderTabsProps & React.RefAttributes<HTMLDivElement>))>;
29
29
  declare const VerticalTabs: React.FunctionComponent<import("@salutejs/plasma-new-hope/types/engines/types").PropsType<{
30
30
  view: {
31
31
  divider: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
@@ -42,7 +42,7 @@ declare const VerticalTabs: React.FunctionComponent<import("@salutejs/plasma-new
42
42
  disabled: {
43
43
  true: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
44
44
  };
45
- }> & import("@salutejs/plasma-new-hope/types/components/Tabs/Tabs.types").BaseTabsProps & import("@salutejs/plasma-new-hope/types/components/Tabs/Tabs.types").CustomVerticalTabsProps & React.RefAttributes<HTMLDivElement>>;
45
+ }> & import("@salutejs/plasma-new-hope/styled-components").BaseTabsProps & import("@salutejs/plasma-new-hope/types/components/Tabs/Tabs.types").CustomVerticalTabsProps & React.RefAttributes<HTMLDivElement>>;
46
46
  declare type TabsProps = ComponentProps<typeof HorizontalTabs> | ComponentProps<typeof VerticalTabs>;
47
47
  /**
48
48
  * Контейнер вкладок, основной компонент для пользовательской сборки вкладок.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salutejs/sdds-finportal",
3
- "version": "0.146.2-dev.0",
3
+ "version": "0.146.4-canary.1502.11499843355.0",
4
4
  "description": "Salute Design System / React UI kit for SDDS FinPortal web applications",
5
5
  "author": "Salute Frontend Team <salute.developers@gmail.com>",
6
6
  "license": "MIT",
@@ -19,8 +19,8 @@
19
19
  "directory": "packages/sdds-finportal"
20
20
  },
21
21
  "dependencies": {
22
- "@salutejs/plasma-new-hope": "0.173.2-dev.0",
23
- "@salutejs/sdds-themes": "0.24.0-dev.0"
22
+ "@salutejs/plasma-new-hope": "0.173.4-canary.1502.11499843355.0",
23
+ "@salutejs/sdds-themes": "0.24.1-canary.1502.11499843355.0"
24
24
  },
25
25
  "peerDependencies": {
26
26
  "react": ">=16.13.1",
@@ -94,5 +94,5 @@
94
94
  "Vasiliy Loginevskiy"
95
95
  ],
96
96
  "sideEffects": false,
97
- "gitHead": "253bccc1a8c4d2429c6b478190ebea9afdde54a6"
97
+ "gitHead": "0d276d11c0bb0e841ef7cc60c498730444d69dfa"
98
98
  }