@opexa/portal-components 0.0.455 → 0.0.457

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.
Files changed (71) hide show
  1. package/dist/components/Account/Account.lazy.d.ts +2 -0
  2. package/dist/components/Account/Account.lazy.js +3 -1
  3. package/dist/components/AccountInfo/GoogleDisconnect.d.ts +7 -0
  4. package/dist/components/AccountInfo/GoogleDisconnect.js +11 -0
  5. package/dist/components/PortalProvider/CXDTokenObserver.js +11 -11
  6. package/dist/components/Quests/MultiWageringQuest.js +16 -16
  7. package/dist/components/Quests/Quests.client.js +4 -1
  8. package/dist/icons/LinkBrokenIcon.d.ts +2 -0
  9. package/dist/icons/LinkBrokenIcon.js +4 -0
  10. package/dist/styles/theme.css +5 -0
  11. package/dist/ui/AlertDialog/AlertDialog.d.ts +121 -121
  12. package/dist/ui/AlertDialog/alertDialog.recipe.d.ts +11 -11
  13. package/dist/ui/Badge/Badge.d.ts +12 -12
  14. package/dist/ui/Badge/badge.anatomy.d.ts +1 -1
  15. package/dist/ui/Badge/badge.recipe.d.ts +3 -3
  16. package/dist/ui/Carousel/Carousel.d.ts +45 -45
  17. package/dist/ui/Carousel/carousel.recipe.d.ts +5 -5
  18. package/dist/ui/Checkbox/Checkbox.d.ts +23 -23
  19. package/dist/ui/Checkbox/checkbox.recipe.d.ts +3 -3
  20. package/dist/ui/Clipboard/Clipboard.d.ts +18 -18
  21. package/dist/ui/Clipboard/clipboard.recipe.d.ts +3 -3
  22. package/dist/ui/Combobox/Combobox.d.ts +42 -42
  23. package/dist/ui/Combobox/combobox.recipe.d.ts +3 -3
  24. package/dist/ui/DatePicker/DatePicker.d.ts +72 -72
  25. package/dist/ui/DatePicker/datePicker.recipe.d.ts +3 -3
  26. package/dist/ui/Dialog/Dialog.d.ts +33 -33
  27. package/dist/ui/Dialog/dialog.recipe.d.ts +3 -3
  28. package/dist/ui/Drawer/Drawer.d.ts +33 -33
  29. package/dist/ui/Drawer/drawer.recipe.d.ts +3 -3
  30. package/dist/ui/Field/Field.d.ts +21 -21
  31. package/dist/ui/Field/field.recipe.d.ts +3 -3
  32. package/dist/ui/Menu/Menu.d.ts +252 -252
  33. package/dist/ui/Menu/menu.recipe.d.ts +14 -14
  34. package/dist/ui/NumberInput/NumberInput.d.ts +24 -24
  35. package/dist/ui/NumberInput/numberInput.recipe.d.ts +3 -3
  36. package/dist/ui/PasswordInput/PasswordInput.d.ts +18 -18
  37. package/dist/ui/PasswordInput/passwordInput.recipe.d.ts +3 -3
  38. package/dist/ui/PinInput/PinInput.d.ts +12 -12
  39. package/dist/ui/PinInput/pinInput.recipe.d.ts +3 -3
  40. package/dist/ui/Popover/Popover.d.ts +55 -55
  41. package/dist/ui/Popover/popover.recipe.d.ts +5 -5
  42. package/dist/ui/Progress/Progress.d.ts +27 -27
  43. package/dist/ui/Progress/progress.recipe.d.ts +3 -3
  44. package/dist/ui/SegmentGroup/SegmentGroup.d.ts +18 -18
  45. package/dist/ui/SegmentGroup/segmentGroup.recipe.d.ts +3 -3
  46. package/dist/ui/Select/Select.d.ts +45 -45
  47. package/dist/ui/Select/select.recipe.d.ts +3 -3
  48. package/dist/ui/Table/Table.d.ts +21 -21
  49. package/dist/ui/Table/table.anatomy.d.ts +1 -1
  50. package/dist/ui/Table/table.recipe.d.ts +3 -3
  51. package/package.json +1 -1
  52. package/dist/components/Banner/Banner.client.d.ts +0 -12
  53. package/dist/components/Banner/Banner.client.js +0 -49
  54. package/dist/components/SignIn/utils.d.ts +0 -8
  55. package/dist/components/SignIn/utils.js +0 -26
  56. package/dist/constants/Branches.d.ts +0 -2
  57. package/dist/constants/Branches.js +0 -42
  58. package/dist/third-parties/FacebookPixel/FacebookPixel.d.ts +0 -4
  59. package/dist/third-parties/FacebookPixel/FacebookPixel.js +0 -4
  60. package/dist/third-parties/FacebookPixel/api.d.ts +0 -0
  61. package/dist/third-parties/FacebookPixel/api.js +0 -1
  62. package/dist/third-parties/FacebookPixel/index.d.ts +0 -1
  63. package/dist/third-parties/FacebookPixel/index.js +0 -1
  64. package/dist/third-parties/GoogleRecaptcha/GoogleRecaptcha.d.ts +0 -4
  65. package/dist/third-parties/GoogleRecaptcha/GoogleRecaptcha.js +0 -4
  66. package/dist/third-parties/GoogleRecaptcha/api.d.ts +0 -0
  67. package/dist/third-parties/GoogleRecaptcha/api.js +0 -1
  68. package/dist/third-parties/GoogleRecaptcha/index.d.ts +0 -1
  69. package/dist/third-parties/GoogleRecaptcha/index.js +0 -1
  70. package/dist/third-parties/index.d.ts +0 -2
  71. package/dist/third-parties/index.js +0 -2
