windmill-components 1.121.0 → 1.121.1

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.
@@ -86,7 +86,7 @@ let resolvedConfig = initConfig(components['modalcomponent'].initialData.configu
86
86
  `${
87
87
  $mode == 'dnd' ? 'absolute' : 'fixed'
88
88
  } top-0 bottom-0 left-0 right-0 transition-all duration-50`,
89
- open ? 'z-[1100] bg-black bg-opacity-60' : 'hidden'
89
+ open ? 'z-[1100] bg-black bg-opacity-60' : 'h-0 overflow-hidden'
90
90
  )}
91
91
  >
92
92
  <div
@@ -1,6 +1,6 @@
1
1
  export const OpenAPI = {
2
2
  BASE: '/api',
3
- VERSION: '1.119.0',
3
+ VERSION: '1.121.0',
4
4
  WITH_CREDENTIALS: false,
5
5
  CREDENTIALS: 'include',
6
6
  TOKEN: undefined,
@@ -29,7 +29,9 @@ export type { FlowValue } from './models/FlowValue';
29
29
  export type { Folder } from './models/Folder';
30
30
  export type { ForloopFlow } from './models/ForloopFlow';
31
31
  export { GlobalUserInfo } from './models/GlobalUserInfo';
32
+ export type { Graphql } from './models/Graphql';
32
33
  export type { Group } from './models/Group';
34
+ export type { Http } from './models/Http';
33
35
  export type { Identity } from './models/Identity';
34
36
  export type { Input } from './models/Input';
35
37
  export type { InputTransform } from './models/InputTransform';
@@ -52,6 +54,7 @@ export type { OpenFlowWPath } from './models/OpenFlowWPath';
52
54
  export type { PathFlow } from './models/PathFlow';
53
55
  export type { PathScript } from './models/PathScript';
54
56
  export { Policy } from './models/Policy';
57
+ export type { Postgresql } from './models/Postgresql';
55
58
  export { Preview } from './models/Preview';
56
59
  export { QueuedJob } from './models/QueuedJob';
57
60
  export { RawScript } from './models/RawScript';
@@ -1,8 +1,11 @@
1
1
  import type { BranchAll } from './BranchAll';
2
2
  import type { BranchOne } from './BranchOne';
3
3
  import type { ForloopFlow } from './ForloopFlow';
4
+ import type { Graphql } from './Graphql';
5
+ import type { Http } from './Http';
4
6
  import type { Identity } from './Identity';
5
7
  import type { PathFlow } from './PathFlow';
6
8
  import type { PathScript } from './PathScript';
9
+ import type { Postgresql } from './Postgresql';
7
10
  import type { RawScript } from './RawScript';
8
- export type FlowModuleValue = (RawScript | PathScript | PathFlow | ForloopFlow | BranchOne | BranchAll | Identity);
11
+ export type FlowModuleValue = (RawScript | PathScript | PathFlow | ForloopFlow | BranchOne | BranchAll | Identity | Postgresql | Http | Graphql);
@@ -0,0 +1,3 @@
1
+ export type Graphql = {
2
+ type: 'graphql';
3
+ };
@@ -0,0 +1,4 @@
1
+ /* istanbul ignore file */
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ export {};
@@ -0,0 +1,3 @@
1
+ export type Http = {
2
+ type: 'http';
3
+ };
@@ -0,0 +1,4 @@
1
+ /* istanbul ignore file */
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ export {};
@@ -0,0 +1,3 @@
1
+ export type Postgresql = {
2
+ type: 'postgresql';
3
+ };
@@ -0,0 +1,4 @@
1
+ /* istanbul ignore file */
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ export {};
@@ -44,7 +44,10 @@ export declare namespace QueuedJob {
44
44
  FLOW = "flow",
45
45
  FLOWPREVIEW = "flowpreview",
46
46
  SCRIPT_HUB = "script_hub",
47
- IDENTITY = "identity"
47
+ IDENTITY = "identity",
48
+ HTTP = "http",
49
+ POSTGRESQL = "postgresql",
50
+ GRAPHQL = "graphql"
48
51
  }
49
52
  enum language {
50
53
  PYTHON3 = "python3",
@@ -12,6 +12,9 @@ export var QueuedJob;
12
12
  job_kind["FLOWPREVIEW"] = "flowpreview";
13
13
  job_kind["SCRIPT_HUB"] = "script_hub";
14
14
  job_kind["IDENTITY"] = "identity";
15
+ job_kind["HTTP"] = "http";
16
+ job_kind["POSTGRESQL"] = "postgresql";
17
+ job_kind["GRAPHQL"] = "graphql";
15
18
  })(job_kind = QueuedJob.job_kind || (QueuedJob.job_kind = {}));
16
19
  let language;
17
20
  (function (language) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "windmill-components",
3
- "version": "1.121.0",
3
+ "version": "1.121.1",
4
4
  "scripts": {
5
5
  "dev": "vite dev",
6
6
  "build": "vite build",
@@ -245,6 +245,10 @@
245
245
  "./components/apps/editor/inlineScriptsPanel/utils": {
246
246
  "types": "./package/components/apps/editor/inlineScriptsPanel/utils.d.ts",
247
247
  "default": "./package/components/apps/editor/inlineScriptsPanel/utils.js"
248
+ },
249
+ "./gen/OpenAPI": {
250
+ "types": "./package/gen/OpenAPI.d.ts",
251
+ "default": "./package/gen/OpenAPI.js"
248
252
  }
249
253
  },
250
254
  "files": [
@@ -338,6 +342,9 @@
338
342
  ],
339
343
  "components/apps/editor/inlineScriptsPanel/utils": [
340
344
  "./package/components/apps/editor/inlineScriptsPanel/utils.d.ts"
345
+ ],
346
+ "gen/OpenAPI": [
347
+ "./package/gen/OpenAPI.d.ts"
341
348
  ]
342
349
  }
343
350
  }