@hybridcore/ui 1.4.33 → 1.4.35
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/main.d.ts +5 -5
- package/package.json +2 -2
package/dist/main.d.ts
CHANGED
|
@@ -234,10 +234,6 @@ declare function generateKey(): Promise<CryptoKey>;
|
|
|
234
234
|
|
|
235
235
|
export declare const GeometryPicker: React.FC<Props_5>;
|
|
236
236
|
|
|
237
|
-
declare interface Handle {
|
|
238
|
-
reset: () => void;
|
|
239
|
-
}
|
|
240
|
-
|
|
241
237
|
declare const hasAccess: (path: string, access: AccessType, permissions: AUTH.PermissionType) => boolean;
|
|
242
238
|
|
|
243
239
|
/**
|
|
@@ -712,7 +708,11 @@ declare interface Props_9 {
|
|
|
712
708
|
|
|
713
709
|
declare function register(): Promise<Credential | null>;
|
|
714
710
|
|
|
715
|
-
export declare const SearchInput: (props: SearchInputProps & default_2.RefAttributes<
|
|
711
|
+
export declare const SearchInput: (props: SearchInputProps & default_2.RefAttributes<SearchInputHandle>) => default_2.ReactNode | null;
|
|
712
|
+
|
|
713
|
+
export declare interface SearchInputHandle {
|
|
714
|
+
reset: () => void;
|
|
715
|
+
}
|
|
716
716
|
|
|
717
717
|
declare interface SearchInputProps {
|
|
718
718
|
defaultValue?: string;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hybridcore/ui",
|
|
3
3
|
"description": "Hybrid Core UI Library",
|
|
4
|
-
"version": "1.4.
|
|
4
|
+
"version": "1.4.35",
|
|
5
5
|
"author": "Hybrid Core",
|
|
6
6
|
"license": "ISC",
|
|
7
7
|
"type": "module",
|
|
@@ -40,7 +40,6 @@
|
|
|
40
40
|
"lodash": "^4.17.21",
|
|
41
41
|
"mapbox-gl": "^2.15.0",
|
|
42
42
|
"ol": "^7.3.0",
|
|
43
|
-
"react": "^18.3.1",
|
|
44
43
|
"react-confirm": "^0.3.0-2",
|
|
45
44
|
"react-dom": "^18.3.1",
|
|
46
45
|
"react-dropdown-tree-select": "^2.8.0",
|
|
@@ -74,6 +73,7 @@
|
|
|
74
73
|
"eslint-plugin-storybook": "^0.9.0",
|
|
75
74
|
"glob": "^11.0.0",
|
|
76
75
|
"globals": "^15.9.0",
|
|
76
|
+
"react": "^18.3.1",
|
|
77
77
|
"storybook": "^8.3.5",
|
|
78
78
|
"typescript": "^5.5.3",
|
|
79
79
|
"typescript-eslint": "^8.7.0",
|