@@ -48,5 +48,7 @@ export interface AccountProps {
48
48
  accountSettingsEnabled?: boolean;
49
49
  /** @default true */
50
50
  notificationsEnabled?: boolean;
51
+ /** @default true */
52
+ shouldShowAccountStatus?: boolean;
51
53
  }
52
54
  export declare function Account(props: AccountProps): import("react/jsx-runtime").JSX.Element;
@@ -45,6 +45,7 @@ const defaultAccountProps = {
45
45
  accountSettingsUrl: '/account',
46
46
  accountSettingsEnabled: true,
47
47
  notificationsEnabled: true,
48
+ shouldShowAccountStatus: true,
48
49
  };
49
50
  const recipe = accountRecipe();
50
51
  export function Account(props) {
@@ -80,6 +81,7 @@ export function Account(props) {
80
81
  }
81
82
  function Profile() {
82
83
  const accountQuery = useAccountQuery();
84
+ const accountProps = useAccountPropsContext();
83
85
  const account = accountQuery.data;
84
86
  const getVerificationColorScheme = (status) => {
85
87
  switch (status) {
@@ -91,7 +93,7 @@ function Profile() {
91
93
  return 'danger';
92
94
  }
93
95
  };
94
- return (_jsxs("div", { className: "flex shrink-0 items-center gap-lg", children: [_jsx(Image, { src: avatarPlaceholder, alt: "", width: 48, height: 48, className: "size-12" }), _jsxs("div", { className: "grow", children: [_jsx("p", { className: "font-semibold text-text-secondary-700 leading-tight", children: account?.name }), _jsxs("div", { className: "flex", children: [_jsxs("p", { className: "grow items-center text-text-tertiary-600 leading-tight", children: ["ID: ", account?.id] }), _jsxs(Badge.Root, { colorScheme: getVerificationColorScheme(account?.verificationStatus), className: "self-start", children: [_jsx(Badge.Indicator, {}), _jsx(Badge.Label, { children: capitalize(account?.verificationStatus || '') })] })] })] })] }));
96
+ return (_jsxs("div", { className: "flex shrink-0 items-center gap-lg", children: [_jsx(Image, { src: avatarPlaceholder, alt: "", width: 48, height: 48, className: "size-12" }), _jsxs("div", { className: "grow", children: [_jsx("p", { className: "font-semibold text-text-secondary-700 leading-tight", children: account?.name }), _jsxs("div", { className: "flex", children: [_jsxs("p", { className: "grow items-center text-text-tertiary-600 leading-tight", children: ["ID: ", account?.id] }), accountProps.shouldShowAccountStatus && (_jsxs(Badge.Root, { colorScheme: getVerificationColorScheme(account?.verificationStatus), className: "self-start", children: [_jsx(Badge.Indicator, {}), _jsx(Badge.Label, { children: capitalize(account?.verificationStatus || '') })] }))] })] })] }));
95
97
  }
96
98
  function Wallet({ classNames }) {
97
99
  const localeInfo = useLocaleInfo();
@@ -0,0 +1,7 @@
1
+ import { type UseDisclosureReturn } from '../../client/hooks/useDisclosure';
2
+ interface GoogleDisconnectProps {
3
+ onConfirmAction?: (ctx: UseDisclosureReturn) => React.ReactNode;
4
+ children?: (ctx: UseDisclosureReturn) => React.ReactNode;
5
+ }
6
+ export declare function GoogleDisconnect(props: GoogleDisconnectProps): import("react/jsx-runtime").JSX.Element;
7
+ export {};
@@ -0,0 +1,11 @@
1
+ 'use client';
2
+ import { jsx as _jsx, jsxs as _jsxs, Fragment as _Fragment } from "react/jsx-runtime";
3
+ import { useDisclosure, } from '../../client/hooks/useDisclosure.js';
4
+ import { LinkBrokenIcon } from '../../icons/LinkBrokenIcon.js';
5
+ import { XIcon } from '../../icons/XIcon.js';
6
+ import { Dialog } from '../../ui/Dialog/index.js';
7
+ import { Portal } from '../../ui/Portal/index.js';
8
+ export function GoogleDisconnect(props) {
9
+ const disclosure = useDisclosure();
10
+ return (_jsxs(_Fragment, { children: [props.children?.(disclosure), _jsx(Dialog.Root, { lazyMount: true, unmountOnExit: true, open: disclosure.open, onOpenChange: (details) => disclosure.setOpen(details.open), closeOnEscape: false, closeOnInteractOutside: false, children: _jsxs(Portal, { children: [_jsx(Dialog.Backdrop, { className: "!z-[calc(var(--z-dialog)+1)]" }), _jsx(Dialog.Positioner, { className: "!z-[calc(var(--z-dialog)+2)] flex items-center justify-center", children: _jsxs(Dialog.Content, { className: "mx-auto min-h-auto max-w-[25rem] overflow-y-auto rounded-xl p-6", children: [_jsx(Dialog.CloseTrigger, { children: _jsx(XIcon, {}) }), _jsxs("div", { className: "flex flex-col ", children: [_jsx("div", { className: "mx-auto flex size-12 items-center justify-center rounded-full bg-bg-brand-secondary text-text-brand", children: _jsx(LinkBrokenIcon, {}) }), _jsx("h2", { className: "mb-1 text-center font-semibold text-lg xl:mt-xl", children: "Disconnect Google Account" }), _jsx("p", { className: "text-center text-sm text-text-tertiary-600 leading-2xl", children: "Are you sure you want to disconnect your Google account? This may affect your ability to log in or sync data." })] }), _jsx("div", { className: "pt-6", children: props.onConfirmAction?.(disclosure) })] }) })] }) })] }));
11
+ }
@@ -1,30 +1,30 @@
1
1
  'use client';
2
2
  import { addHours } from 'date-fns';
3
3
  import { clamp } from 'lodash-es';
4
+ import { useSearchParams } from 'next/navigation';
4
5
  import { useLocalStorage, useTimeout } from 'usehooks-ts';
5
6
  import { useAccountQuery } from '../../client/hooks/useAccountQuery.js';
6
7
  export function CXDTokenObserver() {
7
- const { data: account } = useAccountQuery();
8
- const accountCxd = {
9
- cxd: account?.cellxpertDetails?.cxd,
10
- };
11
- const [cxd, setCxd, removeCxd] = useLocalStorage('cxd', null);
8
+ const searchParams = useSearchParams();
9
+ const cxdToken = searchParams.get('cxd');
10
+ const accountQuery = useAccountQuery();
11
+ const account = accountQuery.data;
12
+ const [cxd, setCxd, removeCxd] = useLocalStorage('WebPortalCellxpertCxd', null);
12
13
  const now = new Date();
14
+ const shouldTimeoutRun = cxdToken && account;
13
15
  const removeCxdUntilInMs = cxd?.timestamp
14
16
  ? clamp(cxd.timestamp - now.getTime(), 0, Infinity)
15
17
  : 0;
16
18
  useTimeout(() => {
17
- const isSame = cxd?.cxd === accountCxd.cxd;
19
+ const isSame = cxd?.cxd === cxdToken;
18
20
  if (!isSame) {
19
21
  const extendedTimestamp = addHours(new Date(), 6).getTime();
20
22
  setCxd({
21
- cxd: accountCxd.cxd,
23
+ cxd: cxdToken,
22
24
  timestamp: extendedTimestamp,
23
25
  });
24
26
  }
25
- }, account ? 100 : null);
26
- useTimeout(() => {
27
- removeCxd();
28
- }, account ? removeCxdUntilInMs : null);
27
+ }, shouldTimeoutRun ? 100 : null);
28
+ useTimeout(() => removeCxd(), shouldTimeoutRun ? removeCxdUntilInMs : null);
29
29
  return null;
30
30
  }
@@ -1,4 +1,5 @@
1
1
  import { jsx as _jsx, jsxs as _jsxs, Fragment as _Fragment } from "react/jsx-runtime";
2
+ import { useRouter, useSearchParams } from 'next/navigation';
2
3
  import { useCallback, useMemo } from 'react';
3
4
  import { useControllableState } from '../../client/hooks/useControllableState.js';
4
5
  import { useDisclosure } from '../../client/hooks/useDisclosure.js';
@@ -26,17 +27,9 @@ export function MultiWageringQuest() {
26
27
  progressPercentage: 0,
27
28
  };
28
29
  }
