creo-flow-extensions-base 1.2.0-dev.14 → 1.2.0-dev.16
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/lib/fields/index.d.ts +3 -1
- package/lib/fields/index.js +0 -1
- package/lib/method/index.d.ts +2 -0
- package/package.json +1 -1
package/lib/fields/index.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { IAutocompleteField } from './autocomplete';
|
|
1
2
|
import { IInputField } from './input';
|
|
2
3
|
import { ISelectField } from './select';
|
|
3
4
|
import { ICheckboxField } from './checkbox';
|
|
@@ -7,5 +8,6 @@ import { IDynamicFieldsList } from './dynamicFieldsList';
|
|
|
7
8
|
import { IFieldsGroup } from './fieldsGroup';
|
|
8
9
|
import { ITextareaField } from './textarea';
|
|
9
10
|
export * from './enum';
|
|
10
|
-
export type
|
|
11
|
+
export type { IAutocompleteField } from './autocomplete';
|
|
12
|
+
export type Field = IInputField | ISelectField | ICheckboxField | ICodeField | ICollapsibleFieldsList | IDynamicFieldsList | IFieldsGroup | ITextareaField | IAutocompleteField;
|
|
11
13
|
export declare function createFields<const T extends readonly Field[]>(fields: T & Field[]): T;
|
package/lib/fields/index.js
CHANGED
|
@@ -16,7 +16,6 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
17
|
exports.createFields = createFields;
|
|
18
18
|
__exportStar(require("./enum"), exports);
|
|
19
|
-
// | IAutocompleteField;
|
|
20
19
|
function createFields(fields) {
|
|
21
20
|
return fields;
|
|
22
21
|
}
|
package/lib/method/index.d.ts
CHANGED
|
@@ -6,6 +6,7 @@ export interface IMethodSchema<T extends readonly Field[], C extends readonly Fi
|
|
|
6
6
|
label: string;
|
|
7
7
|
name: string;
|
|
8
8
|
description: string;
|
|
9
|
+
outputDescription?: string;
|
|
9
10
|
fields: T;
|
|
10
11
|
/**
|
|
11
12
|
* Executes the method logic.
|
|
@@ -18,6 +19,7 @@ export declare function createMethodSchema<const T extends readonly Field[], con
|
|
|
18
19
|
label: string;
|
|
19
20
|
name: string;
|
|
20
21
|
description: string;
|
|
22
|
+
outputDescription?: string;
|
|
21
23
|
fields: T;
|
|
22
24
|
/**
|
|
23
25
|
* Executes the method logic.
|