wacomm 2.11.0 → 2.11.1

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.
@@ -1,9 +1,10 @@
1
1
  type MyGeolocationUpdaterProps = {
2
2
  lat: number;
3
3
  lng: number;
4
+ label?: string;
4
5
  onChange: (lat: number, lng: number) => void;
5
6
  className?: string;
6
7
  geolocationApi?: Geolocation;
7
8
  };
8
- declare function MyGeolocationUpdater({ lat, lng, onChange, className, geolocationApi }: MyGeolocationUpdaterProps): import("react/jsx-runtime").JSX.Element;
9
+ declare function MyGeolocationUpdater({ lat, lng, onChange, label: initialLabel, className, geolocationApi }: MyGeolocationUpdaterProps): import("react/jsx-runtime").JSX.Element;
9
10
  export default MyGeolocationUpdater;
@@ -4,5 +4,6 @@ declare const meta: Meta<typeof MyGeolocationUpdater>;
4
4
  export default meta;
5
5
  type Story = StoryObj<typeof meta>;
6
6
  export declare const Default: Story;
7
- export declare const GeolocationTimeout: Story;
8
- export declare const GeolocationUnavailable: Story;
7
+ export declare const PermissionDenied: Story;
8
+ export declare const Timeout: Story;
9
+ export declare const Unavailable: Story;