rangeflow 1.0.10 → 1.0.11

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.
@@ -0,0 +1,2 @@
1
+ import { RangeFlowProps } from './types';
2
+ export declare function RangeFlow(props: RangeFlowProps): import("react/jsx-runtime").JSX.Element;
package/dist/index.d.ts CHANGED
@@ -1,2 +1,3 @@
1
- import { RangeFlowProps } from './types';
2
- export declare function RangeFlow(props: RangeFlowProps): import("react/jsx-runtime").JSX.Element;
1
+ export { RangeFlow } from './RangeFlow';
2
+ export { useRangeflow } from './hooks/use-rangeflow';
3
+ export type { RangeFlowProps, RangeFlowApi } from './types';
package/dist/index.js CHANGED
@@ -831,7 +831,7 @@ function Be() {
831
831
  });
832
832
  }
833
833
  //#endregion
834
- //#region src/package/rangeflow/index.tsx
834
+ //#region src/package/rangeflow/RangeFlow.tsx
835
835
  function Ve(e) {
836
836
  return /* @__PURE__ */ p(V, {
837
837
  ...e,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rangeflow",
3
- "version": "1.0.10",
3
+ "version": "1.0.11",
4
4
  "type": "module",
5
5
  "description": "A fancy date range picker built with React and Tailwind.",
6
6
  "license": "MIT",
package/dist/entry.d.ts DELETED
@@ -1,3 +0,0 @@
1
- export { RangeFlow } from '.';
2
- export { useRangeflow } from './hooks/use-rangeflow';
3
- export type { RangeFlowProps, RangeFlowApi } from './types';