@forestadmin/forestadmin-client 1.8.1 → 1.10.0
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/schema/types.d.ts +17 -1
- package/package.json +2 -2
package/dist/schema/types.d.ts
CHANGED
|
@@ -91,8 +91,24 @@ export type ForestServerActionFieldTextInputOptions = {
|
|
|
91
91
|
placeholder?: string | null;
|
|
92
92
|
};
|
|
93
93
|
};
|
|
94
|
+
export type ForestServerActionFieldTextInputListOptions = {
|
|
95
|
+
name: 'input array';
|
|
96
|
+
parameters: {
|
|
97
|
+
placeholder?: string | null;
|
|
98
|
+
enableReorder?: boolean;
|
|
99
|
+
allowDuplicate?: boolean;
|
|
100
|
+
allowEmptyValue?: boolean;
|
|
101
|
+
};
|
|
102
|
+
};
|
|
103
|
+
export type ForestServerActionFieldTextAreaOptions = {
|
|
104
|
+
name: 'text area editor';
|
|
105
|
+
parameters: {
|
|
106
|
+
placeholder?: string | null;
|
|
107
|
+
rows?: number;
|
|
108
|
+
};
|
|
109
|
+
};
|
|
94
110
|
export type ForestServerActionFieldDropdown = ForestServerActionFieldCommon<'String' | 'Dateonly' | 'Date' | 'Timeonly', ForestServerActionFieldDropdownOptions<string>> | ForestServerActionFieldCommon<['String'], ForestServerActionFieldDropdownOptions<string[]>> | ForestServerActionFieldCommon<'Number', ForestServerActionFieldDropdownOptions<number>>;
|
|
95
|
-
export type ForestServerActionField = ForestServerActionFieldDropdown | ForestServerActionFieldBase
|
|
111
|
+
export type ForestServerActionField = ForestServerActionFieldDropdown | ForestServerActionFieldBase | ForestServerActionFieldCommon<'Boolean', ForestServerActionFieldCheckboxOptions> | ForestServerActionFieldCommon<'String', ForestServerActionFieldTextInputOptions> | ForestServerActionFieldCommon<['String'], ForestServerActionFieldTextInputListOptions> | ForestServerActionFieldCommon<'String', ForestServerActionFieldTextAreaOptions>;
|
|
96
112
|
export type ForestServerField = Partial<{
|
|
97
113
|
field: string;
|
|
98
114
|
type: ForestServerColumnType;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@forestadmin/forestadmin-client",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.10.0",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"license": "GPL-3.0",
|
|
6
6
|
"publishConfig": {
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"test": "jest"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
|
-
"@forestadmin/datasource-toolkit": "1.
|
|
34
|
+
"@forestadmin/datasource-toolkit": "1.14.0",
|
|
35
35
|
"@types/json-api-serializer": "^2.6.3",
|
|
36
36
|
"@types/jsonwebtoken": "^9.0.1",
|
|
37
37
|
"@types/superagent": "^4.1.16"
|