Skip to content

Commit

Permalink
release: 1.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
hoangdevnull committed Aug 12, 2024
1 parent 73c275a commit b019dd3
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion react-calendar-kit/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-calendar-kit",
"version": "1.0.2",
"version": "1.0.3",
"license": "MIT",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
Expand Down
2 changes: 2 additions & 0 deletions react-calendar-kit/src/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,5 @@ export type { UseDateRangePickerProps } from './date-picker/use-date-range-picke
export type { DateInputProps } from './input/date-input';
export type { DateRangeInputProps } from './input/date-range-input';
export type { TimeInputProps } from './input/time-input';
export type { RangeValue } from '@react-types/shared';
export type { DateValue, TimeValue, DateRange } from '@react-aria/datepicker';
6 changes: 3 additions & 3 deletions website/src/docs/calendar-primitives.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -149,9 +149,9 @@ const DateRangeInput = forwardRef<ElementRef<typeof CalendarKit.DateRangeInput>,
<CalendarKit.DateRangeInput
ref={ref}
classNames={{
root: 'text-sm text-gray-200',
rangeGroup: 'flex items-center',
group: 'flex gap-0.5 items-center border border-gray-400 w-fit px-3 py-2 rounded-md',
root: 'text-sm text-gray-200 max-w-full',
rangeGroup: 'flex items-center max-w-full overflow-auto scrollbar-hide',
group: 'flex gap-0.5 items-center border border-gray-400 w-fit px-3 py-2 rounded-md max-w-full',
separator: 'mx-2',
label: 'text-sm text-gray-200 mb-1.5 block',
segmentWrapper: 'flex gap-0.5 items-center w-fit',
Expand Down

0 comments on commit b019dd3

Please sign in to comment.