@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.
@@ -6,8 +6,8 @@ $ tsup src/index.ts --format esm --dts --tsconfig tsconfig.build.json
6
6
  CLI Target: node16
7
7
  ESM Build start
8
8
  ESM dist/index.js 808.84 KB
9
- ESM ⚡️ Build success in 492ms
9
+ ESM ⚡️ Build success in 514ms
10
10
  DTS Build start
11
- DTS ⚡️ Build success in 10131ms
11
+ DTS ⚡️ Build success in 9528ms
12
12
  DTS dist/index.d.ts 60.30 KB
13
- Done in 11.03s.
13
+ Done in 10.40s.
@@ -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.919 s
24
+ Time: 9.794 s
25
25
  Ran all test suites.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @orchestrator-ui/orchestrator-ui-components
2
2
 
3
+ ## 0.2.6
4
+
5
+ ### Patch Changes
6
+
7
+ - 6597ac1: Test release after adding absolute imports (issue 414)
8
+
3
9
  ## 0.2.5
4
10
 
5
11
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@orchestrator-ui/orchestrator-ui-components",
3
- "version": "0.2.5",
3
+ "version": "0.2.6",
4
4
  "license": "MIT",
5
5
  "scripts": {
6
6
  "test": "jest",
@@ -2,8 +2,8 @@ import React, { JSX, useContext } from 'react';
2
2
 
3
3
  import { useSession } from 'next-auth/react';
4
4
 
5
- import { OrchestratorConfigContext } from '../../contexts';
6
- import { WfoLoading } from '../WfoLoading';
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 '../../types';
7
+ import { ProcessFromRestApi, ProductDefinition } from '@/types';
8
8
 
9
9
  interface Subscription {
10
10
  name: string;
@@ -8,7 +8,8 @@ import {
8
8
  EuiSpacer,
9
9
  } from '@elastic/eui';
10
10
 
11
- import { ItemsList } from '../../types';
11
+ import { ItemsList } from '@/types';
12
+
12
13
  import { WfoListItemStartPage } from './WfoListItemStartPage';
13
14
 
14
15
  interface WfoListStartPage {
@@ -6,7 +6,8 @@ import {
6
6
  useFavouriteSubscriptions,
7
7
  useProcessesAttention,
8
8
  useRecentProcesses,
9
- } from '../../hooks/DataFetchHooks';
9
+ } from '@/hooks';
10
+
10
11
  import WfoListStartPage from './WfoListStartPage';
11
12
 
12
13
  export const WfoMultiListSection: FC = () => {
@@ -8,7 +8,7 @@ import {
8
8
  EuiTextColor,
9
9
  } from '@elastic/eui';
10
10
 
11
- import { WfoFrequentlyUsed } from './WfoFrequentlyUsed';
11
+ import { WfoFrequentlyUsed } from '@/components';
12
12
 
13
13
  export const WfoNewProcessPanel: FC = () => {
14
14
  const [value, setValue] = useState('');
@@ -8,8 +8,8 @@ import {
8
8
  EuiText,
9
9
  } from '@elastic/eui';
10
10
 
11
- import { useOrchestratorTheme } from '../../hooks/useOrchestratorTheme';
12
- import { TotalStat } from '../../types';
11
+ import { useOrchestratorTheme } from '@/hooks';
12
+ import { TotalStat } from '@/types';
13
13
 
14
14
  const totalStats: TotalStat[] = [
15
15
  {
@@ -1,7 +1,11 @@
1
1
  {
2
2
  "extends": "@orchestrator-ui/tsconfig/base.json",
3
3
  "compilerOptions": {
4
- "strictNullChecks": true
4
+ "strictNullChecks": true,
5
+ "baseUrl": ".",
6
+ "paths": {
7
+ "@/*": ["./src/*"]
8
+ }
5
9
  },
6
10
  "include": ["**/*.ts", "**/*.tsx"],
7
11
  "exclude": [
package/tsconfig.json CHANGED
@@ -3,7 +3,11 @@
3
3
  "compilerOptions": {
4
4
  "strictNullChecks": true,
5
5
  "rootDir": "./src",
6
- "outDir": "./dist"
6
+ "outDir": "./dist",
7
+ "baseUrl": ".",
8
+ "paths": {
9
+ "@/*": ["./src/*"]
10
+ }
7
11
  },
8
12
  "include": ["./src/**/*.ts", "./src/**/*.tsx"],
9
13
  "exclude": [