@hybridcore/ui 1.4.13 → 1.4.15

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 CHANGED
@@ -65,6 +65,7 @@ declare interface CardProps {
65
65
  image: string;
66
66
  avatar: AvatarType;
67
67
  actions: default_2.ReactNode;
68
+ onClick?(): void;
68
69
  orientation?: OrientationType_2;
69
70
  extraActions?: default_2.ReactNode;
70
71
  /**
@@ -202,6 +203,13 @@ declare function exportKey(key: any): Promise<JsonWebKey>;
202
203
 
203
204
  declare type FeatureType = AUTH.ModuleType;
204
205
 
206
+ declare interface FieldOptions {
207
+ order?: number;
208
+ hidden?: boolean;
209
+ disabled?: boolean;
210
+ [key: string]: string | number | object | boolean;
211
+ }
212
+
205
213
  declare function generateKey(): Promise<CryptoKey>;
206
214
 
207
215
  export declare const GeometryPicker: React.FC<Props_5>;
@@ -282,6 +290,9 @@ K extends
282
290
  INSTANCE.CreateFileDTO &
283
291
  INSTANCE.UpdateFileDTO
284
292
  >;
293
+ fieldOptions?: {
294
+ [key: string]: FieldOptions;
295
+ };
285
296
  /**
286
297
  *
287
298
  */
@@ -293,7 +304,6 @@ K extends
293
304
  /**
294
305
  *
295
306
  */
296
- disableTemplateChange?: boolean;
297
307
  /**
298
308
  *
299
309
  */
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.13",
4
+ "version": "1.4.15",
5
5
  "author": "Hybrid Core",
6
6
  "license": "ISC",
7
7
  "type": "module",