@rh-support/manage 2.1.9-beta.0 → 2.1.10
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/lib/esm/Manage.d.ts.map +1 -1
- package/lib/esm/Manage.js +7 -0
- package/lib/esm/ManageTabs.d.ts.map +1 -1
- package/lib/esm/ManageTabs.js +7 -0
- package/package.json +13 -7
package/lib/esm/Manage.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Manage.d.ts","sourceRoot":"","sources":["../../src/Manage.tsx"],"names":[],"mappings":"AAAA,OAAO,mBAAmB,CAAC;AAI3B,OAAO,EAAE,QAAQ,EAAE,MAAM,gCAAgC,CAAC;
|
|
1
|
+
{"version":3,"file":"Manage.d.ts","sourceRoot":"","sources":["../../src/Manage.tsx"],"names":[],"mappings":"AAAA,OAAO,mBAAmB,CAAC;AAI3B,OAAO,EAAE,QAAQ,EAAE,MAAM,gCAAgC,CAAC;AAG1D,OAAO,EAAE,mBAAmB,EAAE,MAAM,kBAAkB,CAAC;AAKvD,MAAM,WAAW,qBAAqB;CAAG;AACzC,UAAU,MAAM;IACZ,UAAU,EAAE,mBAAmB,CAAC,qBAAqB,CAAC,CAAC;IACvD,QAAQ,EAAE,MAAM,CAAC;CACpB;AAED,OAAO,CAAC,MAAM,CAAC;IACX,UAAU,MAAM;QACZ,SAAS,EAAE,GAAG,CAAC;QACf,oBAAoB,EAAE,GAAG,CAAC;QAC1B,iBAAiB,EAAE,CAAC,SAAS,EAAE,MAAM,EAAE,EAAE,QAAQ,EAAE,CAAC,GAAG,MAAM,OAAA,KAAK,GAAG,KAAK,GAAG,CAAC;QAC9E,MAAM,EAAE,GAAG,CAAC;QACZ,KAAK,EAAE,GAAG,CAAC;QACX,eAAe,EAAE,GAAG,CAAC;QACrB,aAAa,EAAE;YACX,cAAc,EAAE,MAAM,CAAC;YACvB,OAAO,EAAE,MAAM,CAAC;SACnB,CAAC;KACL;IAED,UAAU,QAAQ;QACd,YAAY,EAAE,GAAG,CAAC;KACrB;IAED,UAAU,GAAG,CAAC;QACV,UAAU,iBAAkB,SAAQ,QAAQ;SAAG;KAClD;CACJ;AASD,wBAAgB,MAAM,CAAC,KAAK,EAAE,MAAM,eAUnC"}
|
package/lib/esm/Manage.js
CHANGED
|
@@ -1,8 +1,15 @@
|
|
|
1
1
|
import './scss/index.scss';
|
|
2
2
|
import { ConfirmationServiceProvider } from '@rh-support/components';
|
|
3
|
+
import { CustomElements, requireCustomElement } from '@rh-support/utils';
|
|
3
4
|
import React from 'react';
|
|
4
5
|
import { ManageTabs } from './ManageTabs';
|
|
5
6
|
import { Routes } from './Routes';
|
|
7
|
+
requireCustomElement([
|
|
8
|
+
{
|
|
9
|
+
element: CustomElements.pfeTabs,
|
|
10
|
+
requireCb: () => require('@patternfly/pfe-tabs'),
|
|
11
|
+
},
|
|
12
|
+
]);
|
|
6
13
|
export function Manage(props) {
|
|
7
14
|
Routes.basePath = props.basePath;
|
|
8
15
|
return (React.createElement("div", { id: "rh-support-manage" },
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ManageTabs.d.ts","sourceRoot":"","sources":["../../src/ManageTabs.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"ManageTabs.d.ts","sourceRoot":"","sources":["../../src/ManageTabs.tsx"],"names":[],"mappings":"AAMA,OAAO,EAAE,mBAAmB,EAAE,MAAM,kBAAkB,CAAC;AAmBvD,UAAU,MAAM;IACZ,UAAU,EAAE,mBAAmB,CAAC,EAAE,CAAC,CAAC;CACvC;AAED,wBAAgB,UAAU,CAAC,KAAK,EAAE,MAAM,eAqIvC"}
|
package/lib/esm/ManageTabs.js
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { ErrorBoundary, useDocumentTitle } from '@rh-support/components';
|
|
2
2
|
import { ability, CaseDetailsFields, resourceActions, resources } from '@rh-support/user-permissions';
|
|
3
|
+
import { CustomElements, requireCustomElement } from '@rh-support/utils';
|
|
3
4
|
import map from 'lodash/map';
|
|
4
5
|
import React from 'react';
|
|
5
6
|
import { ConfigsTable } from './components/Configs/ConfigsTable';
|
|
@@ -11,6 +12,12 @@ import { TopContentManagement } from './components/TopContentManagement';
|
|
|
11
12
|
import { PageTitle } from './constants/pageTitle';
|
|
12
13
|
import { ManageTab } from './ManageTab';
|
|
13
14
|
import { Routes } from './Routes';
|
|
15
|
+
requireCustomElement([
|
|
16
|
+
{
|
|
17
|
+
element: CustomElements.pfeTabs,
|
|
18
|
+
requireCb: () => require('@patternfly/pfe-tabs'),
|
|
19
|
+
},
|
|
20
|
+
]);
|
|
14
21
|
export function ManageTabs(props) {
|
|
15
22
|
var _a, _b;
|
|
16
23
|
const history = props.routeProps.history;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rh-support/manage",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.10",
|
|
4
4
|
"description": "Customer Support Manage App",
|
|
5
5
|
"author": "Jordan Eudy <jeudy100@gmail.com>",
|
|
6
6
|
"homepage": "",
|
|
@@ -48,6 +48,9 @@
|
|
|
48
48
|
"peerDependencies": {
|
|
49
49
|
"@cee-eng/hydrajs": "4.15.87",
|
|
50
50
|
"@patternfly/patternfly": "4.196.7",
|
|
51
|
+
"@patternfly/pfe-accordion": "1.12.3",
|
|
52
|
+
"@patternfly/pfe-collapse": "1.12.3",
|
|
53
|
+
"@patternfly/pfe-tabs": "1.12.3",
|
|
51
54
|
"@patternfly/react-core": "4.264.0",
|
|
52
55
|
"@patternfly/react-table": "4.111.33",
|
|
53
56
|
"i18next": ">=17.0.1",
|
|
@@ -76,14 +79,17 @@
|
|
|
76
79
|
"dependencies": {
|
|
77
80
|
"@cee-eng/hydrajs": "4.15.87",
|
|
78
81
|
"@patternfly/patternfly": "4.196.7",
|
|
82
|
+
"@patternfly/pfe-accordion": "1.12.3",
|
|
83
|
+
"@patternfly/pfe-collapse": "1.12.3",
|
|
84
|
+
"@patternfly/pfe-tabs": "1.12.3",
|
|
79
85
|
"@patternfly/react-core": "4.264.0",
|
|
80
86
|
"@patternfly/react-table": "4.111.33",
|
|
81
|
-
"@rh-support/components": "2.1.
|
|
82
|
-
"@rh-support/configs": "2.0.9
|
|
83
|
-
"@rh-support/react-context": "2.1.
|
|
87
|
+
"@rh-support/components": "2.1.9",
|
|
88
|
+
"@rh-support/configs": "2.0.9",
|
|
89
|
+
"@rh-support/react-context": "2.1.9",
|
|
84
90
|
"@rh-support/types": "2.0.2",
|
|
85
|
-
"@rh-support/user-permissions": "2.1.
|
|
86
|
-
"@rh-support/utils": "2.1.
|
|
91
|
+
"@rh-support/user-permissions": "2.1.4",
|
|
92
|
+
"@rh-support/utils": "2.1.2",
|
|
87
93
|
"@types/react-beautiful-dnd": "^13.0.0",
|
|
88
94
|
"i18next": ">=17.0.1",
|
|
89
95
|
"lodash": ">=4.17.15",
|
|
@@ -97,5 +103,5 @@
|
|
|
97
103
|
"defaults and supports es6-module",
|
|
98
104
|
"maintained node versions"
|
|
99
105
|
],
|
|
100
|
-
"gitHead": "
|
|
106
|
+
"gitHead": "8f7f0aee0461c78e8a5cc0e16777371c4ae1305d"
|
|
101
107
|
}
|