@acusti/date-picker 0.0.5 → 0.0.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -1,2 +1,3 @@
1
+ export { default as DatePicker } from './DatePicker.js';
1
2
  export { default as MonthCalendar } from './MonthCalendar.js';
2
3
  export * from './utils.js';
package/dist/index.js CHANGED
@@ -1,3 +1,4 @@
1
+ export { default as DatePicker } from './DatePicker.js';
1
2
  export { default as MonthCalendar } from './MonthCalendar.js';
2
3
  export * from './utils.js';
3
4
  //# sourceMappingURL=index.js.map
@@ -5,5 +5,6 @@
5
5
  * @flow
6
6
  */
7
7
 
8
+ declare export { default as DatePicker } from "./DatePicker.js";
8
9
  declare export { default as MonthCalendar } from "./MonthCalendar.js";
9
10
  declare export * from "./utils.js";
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,oBAAoB,CAAC;AAC9D,cAAc,YAAY,CAAC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,iBAAiB,CAAC;AACxD,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,oBAAoB,CAAC;AAC9D,cAAc,YAAY,CAAC"}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@acusti/date-picker",
3
- "version": "0.0.5",
4
- "description": "React component that renders a date picker with the option to choose a range",
3
+ "version": "0.0.6",
4
+ "description": "React component that renders a date picker with support for date ranges",
5
5
  "keywords": [
6
6
  "react",
7
7
  "react-component",
package/src/index.ts CHANGED
@@ -1,2 +1,3 @@
1
+ export { default as DatePicker } from './DatePicker.js';
1
2
  export { default as MonthCalendar } from './MonthCalendar.js';
2
3
  export * from './utils.js';