@orchestrator-ui/orchestrator-ui-components 0.2.5 → 0.2.6
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/.turbo/turbo-build.log +3 -3
- package/.turbo/turbo-test.log +4 -4
- package/CHANGELOG.md +6 -0
- package/package.json +1 -1
- package/src/components/WfoAuth/WfoAuth.tsx +2 -2
- package/src/components/WfoStartPage/WfoListItemStartPage.tsx +1 -1
- package/src/components/WfoStartPage/WfoListStartPage.tsx +2 -1
- package/src/components/WfoStartPage/WfoMultiListSection.tsx +2 -1
- package/src/components/WfoStartPage/WfoNewProcessPanel.tsx +1 -1
- package/src/components/WfoStartPage/WfoStatCards.tsx +2 -2
- package/tsconfig.build.json +5 -1
- package/tsconfig.json +5 -1
package/.turbo/turbo-build.log
CHANGED
|
@@ -6,8 +6,8 @@ $ tsup src/index.ts --format esm --dts --tsconfig tsconfig.build.json
|
|
|
6
6
|
[34mCLI[39m Target: node16
|
|
7
7
|
[34mESM[39m Build start
|
|
8
8
|
[32mESM[39m [1mdist/index.js [22m[32m808.84 KB[39m
|
|
9
|
-
[32mESM[39m ⚡️ Build success in
|
|
9
|
+
[32mESM[39m ⚡️ Build success in 514ms
|
|
10
10
|
[34mDTS[39m Build start
|
|
11
|
-
[32mDTS[39m ⚡️ Build success in
|
|
11
|
+
[32mDTS[39m ⚡️ Build success in 9528ms
|
|
12
12
|
[32mDTS[39m [1mdist/index.d.ts [22m[32m60.30 KB[39m
|
|
13
|
-
Done in
|
|
13
|
+
Done in 10.40s.
|
package/.turbo/turbo-test.log
CHANGED
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
$ jest
|
|
2
2
|
PASS Orchestrator UI Components Tests src/pages/processes/timelineUtils.spec.ts
|
|
3
|
+
PASS Orchestrator UI Components Tests src/components/WfoSubscription/utils/utils.spec.ts
|
|
3
4
|
PASS Orchestrator UI Components Tests src/components/WfoForms/formFields/utils.spec.ts
|
|
4
5
|
PASS Orchestrator UI Components Tests src/utils/date.spec.ts
|
|
5
6
|
PASS Orchestrator UI Components Tests src/utils/getProductNamesFromProcess.spec.ts
|
|
6
|
-
PASS Orchestrator UI Components Tests src/components/WfoSubscription/utils/utils.spec.ts
|
|
7
7
|
PASS Orchestrator UI Components Tests src/components/WfoTable/WfoDataGridTable/WfodataGridColumns.spec.ts
|
|
8
|
-
PASS Orchestrator UI Components Tests src/components/WfoTable/utils/tableConfigPersistence.spec.ts
|
|
9
8
|
PASS Orchestrator UI Components Tests src/components/WfoTree/treeUtils.spec.ts
|
|
9
|
+
PASS Orchestrator UI Components Tests src/components/WfoTable/utils/tableConfigPersistence.spec.ts
|
|
10
10
|
PASS Orchestrator UI Components Tests src/utils/string.spec.ts
|
|
11
11
|
PASS Orchestrator UI Components Tests src/components/WfoTable/utils/tableUtils.spec.ts
|
|
12
12
|
PASS Orchestrator UI Components Tests src/messages/getTranslationMessages.spec.ts
|
|
13
13
|
PASS Orchestrator UI Components Tests src/components/WfoTable/utils/mapSortableAndFilterableValuesToTableColumnConfig.spec.ts
|
|
14
14
|
PASS Orchestrator UI Components Tests src/components/WfoTable/utils/columns.spec.ts
|
|
15
|
-
PASS Orchestrator UI Components Tests src/utils/getTokenName.spec.ts
|
|
16
15
|
PASS Orchestrator UI Components Tests src/components/WfoWorkflowSteps/stepListUtils.spec.ts
|
|
16
|
+
PASS Orchestrator UI Components Tests src/utils/getTokenName.spec.ts
|
|
17
17
|
PASS Orchestrator UI Components Tests src/utils/environmentVariables.spec.ts
|
|
18
18
|
PASS Orchestrator UI Components Tests src/utils/uuid.spec.ts
|
|
19
19
|
PASS Orchestrator UI Components Tests src/utils/getTypedFieldFromObject.spec.ts
|
|
@@ -21,5 +21,5 @@ PASS Orchestrator UI Components Tests src/utils/getTypedFieldFromObject.spec.ts
|
|
|
21
21
|
Test Suites: 18 passed, 18 total
|
|
22
22
|
Tests: 114 passed, 114 total
|
|
23
23
|
Snapshots: 0 total
|
|
24
|
-
Time: 9.
|
|
24
|
+
Time: 9.794 s
|
|
25
25
|
Ran all test suites.
|
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
|
@@ -2,8 +2,8 @@ import React, { JSX, useContext } from 'react';
|
|
|
2
2
|
|
|
3
3
|
import { useSession } from 'next-auth/react';
|
|
4
4
|
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
5
|
+
import { WfoLoading } from '@/components';
|
|
6
|
+
import { OrchestratorConfigContext } from '@/contexts';
|
|
7
7
|
|
|
8
8
|
interface AuthProps {
|
|
9
9
|
children: JSX.Element;
|
|
@@ -4,7 +4,7 @@ import moment from 'moment';
|
|
|
4
4
|
|
|
5
5
|
import { EuiFlexGroup, EuiFlexItem, EuiIcon, EuiTextColor } from '@elastic/eui';
|
|
6
6
|
|
|
7
|
-
import { ProcessFromRestApi, ProductDefinition } from '
|
|
7
|
+
import { ProcessFromRestApi, ProductDefinition } from '@/types';
|
|
8
8
|
|
|
9
9
|
interface Subscription {
|
|
10
10
|
name: string;
|
|
@@ -8,8 +8,8 @@ import {
|
|
|
8
8
|
EuiText,
|
|
9
9
|
} from '@elastic/eui';
|
|
10
10
|
|
|
11
|
-
import { useOrchestratorTheme } from '
|
|
12
|
-
import { TotalStat } from '
|
|
11
|
+
import { useOrchestratorTheme } from '@/hooks';
|
|
12
|
+
import { TotalStat } from '@/types';
|
|
13
13
|
|
|
14
14
|
const totalStats: TotalStat[] = [
|
|
15
15
|
{
|
package/tsconfig.build.json
CHANGED
package/tsconfig.json
CHANGED