pollination-react-io 1.16.2 → 1.16.4

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.
@@ -1,8 +1,8 @@
1
- import type { CloudJob } from '@pollination-solutions/pollination-sdk';
1
+ import type { CloudJob, CloudJobList, JobStatusEnum } from '@pollination-solutions/pollination-sdk';
2
2
  import { APIClient } from './useAPIClient';
3
3
  export declare const useJobs: (client: APIClient) => {
4
- listJobs: (projectOwner: string, projectName: string) => Promise<any>;
5
- fetchJob: (owner: string, name: string, jobId: string) => Promise<CloudJob>;
4
+ listJobs: (projectOwner: string, projectName: string, jobIds?: string[], page?: number, perPage?: number, status?: JobStatusEnum) => Promise<CloudJobList>;
5
+ fetchJob: (projectOwner: string, projectName: string, jobId: string) => Promise<CloudJob>;
6
6
  deleteJob: (projectOwner: string, projectName: string, jobId: string) => Promise<any>;
7
7
  cancelJob: (projectOwner: string, projectName: string, jobId: string) => Promise<any>;
8
8
  };
@@ -24020,26 +24020,30 @@ var useHbjsontoVTK = function () {
24020
24020
  };
24021
24021
 
24022
24022
  var useJobs = function (client) {
24023
- var listJobs = useCallback(function (projectOwner, projectName) {
24023
+ var listJobs = useCallback(function (projectOwner, projectName, jobIds, page, perPage, status) {
24024
24024
  if (!client || !client.jobs)
24025
24025
  return;
24026
24026
  return client.jobs
24027
24027
  .listJobs({
24028
24028
  owner: projectOwner,
24029
- name: projectName
24029
+ name: projectName,
24030
+ ids: jobIds,
24031
+ status: status,
24032
+ page: page !== null && page !== void 0 ? page : 1,
24033
+ perPage: perPage !== null && perPage !== void 0 ? perPage : 10,
24030
24034
  })
24031
24035
  .then(function (_a) {
24032
24036
  var data = _a.data;
24033
24037
  return data;
24034
24038
  });
24035
24039
  }, [client]);
24036
- var fetchJob = useCallback(function (owner, name, jobId) {
24040
+ var fetchJob = useCallback(function (projectOwner, projectName, jobId) {
24037
24041
  if (!client || !client.jobs)
24038
24042
  return;
24039
24043
  return client.jobs
24040
24044
  .getJob({
24041
- owner: owner,
24042
- name: name,
24045
+ owner: projectOwner,
24046
+ name: projectName,
24043
24047
  jobId: jobId
24044
24048
  })
24045
24049
  .then(function (_a) {
@@ -24234,7 +24238,7 @@ var getSummaryColor = function (status) {
24234
24238
  };
24235
24239
  var getDuration = function (run) {
24236
24240
  if (!run)
24237
- return dayjs_min.duration({ seconds: 1 });
24241
+ return dayjs_min.duration({ seconds: 0 });
24238
24242
  var status = run.status;
24239
24243
  var end = status.finished_at ? dayjs_min(status.finished_at) : dayjs_min().utc();
24240
24244
  return status.finished_at ?
@@ -42031,7 +42035,7 @@ var useSWRHandler = function (_key, fetcher, config) {
42031
42035
  };
42032
42036
  var useSWR = withArgs(useSWRHandler);
42033
42037
 
42034
- var css_248z$2 = ":root {\n --background: #FFFAEE;\n --primary: #1890ff;\n --primary2: #40a9ff;\n --primary1: #cceefe;\n --primary0: #e6f7ff;\n --secondary: #fff566;\n --success: #46A758;\n --warning: #F76809;\n --danger: #FF4616;\n /* radix-ui/colors */\n --slate1: hsl(206, 30.0%, 98.8%);\n --slate2: hsl(210, 16.7%, 97.6%);\n --slate3: hsl(209, 13.3%, 95.3%);\n --slate4: hsl(209, 12.2%, 93.2%);\n --slate5: hsl(208, 11.7%, 91.1%);\n --slate6: hsl(208, 11.3%, 88.9%);\n --slate7: hsl(207, 11.1%, 85.9%);\n --slate8: hsl(205, 10.7%, 78.0%);\n --slate9: hsl(206, 6.0%, 56.1%);\n --slate10: hsl(206, 5.8%, 52.3%);\n --slate11: hsl(206, 6.0%, 43.5%);\n --slate12: hsl(206, 24.0%, 9.0%);\n}\n\n@keyframes spin {\n from {\n transform: rotate(0);\n }\n to {\n transform: rotate(360deg);\n }\n}\n.spin {\n animation: spin 1s linear 0s infinite;\n}\n\n@keyframes Animation {\n 0% {\n background-position: 200%;\n }\n 50% {\n background-position: 100%;\n }\n 100% {\n background-position: 0%;\n }\n}\n.loading {\n background: linear-gradient(45deg, transparent, var(--primary), 12%, transparent);\n background-size: 200%;\n animation: Animation 3s ease infinite;\n}\n\n@keyframes open {\n from {\n height: 0;\n }\n to {\n height: var(--radix-collapsible-content-height);\n }\n}\n@keyframes close {\n from {\n height: var(--radix-collapsible-content-height);\n }\n to {\n height: 0;\n }\n}\n.collapse-content {\n overflow: hidden;\n font-size: inherit;\n color: inherit;\n}\n\n.collapse-content[data-state=open] {\n animation: open 300ms ease-out;\n}\n\n.collapse-content[data-state=closed] {\n animation: close 300ms ease-out;\n}\n\n.hover-card {\n transition: box-shadow 250ms ease-in-out, border-color 250ms ease-in-out;\n border-color: #d0d7de;\n width: 100%;\n background-color: white;\n}\n\na > .hover-card:hover {\n box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 8px 0px;\n border-color: var(--primary);\n}";
42038
+ var css_248z$2 = ":root {\n --background: #FFFAEE;\n --primary: #1890ff;\n --primary2: #40a9ff;\n --primary1: #cceefe;\n --primary0: #e6f7ff;\n --secondary: #fff566;\n --success: #46A758;\n --warning: #F76809;\n --danger: #FF4616;\n /* radix-ui/colors */\n --slate1: hsl(206, 30.0%, 98.8%);\n --slate2: hsl(210, 16.7%, 97.6%);\n --slate3: hsl(209, 13.3%, 95.3%);\n --slate4: hsl(209, 12.2%, 93.2%);\n --slate5: hsl(208, 11.7%, 91.1%);\n --slate6: hsl(208, 11.3%, 88.9%);\n --slate7: hsl(207, 11.1%, 85.9%);\n --slate8: hsl(205, 10.7%, 78.0%);\n --slate9: hsl(206, 6.0%, 56.1%);\n --slate10: hsl(206, 5.8%, 52.3%);\n --slate11: hsl(206, 6.0%, 43.5%);\n --slate12: hsl(206, 24.0%, 9.0%);\n}\n\n@keyframes spin {\n from {\n transform: rotate(0);\n }\n to {\n transform: rotate(360deg);\n }\n}\n.spin {\n animation: spin 1s linear 0s infinite;\n}\n\n@keyframes Animation {\n 0% {\n background-position: 200%;\n }\n 50% {\n background-position: 100%;\n }\n 100% {\n background-position: 0%;\n }\n}\n.loading {\n background: linear-gradient(45deg, transparent, var(--primary), 12%, transparent);\n background-size: 200%;\n animation: Animation 3s ease infinite;\n}\n\n@keyframes open {\n from {\n height: 0;\n }\n to {\n height: var(--radix-collapsible-content-height);\n }\n}\n@keyframes close {\n from {\n height: var(--radix-collapsible-content-height);\n }\n to {\n height: 0;\n }\n}\n.collapse-content {\n overflow: hidden;\n font-size: inherit;\n color: inherit;\n}\n\n.collapse-content[data-state=open] {\n animation: open 300ms ease-out;\n}\n\n.collapse-content[data-state=closed] {\n animation: close 300ms ease-out;\n}\n\n.run-card {\n transition: box-shadow 250ms ease-in-out, border-color 250ms ease-in-out;\n border-color: #d0d7de;\n width: 100%;\n background-color: white;\n}\n\na > .run-card:hover {\n box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 8px 0px;\n border-color: var(--primary);\n}";
42035
42039
  styleInject(css_248z$2);
42036
42040
 
42037
42041
  dayjs_min.extend(duration);
@@ -42056,7 +42060,7 @@ var RunCard = function (_a) {
42056
42060
  }, 1000);
42057
42061
  return run.status.finished_at ? undefined : function () { return clearInterval(handle); };
42058
42062
  }, [run]);
42059
- return (React__default.createElement("div", { "data-testid": "RunCard", className: 'hover-card', style: __assign({ borderRadius: 8, borderWidth: 1, borderStyle: 'solid', display: 'grid', gridTemplateColumns: 'minmax(200px, 18%) 1fr', gridTemplateRows: '1fr auto', columnGap: 8, rowGap: 0 }, style) },
42063
+ return (React__default.createElement("div", { "data-testid": "RunCard", className: 'run-card', style: __assign({ borderRadius: 8, borderWidth: 1, borderStyle: 'solid', display: 'grid', gridTemplateColumns: 'minmax(200px, 18%) 1fr', gridTemplateRows: '1fr auto', columnGap: 8, rowGap: 0 }, style) },
42060
42064
  React__default.createElement("div", { style: {
42061
42065
  borderRight: '1px solid #d0d7de',
42062
42066
  display: 'flex',
@@ -42121,31 +42125,36 @@ var RunCard = function (_a) {
42121
42125
  textOverflow: 'ellipsis',
42122
42126
  display: 'inline-block'
42123
42127
  } }, run.id),
42124
- React__default.createElement(Dropdown, { trigger: React__default.createElement("button", { type: 'button', style: {
42125
- width: 32,
42126
- height: 32,
42127
- display: 'flex',
42128
- justifyContent: 'center',
42129
- alignItems: 'center',
42130
- borderRadius: 9999,
42131
- border: '1px solid #d0d7de',
42132
- backgroundColor: 'white',
42133
- outlineColor: 'var(--primary)'
42134
- } }, isValidating ? React__default.createElement(LoadingIcon, null) : React__default.createElement(Gear$1, null)), optionGroups: [
42135
- {
42136
- options: [{
42137
- type: 'button',
42138
- id: 'cancel-study',
42139
- label: 'Cancel',
42140
- icon: React__default.createElement(XOctagon$1, null),
42141
- disabled: typeof run.status.finished_at === 'string',
42142
- onSelect: function () { return cancelRun(projectOwner, projectName, _run.id); }
42143
- }]
42144
- }
42145
- ], contentProps: {
42146
- align: 'end',
42147
- sideOffset: 2,
42148
- } })),
42128
+ React__default.createElement("div", { style: {
42129
+ display: 'flex',
42130
+ alignItems: 'center'
42131
+ } },
42132
+ React__default.createElement(Dropdown, { trigger: React__default.createElement("button", { type: 'button', style: {
42133
+ width: 32,
42134
+ height: 32,
42135
+ display: 'flex',
42136
+ justifyContent: 'center',
42137
+ alignItems: 'center',
42138
+ borderRadius: 9999,
42139
+ border: '1px solid #d0d7de',
42140
+ backgroundColor: 'white',
42141
+ outlineColor: 'var(--primary)',
42142
+ cursor: 'pointer'
42143
+ } }, isValidating ? React__default.createElement(LoadingIcon, null) : React__default.createElement(Gear$1, null)), optionGroups: [
42144
+ {
42145
+ options: [{
42146
+ type: 'button',
42147
+ id: 'cancel-study',
42148
+ label: 'Cancel',
42149
+ icon: React__default.createElement(XOctagon$1, null),
42150
+ disabled: typeof run.status.finished_at === 'string',
42151
+ onSelect: function () { return cancelRun(projectOwner, projectName, _run.id); }
42152
+ }]
42153
+ }
42154
+ ], contentProps: {
42155
+ align: 'end',
42156
+ sideOffset: 2,
42157
+ } }))),
42149
42158
  React__default.createElement("div", { style: {
42150
42159
  display: 'flex',
42151
42160
  flexDirection: 'column',
@@ -42245,31 +42254,35 @@ var RunsList = function (_a) {
42245
42254
  return (React__default.createElement("div", { key: item.id, style: {
42246
42255
  display: 'flex',
42247
42256
  justifyContent: 'space-between',
42257
+ alignItems: 'center',
42248
42258
  borderTop: '1px solid var(--slate5)',
42249
42259
  padding: '6px 8px',
42260
+ cursor: 'default'
42250
42261
  } },
42251
42262
  React__default.createElement("div", { style: {
42252
42263
  display: 'flex',
42264
+ alignItems: 'center',
42253
42265
  gap: 12
42254
42266
  } },
42255
- React__default.createElement("button", { style: {
42256
- backgroundColor: 'rgba(0,0,0,0)',
42257
- color: 'red',
42258
- border: 'none'
42259
- }, onClick: function () {
42260
- cancelRun(projectOwner, projectName, item.id);
42261
- } },
42262
- React__default.createElement(XOctagon$1, null)),
42267
+ item.status.status === dist.RunStatusEnum.Running &&
42268
+ React__default.createElement("button", { style: {
42269
+ display: 'flex',
42270
+ backgroundColor: 'rgba(0,0,0,0)',
42271
+ color: 'red',
42272
+ border: 'none'
42273
+ }, onClick: function () {
42274
+ cancelRun(projectOwner, projectName, item.id);
42275
+ } },
42276
+ React__default.createElement(XOctagon$1, null)),
42277
+ React__default.createElement(Link45deg$1, { size: 16, color: statusMap[item.status.status].color }),
42263
42278
  React__default.createElement("a", { href: "/".concat(projectOwner, "/projects/").concat(projectName, "/studies/").concat(jobId, "/runs/").concat(item.id), style: {
42264
42279
  color: statusMap[item.status.status].color
42265
- } },
42266
- React__default.createElement(Link45deg$1, { size: 16, color: statusMap[item.status.status].color }),
42267
- item.status.status),
42280
+ } }, item.status.status),
42268
42281
  React__default.createElement(Tag, { style: {
42269
42282
  color: statusMap[item.status.status].color,
42270
42283
  borderColor: statusMap[item.status.status].color,
42271
42284
  backgroundColor: 'white'
42272
- } }, "".concat(((item.meta.progress.completed / item.meta.progress.total) * 100).toFixed(2), "% Complete"))),
42285
+ } }, "".concat(item.meta.progress.completed, " of ").concat(item.meta.progress.total, " steps complete."))),
42273
42286
  React__default.createElement("div", { style: {
42274
42287
  display: 'grid',
42275
42288
  gridTemplateColumns: '1fr 1fr',
@@ -42308,6 +42321,7 @@ var RunsList = function (_a) {
42308
42321
  React__default.createElement("span", { style: {
42309
42322
  display: 'flex',
42310
42323
  alignItems: 'center',
42324
+ cursor: 'pointer',
42311
42325
  gap: 8
42312
42326
  } }, "".concat(runs.total_count, " Total Runs"),
42313
42327
  runs.total_count > 0 && (isValidating ? React__default.createElement(LoadingIcon, { size: 16 }) : React__default.createElement(ChevronCompactDown$1, null))))),
@@ -43151,7 +43165,7 @@ var SendResults = function (_a) {
43151
43165
  }], asButtons: true, label: buttonLabel, helpText: "".concat(selOpt ? selOpt.charAt(0).toUpperCase() + selOpt.replace('-', ' ').slice(1) : 'Send', " results.") }));
43152
43166
  };
43153
43167
 
43154
- var css_248z = ":root {\n --background: #FFFAEE;\n --primary: #1890ff;\n --primary2: #40a9ff;\n --primary1: #cceefe;\n --primary0: #e6f7ff;\n --secondary: #fff566;\n --success: #46A758;\n --warning: #F76809;\n --danger: #FF4616;\n /* radix-ui/colors */\n --slate1: hsl(206, 30.0%, 98.8%);\n --slate2: hsl(210, 16.7%, 97.6%);\n --slate3: hsl(209, 13.3%, 95.3%);\n --slate4: hsl(209, 12.2%, 93.2%);\n --slate5: hsl(208, 11.7%, 91.1%);\n --slate6: hsl(208, 11.3%, 88.9%);\n --slate7: hsl(207, 11.1%, 85.9%);\n --slate8: hsl(205, 10.7%, 78.0%);\n --slate9: hsl(206, 6.0%, 56.1%);\n --slate10: hsl(206, 5.8%, 52.3%);\n --slate11: hsl(206, 6.0%, 43.5%);\n --slate12: hsl(206, 24.0%, 9.0%);\n}\n\n@keyframes spin {\n from {\n transform: rotate(0);\n }\n to {\n transform: rotate(360deg);\n }\n}\n.spin {\n animation: spin 1s linear 0s infinite;\n}\n\n@keyframes Animation {\n 0% {\n background-position: 200%;\n }\n 50% {\n background-position: 100%;\n }\n 100% {\n background-position: 0%;\n }\n}\n.loading {\n background: linear-gradient(45deg, transparent, var(--primary), 12%, transparent);\n background-size: 200%;\n animation: Animation 3s ease infinite;\n}\n\n@keyframes open {\n from {\n height: 0;\n }\n to {\n height: var(--radix-collapsible-content-height);\n }\n}\n@keyframes close {\n from {\n height: var(--radix-collapsible-content-height);\n }\n to {\n height: 0;\n }\n}\n.collapse-content {\n overflow: hidden;\n font-size: inherit;\n color: inherit;\n}\n\n.collapse-content[data-state=open] {\n animation: open 300ms ease-out;\n}\n\n.collapse-content[data-state=closed] {\n animation: close 300ms ease-out;\n}\n\n.hover-card {\n transition: box-shadow 250ms ease-in-out, border-color 250ms ease-in-out;\n border-color: #d0d7de;\n width: 100%;\n background-color: white;\n}\n\na > .hover-card:hover {\n box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 8px 0px;\n border-color: var(--primary);\n}";
43168
+ var css_248z = ":root {\n --background: #FFFAEE;\n --primary: #1890ff;\n --primary2: #40a9ff;\n --primary1: #cceefe;\n --primary0: #e6f7ff;\n --secondary: #fff566;\n --success: #46A758;\n --warning: #F76809;\n --danger: #FF4616;\n /* radix-ui/colors */\n --slate1: hsl(206, 30.0%, 98.8%);\n --slate2: hsl(210, 16.7%, 97.6%);\n --slate3: hsl(209, 13.3%, 95.3%);\n --slate4: hsl(209, 12.2%, 93.2%);\n --slate5: hsl(208, 11.7%, 91.1%);\n --slate6: hsl(208, 11.3%, 88.9%);\n --slate7: hsl(207, 11.1%, 85.9%);\n --slate8: hsl(205, 10.7%, 78.0%);\n --slate9: hsl(206, 6.0%, 56.1%);\n --slate10: hsl(206, 5.8%, 52.3%);\n --slate11: hsl(206, 6.0%, 43.5%);\n --slate12: hsl(206, 24.0%, 9.0%);\n}\n\n@keyframes spin {\n from {\n transform: rotate(0);\n }\n to {\n transform: rotate(360deg);\n }\n}\n.spin {\n animation: spin 1s linear 0s infinite;\n}\n\n@keyframes Animation {\n 0% {\n background-position: 200%;\n }\n 50% {\n background-position: 100%;\n }\n 100% {\n background-position: 0%;\n }\n}\n.loading {\n background: linear-gradient(45deg, transparent, var(--primary), 12%, transparent);\n background-size: 200%;\n animation: Animation 3s ease infinite;\n}\n\n@keyframes open {\n from {\n height: 0;\n }\n to {\n height: var(--radix-collapsible-content-height);\n }\n}\n@keyframes close {\n from {\n height: var(--radix-collapsible-content-height);\n }\n to {\n height: 0;\n }\n}\n.collapse-content {\n overflow: hidden;\n font-size: inherit;\n color: inherit;\n}\n\n.collapse-content[data-state=open] {\n animation: open 300ms ease-out;\n}\n\n.collapse-content[data-state=closed] {\n animation: close 300ms ease-out;\n}\n\n.study-card {\n transition: box-shadow 250ms ease-in-out, border-color 250ms ease-in-out;\n border-color: #d0d7de;\n width: 100%;\n background-color: white;\n}\n\na > .study-card:hover {\n box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 8px 0px;\n border-color: var(--primary);\n}";
43155
43169
  styleInject(css_248z);
43156
43170
 
43157
43171
  dayjs_min.extend(duration);
@@ -43195,7 +43209,7 @@ var StudyCard = function (_a) {
43195
43209
  }, 1000);
43196
43210
  return study.status.finished_at ? undefined : function () { return clearInterval(handle); };
43197
43211
  }, [study]);
43198
- return (React__default.createElement("div", { "data-testid": "StudyCard", className: 'hover-card', style: __assign({ borderRadius: 8, borderWidth: 1, borderStyle: 'solid', display: 'grid', gridTemplateColumns: 'minmax(200px, 18%) 1fr', gridTemplateRows: '1fr auto', columnGap: 8, rowGap: 0 }, style) },
43212
+ return (React__default.createElement("div", { "data-testid": "StudyCard", className: 'study-card', style: __assign({ borderRadius: 8, borderWidth: 1, borderStyle: 'solid', display: 'grid', gridTemplateColumns: 'minmax(200px, 18%) 1fr', gridTemplateRows: '1fr auto', columnGap: 8, rowGap: 0 }, style) },
43199
43213
  React__default.createElement("div", { style: {
43200
43214
  borderRight: '1px solid #d0d7de',
43201
43215
  display: 'flex',
@@ -43264,37 +43278,41 @@ var StudyCard = function (_a) {
43264
43278
  textOverflow: 'ellipsis',
43265
43279
  display: 'inline-block'
43266
43280
  } }, study.spec.name),
43267
- React__default.createElement(Dropdown, { trigger: React__default.createElement("button", { type: 'button', style: {
43268
- width: 32,
43269
- height: 32,
43270
- display: 'flex',
43271
- justifyContent: 'center',
43272
- alignItems: 'center',
43273
- borderRadius: 9999,
43274
- border: '1px solid #d0d7de',
43275
- backgroundColor: 'white',
43276
- outlineColor: 'var(--primary)'
43277
- } }, isValidating ? React__default.createElement(LoadingIcon, null) : React__default.createElement(Gear$1, null)), optionGroups: [
43278
- {
43279
- options: [{
43280
- type: 'button',
43281
- id: 'cancel-study',
43282
- label: 'Cancel',
43283
- icon: React__default.createElement(XOctagon$1, null),
43284
- disabled: status.pending < 1 && status.running < 1,
43285
- onSelect: function () { return cancelJob(projectOwner, projectName, study.id); }
43286
- }, {
43287
- type: 'button',
43288
- id: 'delete-study',
43289
- label: 'Delete',
43290
- icon: React__default.createElement(Trash$1, null),
43291
- onSelect: function () { return deleteJob(projectOwner, projectName, study.id); }
43292
- },]
43293
- }
43294
- ], contentProps: {
43295
- align: 'end',
43296
- sideOffset: 2,
43297
- } })),
43281
+ React__default.createElement("div", { style: {
43282
+ display: 'flex',
43283
+ alignItems: 'center'
43284
+ } },
43285
+ React__default.createElement(Dropdown, { trigger: React__default.createElement("button", { type: 'button', style: {
43286
+ width: 32,
43287
+ height: 32,
43288
+ display: 'flex',
43289
+ justifyContent: 'center',
43290
+ alignItems: 'center',
43291
+ borderRadius: 9999,
43292
+ border: '1px solid #d0d7de',
43293
+ backgroundColor: 'white',
43294
+ outlineColor: 'var(--primary)'
43295
+ } }, isValidating ? React__default.createElement(LoadingIcon, null) : React__default.createElement(Gear$1, null)), optionGroups: [
43296
+ {
43297
+ options: [{
43298
+ type: 'button',
43299
+ id: 'cancel-study',
43300
+ label: 'Cancel',
43301
+ icon: React__default.createElement(XOctagon$1, null),
43302
+ disabled: status.pending < 1 && status.running < 1,
43303
+ onSelect: function () { return cancelJob(projectOwner, projectName, study.id); }
43304
+ }, {
43305
+ type: 'button',
43306
+ id: 'delete-study',
43307
+ label: 'Delete',
43308
+ icon: React__default.createElement(Trash$1, null),
43309
+ onSelect: function () { return deleteJob(projectOwner, projectName, study.id); }
43310
+ },]
43311
+ }
43312
+ ], contentProps: {
43313
+ align: 'end',
43314
+ sideOffset: 2,
43315
+ } }))),
43298
43316
  React__default.createElement("div", { style: {
43299
43317
  display: 'flex',
43300
43318
  flexDirection: 'column',