@dxs-ts/eveli-ide 0.0.38 → 0.0.39
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/build/index.d.ts +102 -102
- package/build/index.js +76 -90
- package/package.json +1 -1
package/build/index.d.ts
CHANGED
|
@@ -970,6 +970,108 @@ declare namespace HdesClient {
|
|
|
970
970
|
}
|
|
971
971
|
|
|
972
972
|
|
|
973
|
+
declare namespace WrenchComposerApi {
|
|
974
|
+
interface Nav {
|
|
975
|
+
value?: string | null;
|
|
976
|
+
}
|
|
977
|
+
interface TabData {
|
|
978
|
+
nav?: Nav;
|
|
979
|
+
withNav(nav: Nav): TabData;
|
|
980
|
+
}
|
|
981
|
+
interface Tab extends BurgerApi.TabSession<TabData> {
|
|
982
|
+
}
|
|
983
|
+
interface DebugSession {
|
|
984
|
+
error?: HdesApi.StoreError;
|
|
985
|
+
debug?: HdesApi.DebugResponse;
|
|
986
|
+
csv?: string;
|
|
987
|
+
json?: string;
|
|
988
|
+
selected: HdesApi.EntityId;
|
|
989
|
+
inputType: DebugInputType;
|
|
990
|
+
}
|
|
991
|
+
type DebugInputType = "CSV" | "JSON";
|
|
992
|
+
interface DebugSessions {
|
|
993
|
+
selected?: HdesApi.EntityId;
|
|
994
|
+
values: Record<HdesApi.EntityId, DebugSession>;
|
|
995
|
+
}
|
|
996
|
+
interface PageUpdate {
|
|
997
|
+
saved: boolean;
|
|
998
|
+
origin: HdesApi.Entity<any>;
|
|
999
|
+
value: HdesApi.AstCommand[];
|
|
1000
|
+
withValue(value: HdesApi.AstCommand[]): PageUpdate;
|
|
1001
|
+
}
|
|
1002
|
+
interface Session {
|
|
1003
|
+
site: HdesApi.Site;
|
|
1004
|
+
pages: Record<HdesApi.EntityId, PageUpdate>;
|
|
1005
|
+
debug: DebugSessions;
|
|
1006
|
+
branchName?: string;
|
|
1007
|
+
getDecision(decisionName: string): undefined | HdesApi.Entity<HdesApi.AstDecision>;
|
|
1008
|
+
getFlow(flowName: string): undefined | HdesApi.Entity<HdesApi.AstFlow>;
|
|
1009
|
+
getService(serviceName: string): undefined | HdesApi.Entity<HdesApi.AstService>;
|
|
1010
|
+
getEntity(id: HdesApi.EntityId): undefined | HdesApi.Entity<any>;
|
|
1011
|
+
withDebug(page: DebugSession): Session;
|
|
1012
|
+
withPage(page: HdesApi.EntityId): Session;
|
|
1013
|
+
withPageValue(page: HdesApi.EntityId, value: HdesApi.AstCommand[]): Session;
|
|
1014
|
+
withoutPages(pages: HdesApi.EntityId[]): Session;
|
|
1015
|
+
withBranch(branchName?: string): Session;
|
|
1016
|
+
withSite(site: HdesApi.Site): Session;
|
|
1017
|
+
}
|
|
1018
|
+
interface Actions {
|
|
1019
|
+
handleLoad(): Promise<void>;
|
|
1020
|
+
handleLoadSite(site?: HdesApi.Site): Promise<void>;
|
|
1021
|
+
handleDebugUpdate(debug: DebugSession): void;
|
|
1022
|
+
handlePageUpdate(page: HdesApi.EntityId, value: HdesApi.AstCommand[]): void;
|
|
1023
|
+
handlePageUpdateRemove(pages: HdesApi.EntityId[]): void;
|
|
1024
|
+
handleBranchUpdate(branchName?: string): void;
|
|
1025
|
+
}
|
|
1026
|
+
interface ContextType {
|
|
1027
|
+
session: Session;
|
|
1028
|
+
actions: Actions;
|
|
1029
|
+
service: HdesApi.Service;
|
|
1030
|
+
}
|
|
1031
|
+
}
|
|
1032
|
+
|
|
1033
|
+
|
|
1034
|
+
declare namespace WrenchComposerApi {
|
|
1035
|
+
class ImmutableTabData implements TabData {
|
|
1036
|
+
private _nav;
|
|
1037
|
+
constructor(props: {
|
|
1038
|
+
nav: Nav;
|
|
1039
|
+
});
|
|
1040
|
+
get nav(): Nav;
|
|
1041
|
+
withNav(nav: Nav): ImmutableTabData;
|
|
1042
|
+
}
|
|
1043
|
+
const createTab: (props: {
|
|
1044
|
+
nav: Nav;
|
|
1045
|
+
page?: HdesApi.Entity<any>;
|
|
1046
|
+
}) => ImmutableTabData;
|
|
1047
|
+
const ComposerContext: React.Context<ContextType>;
|
|
1048
|
+
const useUnsaved: (entity: HdesApi.Entity<any>) => boolean;
|
|
1049
|
+
const useComposer: () => {
|
|
1050
|
+
session: Session;
|
|
1051
|
+
service: HdesApi.Service;
|
|
1052
|
+
actions: Actions;
|
|
1053
|
+
site: HdesApi.Site;
|
|
1054
|
+
isArticleSaved: (entity: HdesApi.Entity<any>) => boolean;
|
|
1055
|
+
};
|
|
1056
|
+
const useSite: () => HdesApi.Site;
|
|
1057
|
+
const useBranchName: () => string | undefined;
|
|
1058
|
+
const useSession: () => Session;
|
|
1059
|
+
const useNav: () => {
|
|
1060
|
+
handleInTab: (props: {
|
|
1061
|
+
article: HdesApi.Entity<any>;
|
|
1062
|
+
}) => void;
|
|
1063
|
+
findTab: (article: HdesApi.Entity<any>) => Tab | undefined;
|
|
1064
|
+
};
|
|
1065
|
+
const useDebug: () => {
|
|
1066
|
+
handleDebugInit: (selected: HdesApi.EntityId) => void;
|
|
1067
|
+
};
|
|
1068
|
+
const Provider: React.FC<{
|
|
1069
|
+
children: React.ReactNode;
|
|
1070
|
+
service: HdesApi.Service;
|
|
1071
|
+
}>;
|
|
1072
|
+
}
|
|
1073
|
+
|
|
1074
|
+
|
|
973
1075
|
declare namespace StencilComposerApi {
|
|
974
1076
|
interface SearchData {
|
|
975
1077
|
values: readonly SearchDataEntry[];
|
|
@@ -1127,108 +1229,6 @@ declare namespace StencilComposerApi {
|
|
|
1127
1229
|
}>;
|
|
1128
1230
|
}
|
|
1129
1231
|
|
|
1130
|
-
|
|
1131
|
-
declare namespace WrenchComposerApi {
|
|
1132
|
-
interface Nav {
|
|
1133
|
-
value?: string | null;
|
|
1134
|
-
}
|
|
1135
|
-
interface TabData {
|
|
1136
|
-
nav?: Nav;
|
|
1137
|
-
withNav(nav: Nav): TabData;
|
|
1138
|
-
}
|
|
1139
|
-
interface Tab extends BurgerApi.TabSession<TabData> {
|
|
1140
|
-
}
|
|
1141
|
-
interface DebugSession {
|
|
1142
|
-
error?: HdesApi.StoreError;
|
|
1143
|
-
debug?: HdesApi.DebugResponse;
|
|
1144
|
-
csv?: string;
|
|
1145
|
-
json?: string;
|
|
1146
|
-
selected: HdesApi.EntityId;
|
|
1147
|
-
inputType: DebugInputType;
|
|
1148
|
-
}
|
|
1149
|
-
type DebugInputType = "CSV" | "JSON";
|
|
1150
|
-
interface DebugSessions {
|
|
1151
|
-
selected?: HdesApi.EntityId;
|
|
1152
|
-
values: Record<HdesApi.EntityId, DebugSession>;
|
|
1153
|
-
}
|
|
1154
|
-
interface PageUpdate {
|
|
1155
|
-
saved: boolean;
|
|
1156
|
-
origin: HdesApi.Entity<any>;
|
|
1157
|
-
value: HdesApi.AstCommand[];
|
|
1158
|
-
withValue(value: HdesApi.AstCommand[]): PageUpdate;
|
|
1159
|
-
}
|
|
1160
|
-
interface Session {
|
|
1161
|
-
site: HdesApi.Site;
|
|
1162
|
-
pages: Record<HdesApi.EntityId, PageUpdate>;
|
|
1163
|
-
debug: DebugSessions;
|
|
1164
|
-
branchName?: string;
|
|
1165
|
-
getDecision(decisionName: string): undefined | HdesApi.Entity<HdesApi.AstDecision>;
|
|
1166
|
-
getFlow(flowName: string): undefined | HdesApi.Entity<HdesApi.AstFlow>;
|
|
1167
|
-
getService(serviceName: string): undefined | HdesApi.Entity<HdesApi.AstService>;
|
|
1168
|
-
getEntity(id: HdesApi.EntityId): undefined | HdesApi.Entity<any>;
|
|
1169
|
-
withDebug(page: DebugSession): Session;
|
|
1170
|
-
withPage(page: HdesApi.EntityId): Session;
|
|
1171
|
-
withPageValue(page: HdesApi.EntityId, value: HdesApi.AstCommand[]): Session;
|
|
1172
|
-
withoutPages(pages: HdesApi.EntityId[]): Session;
|
|
1173
|
-
withBranch(branchName?: string): Session;
|
|
1174
|
-
withSite(site: HdesApi.Site): Session;
|
|
1175
|
-
}
|
|
1176
|
-
interface Actions {
|
|
1177
|
-
handleLoad(): Promise<void>;
|
|
1178
|
-
handleLoadSite(site?: HdesApi.Site): Promise<void>;
|
|
1179
|
-
handleDebugUpdate(debug: DebugSession): void;
|
|
1180
|
-
handlePageUpdate(page: HdesApi.EntityId, value: HdesApi.AstCommand[]): void;
|
|
1181
|
-
handlePageUpdateRemove(pages: HdesApi.EntityId[]): void;
|
|
1182
|
-
handleBranchUpdate(branchName?: string): void;
|
|
1183
|
-
}
|
|
1184
|
-
interface ContextType {
|
|
1185
|
-
session: Session;
|
|
1186
|
-
actions: Actions;
|
|
1187
|
-
service: HdesApi.Service;
|
|
1188
|
-
}
|
|
1189
|
-
}
|
|
1190
|
-
|
|
1191
|
-
|
|
1192
|
-
declare namespace WrenchComposerApi {
|
|
1193
|
-
class ImmutableTabData implements TabData {
|
|
1194
|
-
private _nav;
|
|
1195
|
-
constructor(props: {
|
|
1196
|
-
nav: Nav;
|
|
1197
|
-
});
|
|
1198
|
-
get nav(): Nav;
|
|
1199
|
-
withNav(nav: Nav): ImmutableTabData;
|
|
1200
|
-
}
|
|
1201
|
-
const createTab: (props: {
|
|
1202
|
-
nav: Nav;
|
|
1203
|
-
page?: HdesApi.Entity<any>;
|
|
1204
|
-
}) => ImmutableTabData;
|
|
1205
|
-
const ComposerContext: React.Context<ContextType>;
|
|
1206
|
-
const useUnsaved: (entity: HdesApi.Entity<any>) => boolean;
|
|
1207
|
-
const useComposer: () => {
|
|
1208
|
-
session: Session;
|
|
1209
|
-
service: HdesApi.Service;
|
|
1210
|
-
actions: Actions;
|
|
1211
|
-
site: HdesApi.Site;
|
|
1212
|
-
isArticleSaved: (entity: HdesApi.Entity<any>) => boolean;
|
|
1213
|
-
};
|
|
1214
|
-
const useSite: () => HdesApi.Site;
|
|
1215
|
-
const useBranchName: () => string | undefined;
|
|
1216
|
-
const useSession: () => Session;
|
|
1217
|
-
const useNav: () => {
|
|
1218
|
-
handleInTab: (props: {
|
|
1219
|
-
article: HdesApi.Entity<any>;
|
|
1220
|
-
}) => void;
|
|
1221
|
-
findTab: (article: HdesApi.Entity<any>) => Tab | undefined;
|
|
1222
|
-
};
|
|
1223
|
-
const useDebug: () => {
|
|
1224
|
-
handleDebugInit: (selected: HdesApi.EntityId) => void;
|
|
1225
|
-
};
|
|
1226
|
-
const Provider: React.FC<{
|
|
1227
|
-
children: React.ReactNode;
|
|
1228
|
-
service: HdesApi.Service;
|
|
1229
|
-
}>;
|
|
1230
|
-
}
|
|
1231
|
-
|
|
1232
1232
|
declare namespace Decision {
|
|
1233
1233
|
const Table: import("react").FC<{
|
|
1234
1234
|
ast: import("../../client").HdesApi.AstDecision;
|
package/build/index.js
CHANGED
|
@@ -48003,7 +48003,7 @@ const NX = ({ site: e }) => {
|
|
|
48003
48003
|
] })
|
|
48004
48004
|
}
|
|
48005
48005
|
);
|
|
48006
|
-
}, sc = { tag: "eveli-ide-0.0.
|
|
48006
|
+
}, sc = { tag: "eveli-ide-0.0.39", built: "05/11/2024" }, LX = (e, t, n) => {
|
|
48007
48007
|
var i, r, s, o, l, a, u, d;
|
|
48008
48008
|
return [
|
|
48009
48009
|
{
|
|
@@ -84831,7 +84831,7 @@ const VI = (e) => {
|
|
|
84831
84831
|
}
|
|
84832
84832
|
}
|
|
84833
84833
|
), Zie = ({ onSubmit: e, workflow: t, open: n, setOpen: i, dialobTags: r }) => {
|
|
84834
|
-
const s = Ut(), { serviceUrl: o } = wi(), { response: l } = cr(`${o}rest/api/assets/
|
|
84834
|
+
const s = Ut(), { serviceUrl: o } = wi(), { response: l } = cr(`${o}rest/api/assets/wrench/flow-names`), a = wn(Lo), { enqueueSnackbar: u } = At(), d = () => {
|
|
84835
84835
|
i(!1);
|
|
84836
84836
|
}, p = (y) => {
|
|
84837
84837
|
let v = "POST", k = `${o}rest/api/assets/workflows`;
|
|
@@ -85025,16 +85025,7 @@ const VI = (e) => {
|
|
|
85025
85025
|
data: e || []
|
|
85026
85026
|
}
|
|
85027
85027
|
),
|
|
85028
|
-
/* @__PURE__ */ w(
|
|
85029
|
-
Zie,
|
|
85030
|
-
{
|
|
85031
|
-
open: a,
|
|
85032
|
-
setOpen: u,
|
|
85033
|
-
workflow: d,
|
|
85034
|
-
onSubmit: () => t(),
|
|
85035
|
-
dialobTags: l || []
|
|
85036
|
-
}
|
|
85037
|
-
)
|
|
85028
|
+
/* @__PURE__ */ w(Zie, { open: a, setOpen: u, workflow: d, onSubmit: () => t(), dialobTags: l || [] })
|
|
85038
85029
|
] });
|
|
85039
85030
|
}, Qie = () => {
|
|
85040
85031
|
const { serviceUrl: e } = wi(), { response: t, refresh: n } = cr(`${e}rest/api/assets/workflows`);
|
|
@@ -85229,85 +85220,71 @@ const VI = (e) => {
|
|
|
85229
85220
|
id: "error.minTextLength"
|
|
85230
85221
|
}
|
|
85231
85222
|
}
|
|
85232
|
-
), are = ({ onSubmit: e,
|
|
85233
|
-
const
|
|
85234
|
-
|
|
85235
|
-
},
|
|
85236
|
-
let
|
|
85237
|
-
|
|
85238
|
-
method:
|
|
85223
|
+
), are = ({ onSubmit: e, open: t, setOpen: n }) => {
|
|
85224
|
+
const i = Ut(), { enqueueSnackbar: r } = At(), { serviceUrl: s } = wi(), o = wn(Lo), l = () => {
|
|
85225
|
+
n(!1);
|
|
85226
|
+
}, a = (d) => {
|
|
85227
|
+
let p = "POST", f = `${s}rest/api/assets/workflows/tags`;
|
|
85228
|
+
o.cFetch(`${f}`, {
|
|
85229
|
+
method: p,
|
|
85239
85230
|
headers: {
|
|
85240
85231
|
Accept: "application/json"
|
|
85241
85232
|
},
|
|
85242
|
-
body:
|
|
85243
|
-
}).then((
|
|
85244
|
-
|
|
85245
|
-
}).catch((
|
|
85246
|
-
|
|
85233
|
+
body: d
|
|
85234
|
+
}).then((m) => mx(m)).then((m) => {
|
|
85235
|
+
n(!1), e();
|
|
85236
|
+
}).catch((m) => {
|
|
85237
|
+
r(i.formatMessage({ id: "workflowRelease.releaseCreationFailed" }, { cause: m.message || "N/A" }), { variant: "error" });
|
|
85247
85238
|
});
|
|
85248
|
-
},
|
|
85249
|
-
return /* @__PURE__ */
|
|
85239
|
+
}, u = (d) => d ? void 0 : i.formatMessage(sre.requiredError);
|
|
85240
|
+
return /* @__PURE__ */ ee(js, { open: t, onClose: l, "aria-labelledby": "new-form-dialog-title", maxWidth: "md", fullWidth: !0, children: [
|
|
85250
85241
|
/* @__PURE__ */ w(Ws, { id: "new-form-dialog-title", children: /* @__PURE__ */ w(pe, { id: "workflowRelease.dialogTitle" }) }),
|
|
85251
85242
|
/* @__PURE__ */ w(
|
|
85252
85243
|
eg,
|
|
85253
85244
|
{
|
|
85254
85245
|
initialValues: {
|
|
85255
|
-
|
|
85256
|
-
|
|
85257
|
-
description: t == null ? void 0 : t.body.description
|
|
85258
|
-
}
|
|
85246
|
+
name: "",
|
|
85247
|
+
description: ""
|
|
85259
85248
|
},
|
|
85260
85249
|
enableReinitialize: !0,
|
|
85261
|
-
onSubmit: (
|
|
85262
|
-
|
|
85250
|
+
onSubmit: (d, { setSubmitting: p }) => {
|
|
85251
|
+
a(d), p(!1);
|
|
85263
85252
|
},
|
|
85264
|
-
children: ({ submitForm:
|
|
85265
|
-
|
|
85266
|
-
|
|
85267
|
-
|
|
85268
|
-
|
|
85269
|
-
|
|
85270
|
-
|
|
85271
|
-
|
|
85272
|
-
|
|
85273
|
-
|
|
85274
|
-
|
|
85275
|
-
|
|
85276
|
-
|
|
85277
|
-
|
|
85278
|
-
|
|
85279
|
-
|
|
85280
|
-
|
|
85281
|
-
|
|
85282
|
-
|
|
85283
|
-
|
|
85284
|
-
|
|
85285
|
-
|
|
85286
|
-
|
|
85287
|
-
|
|
85288
|
-
|
|
85289
|
-
|
|
85290
|
-
|
|
85291
|
-
|
|
85292
|
-
|
|
85293
|
-
/* @__PURE__ */
|
|
85294
|
-
|
|
85295
|
-
|
|
85296
|
-
] })
|
|
85297
|
-
] });
|
|
85298
|
-
}
|
|
85253
|
+
children: ({ submitForm: d, isSubmitting: p, errors: f, isValid: m }) => /* @__PURE__ */ ee(tg, { children: [
|
|
85254
|
+
/* @__PURE__ */ w($s, { children: /* @__PURE__ */ ee(Ml, { spacing: 1, children: [
|
|
85255
|
+
/* @__PURE__ */ w(
|
|
85256
|
+
xr,
|
|
85257
|
+
{
|
|
85258
|
+
component: Ms,
|
|
85259
|
+
name: "name",
|
|
85260
|
+
label: i.formatMessage({ id: "workflowRelease.name" }),
|
|
85261
|
+
fullWidth: !0,
|
|
85262
|
+
required: !0,
|
|
85263
|
+
validate: u,
|
|
85264
|
+
error: !!f.name,
|
|
85265
|
+
helperText: f.name,
|
|
85266
|
+
InputProps: { margin: "normal" }
|
|
85267
|
+
}
|
|
85268
|
+
),
|
|
85269
|
+
/* @__PURE__ */ w(
|
|
85270
|
+
xr,
|
|
85271
|
+
{
|
|
85272
|
+
component: Ms,
|
|
85273
|
+
name: "description",
|
|
85274
|
+
label: i.formatMessage({ id: "workflowRelease.description" }),
|
|
85275
|
+
fullWidth: !0,
|
|
85276
|
+
InputProps: { margin: "normal" }
|
|
85277
|
+
}
|
|
85278
|
+
)
|
|
85279
|
+
] }) }),
|
|
85280
|
+
/* @__PURE__ */ ee(Gs, { children: [
|
|
85281
|
+
/* @__PURE__ */ w(Nt, { onClick: l, label: "button.cancel" }),
|
|
85282
|
+
/* @__PURE__ */ w(dn, { onClick: d, disabled: p || !m, label: "button.accept" })
|
|
85283
|
+
] })
|
|
85284
|
+
] })
|
|
85299
85285
|
}
|
|
85300
85286
|
)
|
|
85301
|
-
] })
|
|
85302
|
-
}, YL = (e, t, n) => {
|
|
85303
|
-
const i = new Blob([e], { type: n }), r = document.createElement("a");
|
|
85304
|
-
r.download = t, r.href = window.URL.createObjectURL(i);
|
|
85305
|
-
const s = new MouseEvent("click", {
|
|
85306
|
-
view: window,
|
|
85307
|
-
bubbles: !0,
|
|
85308
|
-
cancelable: !0
|
|
85309
|
-
});
|
|
85310
|
-
r.dispatchEvent(s), r.remove();
|
|
85287
|
+
] });
|
|
85311
85288
|
}, lre = ({ workflowRelease: e, open: t, setOpen: n }) => {
|
|
85312
85289
|
const i = Ut();
|
|
85313
85290
|
return /* @__PURE__ */ w(Ue, { children: /* @__PURE__ */ ee(js, { open: t, "aria-labelledby": "workflow-tag-dialog-title", maxWidth: "md", fullWidth: !0, children: [
|
|
@@ -85328,6 +85305,15 @@ const VI = (e) => {
|
|
|
85328
85305
|
] }),
|
|
85329
85306
|
/* @__PURE__ */ w(Gs, { children: /* @__PURE__ */ w(Nt, { onClick: () => n(!1), label: "button.close" }) })
|
|
85330
85307
|
] }) });
|
|
85308
|
+
}, YL = (e, t, n) => {
|
|
85309
|
+
const i = new Blob([e], { type: n }), r = document.createElement("a");
|
|
85310
|
+
r.download = t, r.href = window.URL.createObjectURL(i);
|
|
85311
|
+
const s = new MouseEvent("click", {
|
|
85312
|
+
view: window,
|
|
85313
|
+
bubbles: !0,
|
|
85314
|
+
cancelable: !0
|
|
85315
|
+
});
|
|
85316
|
+
r.dispatchEvent(s), r.remove();
|
|
85331
85317
|
}, ure = () => {
|
|
85332
85318
|
const e = Ut(), { serviceUrl: t, modifiableAssets: n } = wi(), i = Yc((y) => e.formatMessage({ id: y })), r = ui(), { response: s, refresh: o } = cr(`${t}rest/api/assets/workflows/tags`), [l, a] = Jt(!1), [u, d] = Jt(!1), [p, f] = Jt(null), m = {
|
|
85333
85319
|
columns: [
|
|
@@ -85403,7 +85389,7 @@ const VI = (e) => {
|
|
|
85403
85389
|
data: s || []
|
|
85404
85390
|
}
|
|
85405
85391
|
),
|
|
85406
|
-
/* @__PURE__ */ w(are, { open: l, setOpen: a,
|
|
85392
|
+
/* @__PURE__ */ w(are, { open: l, setOpen: a, onSubmit: () => o() }),
|
|
85407
85393
|
p && /* @__PURE__ */ w(lre, { open: u, workflowRelease: p, setOpen: d })
|
|
85408
85394
|
] });
|
|
85409
85395
|
}, cre = () => /* @__PURE__ */ w(ure, {}), dre = Sc(
|
|
@@ -85666,8 +85652,8 @@ const yre = {
|
|
|
85666
85652
|
"menu.flow": "Wrench",
|
|
85667
85653
|
"menu.processes": "Monitoring",
|
|
85668
85654
|
"menu.reports": "Reports",
|
|
85669
|
-
"menu.workflows": "
|
|
85670
|
-
"menu.
|
|
85655
|
+
"menu.workflows": "Workflows",
|
|
85656
|
+
"menu.workflowTags": "Workflow tags",
|
|
85671
85657
|
"menu.publications": "Publications",
|
|
85672
85658
|
"menu.services": "Services",
|
|
85673
85659
|
"menu.content": "Stencil",
|
|
@@ -85710,7 +85696,7 @@ const yre = {
|
|
|
85710
85696
|
"workflowTableHeader.updated": "Updated",
|
|
85711
85697
|
"workflowTable.addButton": "New workflow",
|
|
85712
85698
|
"workflowTable.editButton": "Edit workflow",
|
|
85713
|
-
"workflow.dialogTitle": "
|
|
85699
|
+
"workflow.dialogTitle": "New workflow",
|
|
85714
85700
|
"workflow.name": "Name",
|
|
85715
85701
|
"workflow.form.formName": "Form name",
|
|
85716
85702
|
"workflow.form.formTag": "Form tag",
|
|
@@ -85791,7 +85777,7 @@ const yre = {
|
|
|
85791
85777
|
"workflowReleaseTable.addButton": "Add",
|
|
85792
85778
|
"workflowReleaseTable.viewButton": "View",
|
|
85793
85779
|
"workflowReleaseTable.exportButton": "Export",
|
|
85794
|
-
"workflowRelease.dialogTitle": "
|
|
85780
|
+
"workflowRelease.dialogTitle": "View workflow release",
|
|
85795
85781
|
"workflowRelease.name": "Release name",
|
|
85796
85782
|
"workflowRelease.description": "Description",
|
|
85797
85783
|
"workflowRelease.releaseCreationFailed": "Workflow tag creation failed, cause: {cause}",
|
|
@@ -85857,7 +85843,7 @@ const yre = {
|
|
|
85857
85843
|
"menu.processes": "Monitorointi",
|
|
85858
85844
|
"menu.reports": "Raportointi",
|
|
85859
85845
|
"menu.workflows": "Konfigurointi",
|
|
85860
|
-
"menu.
|
|
85846
|
+
"menu.workflowTags": "Versiointi",
|
|
85861
85847
|
"menu.publications": "Julkaisut",
|
|
85862
85848
|
"menu.services": "Palvelut",
|
|
85863
85849
|
"menu.content": "Stencil",
|
|
@@ -85900,7 +85886,7 @@ const yre = {
|
|
|
85900
85886
|
"workflowTableHeader.updated": "Päivitetty",
|
|
85901
85887
|
"workflowTable.addButton": "Lisää uusi",
|
|
85902
85888
|
"workflowTable.editButton": "Muokka",
|
|
85903
|
-
"workflow.dialogTitle": "
|
|
85889
|
+
"workflow.dialogTitle": "Uusi työnkulku",
|
|
85904
85890
|
"workflow.name": "Nimi",
|
|
85905
85891
|
"workflow.form.formName": "Lomakkeen nimi",
|
|
85906
85892
|
"workflow.form.formTag": "Lomakkeen versio",
|
|
@@ -85981,7 +85967,7 @@ const yre = {
|
|
|
85981
85967
|
"workflowReleaseTable.addButton": "Lisää uusi",
|
|
85982
85968
|
"workflowReleaseTable.viewButton": "Katso",
|
|
85983
85969
|
"workflowReleaseTable.exportButton": "Lataa",
|
|
85984
|
-
"workflowRelease.dialogTitle": "
|
|
85970
|
+
"workflowRelease.dialogTitle": "Näytä työnkulun julkaisu",
|
|
85985
85971
|
"workflowRelease.name": "Nimi",
|
|
85986
85972
|
"workflowRelease.description": "Kuvaus",
|
|
85987
85973
|
"workflowRelease.releaseCreationFailed": "Palveluversion luominen epäonnistui, syy: {cause}",
|
|
@@ -86047,7 +86033,7 @@ const yre = {
|
|
|
86047
86033
|
"menu.processes": "Övervakning",
|
|
86048
86034
|
"menu.reports": "Rapportering",
|
|
86049
86035
|
"menu.workflows": "Konfigurera",
|
|
86050
|
-
"menu.
|
|
86036
|
+
"menu.workflowTags": "Arbetsflödestaggar",
|
|
86051
86037
|
"menu.publications": "Offentliggörande",
|
|
86052
86038
|
"menu.services": "Tjänster",
|
|
86053
86039
|
"menu.content": "Stencil",
|
|
@@ -86090,7 +86076,7 @@ const yre = {
|
|
|
86090
86076
|
"workflowTableHeader.updated": "Uppdaterad",
|
|
86091
86077
|
"workflowTable.addButton": "Lägg till ny",
|
|
86092
86078
|
"workflowTable.editButton": "Editera",
|
|
86093
|
-
"workflow.dialogTitle": "
|
|
86079
|
+
"workflow.dialogTitle": "Nytt arbetsflöde",
|
|
86094
86080
|
"workflow.name": "Namn",
|
|
86095
86081
|
"workflow.form.formName": "Blankettens namn",
|
|
86096
86082
|
"workflow.form.formTag": "Blankettens version",
|
|
@@ -86171,7 +86157,7 @@ const yre = {
|
|
|
86171
86157
|
"workflowReleaseTable.addButton": "Add",
|
|
86172
86158
|
"workflowReleaseTable.viewButton": "View",
|
|
86173
86159
|
"workflowReleaseTable.exportButton": "Export",
|
|
86174
|
-
"workflowRelease.dialogTitle": "
|
|
86160
|
+
"workflowRelease.dialogTitle": "View workflow release",
|
|
86175
86161
|
"workflowRelease.name": "Release name",
|
|
86176
86162
|
"workflowRelease.description": "Description",
|
|
86177
86163
|
"workflowRelease.releaseCreationFailed": "Workflow tag creation failed, cause: {cause}",
|
|
@@ -86551,7 +86537,7 @@ const yre = {
|
|
|
86551
86537
|
//TODO Calendar still needed??
|
|
86552
86538
|
//{ id: 'menu.calendar', to: '/ui/calendar', icon: <CalendarMonthIcon sx={iconSize} /> },
|
|
86553
86539
|
{ id: "menu.workflows", to: "/ui/workflows", icon: /* @__PURE__ */ w(sF, { sx: Ds }) },
|
|
86554
|
-
{ id: "menu.
|
|
86540
|
+
{ id: "menu.workflowTags", to: "/ui/workflowTags", icon: /* @__PURE__ */ w(aF, { sx: Ds }) },
|
|
86555
86541
|
{ id: "menu.publications", to: "/ui/publications", icon: /* @__PURE__ */ w(uF, { sx: Ds }) }
|
|
86556
86542
|
];
|
|
86557
86543
|
process.env.VITE_ENV_TYPE;
|
|
@@ -86662,7 +86648,7 @@ const Cre = process.env.VITE_HOST_URL || "http://localhost:3000", Are = () => /*
|
|
|
86662
86648
|
/* @__PURE__ */ w(gi, { path: "/ui/tasks/task/:id", element: /* @__PURE__ */ w(VI, {}) }),
|
|
86663
86649
|
/* @__PURE__ */ w(gi, { path: "/ui/tasks/task/", element: /* @__PURE__ */ w(VI, {}) }),
|
|
86664
86650
|
/* @__PURE__ */ w(gi, { path: "/ui/workflows", element: /* @__PURE__ */ w(Qie, {}) }),
|
|
86665
|
-
/* @__PURE__ */ w(gi, { path: "/ui/
|
|
86651
|
+
/* @__PURE__ */ w(gi, { path: "/ui/workflowTags", element: /* @__PURE__ */ w(cre, {}) }),
|
|
86666
86652
|
/* @__PURE__ */ w(gi, { path: "/ui/publications", element: /* @__PURE__ */ w(fre, {}) }),
|
|
86667
86653
|
/* @__PURE__ */ w(gi, { path: "/ui/processes", element: /* @__PURE__ */ w(ere, {}) }),
|
|
86668
86654
|
/* @__PURE__ */ w(gi, { path: "/ui/help", element: /* @__PURE__ */ w(tre, {}) }),
|