adminizer 4.0.0-commit.eff5793 → 4.0.0-commit.f9bffe6

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.
@@ -51,6 +51,10 @@ export declare function getControlsOptions(fieldConfig: BaseFieldConfig, req: Re
51
51
  theme?: string;
52
52
  autofocus?: boolean;
53
53
  viewer?: boolean;
54
+ } | {
55
+ items: string[];
56
+ } | {
57
+ [x: string]: string | number | boolean | object | string[] | Record<string, unknown>;
54
58
  } | {
55
59
  activeHeaderClassName?: string;
56
60
  allowEmpty?: boolean;
@@ -428,14 +432,10 @@ export declare function getControlsOptions(fieldConfig: BaseFieldConfig, req: Re
428
432
  }) => void;
429
433
  persistentStateReset?: (key: string) => void;
430
434
  persistentStateSave?: (key: string, value: any) => void;
431
- } | {
432
- items: string[];
433
- } | {
434
- [x: string]: string | number | boolean | object | string[] | Record<string, unknown>;
435
435
  };
436
436
  path: {};
437
437
  };
438
- export declare function inputText(type: string, isIn: string[]): "email" | "password" | "date" | "time" | "number" | "color" | "month" | "week" | "range" | "text" | "select" | "datetime-local";
438
+ export declare function inputText(type: string, isIn: string[]): "email" | "password" | "number" | "date" | "time" | "color" | "month" | "week" | "range" | "text" | "select" | "datetime-local";
439
439
  export declare function getControl(req: ReqType, type: ControlType, name: string | undefined, defaultControlName: string): AbstractControls;
440
440
  export declare function setSelectMany(isIn: string[], value: string[] | undefined): {
441
441
  initOptions: {
@@ -430,4 +430,5 @@ export interface MediaManagerConfig {
430
430
  };
431
431
  };
432
432
  }
433
+ export type AdminizerConfig = AdminpanelConfig;
433
434
  export {};
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "adminizer",
3
3
  "type": "module",
4
- "version": "4.0.0-commit.eff5793",
4
+ "version": "4.0.0-commit.f9bffe6",
5
5
  "main": "index.js",
6
6
  "scripts": {
7
7
  "test": "echo \"Error: no test specified\" && exit 1",