@salutejs/plasma-new-hope 0.81.1-canary.1209.9113456949.0 → 0.82.0-canary.1203.9113315762.0
Sign up to get free protection for your applications and to get access to all the features.
- package/cjs/components/Calendar/Calendar.types.js.map +1 -1
- package/cjs/components/Calendar/CalendarBase/CalendarBase.js +3 -1
- package/cjs/components/Calendar/CalendarBase/CalendarBase.js.map +1 -1
- package/cjs/components/Calendar/CalendarDouble/CalendarDouble.js +4 -1
- package/cjs/components/Calendar/CalendarDouble/CalendarDouble.js.map +1 -1
- package/cjs/components/Calendar/hooks/useDays.js +6 -3
- package/cjs/components/Calendar/hooks/useDays.js.map +1 -1
- package/cjs/components/Calendar/ui/CalendarDays/CalendarDays.js +2 -1
- package/cjs/components/Calendar/ui/CalendarDays/CalendarDays.js.map +1 -1
- package/es/components/Calendar/Calendar.types.js.map +1 -1
- package/es/components/Calendar/CalendarBase/CalendarBase.js +3 -1
- package/es/components/Calendar/CalendarBase/CalendarBase.js.map +1 -1
- package/es/components/Calendar/CalendarDouble/CalendarDouble.js +4 -1
- package/es/components/Calendar/CalendarDouble/CalendarDouble.js.map +1 -1
- package/es/components/Calendar/hooks/useDays.js +6 -3
- package/es/components/Calendar/hooks/useDays.js.map +1 -1
- package/es/components/Calendar/ui/CalendarDays/CalendarDays.js +2 -1
- package/es/components/Calendar/ui/CalendarDays/CalendarDays.js.map +1 -1
- package/package.json +2 -2
- package/styled-components/cjs/components/Calendar/CalendarBase/CalendarBase.js +3 -1
- package/styled-components/cjs/components/Calendar/CalendarDouble/CalendarDouble.js +4 -1
- package/styled-components/cjs/components/Calendar/hooks/useDays.js +6 -3
- package/styled-components/cjs/components/Calendar/ui/CalendarDays/CalendarDays.js +2 -1
- package/styled-components/cjs/examples/plasma_b2c/components/Calendar/Calendar.stories.tsx +18 -6
- package/styled-components/cjs/examples/plasma_b2c/components/TextArea/TextArea.config.js +4 -4
- package/styled-components/cjs/examples/plasma_web/components/Calendar/Calendar.stories.tsx +18 -6
- package/styled-components/cjs/examples/plasma_web/components/TextArea/TextArea.config.js +4 -4
- package/styled-components/cjs/examples/sds_engineer/components/Calendar/Calendar.stories.tsx +18 -6
- package/styled-components/es/components/Calendar/CalendarBase/CalendarBase.js +3 -1
- package/styled-components/es/components/Calendar/CalendarDouble/CalendarDouble.js +4 -1
- package/styled-components/es/components/Calendar/hooks/useDays.js +6 -3
- package/styled-components/es/components/Calendar/ui/CalendarDays/CalendarDays.js +2 -1
- package/styled-components/es/examples/plasma_b2c/components/Calendar/Calendar.stories.tsx +18 -6
- package/styled-components/es/examples/plasma_b2c/components/TextArea/TextArea.config.js +4 -4
- package/styled-components/es/examples/plasma_web/components/Calendar/Calendar.stories.tsx +18 -6
- package/styled-components/es/examples/plasma_web/components/TextArea/TextArea.config.js +4 -4
- package/styled-components/es/examples/sds_engineer/components/Calendar/Calendar.stories.tsx +18 -6
- package/types/components/Calendar/Calendar.types.d.ts +4 -0
- package/types/components/Calendar/Calendar.types.d.ts.map +1 -1
- package/types/components/Calendar/CalendarBase/CalendarBase.d.ts.map +1 -1
- package/types/components/Calendar/CalendarDouble/CalendarDouble.d.ts.map +1 -1
- package/types/components/Calendar/hooks/useDays.d.ts +1 -1
- package/types/components/Calendar/hooks/useDays.d.ts.map +1 -1
- package/types/components/Calendar/ui/CalendarDays/CalendarDays.d.ts.map +1 -1
- package/types/components/Calendar/ui/CalendarDays/CalendarDays.types.d.ts +1 -0
- package/types/components/Calendar/ui/CalendarDays/CalendarDays.types.d.ts.map +1 -1
@@ -20,6 +20,7 @@ export var CalendarDays = function CalendarDays(_ref) {
|
|
20
20
|
disabledList = _ref.disabledList,
|
21
21
|
min = _ref.min,
|
22
22
|
max = _ref.max,
|
23
|
+
includeEdgeDates = _ref.includeEdgeDates,
|
23
24
|
hoveredDay = _ref.hoveredDay,
|
24
25
|
selectIndexes = _ref.selectIndexes,
|
25
26
|
isDouble = _ref.isDouble,
|
@@ -29,7 +30,7 @@ export var CalendarDays = function CalendarDays(_ref) {
|
|
29
30
|
onHoverDay = _ref.onHoverDay,
|
30
31
|
onSetSelected = _ref.onSetSelected,
|
31
32
|
onKeyDown = _ref.onKeyDown;
|
32
|
-
var _useDays = useDays(currentDate, value, eventList, disabledList, min, max),
|
33
|
+
var _useDays = useDays(currentDate, value, eventList, disabledList, min, max, includeEdgeDates),
|
33
34
|
_useDays2 = _slicedToArray(_useDays, 2),
|
34
35
|
days = _useDays2[0],
|
35
36
|
selected = _useDays2[1];
|
@@ -79,7 +79,7 @@ const baseEvents = [
|
|
79
79
|
];
|
80
80
|
|
81
81
|
const StoryDefault = (args: CalendarProps) => {
|
82
|
-
const { isRange, isDouble, min, max, date } = args;
|
82
|
+
const { isRange, isDouble, min, max, date, includeEdgeDates } = args;
|
83
83
|
const [value, setValue] = useState(new Date(2023, 10, 16));
|
84
84
|
const [valueRange, setValueRange] = useState<[Date, Date?]>([new Date(2023, 10, 16), new Date(2023, 10, 23)]);
|
85
85
|
|
@@ -110,6 +110,7 @@ const StoryDefault = (args: CalendarProps) => {
|
|
110
110
|
disabledList={disabledDays}
|
111
111
|
min={min}
|
112
112
|
max={max}
|
113
|
+
includeEdgeDates={includeEdgeDates}
|
113
114
|
onChangeValue={(isRange ? handleOnRangeChange : handleOnChange) as (value: Date | [Date, Date?]) => void}
|
114
115
|
/>
|
115
116
|
);
|
@@ -121,12 +122,13 @@ export const Default: StoryObj<CalendarProps> = {
|
|
121
122
|
max: new Date(2023, 11, 24),
|
122
123
|
isDouble: false,
|
123
124
|
isRange: false,
|
125
|
+
includeEdgeDates: false,
|
124
126
|
},
|
125
127
|
render: (args) => <StoryDefault {...args} />,
|
126
128
|
};
|
127
129
|
|
128
130
|
const StoryBase = (args: CalendarBaseProps) => {
|
129
|
-
const { min, max, type } = args;
|
131
|
+
const { min, max, type, includeEdgeDates } = args;
|
130
132
|
const [value, setValue] = useState(new Date(2023, 10, 16));
|
131
133
|
|
132
134
|
const handleOnChange = useCallback((newValue: Date) => {
|
@@ -150,6 +152,7 @@ const StoryBase = (args: CalendarBaseProps) => {
|
|
150
152
|
disabledList={disabledDays}
|
151
153
|
min={min}
|
152
154
|
max={max}
|
155
|
+
includeEdgeDates={includeEdgeDates}
|
153
156
|
type={type}
|
154
157
|
onChangeValue={handleOnChange}
|
155
158
|
/>
|
@@ -168,13 +171,14 @@ export const Base: StoryObj<CalendarBaseProps> = {
|
|
168
171
|
args: {
|
169
172
|
min: new Date(2023, 10, 1),
|
170
173
|
max: new Date(2023, 11, 24),
|
174
|
+
includeEdgeDates: false,
|
171
175
|
type: 'Days',
|
172
176
|
},
|
173
177
|
render: (args) => <StoryBase {...args} />,
|
174
178
|
};
|
175
179
|
|
176
180
|
const StoryDouble = (args: CalendarDoubleProps) => {
|
177
|
-
const { min, max } = args;
|
181
|
+
const { min, max, includeEdgeDates } = args;
|
178
182
|
const [value, setValue] = useState(new Date(2023, 10, 16));
|
179
183
|
const handleOnChange = useCallback((newValue: Date) => {
|
180
184
|
setValue(newValue);
|
@@ -197,6 +201,7 @@ const StoryDouble = (args: CalendarDoubleProps) => {
|
|
197
201
|
disabledList={disabledDays}
|
198
202
|
min={min}
|
199
203
|
max={max}
|
204
|
+
includeEdgeDates={includeEdgeDates}
|
200
205
|
onChangeValue={handleOnChange}
|
201
206
|
/>
|
202
207
|
);
|
@@ -206,12 +211,13 @@ export const Double: StoryObj<CalendarDoubleProps> = {
|
|
206
211
|
args: {
|
207
212
|
min: new Date(2023, 10, 1),
|
208
213
|
max: new Date(2023, 11, 24),
|
214
|
+
includeEdgeDates: false,
|
209
215
|
},
|
210
216
|
render: (args) => <StoryDouble {...args} />,
|
211
217
|
};
|
212
218
|
|
213
219
|
const StoryRange = (args: CalendarBaseRangeProps) => {
|
214
|
-
const { min, max, type } = args;
|
220
|
+
const { min, max, type, includeEdgeDates } = args;
|
215
221
|
const [values, setValue] = useState<[Date, Date?]>([new Date(2023, 10, 15), new Date(2023, 10, 24)]);
|
216
222
|
const handleOnChange = useCallback((newValue: [Date, Date?]) => {
|
217
223
|
onChangeValue(newValue);
|
@@ -237,6 +243,7 @@ const StoryRange = (args: CalendarBaseRangeProps) => {
|
|
237
243
|
disabledList={disabledList}
|
238
244
|
min={min}
|
239
245
|
max={max}
|
246
|
+
includeEdgeDates={includeEdgeDates}
|
240
247
|
type={type}
|
241
248
|
onChangeValue={handleOnChange}
|
242
249
|
/>
|
@@ -255,13 +262,14 @@ export const Range: StoryObj<CalendarBaseRangeProps> = {
|
|
255
262
|
args: {
|
256
263
|
min: new Date(2023, 10, 1),
|
257
264
|
max: new Date(2023, 11, 24),
|
265
|
+
includeEdgeDates: false,
|
258
266
|
type: 'Days',
|
259
267
|
},
|
260
268
|
render: (args) => <StoryRange {...args} />,
|
261
269
|
};
|
262
270
|
|
263
271
|
const StoryRangeDouble = (args: CalendarBaseRangeProps) => {
|
264
|
-
const { min, max } = args;
|
272
|
+
const { min, max, includeEdgeDates } = args;
|
265
273
|
const [values, setValue] = useState<[Date, Date?]>([new Date(2023, 10, 15), new Date(2023, 10, 24)]);
|
266
274
|
const handleOnChange = useCallback((newValue: [Date, Date?]) => {
|
267
275
|
onChangeValue(newValue);
|
@@ -287,6 +295,7 @@ const StoryRangeDouble = (args: CalendarBaseRangeProps) => {
|
|
287
295
|
disabledList={disabledList}
|
288
296
|
min={min}
|
289
297
|
max={max}
|
298
|
+
includeEdgeDates={includeEdgeDates}
|
290
299
|
onChangeValue={handleOnChange}
|
291
300
|
/>
|
292
301
|
);
|
@@ -296,12 +305,13 @@ export const RangeDouble: StoryObj<CalendarBaseRangeProps> = {
|
|
296
305
|
args: {
|
297
306
|
min: new Date(2023, 10, 1),
|
298
307
|
max: new Date(2023, 11, 24),
|
308
|
+
includeEdgeDates: false,
|
299
309
|
},
|
300
310
|
render: (args) => <StoryRangeDouble {...args} />,
|
301
311
|
};
|
302
312
|
|
303
313
|
const StoryWithPopover = (args: CalendarProps) => {
|
304
|
-
const { isDouble, min, max } = args;
|
314
|
+
const { isDouble, min, max, includeEdgeDates } = args;
|
305
315
|
const [isOpen, setIsOpen] = useState(false);
|
306
316
|
const [textValue, setTextValue] = useState('2023-10-16');
|
307
317
|
const [value, setValue] = useState(new Date(textValue));
|
@@ -340,6 +350,7 @@ const StoryWithPopover = (args: CalendarProps) => {
|
|
340
350
|
disabledList={disabledDays}
|
341
351
|
min={min}
|
342
352
|
max={max}
|
353
|
+
includeEdgeDates={includeEdgeDates}
|
343
354
|
isDouble={isDouble}
|
344
355
|
isRange={false}
|
345
356
|
onChangeValue={handleOnChange}
|
@@ -353,6 +364,7 @@ export const WithPopover: StoryObj<CalendarProps> = {
|
|
353
364
|
min: new Date(2023, 9, 1),
|
354
365
|
max: new Date(2023, 11, 24),
|
355
366
|
isDouble: false,
|
367
|
+
includeEdgeDates: false,
|
356
368
|
},
|
357
369
|
render: (args) => <StoryWithPopover {...args} />,
|
358
370
|
};
|
@@ -7,10 +7,10 @@ export var config = {
|
|
7
7
|
},
|
8
8
|
variations: {
|
9
9
|
size: {
|
10
|
-
xs: /*#__PURE__*/css(["", ":100%;", ":7.312rem;", ":0.625rem;", ":0.5rem;", ":0.5rem 0.5rem 0 0;", ":0.
|
11
|
-
s: /*#__PURE__*/css(["", ":100%;", ":7.187rem;", ":0.625rem;", ":0.625rem;", ":0.625rem 0.625rem 0 0;", ":0.
|
12
|
-
m: /*#__PURE__*/css(["", ":100%;", ":7rem;", ":1.125rem;", ":0.75rem;", ":0.75rem 0.75rem 0 0;", ":0.
|
13
|
-
l: /*#__PURE__*/css(["", ":100%;", ":6.812rem;", ":1.625rem;", ":0.875rem;", ":0.875rem 0.875rem 0 0;", ":
|
10
|
+
xs: /*#__PURE__*/css(["", ":100%;", ":7.312rem;", ":0.625rem;", ":0.5rem;", ":0.5rem 0.5rem 0 0;", ":0.563rem;", ":0.625rem;", ":2.125rem;", ":0.563rem;", ":0.625rem;", ":0.5rem;", ":0.625rem;", ":0.563rem;", ":0.625rem;", ":0rem;", ":0.563rem;", ":0.5rem;", ":1.25rem;", ":0.375rem;", ":var(--plasma-typo-body-xxs-font-family);", ":var(--plasma-typo-body-xxs-font-size);", ":var(--plasma-typo-body-xxs-font-style);", ":var(--plasma-typo-body-xxs-font-weight);", ":var(--plasma-typo-body-xxs-letter-spacing);", ":var(--plasma-typo-body-xxs-line-height);", ":var(--plasma-typo-body-xs-font-family);", ":var(--plasma-typo-body-xs-font-size);", ":var(--plasma-typo-body-xs-font-style);", ":var(--plasma-typo-body-xs-font-weight);", ":var(--plasma-typo-body-xs-letter-spacing);", ":var(--plasma-typo-body-xs-line-height);", ":var(--plasma-typo-body-xs-font-family);", ":var(--plasma-typo-body-xs-font-size);", ":var(--plasma-typo-body-xs-font-style);", ":var(--plasma-typo-body-xs-font-weight);", ":var(--plasma-typo-body-xs-letter-spacing);", ":var(--plasma-typo-body-xs-line-height);"], textAreaTokens.inputWidth, textAreaTokens.inputHeight, textAreaTokens.inputMinHeight, textAreaTokens.borderRadius, textAreaTokens.borderRadiusWithHelpers, textAreaTokens.inputPaddingTop, textAreaTokens.inputPaddingRight, textAreaTokens.inputPaddingRightWithRightContent, textAreaTokens.inputPaddingBottom, textAreaTokens.inputPaddingLeft, textAreaTokens.helpersPaddingTop, textAreaTokens.helpersPaddingRight, textAreaTokens.helpersPaddingBottom, textAreaTokens.helpersPaddingLeft, textAreaTokens.helpersOffset, textAreaTokens.rightContentTop, textAreaTokens.rightContentRight, textAreaTokens.rightContentHeight, textAreaTokens.labelMarginBottom, textAreaTokens.labelInnerFontFamily, textAreaTokens.labelInnerFontSize, textAreaTokens.labelInnerFontStyle, textAreaTokens.labelInnerFontWeight, textAreaTokens.labelInnerLetterSpacing, textAreaTokens.labelInnerLineHeight, textAreaTokens.inputFontFamily, textAreaTokens.inputFontSize, textAreaTokens.inputFontStyle, textAreaTokens.inputFontWeight, textAreaTokens.inputLetterSpacing, textAreaTokens.inputLineHeight, textAreaTokens.helpersFontFamily, textAreaTokens.helpersFontSize, textAreaTokens.helpersFontStyle, textAreaTokens.helpersFontWeight, textAreaTokens.helpersLetterSpacing, textAreaTokens.helpersLineHeight),
|
11
|
+
s: /*#__PURE__*/css(["", ":100%;", ":7.187rem;", ":0.625rem;", ":0.625rem;", ":0.625rem 0.625rem 0 0;", ":0.688rem;", ":0.875rem;", ":3.125rem;", ":0.75rem;", ":0.875rem;", ":0.75rem;", ":0.875rem;", ":0.75rem;", ":0.875rem;", ":0rem;", ":0.688rem;", ":0.75rem;", ":1.25rem;", ":0.5rem;", ":var(--plasma-typo-body-xs-font-family);", ":var(--plasma-typo-body-xs-font-size);", ":var(--plasma-typo-body-xs-font-style);", ":var(--plasma-typo-body-xs-font-weight);", ":var(--plasma-typo-body-xs-letter-spacing);", ":var(--plasma-typo-body-xs-line-height);", ":var(--plasma-typo-body-s-font-family);", ":var(--plasma-typo-body-s-font-size);", ":var(--plasma-typo-body-s-font-style);", ":var(--plasma-typo-body-s-font-weight);", ":var(--plasma-typo-body-s-letter-spacing);", ":var(--plasma-typo-body-s-line-height);", ":var(--plasma-typo-body-xs-font-family);", ":var(--plasma-typo-body-xs-font-size);", ":var(--plasma-typo-body-xs-font-style);", ":var(--plasma-typo-body-xs-font-weight);", ":var(--plasma-typo-body-xs-letter-spacing);", ":var(--plasma-typo-body-xs-line-height);"], textAreaTokens.inputWidth, textAreaTokens.inputHeight, textAreaTokens.inputMinHeight, textAreaTokens.borderRadius, textAreaTokens.borderRadiusWithHelpers, textAreaTokens.inputPaddingTop, textAreaTokens.inputPaddingRight, textAreaTokens.inputPaddingRightWithRightContent, textAreaTokens.inputPaddingBottom, textAreaTokens.inputPaddingLeft, textAreaTokens.helpersPaddingTop, textAreaTokens.helpersPaddingRight, textAreaTokens.helpersPaddingBottom, textAreaTokens.helpersPaddingLeft, textAreaTokens.helpersOffset, textAreaTokens.rightContentTop, textAreaTokens.rightContentRight, textAreaTokens.rightContentHeight, textAreaTokens.labelMarginBottom, textAreaTokens.labelInnerFontFamily, textAreaTokens.labelInnerFontSize, textAreaTokens.labelInnerFontStyle, textAreaTokens.labelInnerFontWeight, textAreaTokens.labelInnerLetterSpacing, textAreaTokens.labelInnerLineHeight, textAreaTokens.inputFontFamily, textAreaTokens.inputFontSize, textAreaTokens.inputFontStyle, textAreaTokens.inputFontWeight, textAreaTokens.inputLetterSpacing, textAreaTokens.inputLineHeight, textAreaTokens.helpersFontFamily, textAreaTokens.helpersFontSize, textAreaTokens.helpersFontStyle, textAreaTokens.helpersFontWeight, textAreaTokens.helpersLetterSpacing, textAreaTokens.helpersLineHeight),
|
12
|
+
m: /*#__PURE__*/css(["", ":100%;", ":7rem;", ":1.125rem;", ":0.75rem;", ":0.75rem 0.75rem 0 0;", ":0.875rem;", ":1rem;", ":3.375rem;", ":0.75rem;", ":1rem;", ":0.75rem;", ":1rem;", ":0.75rem;", ":1rem;", ":0rem;", ":0.875rem;", ":0.875rem;", ":1.25rem;", ":0.625rem;", ":var(--plasma-typo-body-xs-font-family);", ":var(--plasma-typo-body-xs-font-size);", ":var(--plasma-typo-body-xs-font-style);", ":var(--plasma-typo-body-xs-font-weight);", ":var(--plasma-typo-body-xs-letter-spacing);", ":var(--plasma-typo-body-xs-line-height);", ":var(--plasma-typo-body-m-font-family);", ":var(--plasma-typo-body-m-font-size);", ":var(--plasma-typo-body-m-font-style);", ":var(--plasma-typo-body-m-font-weight);", ":var(--plasma-typo-body-m-letter-spacing);", ":var(--plasma-typo-body-m-line-height);", ":var(--plasma-typo-body-xs-font-family);", ":var(--plasma-typo-body-xs-font-size);", ":var(--plasma-typo-body-xs-font-style);", ":var(--plasma-typo-body-xs-font-weight);", ":var(--plasma-typo-body-xs-letter-spacing);", ":var(--plasma-typo-body-xs-line-height);"], textAreaTokens.inputWidth, textAreaTokens.inputHeight, textAreaTokens.inputMinHeight, textAreaTokens.borderRadius, textAreaTokens.borderRadiusWithHelpers, textAreaTokens.inputPaddingTop, textAreaTokens.inputPaddingRight, textAreaTokens.inputPaddingRightWithRightContent, textAreaTokens.inputPaddingBottom, textAreaTokens.inputPaddingLeft, textAreaTokens.helpersPaddingTop, textAreaTokens.helpersPaddingRight, textAreaTokens.helpersPaddingBottom, textAreaTokens.helpersPaddingLeft, textAreaTokens.helpersOffset, textAreaTokens.rightContentTop, textAreaTokens.rightContentRight, textAreaTokens.rightContentHeight, textAreaTokens.labelMarginBottom, textAreaTokens.labelInnerFontFamily, textAreaTokens.labelInnerFontSize, textAreaTokens.labelInnerFontStyle, textAreaTokens.labelInnerFontWeight, textAreaTokens.labelInnerLetterSpacing, textAreaTokens.labelInnerLineHeight, textAreaTokens.inputFontFamily, textAreaTokens.inputFontSize, textAreaTokens.inputFontStyle, textAreaTokens.inputFontWeight, textAreaTokens.inputLetterSpacing, textAreaTokens.inputLineHeight, textAreaTokens.helpersFontFamily, textAreaTokens.helpersFontSize, textAreaTokens.helpersFontStyle, textAreaTokens.helpersFontWeight, textAreaTokens.helpersLetterSpacing, textAreaTokens.helpersLineHeight),
|
13
|
+
l: /*#__PURE__*/css(["", ":100%;", ":6.812rem;", ":1.625rem;", ":0.875rem;", ":0.875rem 0.875rem 0 0;", ":1.063rem;", ":1.125rem;", ":3.625rem;", ":0.75rem;", ":1.125rem;", ":0.75rem;", ":1.125rem;", ":0.75rem;", ":1.125rem;", ":0rem;", ":1.063rem;", ":1rem;", ":1.25rem;", ":0.75rem;", ":var(--plasma-typo-body-xs-font-family);", ":var(--plasma-typo-body-xs-font-size);", ":var(--plasma-typo-body-xs-font-style);", ":var(--plasma-typo-body-xs-font-weight);", ":var(--plasma-typo-body-xs-letter-spacing);", ":var(--plasma-typo-body-xs-line-height);", ":var(--plasma-typo-body-l-font-family);", ":var(--plasma-typo-body-l-font-size);", ":var(--plasma-typo-body-l-font-style);", ":var(--plasma-typo-body-l-font-weight);", ":var(--plasma-typo-body-l-letter-spacing);", ":var(--plasma-typo-body-l-line-height);", ":var(--plasma-typo-body-xs-font-family);", ":var(--plasma-typo-body-xs-font-size);", ":var(--plasma-typo-body-xs-font-style);", ":var(--plasma-typo-body-xs-font-weight);", ":var(--plasma-typo-body-xs-letter-spacing);", ":var(--plasma-typo-body-xs-line-height);"], textAreaTokens.inputWidth, textAreaTokens.inputHeight, textAreaTokens.inputMinHeight, textAreaTokens.borderRadius, textAreaTokens.borderRadiusWithHelpers, textAreaTokens.inputPaddingTop, textAreaTokens.inputPaddingRight, textAreaTokens.inputPaddingRightWithRightContent, textAreaTokens.inputPaddingBottom, textAreaTokens.inputPaddingLeft, textAreaTokens.helpersPaddingTop, textAreaTokens.helpersPaddingRight, textAreaTokens.helpersPaddingBottom, textAreaTokens.helpersPaddingLeft, textAreaTokens.helpersOffset, textAreaTokens.rightContentTop, textAreaTokens.rightContentRight, textAreaTokens.rightContentHeight, textAreaTokens.labelMarginBottom, textAreaTokens.labelInnerFontFamily, textAreaTokens.labelInnerFontSize, textAreaTokens.labelInnerFontStyle, textAreaTokens.labelInnerFontWeight, textAreaTokens.labelInnerLetterSpacing, textAreaTokens.labelInnerLineHeight, textAreaTokens.inputFontFamily, textAreaTokens.inputFontSize, textAreaTokens.inputFontStyle, textAreaTokens.inputFontWeight, textAreaTokens.inputLetterSpacing, textAreaTokens.inputLineHeight, textAreaTokens.helpersFontFamily, textAreaTokens.helpersFontSize, textAreaTokens.helpersFontStyle, textAreaTokens.helpersFontWeight, textAreaTokens.helpersLetterSpacing, textAreaTokens.helpersLineHeight)
|
14
14
|
},
|
15
15
|
view: {
|
16
16
|
"default": /*#__PURE__*/css(["", ":var(--surface-transparent-primary);", ":var(--surface-transparent-primary-hover);", ":var(--surface-transparent-primary-active);", ":var(--surface-transparent-secondary);", ":var(--surface-transparent-primary);", ":var(--surface-transparent-primary-hover);", ":var(--surface-transparent-primary-active);", ":var(--surface-transparent-secondary);", ":var(--text-primary);", ":var(--text-primary);", ":var(--text-accent);", ":var(--text-secondary);", ":var(--text-tertiary);", ":var(--text-secondary);", ":var(--text-secondary);"], textAreaTokens.inputBackgroundColor, textAreaTokens.inputBackgroundColorHover, textAreaTokens.inputBackgroundColorActive, textAreaTokens.inputBackgroundColorFocus, textAreaTokens.helpersBackgroundColor, textAreaTokens.helpersBackgroundColorHover, textAreaTokens.helpersBackgroundColorActive, textAreaTokens.helpersBackgroundColorFocus, textAreaTokens.inputColor, textAreaTokens.inputColorFocus, textAreaTokens.inputCaretColor, textAreaTokens.placeholderColor, textAreaTokens.placeholderColorFocus, textAreaTokens.leftHelperColor, textAreaTokens.rightHelperColor),
|
@@ -79,7 +79,7 @@ const baseEvents = [
|
|
79
79
|
];
|
80
80
|
|
81
81
|
const StoryDefault = (args: CalendarProps) => {
|
82
|
-
const { isRange, isDouble, min, max, date } = args;
|
82
|
+
const { isRange, isDouble, min, max, date, includeEdgeDates } = args;
|
83
83
|
const [value, setValue] = useState(new Date(2023, 10, 16));
|
84
84
|
const [valueRange, setValueRange] = useState<[Date, Date?]>([new Date(2023, 10, 16), new Date(2023, 10, 23)]);
|
85
85
|
|
@@ -110,6 +110,7 @@ const StoryDefault = (args: CalendarProps) => {
|
|
110
110
|
disabledList={disabledDays}
|
111
111
|
min={min}
|
112
112
|
max={max}
|
113
|
+
includeEdgeDates={includeEdgeDates}
|
113
114
|
onChangeValue={(isRange ? handleOnRangeChange : handleOnChange) as (value: Date | [Date, Date?]) => void}
|
114
115
|
/>
|
115
116
|
);
|
@@ -121,12 +122,13 @@ export const Default: StoryObj<CalendarProps> = {
|
|
121
122
|
max: new Date(2023, 11, 24),
|
122
123
|
isDouble: false,
|
123
124
|
isRange: false,
|
125
|
+
includeEdgeDates: false,
|
124
126
|
},
|
125
127
|
render: (args) => <StoryDefault {...args} />,
|
126
128
|
};
|
127
129
|
|
128
130
|
const StoryBase = (args: CalendarBaseProps) => {
|
129
|
-
const { min, max, type } = args;
|
131
|
+
const { min, max, type, includeEdgeDates } = args;
|
130
132
|
const [value, setValue] = useState(new Date(2023, 10, 16));
|
131
133
|
|
132
134
|
const handleOnChange = useCallback((newValue: Date) => {
|
@@ -150,6 +152,7 @@ const StoryBase = (args: CalendarBaseProps) => {
|
|
150
152
|
disabledList={disabledDays}
|
151
153
|
min={min}
|
152
154
|
max={max}
|
155
|
+
includeEdgeDates={includeEdgeDates}
|
153
156
|
type={type}
|
154
157
|
onChangeValue={handleOnChange}
|
155
158
|
/>
|
@@ -168,13 +171,14 @@ export const Base: StoryObj<CalendarBaseProps> = {
|
|
168
171
|
args: {
|
169
172
|
min: new Date(2023, 10, 1),
|
170
173
|
max: new Date(2023, 11, 24),
|
174
|
+
includeEdgeDates: false,
|
171
175
|
type: 'Days',
|
172
176
|
},
|
173
177
|
render: (args) => <StoryBase {...args} />,
|
174
178
|
};
|
175
179
|
|
176
180
|
const StoryDouble = (args: CalendarDoubleProps) => {
|
177
|
-
const { min, max } = args;
|
181
|
+
const { min, max, includeEdgeDates } = args;
|
178
182
|
const [value, setValue] = useState(new Date(2023, 10, 16));
|
179
183
|
const handleOnChange = useCallback((newValue: Date) => {
|
180
184
|
setValue(newValue);
|
@@ -197,6 +201,7 @@ const StoryDouble = (args: CalendarDoubleProps) => {
|
|
197
201
|
disabledList={disabledDays}
|
198
202
|
min={min}
|
199
203
|
max={max}
|
204
|
+
includeEdgeDates={includeEdgeDates}
|
200
205
|
onChangeValue={handleOnChange}
|
201
206
|
/>
|
202
207
|
);
|
@@ -206,12 +211,13 @@ export const Double: StoryObj<CalendarDoubleProps> = {
|
|
206
211
|
args: {
|
207
212
|
min: new Date(2023, 10, 1),
|
208
213
|
max: new Date(2023, 11, 24),
|
214
|
+
includeEdgeDates: false,
|
209
215
|
},
|
210
216
|
render: (args) => <StoryDouble {...args} />,
|
211
217
|
};
|
212
218
|
|
213
219
|
const StoryRange = (args: CalendarBaseRangeProps) => {
|
214
|
-
const { min, max, type } = args;
|
220
|
+
const { min, max, type, includeEdgeDates } = args;
|
215
221
|
const [values, setValue] = useState<[Date, Date?]>([new Date(2023, 10, 15), new Date(2023, 10, 24)]);
|
216
222
|
const handleOnChange = useCallback((newValue: [Date, Date?]) => {
|
217
223
|
onChangeValue(newValue);
|
@@ -237,6 +243,7 @@ const StoryRange = (args: CalendarBaseRangeProps) => {
|
|
237
243
|
disabledList={disabledList}
|
238
244
|
min={min}
|
239
245
|
max={max}
|
246
|
+
includeEdgeDates={includeEdgeDates}
|
240
247
|
type={type}
|
241
248
|
onChangeValue={handleOnChange}
|
242
249
|
/>
|
@@ -255,13 +262,14 @@ export const Range: StoryObj<CalendarBaseRangeProps> = {
|
|
255
262
|
args: {
|
256
263
|
min: new Date(2023, 10, 1),
|
257
264
|
max: new Date(2023, 11, 24),
|
265
|
+
includeEdgeDates: false,
|
258
266
|
type: 'Days',
|
259
267
|
},
|
260
268
|
render: (args) => <StoryRange {...args} />,
|
261
269
|
};
|
262
270
|
|
263
271
|
const StoryRangeDouble = (args: CalendarBaseRangeProps) => {
|
264
|
-
const { min, max } = args;
|
272
|
+
const { min, max, includeEdgeDates } = args;
|
265
273
|
const [values, setValue] = useState<[Date, Date?]>([new Date(2023, 10, 15), new Date(2023, 10, 24)]);
|
266
274
|
const handleOnChange = useCallback((newValue: [Date, Date?]) => {
|
267
275
|
onChangeValue(newValue);
|
@@ -287,6 +295,7 @@ const StoryRangeDouble = (args: CalendarBaseRangeProps) => {
|
|
287
295
|
disabledList={disabledList}
|
288
296
|
min={min}
|
289
297
|
max={max}
|
298
|
+
includeEdgeDates={includeEdgeDates}
|
290
299
|
onChangeValue={handleOnChange}
|
291
300
|
/>
|
292
301
|
);
|
@@ -296,12 +305,13 @@ export const RangeDouble: StoryObj<CalendarBaseRangeProps> = {
|
|
296
305
|
args: {
|
297
306
|
min: new Date(2023, 10, 1),
|
298
307
|
max: new Date(2023, 11, 24),
|
308
|
+
includeEdgeDates: false,
|
299
309
|
},
|
300
310
|
render: (args) => <StoryRangeDouble {...args} />,
|
301
311
|
};
|
302
312
|
|
303
313
|
const StoryWithPopover = (args: CalendarProps) => {
|
304
|
-
const { isDouble, min, max } = args;
|
314
|
+
const { isDouble, min, max, includeEdgeDates } = args;
|
305
315
|
const [isOpen, setIsOpen] = useState(false);
|
306
316
|
const [textValue, setTextValue] = useState('2023-10-16');
|
307
317
|
const [value, setValue] = useState(new Date(textValue));
|
@@ -340,6 +350,7 @@ const StoryWithPopover = (args: CalendarProps) => {
|
|
340
350
|
disabledList={disabledDays}
|
341
351
|
min={min}
|
342
352
|
max={max}
|
353
|
+
includeEdgeDates={includeEdgeDates}
|
343
354
|
isDouble={isDouble}
|
344
355
|
isRange={false}
|
345
356
|
onChangeValue={handleOnChange}
|
@@ -353,6 +364,7 @@ export const WithPopover: StoryObj<CalendarProps> = {
|
|
353
364
|
min: new Date(2023, 9, 1),
|
354
365
|
max: new Date(2023, 11, 24),
|
355
366
|
isDouble: false,
|
367
|
+
includeEdgeDates: false,
|
356
368
|
},
|
357
369
|
render: (args) => <StoryWithPopover {...args} />,
|
358
370
|
};
|
@@ -7,10 +7,10 @@ export var config = {
|
|
7
7
|
},
|
8
8
|
variations: {
|
9
9
|
size: {
|
10
|
-
xs: /*#__PURE__*/css(["", ":100%;", ":7.312rem;", ":0.625rem;", ":0.5rem;", ":0.5rem;", ":0.
|
11
|
-
s: /*#__PURE__*/css(["", ":100%;", ":7.187rem;", ":0.625rem;", ":0.625rem;", ":0.625rem;", ":0.
|
12
|
-
m: /*#__PURE__*/css(["", ":100%;", ":7rem;", ":1.125rem;", ":0.75rem;", ":0.75rem;", ":0.
|
13
|
-
l: /*#__PURE__*/css(["", ":100%;", ":6.812rem;", ":1.625rem;", ":0.875rem;", ":0.875rem;", ":
|
10
|
+
xs: /*#__PURE__*/css(["", ":100%;", ":7.312rem;", ":0.625rem;", ":0.5rem;", ":0.5rem;", ":0.563rem;", ":0.625rem;", ":2.125rem;", ":0.563rem;", ":0.563rem;", ":0.625rem;", ":0.25rem;", ":0rem;", ":0rem;", ":0rem;", ":0.375rem;", ":0.563rem;", ":0.5rem;", ":1.25rem;", ":0.375rem;", ":var(--plasma-typo-body-xxs-font-family);", ":var(--plasma-typo-body-xxs-font-size);", ":var(--plasma-typo-body-xxs-font-style);", ":var(--plasma-typo-body-xxs-font-weight);", ":var(--plasma-typo-body-xxs-letter-spacing);", ":var(--plasma-typo-body-xxs-line-height);", ":var(--plasma-typo-body-xs-font-family);", ":var(--plasma-typo-body-xs-font-size);", ":var(--plasma-typo-body-xs-font-style);", ":var(--plasma-typo-body-xs-font-weight);", ":var(--plasma-typo-body-xs-letter-spacing);", ":var(--plasma-typo-body-xs-line-height);", ":var(--plasma-typo-body-xs-font-family);", ":var(--plasma-typo-body-xs-font-size);", ":var(--plasma-typo-body-xs-font-style);", ":var(--plasma-typo-body-xs-font-weight);", ":var(--plasma-typo-body-xs-letter-spacing);", ":var(--plasma-typo-body-xs-line-height);"], textAreaTokens.inputWidth, textAreaTokens.inputHeight, textAreaTokens.inputMinHeight, textAreaTokens.borderRadius, textAreaTokens.borderRadiusWithHelpers, textAreaTokens.inputPaddingTop, textAreaTokens.inputPaddingRight, textAreaTokens.inputPaddingRightWithRightContent, textAreaTokens.inputPaddingBottom, textAreaTokens.inputPaddingBottomWithHelpers, textAreaTokens.inputPaddingLeft, textAreaTokens.helpersPaddingTop, textAreaTokens.helpersPaddingRight, textAreaTokens.helpersPaddingBottom, textAreaTokens.helpersPaddingLeft, textAreaTokens.helpersOffset, textAreaTokens.rightContentTop, textAreaTokens.rightContentRight, textAreaTokens.rightContentHeight, textAreaTokens.labelMarginBottom, textAreaTokens.labelInnerFontFamily, textAreaTokens.labelInnerFontSize, textAreaTokens.labelInnerFontStyle, textAreaTokens.labelInnerFontWeight, textAreaTokens.labelInnerLetterSpacing, textAreaTokens.labelInnerLineHeight, textAreaTokens.inputFontFamily, textAreaTokens.inputFontSize, textAreaTokens.inputFontStyle, textAreaTokens.inputFontWeight, textAreaTokens.inputLetterSpacing, textAreaTokens.inputLineHeight, textAreaTokens.helpersFontFamily, textAreaTokens.helpersFontSize, textAreaTokens.helpersFontStyle, textAreaTokens.helpersFontWeight, textAreaTokens.helpersLetterSpacing, textAreaTokens.helpersLineHeight),
|
11
|
+
s: /*#__PURE__*/css(["", ":100%;", ":7.187rem;", ":0.625rem;", ":0.625rem;", ":0.625rem;", ":0.688rem;", ":0.875rem;", ":3.125rem;", ":0.75rem;", ":0.75rem;", ":0.875rem;", ":0.25rem;", ":0rem;", ":0rem;", ":0rem;", ":0.375rem;", ":0.688rem;", ":0.75rem;", ":1.25rem;", ":0.5rem;", ":var(--plasma-typo-body-xs-font-family);", ":var(--plasma-typo-body-xs-font-size);", ":var(--plasma-typo-body-xs-font-style);", ":var(--plasma-typo-body-xs-font-weight);", ":var(--plasma-typo-body-xs-letter-spacing);", ":var(--plasma-typo-body-xs-line-height);", ":var(--plasma-typo-body-s-font-family);", ":var(--plasma-typo-body-s-font-size);", ":var(--plasma-typo-body-s-font-style);", ":var(--plasma-typo-body-s-font-weight);", ":var(--plasma-typo-body-s-letter-spacing);", ":var(--plasma-typo-body-s-line-height);", ":var(--plasma-typo-body-xs-font-family);", ":var(--plasma-typo-body-xs-font-size);", ":var(--plasma-typo-body-xs-font-style);", ":var(--plasma-typo-body-xs-font-weight);", ":var(--plasma-typo-body-xs-letter-spacing);", ":var(--plasma-typo-body-xs-line-height);"], textAreaTokens.inputWidth, textAreaTokens.inputHeight, textAreaTokens.inputMinHeight, textAreaTokens.borderRadius, textAreaTokens.borderRadiusWithHelpers, textAreaTokens.inputPaddingTop, textAreaTokens.inputPaddingRight, textAreaTokens.inputPaddingRightWithRightContent, textAreaTokens.inputPaddingBottom, textAreaTokens.inputPaddingBottomWithHelpers, textAreaTokens.inputPaddingLeft, textAreaTokens.helpersPaddingTop, textAreaTokens.helpersPaddingRight, textAreaTokens.helpersPaddingBottom, textAreaTokens.helpersPaddingLeft, textAreaTokens.helpersOffset, textAreaTokens.rightContentTop, textAreaTokens.rightContentRight, textAreaTokens.rightContentHeight, textAreaTokens.labelMarginBottom, textAreaTokens.labelInnerFontFamily, textAreaTokens.labelInnerFontSize, textAreaTokens.labelInnerFontStyle, textAreaTokens.labelInnerFontWeight, textAreaTokens.labelInnerLetterSpacing, textAreaTokens.labelInnerLineHeight, textAreaTokens.inputFontFamily, textAreaTokens.inputFontSize, textAreaTokens.inputFontStyle, textAreaTokens.inputFontWeight, textAreaTokens.inputLetterSpacing, textAreaTokens.inputLineHeight, textAreaTokens.helpersFontFamily, textAreaTokens.helpersFontSize, textAreaTokens.helpersFontStyle, textAreaTokens.helpersFontWeight, textAreaTokens.helpersLetterSpacing, textAreaTokens.helpersLineHeight),
|
12
|
+
m: /*#__PURE__*/css(["", ":100%;", ":7rem;", ":1.125rem;", ":0.75rem;", ":0.75rem;", ":0.875rem;", ":1rem;", ":3.375rem;", ":0.75rem;", ":0.75rem;", ":1rem;", ":0.25rem;", ":0rem;", ":0rem;", ":0rem;", ":0.375rem;", ":0.875rem;", ":0.875rem;", ":1.25rem;", ":0.625rem;", ":var(--plasma-typo-body-xs-font-family);", ":var(--plasma-typo-body-xs-font-size);", ":var(--plasma-typo-body-xs-font-style);", ":var(--plasma-typo-body-xs-font-weight);", ":var(--plasma-typo-body-xs-letter-spacing);", ":var(--plasma-typo-body-xs-line-height);", ":var(--plasma-typo-body-m-font-family);", ":var(--plasma-typo-body-m-font-size);", ":var(--plasma-typo-body-m-font-style);", ":var(--plasma-typo-body-m-font-weight);", ":var(--plasma-typo-body-m-letter-spacing);", ":var(--plasma-typo-body-m-line-height);", ":var(--plasma-typo-body-xs-font-family);", ":var(--plasma-typo-body-xs-font-size);", ":var(--plasma-typo-body-xs-font-style);", ":var(--plasma-typo-body-xs-font-weight);", ":var(--plasma-typo-body-xs-letter-spacing);", ":var(--plasma-typo-body-xs-line-height);"], textAreaTokens.inputWidth, textAreaTokens.inputHeight, textAreaTokens.inputMinHeight, textAreaTokens.borderRadius, textAreaTokens.borderRadiusWithHelpers, textAreaTokens.inputPaddingTop, textAreaTokens.inputPaddingRight, textAreaTokens.inputPaddingRightWithRightContent, textAreaTokens.inputPaddingBottom, textAreaTokens.inputPaddingBottomWithHelpers, textAreaTokens.inputPaddingLeft, textAreaTokens.helpersPaddingTop, textAreaTokens.helpersPaddingRight, textAreaTokens.helpersPaddingBottom, textAreaTokens.helpersPaddingLeft, textAreaTokens.helpersOffset, textAreaTokens.rightContentTop, textAreaTokens.rightContentRight, textAreaTokens.rightContentHeight, textAreaTokens.labelMarginBottom, textAreaTokens.labelInnerFontFamily, textAreaTokens.labelInnerFontSize, textAreaTokens.labelInnerFontStyle, textAreaTokens.labelInnerFontWeight, textAreaTokens.labelInnerLetterSpacing, textAreaTokens.labelInnerLineHeight, textAreaTokens.inputFontFamily, textAreaTokens.inputFontSize, textAreaTokens.inputFontStyle, textAreaTokens.inputFontWeight, textAreaTokens.inputLetterSpacing, textAreaTokens.inputLineHeight, textAreaTokens.helpersFontFamily, textAreaTokens.helpersFontSize, textAreaTokens.helpersFontStyle, textAreaTokens.helpersFontWeight, textAreaTokens.helpersLetterSpacing, textAreaTokens.helpersLineHeight),
|
13
|
+
l: /*#__PURE__*/css(["", ":100%;", ":6.812rem;", ":1.625rem;", ":0.875rem;", ":0.875rem;", ":1.063rem;", ":1.125rem;", ":3.625rem;", ":0.75rem;", ":0.75rem;", ":1.125rem;", ":0.25rem;", ":0rem;", ":0rem;", ":0rem;", ":0.375rem;", ":1.063rem;", ":1rem;", ":1.25rem;", ":0.75rem;", ":var(--plasma-typo-body-xs-font-family);", ":var(--plasma-typo-body-xs-font-size);", ":var(--plasma-typo-body-xs-font-style);", ":var(--plasma-typo-body-xs-font-weight);", ":var(--plasma-typo-body-xs-letter-spacing);", ":var(--plasma-typo-body-xs-line-height);", ":var(--plasma-typo-body-l-font-family);", ":var(--plasma-typo-body-l-font-size);", ":var(--plasma-typo-body-l-font-style);", ":var(--plasma-typo-body-l-font-weight);", ":var(--plasma-typo-body-l-letter-spacing);", ":var(--plasma-typo-body-l-line-height);", ":var(--plasma-typo-body-xs-font-family);", ":var(--plasma-typo-body-xs-font-size);", ":var(--plasma-typo-body-xs-font-style);", ":var(--plasma-typo-body-xs-font-weight);", ":var(--plasma-typo-body-xs-letter-spacing);", ":var(--plasma-typo-body-xs-line-height);"], textAreaTokens.inputWidth, textAreaTokens.inputHeight, textAreaTokens.inputMinHeight, textAreaTokens.borderRadius, textAreaTokens.borderRadiusWithHelpers, textAreaTokens.inputPaddingTop, textAreaTokens.inputPaddingRight, textAreaTokens.inputPaddingRightWithRightContent, textAreaTokens.inputPaddingBottom, textAreaTokens.inputPaddingBottomWithHelpers, textAreaTokens.inputPaddingLeft, textAreaTokens.helpersPaddingTop, textAreaTokens.helpersPaddingRight, textAreaTokens.helpersPaddingBottom, textAreaTokens.helpersPaddingLeft, textAreaTokens.helpersOffset, textAreaTokens.rightContentTop, textAreaTokens.rightContentRight, textAreaTokens.rightContentHeight, textAreaTokens.labelMarginBottom, textAreaTokens.labelInnerFontFamily, textAreaTokens.labelInnerFontSize, textAreaTokens.labelInnerFontStyle, textAreaTokens.labelInnerFontWeight, textAreaTokens.labelInnerLetterSpacing, textAreaTokens.labelInnerLineHeight, textAreaTokens.inputFontFamily, textAreaTokens.inputFontSize, textAreaTokens.inputFontStyle, textAreaTokens.inputFontWeight, textAreaTokens.inputLetterSpacing, textAreaTokens.inputLineHeight, textAreaTokens.helpersFontFamily, textAreaTokens.helpersFontSize, textAreaTokens.helpersFontStyle, textAreaTokens.helpersFontWeight, textAreaTokens.helpersLetterSpacing, textAreaTokens.helpersLineHeight)
|
14
14
|
},
|
15
15
|
view: {
|
16
16
|
"default": /*#__PURE__*/css(["", ":var(--text-tertiary);", ":var(--text-tertiary-hover);", ":var(--text-tertiary-hover);", ":var(--text-accent);", ":var(--text-primary);", ":var(--text-primary);", ":var(--text-accent);", ":var(--text-secondary);", ":var(--text-tertiary);", ":var(--text-secondary);", ":var(--text-secondary);"], textAreaTokens.inputBorderColor, textAreaTokens.inputBorderColorHover, textAreaTokens.inputBorderColorActive, textAreaTokens.inputBorderColorFocus, textAreaTokens.inputColor, textAreaTokens.inputColorFocus, textAreaTokens.inputCaretColor, textAreaTokens.placeholderColor, textAreaTokens.placeholderColorFocus, textAreaTokens.leftHelperColor, textAreaTokens.rightHelperColor),
|
@@ -79,7 +79,7 @@ const baseEvents = [
|
|
79
79
|
];
|
80
80
|
|
81
81
|
const StoryDefault = (args: CalendarProps) => {
|
82
|
-
const { isRange, isDouble, min, max, date } = args;
|
82
|
+
const { isRange, isDouble, min, max, date, includeEdgeDates } = args;
|
83
83
|
const [value, setValue] = useState(new Date(2023, 10, 16));
|
84
84
|
const [valueRange, setValueRange] = useState<[Date, Date?]>([new Date(2023, 10, 16), new Date(2023, 10, 23)]);
|
85
85
|
|
@@ -110,6 +110,7 @@ const StoryDefault = (args: CalendarProps) => {
|
|
110
110
|
disabledList={disabledDays}
|
111
111
|
min={min}
|
112
112
|
max={max}
|
113
|
+
includeEdgeDates={includeEdgeDates}
|
113
114
|
onChangeValue={(isRange ? handleOnRangeChange : handleOnChange) as (value: Date | [Date, Date?]) => void}
|
114
115
|
/>
|
115
116
|
);
|
@@ -121,12 +122,13 @@ export const Default: StoryObj<CalendarProps> = {
|
|
121
122
|
max: new Date(2023, 11, 24),
|
122
123
|
isDouble: false,
|
123
124
|
isRange: false,
|
125
|
+
includeEdgeDates: false,
|
124
126
|
},
|
125
127
|
render: (args) => <StoryDefault {...args} />,
|
126
128
|
};
|
127
129
|
|
128
130
|
const StoryBase = (args: CalendarBaseProps) => {
|
129
|
-
const { min, max, type } = args;
|
131
|
+
const { min, max, type, includeEdgeDates } = args;
|
130
132
|
const [value, setValue] = useState(new Date(2023, 10, 16));
|
131
133
|
|
132
134
|
const handleOnChange = useCallback((newValue: Date) => {
|
@@ -150,6 +152,7 @@ const StoryBase = (args: CalendarBaseProps) => {
|
|
150
152
|
disabledList={disabledDays}
|
151
153
|
min={min}
|
152
154
|
max={max}
|
155
|
+
includeEdgeDates={includeEdgeDates}
|
153
156
|
type={type}
|
154
157
|
onChangeValue={handleOnChange}
|
155
158
|
/>
|
@@ -168,13 +171,14 @@ export const Base: StoryObj<CalendarBaseProps> = {
|
|
168
171
|
args: {
|
169
172
|
min: new Date(2023, 10, 1),
|
170
173
|
max: new Date(2023, 11, 24),
|
174
|
+
includeEdgeDates: false,
|
171
175
|
type: 'Days',
|
172
176
|
},
|
173
177
|
render: (args) => <StoryBase {...args} />,
|
174
178
|
};
|
175
179
|
|
176
180
|
const StoryDouble = (args: CalendarDoubleProps) => {
|
177
|
-
const { min, max } = args;
|
181
|
+
const { min, max, includeEdgeDates } = args;
|
178
182
|
const [value, setValue] = useState(new Date(2023, 10, 16));
|
179
183
|
const handleOnChange = useCallback((newValue: Date) => {
|
180
184
|
setValue(newValue);
|
@@ -197,6 +201,7 @@ const StoryDouble = (args: CalendarDoubleProps) => {
|
|
197
201
|
disabledList={disabledDays}
|
198
202
|
min={min}
|
199
203
|
max={max}
|
204
|
+
includeEdgeDates={includeEdgeDates}
|
200
205
|
onChangeValue={handleOnChange}
|
201
206
|
/>
|
202
207
|
);
|
@@ -206,12 +211,13 @@ export const Double: StoryObj<CalendarDoubleProps> = {
|
|
206
211
|
args: {
|
207
212
|
min: new Date(2023, 10, 1),
|
208
213
|
max: new Date(2023, 11, 24),
|
214
|
+
includeEdgeDates: false,
|
209
215
|
},
|
210
216
|
render: (args) => <StoryDouble {...args} />,
|
211
217
|
};
|
212
218
|
|
213
219
|
const StoryRange = (args: CalendarBaseRangeProps) => {
|
214
|
-
const { min, max, type } = args;
|
220
|
+
const { min, max, type, includeEdgeDates } = args;
|
215
221
|
const [values, setValue] = useState<[Date, Date?]>([new Date(2023, 10, 15), new Date(2023, 10, 24)]);
|
216
222
|
const handleOnChange = useCallback((newValue: [Date, Date?]) => {
|
217
223
|
onChangeValue(newValue);
|
@@ -237,6 +243,7 @@ const StoryRange = (args: CalendarBaseRangeProps) => {
|
|
237
243
|
disabledList={disabledList}
|
238
244
|
min={min}
|
239
245
|
max={max}
|
246
|
+
includeEdgeDates={includeEdgeDates}
|
240
247
|
type={type}
|
241
248
|
onChangeValue={handleOnChange}
|
242
249
|
/>
|
@@ -255,13 +262,14 @@ export const Range: StoryObj<CalendarBaseRangeProps> = {
|
|
255
262
|
args: {
|
256
263
|
min: new Date(2023, 10, 1),
|
257
264
|
max: new Date(2023, 11, 24),
|
265
|
+
includeEdgeDates: false,
|
258
266
|
type: 'Days',
|
259
267
|
},
|
260
268
|
render: (args) => <StoryRange {...args} />,
|
261
269
|
};
|
262
270
|
|
263
271
|
const StoryRangeDouble = (args: CalendarBaseRangeProps) => {
|
264
|
-
const { min, max } = args;
|
272
|
+
const { min, max, includeEdgeDates } = args;
|
265
273
|
const [values, setValue] = useState<[Date, Date?]>([new Date(2023, 10, 15), new Date(2023, 10, 24)]);
|
266
274
|
const handleOnChange = useCallback((newValue: [Date, Date?]) => {
|
267
275
|
onChangeValue(newValue);
|
@@ -287,6 +295,7 @@ const StoryRangeDouble = (args: CalendarBaseRangeProps) => {
|
|
287
295
|
disabledList={disabledList}
|
288
296
|
min={min}
|
289
297
|
max={max}
|
298
|
+
includeEdgeDates={includeEdgeDates}
|
290
299
|
onChangeValue={handleOnChange}
|
291
300
|
/>
|
292
301
|
);
|
@@ -296,12 +305,13 @@ export const RangeDouble: StoryObj<CalendarBaseRangeProps> = {
|
|
296
305
|
args: {
|
297
306
|
min: new Date(2023, 10, 1),
|
298
307
|
max: new Date(2023, 11, 24),
|
308
|
+
includeEdgeDates: false,
|
299
309
|
},
|
300
310
|
render: (args) => <StoryRangeDouble {...args} />,
|
301
311
|
};
|
302
312
|
|
303
313
|
const StoryWithPopover = (args: CalendarProps) => {
|
304
|
-
const { isDouble, min, max } = args;
|
314
|
+
const { isDouble, min, max, includeEdgeDates } = args;
|
305
315
|
const [isOpen, setIsOpen] = useState(false);
|
306
316
|
const [textValue, setTextValue] = useState('2023-10-16');
|
307
317
|
const [value, setValue] = useState(new Date(textValue));
|
@@ -340,6 +350,7 @@ const StoryWithPopover = (args: CalendarProps) => {
|
|
340
350
|
disabledList={disabledDays}
|
341
351
|
min={min}
|
342
352
|
max={max}
|
353
|
+
includeEdgeDates={includeEdgeDates}
|
343
354
|
isDouble={isDouble}
|
344
355
|
isRange={false}
|
345
356
|
onChangeValue={handleOnChange}
|
@@ -353,6 +364,7 @@ export const WithPopover: StoryObj<CalendarProps> = {
|
|
353
364
|
min: new Date(2023, 9, 1),
|
354
365
|
max: new Date(2023, 11, 24),
|
355
366
|
isDouble: false,
|
367
|
+
includeEdgeDates: false,
|
356
368
|
},
|
357
369
|
render: (args) => <StoryWithPopover {...args} />,
|
358
370
|
};
|
@@ -84,6 +84,10 @@ export interface Calendar extends HTMLAttributes<HTMLDivElement> {
|
|
84
84
|
* Максимальное значение даты.
|
85
85
|
*/
|
86
86
|
max?: Date;
|
87
|
+
/**
|
88
|
+
* Должны ли значения минимального и максимального дня включаться в диапазон.
|
89
|
+
*/
|
90
|
+
includeEdgeDates?: boolean;
|
87
91
|
/**
|
88
92
|
* Список событий.
|
89
93
|
*/
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"Calendar.types.d.ts","sourceRoot":"","sources":["../../../src/components/Calendar/Calendar.types.ts"],"names":[],"mappings":"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"}
|
1
|
+
{"version":3,"file":"Calendar.types.d.ts","sourceRoot":"","sources":["../../../src/components/Calendar/Calendar.types.ts"],"names":[],"mappings":"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"}
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"CalendarBase.d.ts","sourceRoot":"","sources":["../../../../src/components/Calendar/CalendarBase/CalendarBase.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAA6D,cAAc,EAAc,MAAM,OAAO,CAAC;AAErH,OAAO,KAAK,EAAE,QAAQ,EAAqC,MAAM,mBAAmB,CAAC;AACrF,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,gBAAgB,CAAC;AAMxD,OAAO,EAAE,SAAS,EAAE,MAAM,kBAAkB,CAAC;AAM7C,oBAAY,iBAAiB,GAAG,cAAc,CAAC,cAAc,CAAC,GAC1D,QAAQ,GAAG;IACP;;OAEG;IACH,IAAI,CAAC,EAAE,iBAAiB,CAAC;CAC5B,CAAC;AAEN;;GAEG;AACH,eAAO,MAAM,gBAAgB,SAAU,UAAU,cAAc,EAAE,eAAe,cAAc,CAAC,CAAC;IATxF;;OAEG;;
|
1
|
+
{"version":3,"file":"CalendarBase.d.ts","sourceRoot":"","sources":["../../../../src/components/Calendar/CalendarBase/CalendarBase.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAA6D,cAAc,EAAc,MAAM,OAAO,CAAC;AAErH,OAAO,KAAK,EAAE,QAAQ,EAAqC,MAAM,mBAAmB,CAAC;AACrF,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,gBAAgB,CAAC;AAMxD,OAAO,EAAE,SAAS,EAAE,MAAM,kBAAkB,CAAC;AAM7C,oBAAY,iBAAiB,GAAG,cAAc,CAAC,cAAc,CAAC,GAC1D,QAAQ,GAAG;IACP;;OAEG;IACH,IAAI,CAAC,EAAE,iBAAiB,CAAC;CAC5B,CAAC;AAEN;;GAEG;AACH,eAAO,MAAM,gBAAgB,SAAU,UAAU,cAAc,EAAE,eAAe,cAAc,CAAC,CAAC;IATxF;;OAEG;;wCA4ON,CAAC;AAEN,eAAO,MAAM,kBAAkB;;;mBAvOQ,UAAU,cAAc,EAAE,eAAe,cAAc,CAAC,CAAC;QATxF;;WAEG;;;;;;;;;;;;;;;;CA+PV,CAAC"}
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"CalendarDouble.d.ts","sourceRoot":"","sources":["../../../../src/components/Calendar/CalendarDouble/CalendarDouble.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAA8C,cAAc,EAAE,MAAM,OAAO,CAAC;AAE1F,OAAO,KAAK,EAAE,QAAQ,EAAc,MAAM,mBAAmB,CAAC;AAI9D,OAAO,EAAE,SAAS,EAAE,MAAM,wBAAwB,CAAC;AAKnD,oBAAY,mBAAmB,GAAG,cAAc,CAAC,cAAc,CAAC,GAAG,QAAQ,CAAC;AAE5E;;GAEG;AACH,eAAO,MAAM,kBAAkB,SAAU,UAAU,cAAc,EAAE,eAAe,cAAc,CAAC,CAAC,
|
1
|
+
{"version":3,"file":"CalendarDouble.d.ts","sourceRoot":"","sources":["../../../../src/components/Calendar/CalendarDouble/CalendarDouble.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAA8C,cAAc,EAAE,MAAM,OAAO,CAAC;AAE1F,OAAO,KAAK,EAAE,QAAQ,EAAc,MAAM,mBAAmB,CAAC;AAI9D,OAAO,EAAE,SAAS,EAAE,MAAM,wBAAwB,CAAC;AAKnD,oBAAY,mBAAmB,GAAG,cAAc,CAAC,cAAc,CAAC,GAAG,QAAQ,CAAC;AAE5E;;GAEG;AACH,eAAO,MAAM,kBAAkB,SAAU,UAAU,cAAc,EAAE,eAAe,cAAc,CAAC,CAAC,2HA4J7F,CAAC;AAEN,eAAO,MAAM,oBAAoB;;;mBA9JQ,UAAU,cAAc,EAAE,eAAe,cAAc,CAAC,CAAC;;;;;;;;;;;CA4KjG,CAAC"}
|
@@ -2,5 +2,5 @@ import type { CalendarValueType, DateItem, DateObject, DisabledDay, EventDay } f
|
|
2
2
|
/**
|
3
3
|
* Хук для получения списка дней.
|
4
4
|
*/
|
5
|
-
export declare const useDays: (date: DateObject, value: CalendarValueType, eventList?: EventDay[] | undefined, disabledList?: DisabledDay[] | undefined, min?: Date | undefined, max?: Date | undefined) => readonly [DateItem[][], number[] | undefined];
|
5
|
+
export declare const useDays: (date: DateObject, value: CalendarValueType, eventList?: EventDay[] | undefined, disabledList?: DisabledDay[] | undefined, min?: Date | undefined, max?: Date | undefined, includeEdgeDates?: boolean | undefined) => readonly [DateItem[][], number[] | undefined];
|
6
6
|
//# sourceMappingURL=useDays.d.ts.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"useDays.d.ts","sourceRoot":"","sources":["../../../../src/components/Calendar/hooks/useDays.ts"],"names":[],"mappings":"AAaA,OAAO,KAAK,EAAE,iBAAiB,EAAE,QAAQ,EAAE,UAAU,EAAE,WAAW,EAAE,QAAQ,EAAE,MAAM,mBAAmB,CAAC;
|
1
|
+
{"version":3,"file":"useDays.d.ts","sourceRoot":"","sources":["../../../../src/components/Calendar/hooks/useDays.ts"],"names":[],"mappings":"AAaA,OAAO,KAAK,EAAE,iBAAiB,EAAE,QAAQ,EAAE,UAAU,EAAE,WAAW,EAAE,QAAQ,EAAE,MAAM,mBAAmB,CAAC;AAwOxG;;GAEG;AACH,eAAO,MAAM,OAAO,SACV,UAAU,SACT,iBAAiB,wNAwB4B,CAAC"}
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"CalendarDays.d.ts","sourceRoot":"","sources":["../../../../../src/components/Calendar/ui/CalendarDays/CalendarDays.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAyC,MAAM,OAAO,CAAC;AAiB9D,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,sBAAsB,CAAC;AAE9D;;GAEG;AACH,eAAO,MAAM,YAAY,EAAE,KAAK,CAAC,EAAE,CAAC,iBAAiB,
|
1
|
+
{"version":3,"file":"CalendarDays.d.ts","sourceRoot":"","sources":["../../../../../src/components/Calendar/ui/CalendarDays/CalendarDays.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAyC,MAAM,OAAO,CAAC;AAiB9D,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,sBAAsB,CAAC;AAE9D;;GAEG;AACH,eAAO,MAAM,YAAY,EAAE,KAAK,CAAC,EAAE,CAAC,iBAAiB,CA8JpD,CAAC"}
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"CalendarDays.types.d.ts","sourceRoot":"","sources":["../../../../../src/components/Calendar/ui/CalendarDays/CalendarDays.types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,gBAAgB,EAAE,aAAa,EAAE,MAAM,OAAO,CAAC;AAExE,OAAO,KAAK,EAAE,iBAAiB,EAAE,UAAU,EAAE,WAAW,EAAE,QAAQ,EAAE,MAAM,sBAAsB,CAAC;AAEjG,MAAM,WAAW,iBAAkB,SAAQ,cAAc,CAAC,cAAc,CAAC;IACrE,IAAI,EAAE,UAAU,CAAC;IACjB,KAAK,EAAE,iBAAiB,CAAC;IACzB,GAAG,CAAC,EAAE,IAAI,CAAC;IACX,GAAG,CAAC,EAAE,IAAI,CAAC;IACX,SAAS,CAAC,EAAE,QAAQ,EAAE,CAAC;IACvB,YAAY,CAAC,EAAE,WAAW,EAAE,CAAC;IAC7B,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,UAAU,CAAC,EAAE,UAAU,CAAC;IACxB,aAAa,CAAC,EAAE,MAAM,EAAE,CAAC;IACzB,SAAS,EAAE,gBAAgB,CAAC,cAAc,EAAE,EAAE,CAAC,CAAC;IAChD,UAAU,CAAC,EAAE,CAAC,IAAI,CAAC,EAAE,UAAU,KAAK,IAAI,CAAC;IACzC,WAAW,EAAE,CAAC,IAAI,EAAE,UAAU,EAAE,KAAK,EAAE,MAAM,EAAE,KAAK,IAAI,CAAC;IACzD,aAAa,CAAC,EAAE,CAAC,QAAQ,EAAE,MAAM,EAAE,KAAK,IAAI,CAAC;IAC7C,SAAS,CAAC,EAAE,CAAC,KAAK,EAAE,aAAa,CAAC,cAAc,CAAC,KAAK,IAAI,CAAC;CAC9D"}
|
1
|
+
{"version":3,"file":"CalendarDays.types.d.ts","sourceRoot":"","sources":["../../../../../src/components/Calendar/ui/CalendarDays/CalendarDays.types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,gBAAgB,EAAE,aAAa,EAAE,MAAM,OAAO,CAAC;AAExE,OAAO,KAAK,EAAE,iBAAiB,EAAE,UAAU,EAAE,WAAW,EAAE,QAAQ,EAAE,MAAM,sBAAsB,CAAC;AAEjG,MAAM,WAAW,iBAAkB,SAAQ,cAAc,CAAC,cAAc,CAAC;IACrE,IAAI,EAAE,UAAU,CAAC;IACjB,KAAK,EAAE,iBAAiB,CAAC;IACzB,GAAG,CAAC,EAAE,IAAI,CAAC;IACX,GAAG,CAAC,EAAE,IAAI,CAAC;IACX,gBAAgB,CAAC,EAAE,OAAO,CAAC;IAC3B,SAAS,CAAC,EAAE,QAAQ,EAAE,CAAC;IACvB,YAAY,CAAC,EAAE,WAAW,EAAE,CAAC;IAC7B,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,UAAU,CAAC,EAAE,UAAU,CAAC;IACxB,aAAa,CAAC,EAAE,MAAM,EAAE,CAAC;IACzB,SAAS,EAAE,gBAAgB,CAAC,cAAc,EAAE,EAAE,CAAC,CAAC;IAChD,UAAU,CAAC,EAAE,CAAC,IAAI,CAAC,EAAE,UAAU,KAAK,IAAI,CAAC;IACzC,WAAW,EAAE,CAAC,IAAI,EAAE,UAAU,EAAE,KAAK,EAAE,MAAM,EAAE,KAAK,IAAI,CAAC;IACzD,aAAa,CAAC,EAAE,CAAC,QAAQ,EAAE,MAAM,EAAE,KAAK,IAAI,CAAC;IAC7C,SAAS,CAAC,EAAE,CAAC,KAAK,EAAE,aAAa,CAAC,cAAc,CAAC,KAAK,IAAI,CAAC;CAC9D"}
|