@ws-ui/shared 1.12.1 → 1.12.3
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/declarations/webform/webform.d.ts +24 -24
- package/dist/index.cjs.js +86 -88
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +7119 -6899
- package/dist/index.es.js.map +1 -1
- package/dist/shared.css +1 -1
- package/package.json +3 -3
|
@@ -178,11 +178,11 @@ declare namespace webforms {
|
|
|
178
178
|
id: string;
|
|
179
179
|
events: string[];
|
|
180
180
|
type:
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
181
|
+
| 'method'
|
|
182
|
+
| 'navigation'
|
|
183
|
+
| 'simple-action'
|
|
184
|
+
| 'dialog'
|
|
185
|
+
| 'qodly-pro-action';
|
|
186
186
|
disabled?: boolean;
|
|
187
187
|
extra?: EventExtra;
|
|
188
188
|
}
|
|
@@ -191,18 +191,18 @@ declare namespace webforms {
|
|
|
191
191
|
type: 'method';
|
|
192
192
|
params: MethodParam[];
|
|
193
193
|
} & Partial<{
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
194
|
+
method: string;
|
|
195
|
+
dataclass: string;
|
|
196
|
+
returns: Omit<MethodParam, 'id'>;
|
|
197
|
+
namespace: string;
|
|
198
|
+
code: string;
|
|
199
|
+
feedback: boolean;
|
|
200
|
+
datasource: string;
|
|
201
|
+
variadicType: string;
|
|
202
|
+
methodType?: 'dataclass' | 'singleton';
|
|
203
|
+
openIn: string;
|
|
204
|
+
allowedOnHTTPGET?: boolean;
|
|
205
|
+
}>;
|
|
206
206
|
|
|
207
207
|
type WebformStateActionType = 'add' | 'delete' | 'clear';
|
|
208
208
|
|
|
@@ -249,12 +249,12 @@ declare namespace webforms {
|
|
|
249
249
|
type: 'qodly-pro-action';
|
|
250
250
|
actionType: '4d-method' | 'auth';
|
|
251
251
|
} & Partial<{
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
252
|
+
action: string;
|
|
253
|
+
method: string;
|
|
254
|
+
params: MethodParam[];
|
|
255
|
+
returns: Omit<MethodParam, 'id'>;
|
|
256
|
+
variadicType: string;
|
|
257
|
+
}>;
|
|
258
258
|
|
|
259
259
|
interface NavigationEvent extends BaseEvent {
|
|
260
260
|
type: 'navigation';
|
|
@@ -288,7 +288,7 @@ declare namespace webforms {
|
|
|
288
288
|
|
|
289
289
|
type MethodReturn = Omit<MethodParam, 'name'>;
|
|
290
290
|
|
|
291
|
-
interface QueryParam extends MethodParam {
|
|
291
|
+
interface QueryParam extends MethodParam {}
|
|
292
292
|
|
|
293
293
|
interface OrderBy {
|
|
294
294
|
name: string; // replace with attribute
|