29
- const transformedStages = quest.stages.map((stage) => ({
30
- bonusAmount: stage.bonusAmount,
31
- bonusTurnoverRequirementMultiplier: stage.bonusTurnoverRequirementMultiplier,
32
- cleared: stage.cleared,
33
- dateTimeCleared: stage.dateTimeCleared,
34
- targetTurnover: stage.targetTurnover,
35
- }));
36
- const total = quest.stages.length;
37
30
  return {
38
- stages: transformedStages,
39
- totalStage: total,
31
+ stages: quest.stages,
32
+ totalStage: quest.stages.length,
40
33
  currentStage: currentStage === 0 ? 1 : currentStage,
41
34
  progressPercentage: +quest.progressPercentage,
42
35
  };
@@ -45,18 +38,25 @@ export function MultiWageringQuest() {
45
38
  disclosure.setOpen(true);
46
39
  }, [disclosure]);
47
40
  const localeInfo = useLocaleInfo();
48
- return (_jsxs(_Fragment, { children: [_jsxs("div", { className: "flex h-full w-full flex-col space-y-6 rounded-2xl border border-border-primary bg-bg-tertiary px-4 pt-5 pb-6", children: [_jsxs("div", { className: "flex flex-col space-y-2", children: [_jsxs("div", { className: "flex max-h-7.5 items-center justify-between", children: [_jsx(RemainingTime, { endOfDay: true }), quest.status === 'COMPLETED' && (_jsx(Badge.Root, { colorScheme: "success", size: "lg", round: false, children: _jsxs(Badge.Label, { children: ["Final Bonus:", ' ', formatNumber(quest.bonus, {
49
- currency: localeInfo.currency.code,
50
- })] }) }))] }), _jsx("p", { className: "font-semibold text-xl", children: quest?.name || 'Journey Quest' }), _jsx("div", { className: "text-sm", dangerouslySetInnerHTML: {
41
+ const params = useSearchParams();
42
+ const questId = params.get('id');
43
+ const isOpen = useMemo(() => {
44
+ return questId === quest.id;
45
+ }, [questId, quest.id]);
46
+ const router = useRouter();
47
+ return (_jsxs(_Fragment, { children: [_jsxs("div", { className: "flex h-full w-full flex-col space-y-6 rounded-2xl border border-border-primary bg-bg-tertiary px-4 pt-5 pb-6", children: [_jsxs("div", { className: "flex flex-col space-y-2", children: [_jsx("div", { className: "flex max-h-7.5 items-center justify-between", children: _jsx(RemainingTime, { endOfDay: true }) }), _jsx("p", { className: "font-semibold text-xl", children: quest?.name || 'Multi Stage Wagering Quest' }), _jsx("div", { className: "text-[#CECFD2] text-sm", dangerouslySetInnerHTML: {
51
48
  __html: quest?.description ||
52
49
  'Ready for a challenge? Complete them all and get amazing rewards!',
53
- } }), _jsxs("div", { className: "flex items-center justify-between pt-5", children: [_jsxs("p", { className: "text-sm", children: ["Progress: ", quest.progressPercentage, "%"] }), _jsxs("p", { className: "text-sm", children: [quest.turnover, _jsxs("span", { className: "text-[#667085]", children: ["/", quest.targetTurnover, " PHP"] })] })] }), _jsx(Progress.Root, { max: 100, className: "h-2 rounded-full bg-bg-primary", value: progressPercentage, children: _jsx(Progress.Track, { children: _jsx(Progress.Range, { className: "bg-utility-brand-600" }) }) }), _jsxs("div", { className: "flex items-center justify-between", children: [_jsxs("p", { className: "text-sm text-text-quarterary-brand", children: ["Stage ", currentStage, " of ", totalStage] }), _jsx(Badge.Root, { size: "lg", colorScheme: "brand", round: false, children: _jsxs(Badge.Label, { className: "flex items-center justify-center text-xs", children: [_jsx("p", { className: "flex h-[10px] items-center justify-center", children: "+" }), ' ', formatNumber(quest.stages?.reduce((curr, prev) => {
50
+ } }), _jsxs("div", { className: "flex items-center justify-between pt-5", children: [_jsxs("p", { className: "text-[#F5F5F6] text-sm", children: ["Progress: ", quest.progressPercentage, "%"] }), _jsxs("p", { className: "text-[#F5F5F6] text-sm", children: [quest.turnover, _jsxs("span", { className: "text-[#94969C]", children: ["/", quest.targetTurnover, " PHP"] })] })] }), _jsx(Progress.Root, { max: 100, className: "h-2 rounded-full bg-bg-primary", value: progressPercentage, children: _jsx(Progress.Track, { children: _jsx(Progress.Range, { className: "bg-utility-brand-600" }) }) }), _jsxs("div", { className: "flex items-center justify-between", children: [_jsxs("p", { className: "text-[#F5F5F6] text-sm", children: ["Stage ", currentStage, " of ", totalStage] }), _jsx(Badge.Root, { size: "lg", className: "border border-border-badge bg-bg-badge", round: false, children: _jsxs(Badge.Label, { className: "!text-text-badge flex items-center justify-center text-xs", children: [_jsx("p", { className: "flex h-[10px] items-center justify-center", children: "+" }), ' ', formatNumber(quest.stages?.reduce((curr, prev) => {
54
51
  return curr + Number(prev.bonusAmount || 0);
55
52
  }, 0), {
56
53
  currency: localeInfo.currency.code,
57
54
  maxDecimalPlaces: 0,
58
55
  minDecimalPlaces: 0,
59
- }), ' ', "Bonus"] }) })] })] }), _jsx("div", { className: "flex h-full items-end", children: _jsx(Button, { size: "sm", onClick: handleViewDetails, "aria-label": "View Details", disabled: false, className: "disabled:bg-bg-primary disabled:text-text-disabled", children: "View Details" }) })] }), _jsx(Stages, { open: disclosure.open, onOpenChange: disclosure.setOpen, quest: quest, stages: stages })] }));
56
+ }), ' ', "Bonus"] }) })] })] }), _jsx("div", { className: "flex h-full items-end", children: _jsx(Button, { size: "sm", onClick: handleViewDetails, "aria-label": "View Details", disabled: false, className: "disabled:bg-bg-primary disabled:text-text-disabled", children: "View Details" }) })] }), _jsx(Stages, { open: disclosure.open || isOpen, onOpenChange: (open) => {
57
+ disclosure.setOpen(open);
58
+ router.push('/quests');
59
+ }, quest: quest, stages: stages })] }));
60
60
  }
