@steedos-widgets/amis-lib 1.2.39 → 1.2.41

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.
@@ -6,7 +6,7 @@ export function getBaseFields(readonly: any): {
6
6
  className: string;
7
7
  tpl: string;
8
8
  }[];
9
- export function getAmisFieldType(sField: any): "url" | "password" | "select" | "date" | "datetime" | "number" | "image" | "text" | "picker" | "table" | "textarea" | "email" | "markdown" | "html" | "checkbox";
9
+ export function getAmisFieldType(sField: any): "url" | "password" | "select" | "date" | "datetime" | "number" | "image" | "text" | "picker" | "table" | "markdown" | "html" | "email" | "textarea" | "checkbox";
10
10
  export function getObjectFieldSubFields(mainField: any, fields: any): any;
11
11
  export function getGridFieldSubFields(mainField: any, fields: any): any;
12
12
  /**
@@ -19,6 +19,7 @@ export function getSelectFieldOptions(field: any): any[];
19
19
  export function convertSFieldToAmisField(field: any, readonly: any, ctx: any): Promise<any>;
20
20
  export function getFieldSearchable(perField: any, permissionFields: any, ctx: any): Promise<any>;
21
21
  export function isFieldTypeSearchable(fieldType: any): boolean;
22
- export const SEARCHABLE_FIELD_TYPES: string[];
22
+ export function isFieldQuickSearchable(field: any, nameFieldKey: any): boolean;
23
+ export const QUICK_SEARCHABLE_FIELD_TYPES: string[];
23
24
  export const OMIT_FIELDS: string[];
24
25
  export { getAmisStaticFieldType } from "./type";
@@ -1,9 +1,10 @@
1
- export function getObjectHeaderToolbar(mainObject: any, fields: any, formFactor: any, { showDisplayAs, hiddenCount, headerToolbarItems, filterVisible, isLookup }?: {
1
+ export function getObjectHeaderToolbar(mainObject: any, fields: any, formFactor: any, { showDisplayAs, hiddenCount, headerToolbarItems, filterVisible, isLookup, keywordsSearchBoxName }?: {
2
2
  showDisplayAs?: boolean;
3
3
  hiddenCount?: boolean;
4
4
  headerToolbarItems: any;
5
5
  filterVisible?: boolean;
6
6
  isLookup?: boolean;
7
+ keywordsSearchBoxName: any;
7
8
  }): any[];
8
9
  export function getObjectFooterToolbar(mainObject: any, formFactor: any, options: any): string[];
9
10
  export function getObjectFilter(objectSchema: any, fields: any, options: any): Promise<{
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@steedos-widgets/amis-lib",
3
3
  "private": false,
4
- "version": "1.2.39",
4
+ "version": "1.2.41",
5
5
  "unpkg": "./dist/index.umd.js",
6
6
  "main": "./dist/index.cjs.js",
7
7
  "module": "./dist/index.esm.js",
@@ -61,5 +61,5 @@
61
61
  "lodash": "^4.17.21",
62
62
  "react-i18next": "12.3.1"
63
63
  },
64
- "gitHead": "4c8951d31bc59fc3ef765654828d7334bd0c7336"
64
+ "gitHead": "2c55e84c78819129545a782a74f4907362a88722"
65
65
  }