Skip to content

Commit 4a048b4

Browse files
authored
Create a new dist version 3.2.1 (#448)
Collecting: - Impl [Infrastructure] Integrating IGZ-4 via Module Federation (#447)
1 parent 38bedd0 commit 4a048b4

File tree

9 files changed

+82
-22
lines changed

9 files changed

+82
-22
lines changed

commit_message

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11

22

3-
Create a new dist version 3.2.0
3+
Create a new dist version 3.2.1
44

55
Collecting:
6-
- Impl [UI] Show error message provided by the BE (#442)
7-
- Impl [Real-time pipelines] Add model runner step (#443)
8-
- Fix [UI] optimize no-data-metric-icon image (#444)
6+
- Impl [Infrastructure] Integrating IGZ-4 via Module Federation (#447)

dist/utils/index.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
export * as chips from "./chips.util";
22
export * as common from "./common.util";
3+
export * as createProxy from "./proxyServerConfig.util";
34
export * as datetime from "./datetime.util";
45
export * as filter from "./filter.util";
56
export * as form from "./form.util";

dist/utils/index.mjs

Lines changed: 18 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,27 @@
11
import * as t from "./chips.util.mjs";
2-
import * as o from "./common.util.mjs";
3-
import * as r from "./datetime.util.mjs";
4-
import * as i from "./filter.util.mjs";
5-
import * as a from "./form.util.mjs";
2+
import * as r from "./common.util.mjs";
3+
import * as o from "./proxyServerConfig.util.mjs";
4+
import * as i from "./datetime.util.mjs";
5+
import * as a from "./filter.util.mjs";
6+
import * as e from "./form.util.mjs";
67
import * as m from "./generateChipsList.util.mjs";
78
import * as s from "./getFirstScrollableParent.util.mjs";
8-
import * as e from "./math.util.mjs";
9-
import * as p from "./notification.util.mjs";
10-
import * as l from "./string.util.mjs";
11-
import * as f from "./validation.util.mjs";
9+
import * as p from "./math.util.mjs";
10+
import * as l from "./notification.util.mjs";
11+
import * as f from "./string.util.mjs";
12+
import * as n from "./validation.util.mjs";
1213
export {
1314
t as chips,
14-
o as common,
15-
r as datetime,
16-
i as filter,
17-
a as form,
15+
r as common,
16+
o as createProxy,
17+
i as datetime,
18+
a as filter,
19+
e as form,
1820
m as generateChipsList,
1921
s as getFirstScrollableParent,
20-
e as math,
21-
p as notification,
22-
l as string,
23-
f as validation
22+
p as math,
23+
l as notification,
24+
f as string,
25+
n as validation
2426
};
2527
//# sourceMappingURL=index.mjs.map

dist/utils/index.mjs.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
export function mlrunProxyConfig(env: any): {
2+
'/api': {
3+
target: any;
4+
changeOrigin: boolean;
5+
headers: {
6+
Connection: string;
7+
'x-v3io-session-key': any;
8+
'x-remote-user': string;
9+
};
10+
};
11+
'/nuclio': {
12+
target: any;
13+
changeOrigin: boolean;
14+
rewrite: (path: any) => any;
15+
};
16+
'/iguazio': {
17+
target: any;
18+
changeOrigin: boolean;
19+
rewrite: (path: any) => any;
20+
};
21+
'/function-catalog': {
22+
target: any;
23+
changeOrigin: boolean;
24+
rewrite: (path: any) => any;
25+
};
26+
};
27+
//# sourceMappingURL=proxyServerConfig.util.d.ts.map

dist/utils/proxyServerConfig.util.d.ts.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
const r = (e) => ({
2+
"/api": e.VITE_MLRUN_API_URL ? {
3+
target: e.VITE_MLRUN_API_URL,
4+
changeOrigin: !0,
5+
headers: {
6+
Connection: "keep-alive",
7+
"x-v3io-session-key": e.VITE_MLRUN_V3IO_ACCESS_KEY,
8+
"x-remote-user": "admin"
9+
}
10+
} : void 0,
11+
"/nuclio": e.VITE_NUCLIO_API_URL ? {
12+
target: e.VITE_NUCLIO_API_URL,
13+
changeOrigin: !0,
14+
rewrite: (i) => i.replace(/^\/nuclio/, "")
15+
} : void 0,
16+
"/iguazio": e.VITE_IGUAZIO_API_URL ? {
17+
target: e.VITE_IGUAZIO_API_URL,
18+
changeOrigin: !0,
19+
rewrite: (i) => i.replace(/^\/iguazio/, "")
20+
} : void 0,
21+
"/function-catalog": e.VITE_FUNCTION_CATALOG_URL ? {
22+
target: e.VITE_FUNCTION_CATALOG_URL,
23+
changeOrigin: !0,
24+
rewrite: (i) => i.replace(/^\/function-catalog/, "")
25+
} : void 0
26+
});
27+
export {
28+
r as mlrunProxyConfig
29+
};
30+
//# sourceMappingURL=proxyServerConfig.util.mjs.map

dist/utils/proxyServerConfig.util.mjs.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "iguazio.dashboard-react-controls",
3-
"version": "3.2.0",
3+
"version": "3.2.1",
44
"description": "Collection of resources (such as CSS styles, fonts and images) and ReactJS 17.x components to share among different Iguazio React repos.",
55
"module": "./dist/index.mjs",
66
"main": "./dist/index.mjs",

0 commit comments

Comments
 (0)