@orchestrator-ui/orchestrator-ui-components 0.0.1-alpha.7 → 0.0.1-alpha.8

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.
Files changed (2) hide show
  1. package/index.js +9 -6
  2. package/package.json +1 -2
package/index.js CHANGED
@@ -5,7 +5,6 @@ import { useEuiTheme, tint, EuiBadge, EuiText, EuiHeader, EuiHeaderSection, EuiH
5
5
  import { useQuery } from 'react-query';
6
6
  import { GraphQLClient } from 'graphql-request';
7
7
  import moment from 'moment';
8
- import Link from 'next/link';
9
8
 
10
9
  var commonjsGlobal = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {};
11
10
 
@@ -4024,10 +4023,13 @@ const ListItemStartPage = ({
4024
4023
  });
4025
4024
  }
4026
4025
  };
4027
- return jsx(Link, Object.assign({
4028
- href: `/subscriptions/${'subscription_id' in item ? item.subscription_id : ''}`
4029
- }, {
4030
- children: jsxs(EuiFlexGroup, Object.assign({
4026
+ return (
4027
+ // <Link
4028
+ // href={`/subscriptions/${
4029
+ // 'subscription_id' in item ? item.subscription_id : ''
4030
+ // }`}
4031
+ // >
4032
+ jsxs(EuiFlexGroup, Object.assign({
4031
4033
  style: {
4032
4034
  cursor: 'pointer',
4033
4035
  paddingBlock: 10
@@ -4047,7 +4049,8 @@ const ListItemStartPage = ({
4047
4049
  })
4048
4050
  }))]
4049
4051
  }))
4050
- }));
4052
+ // </Link>
4053
+ );
4051
4054
  };
4052
4055
 
4053
4056
  function ListStartPage({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@orchestrator-ui/orchestrator-ui-components",
3
- "version": "0.0.1-alpha.7",
3
+ "version": "0.0.1-alpha.8",
4
4
  "main": "./index.js",
5
5
  "module": "./index.js",
6
6
  "type": "module",
@@ -11,7 +11,6 @@
11
11
  "react": "18.2.0",
12
12
  "@emotion/react": "11.10.6",
13
13
  "moment": "2.29.4",
14
- "next": "13.1.1",
15
14
  "react-query": "3.39.3",
16
15
  "graphql-request": "5.2.0",
17
16
  "@graphql-typed-document-node/core": "3.1.2"