@aristid/leav-types 0.0.7-e5eb51f → 0.0.7-e83ff35

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 @@
1
+ export declare const baseAttributes: string[];
@@ -5,6 +5,11 @@ export interface IForm extends ICoreEntity {
5
5
  system?: boolean;
6
6
  dependencyAttributes?: string[];
7
7
  elements?: IFormDependentElements[];
8
+ sidePanel: IFormSidePanel;
9
+ }
10
+ export interface IFormSidePanel {
11
+ enable: boolean;
12
+ isOpenByDefault: boolean;
8
13
  }
9
14
  export interface IRecordForm {
10
15
  id: string;
@@ -13,6 +18,7 @@ export interface IRecordForm {
13
18
  recordId: string;
14
19
  dependencyAttributes?: string[];
15
20
  elements: IFormElementWithValues[];
21
+ sidePanel: IFormSidePanel;
16
22
  }
17
23
  export declare enum FormElementTypes {
18
24
  field = "field",
@@ -45,8 +45,9 @@ export interface ILibraryPreviewsSettings {
45
45
  }
46
46
  export declare enum LibraryBehavior {
47
47
  STANDARD = "standard",
48
+ DIRECTORIES = "directories",
48
49
  FILES = "files",
49
- DIRECTORIES = "directories"
50
+ JOIN = "join"
50
51
  }
51
52
  export declare const USERS_LIBRARY = "users";
52
53
  export declare const USERS_GROUPS_LIBRARY = "users_groups";
@@ -0,0 +1,8 @@
1
+ import { IMigration } from '_types/migration';
2
+ import { IFormRepo } from 'infra/form/formRepo';
3
+ interface IDeps {
4
+ 'core.infra.form'?: IFormRepo;
5
+ config?: any;
6
+ }
7
+ export default function ({ 'core.infra.form': formRepo }?: IDeps): IMigration;
8
+ export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aristid/leav-types",
3
- "version": "0.0.7-e5eb51f",
3
+ "version": "0.0.7-e83ff35",
4
4
  "description": "Shared Leav types",
5
5
  "scripts": {
6
6
  "tscheck": "",