chore: Bump outline-icons (#5170

* Bump outline-icons to default use currentColor

* wip
This commit is contained in:
Tom Moor
2023-04-08 11:16:05 -04:00
committed by GitHub
parent 489cfcd0b0
commit aab3a49f2c
70 changed files with 113 additions and 190 deletions

View File

@@ -133,7 +133,7 @@ function Details() {
return (
<ThemeProvider theme={newTheme}>
<Scene title={t("Details")} icon={<TeamIcon color="currentColor" />}>
<Scene title={t("Details")} icon={<TeamIcon />}>
<Heading>{t("Details")}</Heading>
<Text type="secondary">
<Trans>

View File

@@ -48,7 +48,7 @@ function Export() {
);
return (
<Scene title={t("Export")} icon={<DownloadIcon color="currentColor" />}>
<Scene title={t("Export")} icon={<DownloadIcon />}>
<Heading>{t("Export")}</Heading>
<Text type="secondary">
<Trans

View File

@@ -35,7 +35,7 @@ function Features() {
};
return (
<Scene title={t("Features")} icon={<BeakerIcon color="currentColor" />}>
<Scene title={t("Features")} icon={<BeakerIcon />}>
<Heading>{t("Features")}</Heading>
<Text type="secondary">
<Trans>

View File

@@ -80,10 +80,7 @@ function GoogleAnalytics() {
);
return (
<Scene
title={t("Google Analytics")}
icon={<GoogleIcon color="currentColor" />}
>
<Scene title={t("Google Analytics")} icon={<GoogleIcon />}>
<Heading>{t("Google Analytics")}</Heading>
<Text type="secondary">

View File

@@ -33,7 +33,7 @@ function Groups() {
return (
<Scene
title={t("Groups")}
icon={<GroupIcon color="currentColor" />}
icon={<GroupIcon />}
actions={
<>
{can.createGroup && (

View File

@@ -26,7 +26,7 @@ function Import() {
const appName = env.APP_NAME;
return (
<Scene title={t("Import")} icon={<NewDocumentIcon color="currentColor" />}>
<Scene title={t("Import")} icon={<NewDocumentIcon />}>
<Heading>{t("Import")}</Heading>
<Text type="secondary">
<Trans>

View File

@@ -148,7 +148,7 @@ function Members() {
return (
<Scene
title={t("Members")}
icon={<UserIcon color="currentColor" />}
icon={<UserIcon />}
actions={
<>
{can.inviteUser && (

View File

@@ -35,7 +35,7 @@ function Notifications() {
const options = [
{
event: NotificationEventType.PublishDocument,
icon: <PublishIcon color="currentColor" />,
icon: <PublishIcon />,
title: t("Document published"),
description: t(
"Receive a notification whenever a new document is published"
@@ -43,7 +43,7 @@ function Notifications() {
},
{
event: NotificationEventType.UpdateDocument,
icon: <EditIcon color="currentColor" />,
icon: <EditIcon />,
title: t("Document updated"),
description: t(
"Receive a notification when a document you are subscribed to is edited"
@@ -51,7 +51,7 @@ function Notifications() {
},
{
event: NotificationEventType.CreateComment,
icon: <CommentIcon color="currentColor" />,
icon: <CommentIcon />,
title: t("Comment posted"),
description: t(
"Receive a notification when a document you are subscribed to or a thread you participated in receives a comment"
@@ -59,7 +59,7 @@ function Notifications() {
},
{
event: NotificationEventType.MentionedInComment,
icon: <EmailIcon color="currentColor" />,
icon: <EmailIcon />,
title: t("Mentioned"),
description: t(
"Receive a notification when someone mentions you in a document or comment"
@@ -67,7 +67,7 @@ function Notifications() {
},
{
event: NotificationEventType.CreateCollection,
icon: <CollectionIcon color="currentColor" />,
icon: <CollectionIcon />,
title: t("Collection created"),
description: t(
"Receive a notification whenever a new collection is created"
@@ -75,7 +75,7 @@ function Notifications() {
},
{
event: NotificationEventType.InviteAccepted,
icon: <UserIcon color="currentColor" />,
icon: <UserIcon />,
title: t("Invite accepted"),
description: t(
"Receive a notification when someone you invited creates an account"
@@ -83,7 +83,7 @@ function Notifications() {
},
{
event: NotificationEventType.ExportCompleted,
icon: <CheckboxIcon checked color="currentColor" />,
icon: <CheckboxIcon checked />,
title: t("Export completed"),
description: t(
"Receive a notification when an export you requested has been completed"
@@ -91,14 +91,14 @@ function Notifications() {
},
{
visible: isCloudHosted,
icon: <AcademicCapIcon color="currentColor" />,
icon: <AcademicCapIcon />,
event: NotificationEventType.Onboarding,
title: t("Getting started"),
description: t("Tips on getting started with features and functionality"),
},
{
visible: isCloudHosted,
icon: <StarredIcon color="currentColor" />,
icon: <StarredIcon />,
event: NotificationEventType.Features,
title: t("New features"),
description: t("Receive an email when new features of note are added"),
@@ -124,7 +124,7 @@ function Notifications() {
const showSuccessNotice = window.location.search === "?success";
return (
<Scene title={t("Notifications")} icon={<EmailIcon color="currentColor" />}>
<Scene title={t("Notifications")} icon={<EmailIcon />}>
<Heading>{t("Notifications")}</Heading>
{showSuccessNotice && (

View File

@@ -51,10 +51,7 @@ function Preferences() {
};
return (
<Scene
title={t("Preferences")}
icon={<SettingsIcon color="currentColor" />}
>
<Scene title={t("Preferences")} icon={<SettingsIcon />}>
<Heading>{t("Preferences")}</Heading>
<Text type="secondary">
<Trans>Manage settings that affect your personal experience.</Trans>

View File

@@ -61,7 +61,7 @@ const Profile = () => {
const { isSaving } = auth;
return (
<Scene title={t("Profile")} icon={<ProfileIcon color="currentColor" />}>
<Scene title={t("Profile")} icon={<ProfileIcon />}>
<Heading>{t("Profile")}</Heading>
<Text type="secondary">
<Trans>Manage how you appear to other members of the workspace.</Trans>

View File

@@ -137,7 +137,7 @@ function Security() {
);
return (
<Scene title={t("Security")} icon={<PadlockIcon color="currentColor" />}>
<Scene title={t("Security")} icon={<PadlockIcon />}>
<Heading>{t("Security")}</Heading>
<Text type="secondary">
<Trans>
@@ -155,8 +155,7 @@ function Security() {
key={provider.name}
label={
<Flex gap={8} align="center">
<PluginIcon id={provider.name} color="currentColor" />{" "}
{provider.displayName}
<PluginIcon id={provider.name} /> {provider.displayName}
</Flex>
}
name={provider.name}
@@ -178,7 +177,7 @@ function Security() {
<SettingRow
label={
<Flex gap={8} align="center">
<EmailIcon color="currentColor" /> {t("Email")}
<EmailIcon /> {t("Email")}
</Flex>
}
name="guestSignin"

View File

@@ -79,10 +79,7 @@ function SelfHosted() {
);
return (
<Scene
title={t("Self Hosted")}
icon={<BuildingBlocksIcon color="currentColor" />}
>
<Scene title={t("Self Hosted")} icon={<BuildingBlocksIcon />}>
<Heading>{t("Self Hosted")}</Heading>
<form onSubmit={formHandleSubmit(handleSubmit)}>

View File

@@ -67,12 +67,12 @@ function Shares() {
}, [shares.orderedData, shareIds]);
return (
<Scene title={t("Shared Links")} icon={<LinkIcon color="currentColor" />}>
<Scene title={t("Shared Links")} icon={<LinkIcon />}>
<Heading>{t("Shared Links")}</Heading>
{can.manage && !canShareDocuments && (
<>
<Notice icon={<WarningIcon color="currentColor" />}>
<Notice icon={<WarningIcon />}>
{t("Sharing is currently disabled.")}{" "}
<Trans
defaults="You can globally enable and disable public document sharing in the <em>security settings</em>."

View File

@@ -27,7 +27,7 @@ function Tokens() {
return (
<Scene
title={t("API Tokens")}
icon={<CodeIcon color="currentColor" />}
icon={<CodeIcon />}
actions={
<>
{can.createApiKey && (

View File

@@ -14,7 +14,7 @@ function Zapier() {
const appName = env.APP_NAME;
return (
<Scene title="Zapier" icon={<ZapierIcon color="currentColor" />}>
<Scene title="Zapier" icon={<ZapierIcon />}>
<Heading>Zapier</Heading>
<Helmet>
<script