@jobber/components 6.109.0 → 6.109.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.
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import type React from "react";
|
|
2
|
+
import type { AnyOption, AutocompleteLegacyProps, Option } from "@jobber/components/Autocomplete";
|
|
3
|
+
export type V1DocgenProps = AutocompleteLegacyProps<AnyOption, Option, AnyOption>;
|
|
4
|
+
export declare const AutocompleteV1Docgen: React.FC<V1DocgenProps>;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import type React from "react";
|
|
2
|
+
import type { AutocompleteRebuiltProps, OptionLike } from "@jobber/components/Autocomplete";
|
|
3
|
+
type ExtraProps = Record<string, unknown>;
|
|
4
|
+
export type V2DocgenProps = AutocompleteRebuiltProps<OptionLike, boolean, ExtraProps, ExtraProps>;
|
|
5
|
+
export declare const AutocompleteV2Docgen: React.FC<V2DocgenProps>;
|
|
6
|
+
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jobber/components",
|
|
3
|
-
"version": "6.109.
|
|
3
|
+
"version": "6.109.1",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.cjs",
|
|
@@ -538,5 +538,5 @@
|
|
|
538
538
|
"> 1%",
|
|
539
539
|
"IE 10"
|
|
540
540
|
],
|
|
541
|
-
"gitHead": "
|
|
541
|
+
"gitHead": "da8eeef3fc89f838d2668cf87aeee9311ce970ad"
|
|
542
542
|
}
|