@orchestrator-ui/orchestrator-ui-components 0.2.2 → 0.2.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.
@@ -4,8 +4,8 @@ $ tsup src/index.ts --format esm --dts
4
4
  CLI tsup v7.1.0
5
5
  CLI Target: node16
6
6
  ESM Build start
7
- ESM dist/index.js 216.03 KB
8
- ESM ⚡️ Build success in 434ms
7
+ ESM dist/index.js 216.23 KB
8
+ ESM ⚡️ Build success in 573ms
9
9
  DTS Build start
10
- DTS ⚡️ Build success in 12261ms
10
+ DTS ⚡️ Build success in 16250ms
11
11
  DTS dist/index.d.ts 29.28 KB
@@ -13,5 +13,5 @@ PASS Orchestrator UI Components Tests src/utils/getTypedFieldFromObject.spec.ts
13
13
  Test Suites: 10 passed, 10 total
14
14
  Tests: 50 passed, 50 total
15
15
  Snapshots: 0 total
16
- Time: 7.976 s
16
+ Time: 11.496 s
17
17
  Ran all test suites.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @orchestrator-ui/orchestrator-ui-components
2
2
 
3
+ ## 0.2.3
4
+
5
+ ### Patch Changes
6
+
7
+ - 577825a: Adds title to process list page
8
+
3
9
  ## 0.2.2
4
10
 
5
11
  ### Patch Changes
package/dist/index.js CHANGED
@@ -6669,7 +6669,7 @@ var WFOProcessesListSubscriptionsCell = ({ subscriptions }) => {
6669
6669
  // src/pages/processes/WFOProcessListPage.tsx
6670
6670
  import { StringParam as StringParam2, useQueryParam, withDefault as withDefault2 } from "use-query-params";
6671
6671
  import { useRouter as useRouter4 } from "next/router";
6672
- import { EuiSpacer as EuiSpacer18 } from "@elastic/eui";
6672
+ import { EuiPageHeader as EuiPageHeader3, EuiSpacer as EuiSpacer18 } from "@elastic/eui";
6673
6673
 
6674
6674
  // src/pages/processes/tableConfig.ts
6675
6675
  var defaultHiddenColumnsActiveProcesses = [
@@ -6803,6 +6803,9 @@ var WFOProcessListPage = () => {
6803
6803
  const defaultHiddenColumns = selectedProcessListTab === "ACTIVE" /* ACTIVE */ ? defaultHiddenColumnsActiveProcesses : defaultHiddenColumnsCompletedProcesses;
6804
6804
  const localStorageKey = selectedProcessListTab === "ACTIVE" /* ACTIVE */ ? ACTIVE_PROCESSES_LIST_TABLE_LOCAL_STORAGE_KEY : COMPLETED_PROCESSES_LIST_TABLE_LOCAL_STORAGE_KEY;
6805
6805
  return /* @__PURE__ */ jsxs39(Fragment19, { children: [
6806
+ /* @__PURE__ */ jsx62(EuiSpacer18, {}),
6807
+ /* @__PURE__ */ jsx62(EuiPageHeader3, { pageTitle: "Processes" }),
6808
+ /* @__PURE__ */ jsx62(EuiSpacer18, { size: "m" }),
6806
6809
  /* @__PURE__ */ jsx62(
6807
6810
  WFOFilterTabs,
6808
6811
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@orchestrator-ui/orchestrator-ui-components",
3
- "version": "0.2.2",
3
+ "version": "0.2.3",
4
4
  "license": "MIT",
5
5
  "scripts": {
6
6
  "test": "jest",
@@ -22,7 +22,7 @@ import { Pagination } from '@elastic/eui/src/components';
22
22
  import { WFOProcessesListSubscriptionsCell } from './WFOProcessesListSubscriptionsCell';
23
23
  import { StringParam, useQueryParam, withDefault } from 'use-query-params';
24
24
  import { useRouter } from 'next/router';
25
- import { EuiSpacer } from '@elastic/eui';
25
+ import { EuiPageHeader, EuiSpacer } from '@elastic/eui';
26
26
  import { defaultProcessListTabs, WFOProcessListTabType } from './tabConfig';
27
27
  import { getProcessListTabTypeFromString } from './getProcessListTabTypeFromString';
28
28
  import {
@@ -172,6 +172,11 @@ export const WFOProcessListPage = () => {
172
172
 
173
173
  return (
174
174
  <>
175
+ <EuiSpacer />
176
+
177
+ <EuiPageHeader pageTitle="Processes" />
178
+ <EuiSpacer size="m" />
179
+
175
180
  <WFOFilterTabs
176
181
  tabs={defaultProcessListTabs}
177
182
  translationNamespace="processes.tabs"