@hybridcore/ui 1.4.33 → 1.4.34

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.
Files changed (2) hide show
  1. package/dist/main.d.ts +5 -5
  2. package/package.json +1 -1
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<Handle>) => default_2.ReactNode | null;
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.33",
4
+ "version": "1.4.34",
5
5
  "author": "Hybrid Core",
6
6
  "license": "ISC",
7
7
  "type": "module",