diff --git a/packages/manager/apps/pci-load-balancer/src/pages/detail/listeners/Listeners.page.tsx b/packages/manager/apps/pci-load-balancer/src/pages/detail/listeners/Listeners.page.tsx index 412b0355c6e3..a7e85512532d 100644 --- a/packages/manager/apps/pci-load-balancer/src/pages/detail/listeners/Listeners.page.tsx +++ b/packages/manager/apps/pci-load-balancer/src/pages/detail/listeners/Listeners.page.tsx @@ -1,4 +1,4 @@ -import { Links } from '@ovh-ux/manager-react-components'; +import { Headers, Links } from '@ovh-ux/manager-react-components'; import { OdsHTMLAnchorElementTarget } from '@ovhcloud/ods-common-core'; import { ODS_TEXT_LEVEL, ODS_TEXT_SIZE } from '@ovhcloud/ods-components'; import { OsdsText } from '@ovhcloud/ods-components/react'; @@ -14,15 +14,9 @@ export default function Listeners() { return (
- - {t('octavia_load_balancer_listeners_title')} - + -
+
{ @@ -80,7 +80,7 @@ export default function ListenerList() { {t('octavia_load_balancer_listeners_add_button')} diff --git a/packages/manager/apps/pci-load-balancer/src/pages/detail/log/Streams.page.tsx b/packages/manager/apps/pci-load-balancer/src/pages/detail/log/Streams.page.tsx index dbbf942c5087..054503f926f2 100644 --- a/packages/manager/apps/pci-load-balancer/src/pages/detail/log/Streams.page.tsx +++ b/packages/manager/apps/pci-load-balancer/src/pages/detail/log/Streams.page.tsx @@ -89,7 +89,7 @@ export default function StreamsPage() { className="mt-4" color={ODS_THEME_COLOR_INTENT.primary} size={ODS_BUTTON_SIZE.sm} - variant={ODS_BUTTON_VARIANT.stroked} + variant={ODS_BUTTON_VARIANT.flat} onClick={() => { gotoAddDataStream(); }} @@ -99,6 +99,7 @@ export default function StreamsPage() { diff --git a/packages/manager/apps/pci-load-balancer/src/pages/detail/pools/Pools.page.tsx b/packages/manager/apps/pci-load-balancer/src/pages/detail/pools/Pools.page.tsx index 93cb82988e68..1c85031757ac 100644 --- a/packages/manager/apps/pci-load-balancer/src/pages/detail/pools/Pools.page.tsx +++ b/packages/manager/apps/pci-load-balancer/src/pages/detail/pools/Pools.page.tsx @@ -1,4 +1,4 @@ -import { Links } from '@ovh-ux/manager-react-components'; +import { Headers, Links } from '@ovh-ux/manager-react-components'; import { OdsHTMLAnchorElementTarget } from '@ovhcloud/ods-common-core'; import { ODS_TEXT_LEVEL, ODS_TEXT_SIZE } from '@ovhcloud/ods-components'; import { OsdsText } from '@ovhcloud/ods-components/react'; @@ -14,15 +14,9 @@ export default function Pools() { return (
- - {t('octavia_load_balancer_pools_title')} - + -
+
{ @@ -80,7 +80,7 @@ export default function PoolList() { {t('octavia_load_balancer_pools_add_button')} diff --git a/packages/manager/apps/pci-load-balancer/src/pages/listing/Listing.page.tsx b/packages/manager/apps/pci-load-balancer/src/pages/listing/Listing.page.tsx index d1e4b0910506..a07c46e3d553 100644 --- a/packages/manager/apps/pci-load-balancer/src/pages/listing/Listing.page.tsx +++ b/packages/manager/apps/pci-load-balancer/src/pages/listing/Listing.page.tsx @@ -83,7 +83,7 @@ export default function ListingPage() {
{ @@ -94,7 +94,7 @@ export default function ListingPage() { {t('octavia_load_balancers_add_button')} diff --git a/packages/manager/modules/manager-pci-common/src/components/shape-input/ShapeInput.component.tsx b/packages/manager/modules/manager-pci-common/src/components/shape-input/ShapeInput.component.tsx index 27c6811f06aa..9ffc3f537f7e 100644 --- a/packages/manager/modules/manager-pci-common/src/components/shape-input/ShapeInput.component.tsx +++ b/packages/manager/modules/manager-pci-common/src/components/shape-input/ShapeInput.component.tsx @@ -1,6 +1,6 @@ import clsx from 'clsx'; import isEqual from 'lodash.isequal'; -import { memo, useCallback, useEffect, useMemo, useState } from 'react'; +import React, { memo, useCallback, useEffect, useMemo, useState } from 'react'; import { AccordionComponent } from '../accordion/Accordion.component'; import { DefaultItemLabelComponent } from './default-components/item-label'; import { DefaultStackLabelComponent } from './default-components/stack-label'; diff --git a/packages/manager/modules/manager-pci-common/src/components/shape-input/default-components/default-shape.tsx b/packages/manager/modules/manager-pci-common/src/components/shape-input/default-components/default-shape.tsx index 56a26aa787c6..902119fc3b65 100644 --- a/packages/manager/modules/manager-pci-common/src/components/shape-input/default-components/default-shape.tsx +++ b/packages/manager/modules/manager-pci-common/src/components/shape-input/default-components/default-shape.tsx @@ -1,5 +1,5 @@ import clsx from 'clsx'; -import { ReactNode } from 'react'; +import React, { ReactNode } from 'react'; import { GHOST_BUTTON_CLASS } from '../constants'; export const DefaultShapeComponent = ({ diff --git a/packages/manager/modules/manager-pci-common/src/components/shape-input/default-components/group-label.tsx b/packages/manager/modules/manager-pci-common/src/components/shape-input/default-components/group-label.tsx index 61536c95cbcd..d0b406b55264 100644 --- a/packages/manager/modules/manager-pci-common/src/components/shape-input/default-components/group-label.tsx +++ b/packages/manager/modules/manager-pci-common/src/components/shape-input/default-components/group-label.tsx @@ -1,3 +1,5 @@ +import React from 'react'; + export const DefaultGroupLabelComponent = ({ groupName, isGroupSelected, diff --git a/packages/manager/modules/manager-pci-common/src/components/shape-input/default-components/item-label.tsx b/packages/manager/modules/manager-pci-common/src/components/shape-input/default-components/item-label.tsx index c895b687525b..c1d0c15454bb 100644 --- a/packages/manager/modules/manager-pci-common/src/components/shape-input/default-components/item-label.tsx +++ b/packages/manager/modules/manager-pci-common/src/components/shape-input/default-components/item-label.tsx @@ -1,3 +1,5 @@ +import React from 'react'; + export const DefaultItemLabelComponent = ({ item, isItemSelected, diff --git a/packages/manager/modules/manager-pci-common/src/components/shape-input/default-components/stack-label.tsx b/packages/manager/modules/manager-pci-common/src/components/shape-input/default-components/stack-label.tsx index 33f8107abb2c..5b18e9f106e6 100644 --- a/packages/manager/modules/manager-pci-common/src/components/shape-input/default-components/stack-label.tsx +++ b/packages/manager/modules/manager-pci-common/src/components/shape-input/default-components/stack-label.tsx @@ -1,3 +1,5 @@ +import React from 'react'; + export const DefaultStackLabelComponent = ({ stackKey, isStackSelected, diff --git a/packages/manager/modules/manager-pci-common/src/components/shape-input/default-components/stack-title.tsx b/packages/manager/modules/manager-pci-common/src/components/shape-input/default-components/stack-title.tsx index ad2605671dd0..5d3527287aa5 100644 --- a/packages/manager/modules/manager-pci-common/src/components/shape-input/default-components/stack-title.tsx +++ b/packages/manager/modules/manager-pci-common/src/components/shape-input/default-components/stack-title.tsx @@ -1,3 +1,5 @@ +import React from 'react'; + export const DefaultStackTitleComponent = ({ stackKey, }: {