mirror of
https://github.com/bitwarden/browser
synced 2026-02-28 10:33:31 +00:00
[PM-31060] Product Update Notification (#19027)
* add feature flag * temp * add ping animation with filled info icon * add ping animation to stop after 4 goes around * add local state for autofill-icon * add logic to avoid new accounts * fix closing of popover * fix strict typings * remove `creationDate` logic from being considered for autofill notification * remove "now," from the autofill description * remove height and width in the svg
This commit is contained in:
@@ -18,6 +18,7 @@ export * from "./empty-trash";
|
||||
export * from "./favorites.icon";
|
||||
export * from "./gear";
|
||||
export * from "./generator";
|
||||
export * from "./info-filled.icon";
|
||||
export * from "./item-types";
|
||||
export * from "./lock.icon";
|
||||
export * from "./login-cards";
|
||||
|
||||
7
libs/assets/src/svg/svgs/info-filled.icon.ts
Normal file
7
libs/assets/src/svg/svgs/info-filled.icon.ts
Normal file
@@ -0,0 +1,7 @@
|
||||
import { svg } from "../svg";
|
||||
|
||||
export const InfoFilledIcon = svg`
|
||||
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path class="tw-fill-primary-600" d="M12 17C12.2833 17 12.5208 16.9042 12.7125 16.7125C12.9042 16.5208 13 16.2833 13 16V12C13 11.7167 12.9042 11.4792 12.7125 11.2875C12.5208 11.0958 12.2833 11 12 11C11.7167 11 11.4792 11.0958 11.2875 11.2875C11.0958 11.4792 11 11.7167 11 12V16C11 16.2833 11.0958 16.5208 11.2875 16.7125C11.4792 16.9042 11.7167 17 12 17ZM12 9C12.2833 9 12.5208 8.90417 12.7125 8.7125C12.9042 8.52083 13 8.28333 13 8C13 7.71667 12.9042 7.47917 12.7125 7.2875C12.5208 7.09583 12.2833 7 12 7C11.7167 7 11.4792 7.09583 11.2875 7.2875C11.0958 7.47917 11 7.71667 11 8C11 8.28333 11.0958 8.52083 11.2875 8.7125C11.4792 8.90417 11.7167 9 12 9ZM12 22C10.6167 22 9.31667 21.7375 8.1 21.2125C6.88333 20.6875 5.825 19.975 4.925 19.075C4.025 18.175 3.3125 17.1167 2.7875 15.9C2.2625 14.6833 2 13.3833 2 12C2 10.6167 2.2625 9.31667 2.7875 8.1C3.3125 6.88333 4.025 5.825 4.925 4.925C5.825 4.025 6.88333 3.3125 8.1 2.7875C9.31667 2.2625 10.6167 2 12 2C13.3833 2 14.6833 2.2625 15.9 2.7875C17.1167 3.3125 18.175 4.025 19.075 4.925C19.975 5.825 20.6875 6.88333 21.2125 8.1C21.7375 9.31667 22 10.6167 22 12C22 13.3833 21.7375 14.6833 21.2125 15.9C20.6875 17.1167 19.975 18.175 19.075 19.075C18.175 19.975 17.1167 20.6875 15.9 21.2125C14.6833 21.7375 13.3833 22 12 22Z" />
|
||||
</svg>
|
||||
`;
|
||||
@@ -219,6 +219,10 @@ export const VAULT_BROWSER_INTRO_CAROUSEL = new StateDefinition(
|
||||
"vaultBrowserIntroCarousel",
|
||||
"disk",
|
||||
);
|
||||
export const VAULT_AUTOFILL_SIMPLIFIED_ICON = new StateDefinition(
|
||||
"vaultAutofillSimplifiedIcon",
|
||||
"disk",
|
||||
);
|
||||
export const VAULT_AT_RISK_PASSWORDS_MEMORY = new StateDefinition("vaultAtRiskPasswords", "memory");
|
||||
export const WELCOME_EXTENSION_DIALOG_DISK = new StateDefinition(
|
||||
"vaultWelcomeExtensionDialogDismissed",
|
||||
|
||||
Reference in New Issue
Block a user