-
-
Notifications
You must be signed in to change notification settings - Fork 995
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
*: remove outdated preview badges (#12950)
* remove outdated preview badges * remove from web ui too Signed-off-by: Jens Langhammer <[email protected]> --------- Signed-off-by: Jens Langhammer <[email protected]> Co-authored-by: Jens Langhammer <[email protected]>
- Loading branch information
1 parent
26a08fc
commit daebeb1
Showing
8 changed files
with
2 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,7 +16,6 @@ import { msg } from "@lit/localize"; | |
import { CSSResult, PropertyValues, TemplateResult, html } from "lit"; | ||
import { customElement, property, state } from "lit/decorators.js"; | ||
|
||
import PFBanner from "@patternfly/patternfly/components/Banner/banner.css"; | ||
import PFButton from "@patternfly/patternfly/components/Button/button.css"; | ||
import PFCard from "@patternfly/patternfly/components/Card/card.css"; | ||
import PFContent from "@patternfly/patternfly/components/Content/content.css"; | ||
|
@@ -51,7 +50,6 @@ export class GoogleWorkspaceProviderViewPage extends AKElement { | |
return [ | ||
PFBase, | ||
PFButton, | ||
PFBanner, | ||
PFForm, | ||
PFFormControl, | ||
PFStack, | ||
|
@@ -157,11 +155,7 @@ export class GoogleWorkspaceProviderViewPage extends AKElement { | |
if (!this.provider) { | ||
return html``; | ||
} | ||
return html`<div slot="header" class="pf-c-banner pf-m-info"> | ||
${msg("Google Workspace Provider is in preview.")} | ||
<a href="mailto:hello+feature/[email protected]">${msg("Send us feedback!")}</a> | ||
</div> | ||
${!this.provider?.assignedBackchannelApplicationName | ||
return html`${!this.provider?.assignedBackchannelApplicationName | ||
? html`<div slot="header" class="pf-c-banner pf-m-warning"> | ||
${msg( | ||
"Warning: Provider is not assigned to an application as backchannel provider.", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,7 +16,6 @@ import { msg } from "@lit/localize"; | |
import { CSSResult, PropertyValues, TemplateResult, html } from "lit"; | ||
import { customElement, property, state } from "lit/decorators.js"; | ||
|
||
import PFBanner from "@patternfly/patternfly/components/Banner/banner.css"; | ||
import PFButton from "@patternfly/patternfly/components/Button/button.css"; | ||
import PFCard from "@patternfly/patternfly/components/Card/card.css"; | ||
import PFContent from "@patternfly/patternfly/components/Content/content.css"; | ||
|
@@ -51,7 +50,6 @@ export class MicrosoftEntraProviderViewPage extends AKElement { | |
return [ | ||
PFBase, | ||
PFButton, | ||
PFBanner, | ||
PFForm, | ||
PFFormControl, | ||
PFStack, | ||
|
@@ -157,11 +155,7 @@ export class MicrosoftEntraProviderViewPage extends AKElement { | |
if (!this.provider) { | ||
return html``; | ||
} | ||
return html`<div slot="header" class="pf-c-banner pf-m-info"> | ||
${msg("Microsoft Entra Provider is in preview.")} | ||
<a href="mailto:hello+feature/[email protected]">${msg("Send us feedback!")}</a> | ||
</div> | ||
${!this.provider?.assignedBackchannelApplicationName | ||
return html`${!this.provider?.assignedBackchannelApplicationName | ||
? html`<div slot="header" class="pf-c-banner pf-m-warning"> | ||
${msg( | ||
"Warning: Provider is not assigned to an application as backchannel provider.", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,7 +16,6 @@ import { msg } from "@lit/localize"; | |
import { CSSResult, TemplateResult, html } from "lit"; | ||
import { customElement, property } from "lit/decorators.js"; | ||
|
||
import PFBanner from "@patternfly/patternfly/components/Banner/banner.css"; | ||
import PFButton from "@patternfly/patternfly/components/Button/button.css"; | ||
import PFCard from "@patternfly/patternfly/components/Card/card.css"; | ||
import PFContent from "@patternfly/patternfly/components/Content/content.css"; | ||
|
@@ -60,7 +59,6 @@ export class SCIMSourceViewPage extends AKElement { | |
PFContent, | ||
PFCard, | ||
PFDescriptionList, | ||
PFBanner, | ||
]; | ||
} | ||
|
||
|
@@ -78,12 +76,6 @@ export class SCIMSourceViewPage extends AKElement { | |
} | ||
return html`<ak-tabs> | ||
<section slot="page-overview" data-tab-title="${msg("Overview")}"> | ||
<div slot="header" class="pf-c-banner pf-m-info"> | ||
${msg("SCIM Source is in preview.")} | ||
<a href="mailto:hello+feature/[email protected]" | ||
>${msg("Send us feedback!")}</a | ||
> | ||
</div> | ||
<div class="pf-c-page__main-section pf-m-no-padding-mobile pf-l-grid pf-m-gutter"> | ||
<div class="pf-c-card pf-l-grid__item pf-m-12-col"> | ||
<div class="pf-c-card__body"> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters