Skip to content

Commit

Permalink
hot patch 0.0.13-alpha.0
Browse files Browse the repository at this point in the history
resolve compiler errors for library users
  • Loading branch information
matthewbub authored May 9, 2023
2 parents 5c181f0 + 8f66026 commit cb7b39a
Show file tree
Hide file tree
Showing 8 changed files with 19 additions and 29,621 deletions.
1 change: 0 additions & 1 deletion .npmignore
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
node_modules/
src/
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ We're also passing an array of custom dates. When the custom date's `date` align
```jsx
import React from 'react';
import { Calendar } from 'calendar-widgets';
import 'calendar-widgets/styles/Calendar-grid.css';

/* defining an optional custom day component */
const CustomDay = ({date, customDate}) => (
Expand Down
1 change: 1 addition & 0 deletions docs/docs/calendar.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ A simple calendar component with liftable day cells making it easy to build cust
```jsx
import React from 'react';
import { Calendar } from 'calendar-widgets';
import 'calendar-widgets/styles/Calendar-grid.css';

const App = () => {
return <Calendar />
Expand Down
2 changes: 2 additions & 0 deletions docs/docs/introduction.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ We're also passing an array of custom dates. When the custom date's `date` align
```jsx
import React from 'react';
import { Calendar } from 'calendar-widgets';
import 'calendar-widgets/styles/Calendar-grid.css';

/* defining an optional custom day component */
const CustomDay = ({date, customDate}) => (
Expand Down Expand Up @@ -88,6 +89,7 @@ const App = () => {
```tsx
import React, { FC } from 'react';
import { Calendar, CustomDayProps } from 'calendar-widgets';
import 'calendar-widgets/styles/Calendar-grid.css';

/* defining an optional custom day component */
const CustomDay: FC<CustomDayProps> = ({date, customDate}) => (
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
{
"name": "calendar-widgets",
"version": "0.0.13",
"version": "0.0.13-alpha.0",
"main": "./dist/bundle.js",
"type": "module",
"module": "./dist/bundle.es.js",
"types": "/dist/index.d.ts",
"files": [
"dist",
"src",
"styles",
"LICENSE"
],
Expand Down
Loading

1 comment on commit cb7b39a

@vercel
Copy link

@vercel vercel bot commented on cb7b39a May 9, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.