@salutejs/plasma-new-hope 0.260.0-canary.1756.13158751564.0 → 0.260.0-canary.1759.13168263477.0
Sign up to get free protection for your applications and to get access to all the features.
- package/cjs/components/Calendar/hooks/useCalendarDateChange.js +0 -1
- package/cjs/components/Calendar/hooks/useCalendarDateChange.js.map +1 -1
- package/cjs/components/Calendar/store/reducer.js +3 -4
- package/cjs/components/Calendar/store/reducer.js.map +1 -1
- package/cjs/components/Calendar/store/types.js.map +1 -1
- package/emotion/cjs/components/Calendar/hooks/useCalendarDateChange.js +0 -1
- package/emotion/cjs/components/Calendar/store/reducer.js +3 -4
- package/emotion/cjs/examples/plasma_b2c/components/TextArea/TextArea.config.js +14 -13
- package/emotion/cjs/examples/plasma_b2c/components/TextArea/TextArea.stories.tsx +1 -1
- package/emotion/cjs/examples/plasma_web/components/TextArea/TextArea.config.js +14 -13
- package/emotion/cjs/examples/plasma_web/components/TextArea/TextArea.stories.tsx +1 -1
- package/emotion/es/components/Calendar/hooks/useCalendarDateChange.js +0 -1
- package/emotion/es/components/Calendar/store/reducer.js +3 -4
- package/emotion/es/examples/plasma_b2c/components/TextArea/TextArea.config.js +14 -13
- package/emotion/es/examples/plasma_b2c/components/TextArea/TextArea.stories.tsx +1 -1
- package/emotion/es/examples/plasma_web/components/TextArea/TextArea.config.js +14 -13
- package/emotion/es/examples/plasma_web/components/TextArea/TextArea.stories.tsx +1 -1
- package/es/components/Calendar/hooks/useCalendarDateChange.js +0 -1
- package/es/components/Calendar/hooks/useCalendarDateChange.js.map +1 -1
- package/es/components/Calendar/store/reducer.js +3 -4
- package/es/components/Calendar/store/reducer.js.map +1 -1
- package/es/components/Calendar/store/types.js.map +1 -1
- package/package.json +2 -2
- package/styled-components/cjs/components/Calendar/hooks/useCalendarDateChange.js +0 -1
- package/styled-components/cjs/components/Calendar/store/reducer.js +3 -4
- package/styled-components/cjs/examples/plasma_b2c/components/TextArea/TextArea.config.js +2 -1
- package/styled-components/cjs/examples/plasma_b2c/components/TextArea/TextArea.stories.tsx +1 -1
- package/styled-components/cjs/examples/plasma_web/components/TextArea/TextArea.config.js +2 -1
- package/styled-components/cjs/examples/plasma_web/components/TextArea/TextArea.stories.tsx +1 -1
- package/styled-components/es/components/Calendar/hooks/useCalendarDateChange.js +0 -1
- package/styled-components/es/components/Calendar/store/reducer.js +3 -4
- package/styled-components/es/examples/plasma_b2c/components/TextArea/TextArea.config.js +2 -1
- package/styled-components/es/examples/plasma_b2c/components/TextArea/TextArea.stories.tsx +1 -1
- package/styled-components/es/examples/plasma_web/components/TextArea/TextArea.config.js +2 -1
- package/styled-components/es/examples/plasma_web/components/TextArea/TextArea.stories.tsx +1 -1
- package/types/components/Calendar/hooks/useCalendarDateChange.d.ts.map +1 -1
- package/types/components/Calendar/store/types.d.ts +0 -1
- package/types/components/Calendar/store/types.d.ts.map +1 -1
- package/types/examples/plasma_b2c/components/TextArea/TextArea.config.d.ts +1 -0
- package/types/examples/plasma_b2c/components/TextArea/TextArea.config.d.ts.map +1 -1
- package/types/examples/plasma_b2c/components/TextArea/TextArea.d.ts +1 -0
- package/types/examples/plasma_b2c/components/TextArea/TextArea.d.ts.map +1 -1
- package/types/examples/plasma_web/components/TextArea/TextArea.config.d.ts +1 -0
- package/types/examples/plasma_web/components/TextArea/TextArea.config.d.ts.map +1 -1
- package/types/examples/plasma_web/components/TextArea/TextArea.d.ts +1 -0
- package/types/examples/plasma_web/components/TextArea/TextArea.d.ts.map +1 -1
@@ -13,7 +13,7 @@ import { config } from './TextArea.config';
|
|
13
13
|
import { TextArea } from './TextArea';
|
14
14
|
|
15
15
|
const labelPlacements = ['inner', 'outer'];
|
16
|
-
const sizes = ['xs', 's', 'm', 'l'];
|
16
|
+
const sizes = ['xs', 's', 'm', 'l', 'xl'];
|
17
17
|
const hintViews = ['default'];
|
18
18
|
const hintSizes = ['m', 's'];
|
19
19
|
const hintTriggers = ['hover', 'click'];
|
@@ -134,7 +134,6 @@ export var reducer = function reducer(state, action) {
|
|
134
134
|
var _action$payload3 = action.payload,
|
135
135
|
calendarState = _action$payload3.calendarState,
|
136
136
|
_monthIndex2 = _action$payload3.monthIndex,
|
137
|
-
_year2 = _action$payload3.year,
|
138
137
|
size = _action$payload3.size;
|
139
138
|
return _objectSpread(_objectSpread({}, state), {}, {
|
140
139
|
size: size,
|
@@ -142,7 +141,7 @@ export var reducer = function reducer(state, action) {
|
|
142
141
|
date: {
|
143
142
|
day: state.date.day,
|
144
143
|
monthIndex: _monthIndex2,
|
145
|
-
year:
|
144
|
+
year: state.date.year
|
146
145
|
}
|
147
146
|
});
|
148
147
|
}
|
@@ -150,7 +149,7 @@ export var reducer = function reducer(state, action) {
|
|
150
149
|
{
|
151
150
|
var _action$payload4 = action.payload,
|
152
151
|
_calendarState = _action$payload4.calendarState,
|
153
|
-
|
152
|
+
_year2 = _action$payload4.year,
|
154
153
|
_size = _action$payload4.size;
|
155
154
|
return _objectSpread(_objectSpread({}, state), {}, {
|
156
155
|
size: _size,
|
@@ -158,7 +157,7 @@ export var reducer = function reducer(state, action) {
|
|
158
157
|
date: {
|
159
158
|
day: state.date.day,
|
160
159
|
monthIndex: state.date.monthIndex,
|
161
|
-
year:
|
160
|
+
year: _year2
|
162
161
|
}
|
163
162
|
});
|
164
163
|
}
|