@salutejs/plasma-new-hope 0.75.1-canary.1182.8691036704.0 → 0.76.0-canary.1172.8687373718.0
Sign up to get free protection for your applications and to get access to all the features.
- package/package.json +4 -4
- package/styled-components/cjs/examples/plasma_b2c/components/Divider/Divider.stories.tsx +0 -1
- package/styled-components/cjs/examples/plasma_b2c/components/TextField/TextField.stories.tsx +18 -8
- package/styled-components/cjs/examples/plasma_b2c/components/Tooltip/Tooltip.stories.tsx +0 -1
- package/styled-components/cjs/examples/plasma_web/components/TextField/TextField.stories.tsx +18 -8
- package/styled-components/cjs/examples/plasma_web/components/Tooltip/Tooltip.stories.tsx +0 -1
- package/styled-components/cjs/examples/sds_engineer/components/TextField/TextField.stories.tsx +18 -8
- package/styled-components/cjs/examples/sds_engineer/components/Tooltip/Tooltip.stories.tsx +0 -1
- package/styled-components/es/examples/plasma_b2c/components/Divider/Divider.stories.tsx +0 -1
- package/styled-components/es/examples/plasma_b2c/components/TextField/TextField.stories.tsx +18 -8
- package/styled-components/es/examples/plasma_b2c/components/Tooltip/Tooltip.stories.tsx +0 -1
- package/styled-components/es/examples/plasma_web/components/TextField/TextField.stories.tsx +18 -8
- package/styled-components/es/examples/plasma_web/components/Tooltip/Tooltip.stories.tsx +0 -1
- package/styled-components/es/examples/sds_engineer/components/TextField/TextField.stories.tsx +18 -8
- package/styled-components/es/examples/sds_engineer/components/Tooltip/Tooltip.stories.tsx +0 -1
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@salutejs/plasma-new-hope",
|
3
|
-
"version": "0.
|
3
|
+
"version": "0.76.0-canary.1172.8687373718.0",
|
4
4
|
"description": "Salute Design System blueprint",
|
5
5
|
"main": "cjs/index.js",
|
6
6
|
"module": "es/index.js",
|
@@ -67,7 +67,7 @@
|
|
67
67
|
"@rollup/plugin-babel": "^6.0.3",
|
68
68
|
"@rollup/plugin-commonjs": "^25.0.4",
|
69
69
|
"@rollup/plugin-node-resolve": "^15.1.0",
|
70
|
-
"@salutejs/plasma-sb-utils": "0.
|
70
|
+
"@salutejs/plasma-sb-utils": "0.156.0-canary.1172.8687373718.0",
|
71
71
|
"@storybook/addon-docs": "^7.6.17",
|
72
72
|
"@storybook/addon-essentials": "^7.6.17",
|
73
73
|
"@storybook/addons": "^7.6.17",
|
@@ -97,10 +97,10 @@
|
|
97
97
|
"@linaria/core": "5.0.2",
|
98
98
|
"@linaria/react": "5.0.3",
|
99
99
|
"@popperjs/core": "2.11.8",
|
100
|
-
"@salutejs/plasma-core": "1.
|
100
|
+
"@salutejs/plasma-core": "1.158.0-canary.1172.8687373718.0",
|
101
101
|
"focus-visible": "5.2.0",
|
102
102
|
"react-popper": "2.3.0",
|
103
103
|
"storeon": "3.1.5"
|
104
104
|
},
|
105
|
-
"gitHead": "
|
105
|
+
"gitHead": "bbc7f3fb9e9e9e726344b79612d60c7d48caa15f"
|
106
106
|
}
|
package/styled-components/cjs/examples/plasma_b2c/components/TextField/TextField.stories.tsx
CHANGED
@@ -70,11 +70,16 @@ type StoryPropsDefault = Omit<
|
|
70
70
|
| 'chips'
|
71
71
|
| 'onChangeChips'
|
72
72
|
> & {
|
73
|
-
|
74
|
-
|
73
|
+
'storybook:contentLeft': boolean;
|
74
|
+
'storybook:contentRight': boolean;
|
75
75
|
};
|
76
76
|
|
77
|
-
const StoryDemo = ({
|
77
|
+
const StoryDemo = ({
|
78
|
+
'storybook:contentLeft': enableContentLeft,
|
79
|
+
'storybook:contentRight': enableContentRight,
|
80
|
+
view,
|
81
|
+
...rest
|
82
|
+
}: StoryPropsDefault) => {
|
78
83
|
const [text, setText] = useState('Значение поля');
|
79
84
|
|
80
85
|
const iconSize = rest.size === 'xs' ? 'xs' : 's';
|
@@ -109,8 +114,8 @@ export const Default: StoryObj<StoryPropsDefault> = {
|
|
109
114
|
leftHelper: 'Подсказка к полю',
|
110
115
|
disabled: false,
|
111
116
|
readOnly: false,
|
112
|
-
|
113
|
-
|
117
|
+
'storybook:contentLeft': true,
|
118
|
+
'storybook:contentRight': true,
|
114
119
|
},
|
115
120
|
render: (args) => <StoryDemo {...args} />,
|
116
121
|
};
|
@@ -134,11 +139,16 @@ type StoryPropsChips = Omit<
|
|
134
139
|
| 'required'
|
135
140
|
| 'enumerationType'
|
136
141
|
> & {
|
137
|
-
|
138
|
-
|
142
|
+
'storybook:contentLeft': boolean;
|
143
|
+
'storybook:contentRight': boolean;
|
139
144
|
};
|
140
145
|
|
141
|
-
const StoryChips = ({
|
146
|
+
const StoryChips = ({
|
147
|
+
'storybook:contentLeft': enableContentLeft,
|
148
|
+
'storybook:contentRight': enableContentRight,
|
149
|
+
view,
|
150
|
+
...rest
|
151
|
+
}: StoryPropsChips) => {
|
142
152
|
const [text, setText] = useState('Значение поля');
|
143
153
|
|
144
154
|
const iconSize = rest.size === 'xs' ? 'xs' : 's';
|
package/styled-components/cjs/examples/plasma_web/components/TextField/TextField.stories.tsx
CHANGED
@@ -70,11 +70,16 @@ type StoryPropsDefault = Omit<
|
|
70
70
|
| 'chips'
|
71
71
|
| 'onChangeChips'
|
72
72
|
> & {
|
73
|
-
|
74
|
-
|
73
|
+
'storybook:contentLeft': boolean;
|
74
|
+
'storybook:contentRight': boolean;
|
75
75
|
};
|
76
76
|
|
77
|
-
const StoryDemo = ({
|
77
|
+
const StoryDemo = ({
|
78
|
+
'storybook:contentLeft': enableContentLeft,
|
79
|
+
'storybook:contentRight': enableContentRight,
|
80
|
+
view,
|
81
|
+
...rest
|
82
|
+
}: StoryPropsDefault) => {
|
78
83
|
const [text, setText] = useState('Значение поля');
|
79
84
|
|
80
85
|
const iconSize = rest.size === 'xs' ? 'xs' : 's';
|
@@ -109,8 +114,8 @@ export const Default: StoryObj<StoryPropsDefault> = {
|
|
109
114
|
leftHelper: 'Подсказка к полю',
|
110
115
|
disabled: false,
|
111
116
|
readOnly: false,
|
112
|
-
|
113
|
-
|
117
|
+
'storybook:contentLeft': true,
|
118
|
+
'storybook:contentRight': true,
|
114
119
|
},
|
115
120
|
render: (args) => <StoryDemo {...args} />,
|
116
121
|
};
|
@@ -134,11 +139,16 @@ type StoryPropsChips = Omit<
|
|
134
139
|
| 'required'
|
135
140
|
| 'enumerationType'
|
136
141
|
> & {
|
137
|
-
|
138
|
-
|
142
|
+
'storybook:contentLeft': boolean;
|
143
|
+
'storybook:contentRight': boolean;
|
139
144
|
};
|
140
145
|
|
141
|
-
const StoryChips = ({
|
146
|
+
const StoryChips = ({
|
147
|
+
'storybook:contentLeft': enableContentLeft,
|
148
|
+
'storybook:contentRight': enableContentRight,
|
149
|
+
view,
|
150
|
+
...rest
|
151
|
+
}: StoryPropsChips) => {
|
142
152
|
const [text, setText] = useState('Значение поля');
|
143
153
|
|
144
154
|
const iconSize = rest.size === 'xs' ? 'xs' : 's';
|
package/styled-components/cjs/examples/sds_engineer/components/TextField/TextField.stories.tsx
CHANGED
@@ -70,11 +70,16 @@ type StoryPropsDefault = Omit<
|
|
70
70
|
| 'chips'
|
71
71
|
| 'onChangeChips'
|
72
72
|
> & {
|
73
|
-
|
74
|
-
|
73
|
+
'storybook:contentLeft': boolean;
|
74
|
+
'storybook:contentRight': boolean;
|
75
75
|
};
|
76
76
|
|
77
|
-
const StoryDemo = ({
|
77
|
+
const StoryDemo = ({
|
78
|
+
'storybook:contentLeft': enableContentLeft,
|
79
|
+
'storybook:contentRight': enableContentRight,
|
80
|
+
view,
|
81
|
+
...rest
|
82
|
+
}: StoryPropsDefault) => {
|
78
83
|
const [text, setText] = useState('Значение поля');
|
79
84
|
|
80
85
|
const iconSize = rest.size === 'xs' ? 'xs' : 's';
|
@@ -109,8 +114,8 @@ export const Default: StoryObj<StoryPropsDefault> = {
|
|
109
114
|
leftHelper: 'Подсказка к полю',
|
110
115
|
disabled: false,
|
111
116
|
readOnly: false,
|
112
|
-
|
113
|
-
|
117
|
+
'storybook:contentLeft': true,
|
118
|
+
'storybook:contentRight': true,
|
114
119
|
},
|
115
120
|
render: (args) => <StoryDemo {...args} />,
|
116
121
|
};
|
@@ -134,11 +139,16 @@ type StoryPropsChips = Omit<
|
|
134
139
|
| 'required'
|
135
140
|
| 'enumerationType'
|
136
141
|
> & {
|
137
|
-
|
138
|
-
|
142
|
+
'storybook:contentLeft': boolean;
|
143
|
+
'storybook:contentRight': boolean;
|
139
144
|
};
|
140
145
|
|
141
|
-
const StoryChips = ({
|
146
|
+
const StoryChips = ({
|
147
|
+
'storybook:contentLeft': enableContentLeft,
|
148
|
+
'storybook:contentRight': enableContentRight,
|
149
|
+
view,
|
150
|
+
...rest
|
151
|
+
}: StoryPropsChips) => {
|
142
152
|
const [text, setText] = useState('Значение поля');
|
143
153
|
|
144
154
|
const iconSize = rest.size === 'xs' ? 'xs' : 's';
|
@@ -70,11 +70,16 @@ type StoryPropsDefault = Omit<
|
|
70
70
|
| 'chips'
|
71
71
|
| 'onChangeChips'
|
72
72
|
> & {
|
73
|
-
|
74
|
-
|
73
|
+
'storybook:contentLeft': boolean;
|
74
|
+
'storybook:contentRight': boolean;
|
75
75
|
};
|
76
76
|
|
77
|
-
const StoryDemo = ({
|
77
|
+
const StoryDemo = ({
|
78
|
+
'storybook:contentLeft': enableContentLeft,
|
79
|
+
'storybook:contentRight': enableContentRight,
|
80
|
+
view,
|
81
|
+
...rest
|
82
|
+
}: StoryPropsDefault) => {
|
78
83
|
const [text, setText] = useState('Значение поля');
|
79
84
|
|
80
85
|
const iconSize = rest.size === 'xs' ? 'xs' : 's';
|
@@ -109,8 +114,8 @@ export const Default: StoryObj<StoryPropsDefault> = {
|
|
109
114
|
leftHelper: 'Подсказка к полю',
|
110
115
|
disabled: false,
|
111
116
|
readOnly: false,
|
112
|
-
|
113
|
-
|
117
|
+
'storybook:contentLeft': true,
|
118
|
+
'storybook:contentRight': true,
|
114
119
|
},
|
115
120
|
render: (args) => <StoryDemo {...args} />,
|
116
121
|
};
|
@@ -134,11 +139,16 @@ type StoryPropsChips = Omit<
|
|
134
139
|
| 'required'
|
135
140
|
| 'enumerationType'
|
136
141
|
> & {
|
137
|
-
|
138
|
-
|
142
|
+
'storybook:contentLeft': boolean;
|
143
|
+
'storybook:contentRight': boolean;
|
139
144
|
};
|
140
145
|
|
141
|
-
const StoryChips = ({
|
146
|
+
const StoryChips = ({
|
147
|
+
'storybook:contentLeft': enableContentLeft,
|
148
|
+
'storybook:contentRight': enableContentRight,
|
149
|
+
view,
|
150
|
+
...rest
|
151
|
+
}: StoryPropsChips) => {
|
142
152
|
const [text, setText] = useState('Значение поля');
|
143
153
|
|
144
154
|
const iconSize = rest.size === 'xs' ? 'xs' : 's';
|
@@ -70,11 +70,16 @@ type StoryPropsDefault = Omit<
|
|
70
70
|
| 'chips'
|
71
71
|
| 'onChangeChips'
|
72
72
|
> & {
|
73
|
-
|
74
|
-
|
73
|
+
'storybook:contentLeft': boolean;
|
74
|
+
'storybook:contentRight': boolean;
|
75
75
|
};
|
76
76
|
|
77
|
-
const StoryDemo = ({
|
77
|
+
const StoryDemo = ({
|
78
|
+
'storybook:contentLeft': enableContentLeft,
|
79
|
+
'storybook:contentRight': enableContentRight,
|
80
|
+
view,
|
81
|
+
...rest
|
82
|
+
}: StoryPropsDefault) => {
|
78
83
|
const [text, setText] = useState('Значение поля');
|
79
84
|
|
80
85
|
const iconSize = rest.size === 'xs' ? 'xs' : 's';
|
@@ -109,8 +114,8 @@ export const Default: StoryObj<StoryPropsDefault> = {
|
|
109
114
|
leftHelper: 'Подсказка к полю',
|
110
115
|
disabled: false,
|
111
116
|
readOnly: false,
|
112
|
-
|
113
|
-
|
117
|
+
'storybook:contentLeft': true,
|
118
|
+
'storybook:contentRight': true,
|
114
119
|
},
|
115
120
|
render: (args) => <StoryDemo {...args} />,
|
116
121
|
};
|
@@ -134,11 +139,16 @@ type StoryPropsChips = Omit<
|
|
134
139
|
| 'required'
|
135
140
|
| 'enumerationType'
|
136
141
|
> & {
|
137
|
-
|
138
|
-
|
142
|
+
'storybook:contentLeft': boolean;
|
143
|
+
'storybook:contentRight': boolean;
|
139
144
|
};
|
140
145
|
|
141
|
-
const StoryChips = ({
|
146
|
+
const StoryChips = ({
|
147
|
+
'storybook:contentLeft': enableContentLeft,
|
148
|
+
'storybook:contentRight': enableContentRight,
|
149
|
+
view,
|
150
|
+
...rest
|
151
|
+
}: StoryPropsChips) => {
|
142
152
|
const [text, setText] = useState('Значение поля');
|
143
153
|
|
144
154
|
const iconSize = rest.size === 'xs' ? 'xs' : 's';
|
package/styled-components/es/examples/sds_engineer/components/TextField/TextField.stories.tsx
CHANGED
@@ -70,11 +70,16 @@ type StoryPropsDefault = Omit<
|
|
70
70
|
| 'chips'
|
71
71
|
| 'onChangeChips'
|
72
72
|
> & {
|
73
|
-
|
74
|
-
|
73
|
+
'storybook:contentLeft': boolean;
|
74
|
+
'storybook:contentRight': boolean;
|
75
75
|
};
|
76
76
|
|
77
|
-
const StoryDemo = ({
|
77
|
+
const StoryDemo = ({
|
78
|
+
'storybook:contentLeft': enableContentLeft,
|
79
|
+
'storybook:contentRight': enableContentRight,
|
80
|
+
view,
|
81
|
+
...rest
|
82
|
+
}: StoryPropsDefault) => {
|
78
83
|
const [text, setText] = useState('Значение поля');
|
79
84
|
|
80
85
|
const iconSize = rest.size === 'xs' ? 'xs' : 's';
|
@@ -109,8 +114,8 @@ export const Default: StoryObj<StoryPropsDefault> = {
|
|
109
114
|
leftHelper: 'Подсказка к полю',
|
110
115
|
disabled: false,
|
111
116
|
readOnly: false,
|
112
|
-
|
113
|
-
|
117
|
+
'storybook:contentLeft': true,
|
118
|
+
'storybook:contentRight': true,
|
114
119
|
},
|
115
120
|
render: (args) => <StoryDemo {...args} />,
|
116
121
|
};
|
@@ -134,11 +139,16 @@ type StoryPropsChips = Omit<
|
|
134
139
|
| 'required'
|
135
140
|
| 'enumerationType'
|
136
141
|
> & {
|
137
|
-
|
138
|
-
|
142
|
+
'storybook:contentLeft': boolean;
|
143
|
+
'storybook:contentRight': boolean;
|
139
144
|
};
|
140
145
|
|
141
|
-
const StoryChips = ({
|
146
|
+
const StoryChips = ({
|
147
|
+
'storybook:contentLeft': enableContentLeft,
|
148
|
+
'storybook:contentRight': enableContentRight,
|
149
|
+
view,
|
150
|
+
...rest
|
151
|
+
}: StoryPropsChips) => {
|
142
152
|
const [text, setText] = useState('Значение поля');
|
143
153
|
|
144
154
|
const iconSize = rest.size === 'xs' ? 'xs' : 's';
|