@boomerang-io/carbon-addons-boomerang-react 4.6.9-beta.32 → 4.6.9-beta.33
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.
|
@@ -159,16 +159,6 @@ function AdvantageSideNav(props) {
|
|
|
159
159
|
// renderIcon={AddAlt}
|
|
160
160
|
// onClick={setIsCreateOpen(true)}
|
|
161
161
|
onClick: () => handleCreateClick() }, "Create"),
|
|
162
|
-
React__default.default.createElement(react.ComposedModal, { "aria-label": "Feedback", open: isCreateOpen, className: `${settings.prefix}--bmrg-feedback-container ${settings.prefix}--bmrg-header-modal`, onClose: setIsCreateOpen(false), onKeyDown: (e) => e.stopPropagation() },
|
|
163
|
-
React__default.default.createElement(react.ModalHeader, { title: "Choose your Method to Create:", closeModal: setIsCreateOpen(!isCreateOpen) }),
|
|
164
|
-
React__default.default.createElement(react.ModalBody, null,
|
|
165
|
-
React__default.default.createElement("div", null,
|
|
166
|
-
React__default.default.createElement("a", { href: "www.google.com" },
|
|
167
|
-
React__default.default.createElement("p", null, "Create an Agent"),
|
|
168
|
-
React__default.default.createElement("span", null, "Simple single agent configuration leveraging tools, via chat and general field inputs")),
|
|
169
|
-
React__default.default.createElement("a", { href: "www.youtube.com" },
|
|
170
|
-
React__default.default.createElement("p", null, "Create an Agentic App/ Workflow"),
|
|
171
|
-
React__default.default.createElement("span", null, "Advanced orchestration of multiple agents into workflows with configurable frameworks"))))),
|
|
172
162
|
userTeamsLoading && isMenuOpen ? (React__default.default.createElement(React__default.default.Fragment, null,
|
|
173
163
|
React__default.default.createElement(react.SideNavDivider, null),
|
|
174
164
|
React__default.default.createElement("div", { className: `${settings.prefix}--bmrg-advantage-sidenav-loading-container` },
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import cx from 'classnames';
|
|
3
|
-
import { SideNavLink, SideNav, SideNavItems, SideNavDivider,
|
|
3
|
+
import { SideNavLink, SideNav, SideNavItems, SideNavDivider, SkeletonPlaceholder, SideNavMenu } from '@carbon/react';
|
|
4
4
|
import TooltipHover from '../TooltipHover/TooltipHover.js';
|
|
5
5
|
import { ChatBot, Home, AddAlt, UserMultiple, User, Locked, Unlocked, ChevronRight, GroupAccount } from '@carbon/react/icons';
|
|
6
6
|
import { USER_PLATFORM_ROLE } from '../../constants/UserType.js';
|
|
@@ -150,16 +150,6 @@ function AdvantageSideNav(props) {
|
|
|
150
150
|
// renderIcon={AddAlt}
|
|
151
151
|
// onClick={setIsCreateOpen(true)}
|
|
152
152
|
onClick: () => handleCreateClick() }, "Create"),
|
|
153
|
-
React.createElement(ComposedModal, { "aria-label": "Feedback", open: isCreateOpen, className: `${prefix}--bmrg-feedback-container ${prefix}--bmrg-header-modal`, onClose: setIsCreateOpen(false), onKeyDown: (e) => e.stopPropagation() },
|
|
154
|
-
React.createElement(ModalHeader, { title: "Choose your Method to Create:", closeModal: setIsCreateOpen(!isCreateOpen) }),
|
|
155
|
-
React.createElement(ModalBody, null,
|
|
156
|
-
React.createElement("div", null,
|
|
157
|
-
React.createElement("a", { href: "www.google.com" },
|
|
158
|
-
React.createElement("p", null, "Create an Agent"),
|
|
159
|
-
React.createElement("span", null, "Simple single agent configuration leveraging tools, via chat and general field inputs")),
|
|
160
|
-
React.createElement("a", { href: "www.youtube.com" },
|
|
161
|
-
React.createElement("p", null, "Create an Agentic App/ Workflow"),
|
|
162
|
-
React.createElement("span", null, "Advanced orchestration of multiple agents into workflows with configurable frameworks"))))),
|
|
163
153
|
userTeamsLoading && isMenuOpen ? (React.createElement(React.Fragment, null,
|
|
164
154
|
React.createElement(SideNavDivider, null),
|
|
165
155
|
React.createElement("div", { className: `${prefix}--bmrg-advantage-sidenav-loading-container` },
|
package/package.json
CHANGED