61
61
  function Stages(props) {
62
62
  const [open, setOpen] = useControllableState({
@@ -82,7 +82,7 @@ function Stages(props) {
82
82
  }
83
83
  function QuestWageringStageUnlocked({ bonus, stage, data, isCompleted = false, }) {
84
84
  const localeInfo = useLocaleInfo();
85
- return (_jsxs("div", { className: "mb-4 flex flex-col justify-between rounded-xl bg-bg-secondary p-3", children: [_jsxs("div", { className: "flex items-center justify-between", children: [_jsxs("p", { className: "font-medium", children: ["Stage ", stage + 1] }), _jsx(Badge.Root, { colorScheme: isCompleted ? 'success' : 'blue', size: "md", round: true, children: _jsx(Badge.Label, { children: data.cleared ? 'Completed' : 'Ongoing' }) })] }), _jsxs("div", { className: "mt-2.5 flex items-center justify-between", children: [_jsxs("p", { children: ["Progress ", data.cleared ? 100 : 0, "%"] }), _jsx("div", { className: "rounded-[6px] border border-border-secondary bg-bg-secondary-alt px-1.5 py-0.5", children: _jsxs("p", { className: "font-medium text-xs leading-tight", children: ["+", formatNumber(bonus, {
85
+ return (_jsxs("div", { className: "mb-4 flex flex-col justify-between rounded-xl bg-bg-secondary p-3", children: [_jsxs("div", { className: "flex items-center justify-between", children: [_jsxs("p", { className: "font-medium", children: ["Stage ", stage + 1] }), _jsx(Badge.Root, { colorScheme: isCompleted ? 'success' : 'blue', size: "md", round: true, children: _jsx(Badge.Label, { children: data.cleared ? 'Completed' : 'Ongoing' }) })] }), _jsxs("div", { className: "mt-2.5 flex items-center justify-between", children: [_jsxs("p", { children: ["Progress ", data.cleared ? 100 : 0, "%"] }), _jsx(Badge.Root, { size: "md", className: "border border-border-badge bg-bg-badge", round: false, children: _jsxs(Badge.Label, { className: "!text-text-badge", children: ["+", formatNumber(bonus, {
86
86
  currency: localeInfo.currency.code,
87
87
  }), ' ', "Bonus"] }) })] }), _jsx(Progress.Root, { max: 100, className: "mt-2 h-2 rounded-full bg-bg-primary", value: data.cleared ? 100 : 0, children: _jsx(Progress.Track, { children: _jsx(Progress.Range, { className: "bg-utility-brand-600" }) }) })] }));
88
88
  }
@@ -1,6 +1,7 @@
1
1
  'use client';
2
2
  import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
3
3
  import { isString } from 'lodash-es';
4
+ import dynamic from 'next/dynamic';
4
5
  import Image from 'next/image';
5
6
  import { useState, } from 'react';
6
7
  import { twMerge } from 'tailwind-merge';
@@ -12,10 +13,12 @@ import closeChest from '../../images/close-chest.png';
12
13
  import { SegmentGroup } from '../../ui/SegmentGroup/index.js';
13
14
  import { DailyCheckInQuest, } from './DailyCheckInQuest.js';
14
15
  import { JourneyQuest } from './JourneyQuest.js';
15
- import { MultiWageringQuest } from './MultiWageringQuest.js';
16
16
  import { OnboardingQuest } from './OnboardingQuest.js';
17
17
  import { QuestContext } from './QuestsContext.js';
18
18
  import { WageringQuest, } from './WageringQuest.js';
19
+ const MultiWageringQuest = dynamic(() => import('./MultiWageringQuest.js').then((mod) => mod.MultiWageringQuest), {
20
+ ssr: false,
21
+ });
19
22
  const QUEST_COMPONENT_MAP = {
20
23
  DAILY_CHECKIN: DailyCheckInQuest,
21
24
  ONBOARDING: OnboardingQuest,
@@ -0,0 +1,2 @@
1
+ import type { ComponentPropsWithRef } from 'react';
2
+ export declare function LinkBrokenIcon(props: ComponentPropsWithRef<'svg'>): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,4 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ export function LinkBrokenIcon(props) {
3
+ return (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", viewBox: "0 0 24 24", fill: "none", ...props, children: _jsx("path", { d: "M8.5 15.5L15.5 8.49998M9 4V2M15 20V22M4 9H2M20 15H22M4.91421 4.91421L3.5 3.5M19.0858 19.0857L20.5 20.4999M12 17.6568L9.87871 19.7781C8.31662 21.3402 5.78396 21.3402 4.22186 19.7781C2.65976 18.216 2.65976 15.6833 4.22186 14.1212L6.34318 11.9999M17.6569 11.9999L19.7782 9.87859C21.3403 8.31649 21.3403 5.78383 19.7782 4.22174C18.2161 2.65964 15.6835 2.65964 14.1214 4.22174L12 6.34306", stroke: "#FEDF89", "stroke-width": "2", "stroke-linecap": "round", "stroke-linejoin": "round" }) }));
4
+ }
@@ -274,10 +274,15 @@
274
274
 
275
275
  --color-border-checkbox-primary: #373a41;
276
276
  --color-bg-progress-bar-primary: var(--color-bg-primary);
277
+
277
278
  --color-bg-lock: #161B26;
278
279
  --color-border-lock: #333741;
279
280
  --color-text-lock: #85888E;
280
281
 
282
+ --color-border-badge: #373A41;
283
+ --color-bg-badge: #13161B;
284
+ --color-text-badge: #CECFD2;
285
+
281
286
 
282
287
  --font-sans: var(--font-sans);
283
288
  --font-mono: var(--font-mono);