@mindly/ui-components 8.5.5 → 8.5.6
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.
- package/dist/cjs/index.js +7 -7
- package/dist/cjs/lib2/features/ViewedClientsListFeature/ViewedClientsListFeature.d.ts +10 -0
- package/dist/cjs/lib2/features/ViewedClientsListFeature/index.d.ts +1 -0
- package/dist/cjs/lib2/features/index.d.ts +1 -0
- package/dist/cjs/lib2/shared/assets/icons/IconBinoculars.d.ts +3 -0
- package/dist/cjs/lib2/shared/assets/icons/IconFilledHeart.d.ts +3 -0
- package/dist/cjs/lib2/shared/assets/icons/IconLoyalty.d.ts +3 -0
- package/dist/cjs/lib2/shared/assets/icons/index.d.ts +3 -0
- package/dist/cjs/lib2/shared/ui/ClientCard/ClientCard.d.ts +15 -0
- package/dist/cjs/lib2/shared/ui/ClientCard/index.d.ts +2 -0
- package/dist/cjs/lib2/shared/ui/ClientCard/types.d.ts +4 -0
- package/dist/cjs/lib2/shared/ui/EmptyClientsList/EmptyClientsList.d.ts +8 -0
- package/dist/cjs/lib2/shared/ui/EmptyClientsList/EmptyClientsList.stories.d.ts +6 -0
- package/dist/cjs/lib2/shared/ui/EmptyClientsList/index.d.ts +1 -0
- package/dist/cjs/lib2/shared/ui/index.d.ts +2 -0
- package/dist/cjs/lib2/widgets/ViewedClientsWidget/ViewedClientListSkeleton.d.ts +2 -0
- package/dist/cjs/lib2/widgets/ViewedClientsWidget/ViewedClientsWidget.d.ts +16 -0
- package/dist/cjs/lib2/widgets/ViewedClientsWidget/ViewedClientsWidget.stories.d.ts +9 -0
- package/dist/cjs/lib2/widgets/ViewedClientsWidget/index.d.ts +1 -0
- package/dist/cjs/lib2/widgets/index.d.ts +1 -0
- package/dist/esm/index.js +7 -7
- package/dist/esm/lib2/features/ViewedClientsListFeature/ViewedClientsListFeature.d.ts +10 -0
- package/dist/esm/lib2/features/ViewedClientsListFeature/index.d.ts +1 -0
- package/dist/esm/lib2/features/index.d.ts +1 -0
- package/dist/esm/lib2/shared/assets/icons/IconBinoculars.d.ts +3 -0
- package/dist/esm/lib2/shared/assets/icons/IconFilledHeart.d.ts +3 -0
- package/dist/esm/lib2/shared/assets/icons/IconLoyalty.d.ts +3 -0
- package/dist/esm/lib2/shared/assets/icons/index.d.ts +3 -0
- package/dist/esm/lib2/shared/ui/ClientCard/ClientCard.d.ts +15 -0
- package/dist/esm/lib2/shared/ui/ClientCard/index.d.ts +2 -0
- package/dist/esm/lib2/shared/ui/ClientCard/types.d.ts +4 -0
- package/dist/esm/lib2/shared/ui/EmptyClientsList/EmptyClientsList.d.ts +8 -0
- package/dist/esm/lib2/shared/ui/EmptyClientsList/EmptyClientsList.stories.d.ts +6 -0
- package/dist/esm/lib2/shared/ui/EmptyClientsList/index.d.ts +1 -0
- package/dist/esm/lib2/shared/ui/index.d.ts +2 -0
- package/dist/esm/lib2/widgets/ViewedClientsWidget/ViewedClientListSkeleton.d.ts +2 -0
- package/dist/esm/lib2/widgets/ViewedClientsWidget/ViewedClientsWidget.d.ts +16 -0
- package/dist/esm/lib2/widgets/ViewedClientsWidget/ViewedClientsWidget.stories.d.ts +9 -0
- package/dist/esm/lib2/widgets/ViewedClientsWidget/index.d.ts +1 -0
- package/dist/esm/lib2/widgets/index.d.ts +1 -0
- package/dist/index.d.ts +52 -2
- package/package.json +1 -1
- package/src/lib2/shared/css/variables.css +12 -10
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { WithTranslation } from 'react-i18next';
|
|
3
|
+
import { type ClientCardProps } from '../../shared/ui';
|
|
4
|
+
type ViewedClientsListProps = {
|
|
5
|
+
clients: Omit<ClientCardProps, 'onClick'>[];
|
|
6
|
+
t: WithTranslation['t'];
|
|
7
|
+
onClickClientCard: (id: string) => void;
|
|
8
|
+
};
|
|
9
|
+
declare const ViewedClientsListFeature: React.FC<ViewedClientsListProps>;
|
|
10
|
+
export default ViewedClientsListFeature;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as ViewedClientsListFeature } from './ViewedClientsListFeature';
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { FC } from 'react';
|
|
2
|
+
import { LastEventType } from './types';
|
|
3
|
+
export interface ClientCardProps {
|
|
4
|
+
id: string;
|
|
5
|
+
firstName: string;
|
|
6
|
+
lastName?: string;
|
|
7
|
+
avatarUrl?: string;
|
|
8
|
+
dateText: string;
|
|
9
|
+
lastSeenAt?: string | null;
|
|
10
|
+
lastEventType: LastEventType;
|
|
11
|
+
onClick?: (id: string) => void;
|
|
12
|
+
className?: string;
|
|
13
|
+
isMasked: boolean;
|
|
14
|
+
}
|
|
15
|
+
export declare const ClientCard: FC<ClientCardProps>;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { WithTranslation } from 'react-i18next';
|
|
3
|
+
export type EmptyClientsListProps = {
|
|
4
|
+
className?: string;
|
|
5
|
+
t?: WithTranslation['t'];
|
|
6
|
+
};
|
|
7
|
+
declare const EmptyClientsList: React.FC<EmptyClientsListProps>;
|
|
8
|
+
export default EmptyClientsList;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import type { Meta, StoryObj } from '@storybook/react';
|
|
2
|
+
import EmptyClientsList from './EmptyClientsList';
|
|
3
|
+
declare const meta: Meta<typeof EmptyClientsList>;
|
|
4
|
+
export default meta;
|
|
5
|
+
type Story = StoryObj<typeof EmptyClientsList>;
|
|
6
|
+
export declare const Default: Story;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as EmptyClientsList } from './EmptyClientsList';
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { FC } from 'react';
|
|
2
|
+
import { RefresherEventDetail, InfiniteScrollCustomEvent } from '@ionic/react';
|
|
3
|
+
import { WithTranslation } from 'react-i18next';
|
|
4
|
+
import { ClientCardProps } from '../../shared/ui';
|
|
5
|
+
type ViewedClientsWidgetProps = {
|
|
6
|
+
clients: Omit<ClientCardProps, 'onClick'>[];
|
|
7
|
+
t: WithTranslation['t'];
|
|
8
|
+
onClickClientCard: (id: string) => void;
|
|
9
|
+
onIonRefresh?: (e: CustomEvent<RefresherEventDetail>) => void;
|
|
10
|
+
loadMore?: (e: InfiniteScrollCustomEvent) => void;
|
|
11
|
+
isMountLoading?: boolean;
|
|
12
|
+
isRefreshingDisabled?: boolean;
|
|
13
|
+
isInfiniteScrollDisabled?: boolean;
|
|
14
|
+
};
|
|
15
|
+
declare const ViewedClientsWidget: FC<ViewedClientsWidgetProps>;
|
|
16
|
+
export default ViewedClientsWidget;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import type { Meta, StoryObj } from '@storybook/react';
|
|
2
|
+
import ViewedClientsWidget from './ViewedClientsWidget';
|
|
3
|
+
declare const meta: Meta<typeof ViewedClientsWidget>;
|
|
4
|
+
export default meta;
|
|
5
|
+
type Story = StoryObj<typeof ViewedClientsWidget>;
|
|
6
|
+
export declare const Default: Story;
|
|
7
|
+
export declare const Empty: Story;
|
|
8
|
+
export declare const LoadingList: Story;
|
|
9
|
+
export declare const RefreshStateList: Story;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as ViewedClientsWidget } from './ViewedClientsWidget';
|
package/dist/index.d.ts
CHANGED
|
@@ -8,7 +8,7 @@ import { SwiperRef, SwiperProps } from 'swiper/react';
|
|
|
8
8
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
9
9
|
import { RatingComponentProps } from 'react-rating';
|
|
10
10
|
import * as _ionic_react from '@ionic/react';
|
|
11
|
-
import { ScrollDetail, ScrollBaseDetail, RefresherEventDetail } from '@ionic/react';
|
|
11
|
+
import { ScrollDetail, ScrollBaseDetail, RefresherEventDetail, InfiniteScrollCustomEvent } from '@ionic/react';
|
|
12
12
|
import { IonContentCustomEvent, IonSearchbarCustomEvent as IonSearchbarCustomEvent$1 } from '@ionic/core/dist/types/components';
|
|
13
13
|
import { Node, ListState, ItemProps as ItemProps$1, SelectionBehavior, SelectionMode as SelectionMode$1, Selection } from 'react-stately';
|
|
14
14
|
export { Selection } from 'react-stately';
|
|
@@ -1986,6 +1986,31 @@ type SliderProps = {
|
|
|
1986
1986
|
|
|
1987
1987
|
declare const Slider: ({ children, ...props }: SliderProps) => react_jsx_runtime.JSX.Element;
|
|
1988
1988
|
|
|
1989
|
+
type EmptyClientsListProps = {
|
|
1990
|
+
className?: string;
|
|
1991
|
+
t?: WithTranslation['t'];
|
|
1992
|
+
};
|
|
1993
|
+
declare const EmptyClientsList: React__default.FC<EmptyClientsListProps>;
|
|
1994
|
+
|
|
1995
|
+
declare enum LastEventType {
|
|
1996
|
+
VIEW = "VIEW",
|
|
1997
|
+
LIKE = "LIKE"
|
|
1998
|
+
}
|
|
1999
|
+
|
|
2000
|
+
interface ClientCardProps {
|
|
2001
|
+
id: string;
|
|
2002
|
+
firstName: string;
|
|
2003
|
+
lastName?: string;
|
|
2004
|
+
avatarUrl?: string;
|
|
2005
|
+
dateText: string;
|
|
2006
|
+
lastSeenAt?: string | null;
|
|
2007
|
+
lastEventType: LastEventType;
|
|
2008
|
+
onClick?: (id: string) => void;
|
|
2009
|
+
className?: string;
|
|
2010
|
+
isMasked: boolean;
|
|
2011
|
+
}
|
|
2012
|
+
declare const ClientCard: FC<ClientCardProps>;
|
|
2013
|
+
|
|
1989
2014
|
type SpecialistProfileViewCounterProps = {
|
|
1990
2015
|
countText: string;
|
|
1991
2016
|
className?: string;
|
|
@@ -2664,6 +2689,12 @@ interface IconProps extends React$1.SVGAttributes<SVGElement> {
|
|
|
2664
2689
|
}
|
|
2665
2690
|
declare function IconBusiness({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
2666
2691
|
|
|
2692
|
+
declare const IconFilledHeart: React$1.FC<IconProps$I>;
|
|
2693
|
+
|
|
2694
|
+
declare const IconBinoculars: React$1.FC<IconProps$I>;
|
|
2695
|
+
|
|
2696
|
+
declare const IconLoyalty: FC<IconProps$I>;
|
|
2697
|
+
|
|
2667
2698
|
declare const formatByDigits: (value: number) => string;
|
|
2668
2699
|
declare const roundToPrecision: (value: number, decimals?: number) => number;
|
|
2669
2700
|
declare const getDateLocale: (locale: SupportedLocales) => Locale;
|
|
@@ -3892,6 +3923,13 @@ type ReservedSessionManageModalFeatureProps = {
|
|
|
3892
3923
|
} & ModalSheetProps;
|
|
3893
3924
|
declare const ReservedSessionManageModalFeature: FC<ReservedSessionManageModalFeatureProps>;
|
|
3894
3925
|
|
|
3926
|
+
type ViewedClientsListProps = {
|
|
3927
|
+
clients: Omit<ClientCardProps, 'onClick'>[];
|
|
3928
|
+
t: WithTranslation['t'];
|
|
3929
|
+
onClickClientCard: (id: string) => void;
|
|
3930
|
+
};
|
|
3931
|
+
declare const ViewedClientsListFeature: React__default.FC<ViewedClientsListProps>;
|
|
3932
|
+
|
|
3895
3933
|
type SupportedCountryLocale = string;
|
|
3896
3934
|
type Tabs = {
|
|
3897
3935
|
behavior: 'tax-country' | 'profile-lang';
|
|
@@ -4371,6 +4409,18 @@ declare const _default$q: React__default.NamedExoticComponent<SpecialistCardWith
|
|
|
4371
4409
|
|
|
4372
4410
|
declare const SpecialistCardSkeleton: React__default.FC;
|
|
4373
4411
|
|
|
4412
|
+
type ViewedClientsWidgetProps = {
|
|
4413
|
+
clients: Omit<ClientCardProps, 'onClick'>[];
|
|
4414
|
+
t: WithTranslation['t'];
|
|
4415
|
+
onClickClientCard: (id: string) => void;
|
|
4416
|
+
onIonRefresh?: (e: CustomEvent<RefresherEventDetail>) => void;
|
|
4417
|
+
loadMore?: (e: InfiniteScrollCustomEvent) => void;
|
|
4418
|
+
isMountLoading?: boolean;
|
|
4419
|
+
isRefreshingDisabled?: boolean;
|
|
4420
|
+
isInfiniteScrollDisabled?: boolean;
|
|
4421
|
+
};
|
|
4422
|
+
declare const ViewedClientsWidget: FC<ViewedClientsWidgetProps>;
|
|
4423
|
+
|
|
4374
4424
|
type UserInfo = {
|
|
4375
4425
|
name: string;
|
|
4376
4426
|
avatar?: string;
|
|
@@ -5076,4 +5126,4 @@ type RowSelectProps = {
|
|
|
5076
5126
|
|
|
5077
5127
|
declare const RowSelect: FC<RowSelectProps>;
|
|
5078
5128
|
|
|
5079
|
-
export { AcceptAgreementFeature, Action, AdvisorAssistFeature, _default$1g as AlertCard, AllowFilterValueType, AppFooter, _default$1f as AppFooter_v2, AppHeader, AppHeaderPage as AppHeaderPageFeature, AppHeader_v2, AppNotSupportedFeature, AppViewType, AuthContext, AuthProvider, AutoComplete, Avatar, AvatarProps$1 as AvatarProps, _default$1e as Avatar_v2, AvatarProps as Avatar_v2Props, BREAKPOINT_ICON_SIZE, _default$1a as Badge, _default$c as BookingScheduleTime, _default$b as BookingSpecialistInfo, BreakPointPositionProps, BreakPointPositionResult, Button, Button_v2, CAN_MANAGE_SESSION_TIME_HOURS, COUNTRIES_MAPPER, CSSVarStyles, Calendar, _default$Q as CalendarPickerFeature, CancelSession, CardModal, ChangeLanguageModal, ChartAreaFeature, ChartLines as ChartLinesFeature, CheckBoxItem, CheckBoxListFeature, CheckBoxSectionListFeature, _default$6 as CheckboxList, CheckboxListCategory, CheckboxListItem, CheckboxTypes, ChevronHeader, CircleRatingComponentProps, CircleRatingContent, CircleRatingContext, CircleRatingContextData, CircleRatingContextProps, CircleRatingDataProps, CircleRatingDataResult, CircleRatingLegendProps, CircleRatingProvider, CircleRatingRange, CircleRatingSize, ClientCanAction, ClientCanParams, ClientSpecialistContractStatusEnum, CollapsableText, ConditionRulesType, ConfirmWithCommentFeature, ConfirmWithCommentFeatureRef, Consultation, _default$o as ConsultationCard, ConsultationCardProps, ConsultationCardType, _default$l as ConsultationModal, _default$U as ConsultationPricingFeature, ConsultationQueueTypeEnum, _default$j as ConsultationSpecialistCard, ConsultationsListSkeleton, Container, Container_v2, ContentRendererProps, ContractDataFeature, ContractStatusEnum, ContentTree as ContractTreeFeature, CountdownTimerFeature, Counter, CounterProps, CountryOfOriginModal, CoupleTherapySheetModalFeature, CoupleTherapySheetModalFeatureProps, CurrencyLocaleMapper, CurrencySignByLocale, CustomButton, _default$7 as CustomCheckbox, CustomRadioButton, _default$8 as CustomSelect, _default$9 as CustomTextarea, DatePicker, _default$h as DaySlider, Divider, DividerProps, DropdownFeature, DrumListPicker, DynamicCommissionValue, _default$d as EducationCard, EmptyChatModalFeature, _default$m as EmptyConsultations, EmptyList, EmptySpecialistListFeature, ErrorCardFeature, _default$Y as ExploreCard, ExploreCardData, ExploreCardProps, ExploreCardSwiperFeature, ExploreCardSwiperFeatureProps, FilterFeatureProps, FilterItem, FilterItemBoolean, FilterItemChips, FilterItemRange, FilterItemSelect, FilterOption, FilterOptionValue, FilterValue, FiltersWidget, FiltersWidgetProps, FirstChatMessageModalFeature, _default$3 as Flag, FlagTypes, _default$1c as Flag_v2, FrequentlyAskedQuestions, GoogleCalendarModalFeature, HeaderWithRedirect, ISpecialistReview, IconAccountBalance, IconAddCalendar, IconAddModerator, IconAdvisorAssistance, IconAlignHorizontalTextCenter, IconAlignHorizontalTextLeft, IconAlignHorizontalTextRight, IconAmEx, IconAppStoreRating, IconApple, IconApplePay, IconArrowDown, IconArrowLeft, IconArrowRange, IconArrowRight, IconArrowTopRight, IconArrowUp, IconAttachMoney, IconBeachAccess, IconBlock, IconBookmark, IconBookmarkOutlined, IconBusiness, _default$16 as IconButton, IconCalendar, IconCalendarFilled, IconCalendarMonth, IconCalendarNew, IconCalendarWithDot, IconCancel, IconCancelBold, IconCancelRounded, IconCapFilled, IconChart, IconChat, IconChat3d, IconChat3dSmaller, IconChatFilled, IconChatOutline, IconCheck, IconCheckCircle, IconCheckSmall, IconCheckboxChecked, IconCheckboxCheckedBold, IconCheckboxThinUnchecked, IconCheckboxUnchecked, IconClient, IconClientFilled, IconClose, IconCompare, IconContract, IconCopy, IconCouple, IconCreditCard, IconCreditScore, IconDelete, IconDivercity, IconDivider, IconDocument, IconDot, IconDoubleArrow, IconEcgHeart, IconEdit, IconEditCalendar, IconEmptyList, IconEvening, IconEventBusy, IconExperience, IconEye, IconEyeOff, IconFilters, IconGallery, IconGift, IconGiftNew, IconGlobe, IconGoogle, IconGoogleCalendar, IconGooglePay, IconHeart, IconHome, IconIdCard, IconInfo, IconInvisible, IconInvoice, IconKeyboard, IconLanguage, IconLeaderboard, IconLeftArrow, IconLetter, IconLink, IconLock, IconLogout, IconMaestro, IconManageAccounts, IconMastercard, IconMatching, IconMindly, IconMindlyColored, IconMindlyMini, IconMinus, IconMooving, IconMoreVertical, IconMorning, IconMute, IconNotificationMuted, IconPaid, IconPaper, IconPaperPencil, IconPause, IconPaywall, IconPersonAlert, IconPhotoCamera, IconPlay, IconPlus, IconPoweredByStripe, IconProfile, IconProfileChecked, IconProfileCircle, IconProfileSetting, IconProfileUnderReview, IconPromocode, IconProps$I as IconProps, IconQueryStats, IconQuestion, IconRadioButtonChecked, IconRadioPartial, IconReceipt, IconReceiptLong, IconRecurring, IconRenew, IconReschedule, IconResume, IconReviewSessionSubscription, IconReviewSessionTrial, IconSchedule, IconSchema, IconSearch, IconSecure, IconSend, IconSettings, IconShare, IconSort, IconSparklingStars, IconSpecialistsEnded, IconSpinner, IconStar, IconStarFilled, IconStudyHat, IconStylus, IconSuccess, IconSun, IconSwitch, IconText, IconTime, IconTimeAdd, IconUnmute, IconUser, IconUserNotFound, IconVerifiedUser, IconVisa, IconVisible, IconVoiceMode, IconWarning, ImageInput, ImageWithFallback, Input, InputSearch, _default$12 as Item, _default$19 as ItemCard, LabelArrowRedirect, _default$1k as LetterAvatar, _default$4 as LineFileInput, ListBox, ListBoxItem, ListBoxItemProps, ListBoxProps, ListBoxSelectionType, ListItemType, _default$$ as ListItemWithColumns, _default$13 as ListItems, ListOption, ListOptionsProps, ListSelect, ListSelectProps, ListSimple, _default$14 as Loading, LocaleCurrencyMapper, MIN_COMMENT_LENGTH, MapStatusContractToUIStatus, _default$J as MarkdownContainerFeature, _default$10 as MatchProgress, _default$1j as MediaPlayer, MenuFeature, MindlyReview, MindlyReviewFeature, ModalSheet, NEAR_SESSION_TIME_SECONDS, NewSpecialist, NoInternetConnection, NotSupportModal, ONBOARDING_THEME_DEFAULT_COLORS, OnBoardingAreasOfWorkSelectScreenType, OnBoardingBaseScreenType, OnBoardingChartScreenPreviewFeature, OnBoardingChartScreenType, OnBoardingCompareScreenPreviewFeature, OnBoardingCompareScreenType, _default$B as OnBoardingConfirmScreenPreviewFeature, OnBoardingConfirmScreenType, _default$C as OnBoardingEmailScreenPreviewFeature, OnBoardingEmailScreenType, OnBoardingFlowType, OnBoardingGoalSelectScreenType, _default$A as OnBoardingGoalSelectionScreenPreviewFeature, OnBoardingGraphScreenPreviewFeature, OnBoardingGraphScreenType, _default$H as OnBoardingInfoScreenPreviewFeature, OnBoardingInfoScreenType, OnBoardingLoaderScreenPreviewFeature, OnBoardingLoaderScreenType, OnBoardingMultiSelectScreenType, _default$G as OnBoardingMultiSelectionScreenPreviewFeature, OnBoardingPaywallScreenPreviewFeature, OnBoardingPaywallScreenType, _default$E as OnBoardingProgressFeature, OnBoardingProgressSettingsScreenType, _default$D as OnBoardingReviewsScreenPreviewFeature, OnBoardingReviewsScreenType, OnBoardingScreenAlertType, OnBoardingScreenButtonType, OnBoardingScreenDescriptionType, OnBoardingScreenEmailType, OnBoardingScreenErrorsType, OnBoardingScreenOptionType, OnBoardingScreenOptionWithScaleType, OnBoardingScreenOptions, OnBoardingScreenPasswordType, OnBoardingScreenPrivacyType, OnBoardingScreenProgressType, OnBoardingScreenSkipButtonType, OnBoardingScreenStyleOptions, OnBoardingScreenSubgoalButtonType, OnBoardingScreenTranslationsType, OnBoardingScreensType, OnBoardingSingleImageSelectScreenType, OnBoardingSingleRoundImageSelectScreenType, OnBoardingSingleScaleSelectScreenType, OnBoardingSingleSelectScreenType, _default$F as OnBoardingSingleSelectionScreenPreviewFeature, OnBoardingSpecializationSelectScreenType, _default$I as OnBoardingStartScreenPreviewFeature, OnBoardingStartScreenType, OnBoardingThemeV2Type, OnboardingProgressTemplate, OnboardingVariant, OutdatedPersonalDataFeature, PasswordInput, PaymentBadgeType, _default$P as PaymentCalendarFeature, PaymentCalendarFeatureProps, _default$R as PaymentSessionsList, PayoutCurrencySignByLocale, PayoutShortCurrencySignByLocale, _default$1b as Picture, PoweredByStripeFeature, _default$2 as ProfileInformation, _default$f as ProfileView, _default$5 as ProgressBar, ProgressBarDashed, _default$15 as ProgressBar_v2, _default$X as ProgressCard, ProgressCardProps, ProgressRangeProps, _default$Z as PromptCard, PromptCardData, PromptCardProps, _default$x as PromptCardsFeature, PromptCardsFeatureProps, PushNotificationsIsDisabledBanner, PushNotificationsModal, Range, _default$17 as Rating, RatingCircleVariant, RatingCircleWrapper, _default$i as ReSchedule, ReScheduleSuccess, RecurringSchedule, RecurringSession, RecurringSessionPreviewFeature, Refresher, ReservedSessionManageModalFeature, ResponseFileType, ReviewCard, _default$O as ReviewCardFeature, ReviewListFeature, ReviewStatistics, ReviewSubscriptionSessionFeature, ReviewSubscriptionSessionFeatureProps, ReviewSwiperSection, ReviewTrialSessionFeature, ReviewTrialSessionFeatureProps, ReviewsCardFeatureSkeleton, ReviewsSummary, RoundButton, RowItemType, RowSelect, RowSelectProps, Rule, SESSION_DURATION, SIZES, SOON_SESSION_TIME_SECONDS, Schedule, ScheduleDate, ScheduleSlot, _default$M as ScreenDrumPickerFormFeature, ScreenInput, _default$N as ScreenInputFormFeature, ScreenInputUpdateFeature, SectionHeading, Segment, SegmentColor, SegmentType, SelectItemType, _default$K as SelectWithSearchFormFeature, _default$y as SelectionListFeature, Session, SessionDetailWidget, SessionDetailWidgetSkeleton, SessionManageModalFeature, SessionManageTypeEnum, SessionPaymentsWidget, SessionPreviewFeature, SessionQueue, SessionReview$1 as SessionReview, SessionTime, SessionTypeEnum, SessionManageModalFeature$1 as SessionTypeSelectorModalFeature, SessionVariant, SessionsWidget as SessionsListWidget, SessionsWidgetProps, Sex, ShareModalFeature, ShortCurrencySignByLocale, ShortTranscriptionCurrencySignByLocale, _default$_ as ShowMore, _default$n as SignUpSessionButton, _default$k as SignUpSessionModal, SimpleTabs, SimpleTabsProps, SizeValues, Skeleton, _default$1d as Skeleton_v2, Slider, _default$W as SlotsGrid, _default$V as SlotsGridItem, SolidInput, Sort, SortDirection, SortKey, SortValue, Specialist, _default$e as SpecialistAbout, SpecialistAreaList as SpecialistAreaListFeature, SpecialistCard, SpecialistCardListWidget, _default$w as SpecialistCardWidget, SpecialistCardSkeleton as SpecialistCardWithScheduleSkeleton, _default$q as SpecialistCardWithScheduleWidget, SpecialistConsultation, SpecialistConsultationPayment, _default$t as SpecialistDetailWidget, SpecialistDetailWidgetSkeleton, SpecialistDetailWithTabsSkeleton, _default$r as SpecialistDetailWithTabsWidget, SpecialistEducation, SpecialistEducationsFeature, SpecialistInfoColumnFeature, SpecialistLangs, _default$1 as SpecialistMatch, SpecialistOrderType, SpecialistPaymentCardProps, _default$T as SpecialistPaymentCommonCardFeature, SpecialistPaymentCommonCardSkeleton, SpecialistPaymentConsultationDetailsType, _default$S as SpecialistPaymentConsultationsFeature, SpecialistPaymentConsultationsProps, SpecialistPaymentCurrencyProps, _default$u as SpecialistPaymentResumeWidget, SpecialistPaymentResumeWidgetType, SpecialistPaymentTabs, _default$v as SpecialistPaymentWidget, SpecialistPaymentWidgetType, SpecialistPreviewFeature, SpecialistPreviewListWidget, _default$s as SpecialistPreviewWidget, SpecialistProfileNotFound, SpecialistProfileViewCounter, SpecialistRescheduleFeature, SpecialistReview$1 as SpecialistReview, SpecialistScheduleFeature, SpecialistScheduleProvider, SpecialistScheduleProviderRef, ScheduleSkeleton as SpecialistScheduleSkeletonFeature, SpecialistShortInfoItemFeature as SpecialistShortInfoItem, _default as SpecialistStatistic, Spinner, Spinner_v2, StarRating, StatisticsScroll, StripeSupportedCurrency, Subscription, SubscriptionStatuses, SuccessModalFeature, SuccessModalFeatureAction, SuccessScreen, SuperSpecialist, SupportedCurrency, SupportedLangs, SupportedLocales, SwitchDeviceCard, TabItem, Tabs$1 as Tabs, TabsFeature, TabsFeatureSkeleton, TabsToolbarFeature, Tag, Tariff, TariffFeature, _default$L as TextAreaFormFeature, _default$a as TextInput, _default$z as TextWithClampFeature, _default$18 as Textarea_v2, ThemeProvider, ThemeProviderProps, Toast, ToastButton, ToastContext, ToastProps, ToastProvider, ToastRegion, Toggle, TooltipComponent, TranslationMock, TranslationType, TreeNode, _default$1h as Typography, TypographyVariantsEnum, UpdateContractWidget, UpdatesCard, UserInfoModal, UserType, VariantType, VerticalCalendar, VerticalCalendarMonthSkeleton, VerticalCalendarSkeleton, _default$11 as Video, _default$p as VideoCallInfo, _default$1i as VideoPlayer, VideoProvider, _default$g as WorkDirections, appThemes, canManageSession, capitalizeFirstLetter, currentUser, decOfNum, formatByDigits, getCountryKeyByName, getDateLocale, getFilterCount, getFiltersQuery, getFiltersValues, getGMTOffset, getMappedFilterValue, getMockSchedule, getMonthNameInGenitive, getProgressForBreakPoint, getRecurringSessionDate, getSessionTimeLabel, getSessionVariant, getSessionsByDay, getSessionsByMonth, getSessionsByYear, getSignAgreementsTabs, getSortFromKey, getSortKey, getStartSessionDate, getStartSessionTimestamp, getVisibleLength, globalAuthState, isClientCan, isCommentValid, isFilterSet, isNewSpecialist, isSpecialistActive, isSpecialistBlocked, isSpecialistPublic, isSuperSpecialist, listReviews, localTimeZone, mergeRefs, mockRecurringSession, mockSession, mockSessions, mockSubscriptionInFuture, mockSubscriptionInNearFuture, mockSubscriptions, mockT, newShade, payoutPriceNormalize, priceNormalize, replaceMarkdownWithReactElements, roundToPrecision, specialist, splitSessions, toast, useAutoFocus, useBreakPointsPosition, useCircleRatingRenderData, useDeepCompareEffect, useDeepUpdateEffect, useDelayMount, useDomRef, useElementWidth, useEvent, useIsKeyBoardShown, useRangeIndex, useRatingCircleBreakPoints, useRatingCircleContentValue, useRatingCircleLegend, useRatingContext, useScrollToElement, useSpecialistScheduleContext, useStopPropagationEvent, useToastContext, useUpdateEffect, useVideoContext, withSpecialistScheduleContext };
|
|
5129
|
+
export { AcceptAgreementFeature, Action, AdvisorAssistFeature, _default$1g as AlertCard, AllowFilterValueType, AppFooter, _default$1f as AppFooter_v2, AppHeader, AppHeaderPage as AppHeaderPageFeature, AppHeader_v2, AppNotSupportedFeature, AppViewType, AuthContext, AuthProvider, AutoComplete, Avatar, AvatarProps$1 as AvatarProps, _default$1e as Avatar_v2, AvatarProps as Avatar_v2Props, BREAKPOINT_ICON_SIZE, _default$1a as Badge, _default$c as BookingScheduleTime, _default$b as BookingSpecialistInfo, BreakPointPositionProps, BreakPointPositionResult, Button, Button_v2, CAN_MANAGE_SESSION_TIME_HOURS, COUNTRIES_MAPPER, CSSVarStyles, Calendar, _default$Q as CalendarPickerFeature, CancelSession, CardModal, ChangeLanguageModal, ChartAreaFeature, ChartLines as ChartLinesFeature, CheckBoxItem, CheckBoxListFeature, CheckBoxSectionListFeature, _default$6 as CheckboxList, CheckboxListCategory, CheckboxListItem, CheckboxTypes, ChevronHeader, CircleRatingComponentProps, CircleRatingContent, CircleRatingContext, CircleRatingContextData, CircleRatingContextProps, CircleRatingDataProps, CircleRatingDataResult, CircleRatingLegendProps, CircleRatingProvider, CircleRatingRange, CircleRatingSize, ClientCanAction, ClientCanParams, ClientCard, ClientCardProps, ClientSpecialistContractStatusEnum, CollapsableText, ConditionRulesType, ConfirmWithCommentFeature, ConfirmWithCommentFeatureRef, Consultation, _default$o as ConsultationCard, ConsultationCardProps, ConsultationCardType, _default$l as ConsultationModal, _default$U as ConsultationPricingFeature, ConsultationQueueTypeEnum, _default$j as ConsultationSpecialistCard, ConsultationsListSkeleton, Container, Container_v2, ContentRendererProps, ContractDataFeature, ContractStatusEnum, ContentTree as ContractTreeFeature, CountdownTimerFeature, Counter, CounterProps, CountryOfOriginModal, CoupleTherapySheetModalFeature, CoupleTherapySheetModalFeatureProps, CurrencyLocaleMapper, CurrencySignByLocale, CustomButton, _default$7 as CustomCheckbox, CustomRadioButton, _default$8 as CustomSelect, _default$9 as CustomTextarea, DatePicker, _default$h as DaySlider, Divider, DividerProps, DropdownFeature, DrumListPicker, DynamicCommissionValue, _default$d as EducationCard, EmptyChatModalFeature, EmptyClientsList, _default$m as EmptyConsultations, EmptyList, EmptySpecialistListFeature, ErrorCardFeature, _default$Y as ExploreCard, ExploreCardData, ExploreCardProps, ExploreCardSwiperFeature, ExploreCardSwiperFeatureProps, FilterFeatureProps, FilterItem, FilterItemBoolean, FilterItemChips, FilterItemRange, FilterItemSelect, FilterOption, FilterOptionValue, FilterValue, FiltersWidget, FiltersWidgetProps, FirstChatMessageModalFeature, _default$3 as Flag, FlagTypes, _default$1c as Flag_v2, FrequentlyAskedQuestions, GoogleCalendarModalFeature, HeaderWithRedirect, ISpecialistReview, IconAccountBalance, IconAddCalendar, IconAddModerator, IconAdvisorAssistance, IconAlignHorizontalTextCenter, IconAlignHorizontalTextLeft, IconAlignHorizontalTextRight, IconAmEx, IconAppStoreRating, IconApple, IconApplePay, IconArrowDown, IconArrowLeft, IconArrowRange, IconArrowRight, IconArrowTopRight, IconArrowUp, IconAttachMoney, IconBeachAccess, IconBinoculars, IconBlock, IconBookmark, IconBookmarkOutlined, IconBusiness, _default$16 as IconButton, IconCalendar, IconCalendarFilled, IconCalendarMonth, IconCalendarNew, IconCalendarWithDot, IconCancel, IconCancelBold, IconCancelRounded, IconCapFilled, IconChart, IconChat, IconChat3d, IconChat3dSmaller, IconChatFilled, IconChatOutline, IconCheck, IconCheckCircle, IconCheckSmall, IconCheckboxChecked, IconCheckboxCheckedBold, IconCheckboxThinUnchecked, IconCheckboxUnchecked, IconClient, IconClientFilled, IconClose, IconCompare, IconContract, IconCopy, IconCouple, IconCreditCard, IconCreditScore, IconDelete, IconDivercity, IconDivider, IconDocument, IconDot, IconDoubleArrow, IconEcgHeart, IconEdit, IconEditCalendar, IconEmptyList, IconEvening, IconEventBusy, IconExperience, IconEye, IconEyeOff, IconFilledHeart, IconFilters, IconGallery, IconGift, IconGiftNew, IconGlobe, IconGoogle, IconGoogleCalendar, IconGooglePay, IconHeart, IconHome, IconIdCard, IconInfo, IconInvisible, IconInvoice, IconKeyboard, IconLanguage, IconLeaderboard, IconLeftArrow, IconLetter, IconLink, IconLock, IconLogout, IconLoyalty, IconMaestro, IconManageAccounts, IconMastercard, IconMatching, IconMindly, IconMindlyColored, IconMindlyMini, IconMinus, IconMooving, IconMoreVertical, IconMorning, IconMute, IconNotificationMuted, IconPaid, IconPaper, IconPaperPencil, IconPause, IconPaywall, IconPersonAlert, IconPhotoCamera, IconPlay, IconPlus, IconPoweredByStripe, IconProfile, IconProfileChecked, IconProfileCircle, IconProfileSetting, IconProfileUnderReview, IconPromocode, IconProps$I as IconProps, IconQueryStats, IconQuestion, IconRadioButtonChecked, IconRadioPartial, IconReceipt, IconReceiptLong, IconRecurring, IconRenew, IconReschedule, IconResume, IconReviewSessionSubscription, IconReviewSessionTrial, IconSchedule, IconSchema, IconSearch, IconSecure, IconSend, IconSettings, IconShare, IconSort, IconSparklingStars, IconSpecialistsEnded, IconSpinner, IconStar, IconStarFilled, IconStudyHat, IconStylus, IconSuccess, IconSun, IconSwitch, IconText, IconTime, IconTimeAdd, IconUnmute, IconUser, IconUserNotFound, IconVerifiedUser, IconVisa, IconVisible, IconVoiceMode, IconWarning, ImageInput, ImageWithFallback, Input, InputSearch, _default$12 as Item, _default$19 as ItemCard, LabelArrowRedirect, _default$1k as LetterAvatar, _default$4 as LineFileInput, ListBox, ListBoxItem, ListBoxItemProps, ListBoxProps, ListBoxSelectionType, ListItemType, _default$$ as ListItemWithColumns, _default$13 as ListItems, ListOption, ListOptionsProps, ListSelect, ListSelectProps, ListSimple, _default$14 as Loading, LocaleCurrencyMapper, MIN_COMMENT_LENGTH, MapStatusContractToUIStatus, _default$J as MarkdownContainerFeature, _default$10 as MatchProgress, _default$1j as MediaPlayer, MenuFeature, MindlyReview, MindlyReviewFeature, ModalSheet, NEAR_SESSION_TIME_SECONDS, NewSpecialist, NoInternetConnection, NotSupportModal, ONBOARDING_THEME_DEFAULT_COLORS, OnBoardingAreasOfWorkSelectScreenType, OnBoardingBaseScreenType, OnBoardingChartScreenPreviewFeature, OnBoardingChartScreenType, OnBoardingCompareScreenPreviewFeature, OnBoardingCompareScreenType, _default$B as OnBoardingConfirmScreenPreviewFeature, OnBoardingConfirmScreenType, _default$C as OnBoardingEmailScreenPreviewFeature, OnBoardingEmailScreenType, OnBoardingFlowType, OnBoardingGoalSelectScreenType, _default$A as OnBoardingGoalSelectionScreenPreviewFeature, OnBoardingGraphScreenPreviewFeature, OnBoardingGraphScreenType, _default$H as OnBoardingInfoScreenPreviewFeature, OnBoardingInfoScreenType, OnBoardingLoaderScreenPreviewFeature, OnBoardingLoaderScreenType, OnBoardingMultiSelectScreenType, _default$G as OnBoardingMultiSelectionScreenPreviewFeature, OnBoardingPaywallScreenPreviewFeature, OnBoardingPaywallScreenType, _default$E as OnBoardingProgressFeature, OnBoardingProgressSettingsScreenType, _default$D as OnBoardingReviewsScreenPreviewFeature, OnBoardingReviewsScreenType, OnBoardingScreenAlertType, OnBoardingScreenButtonType, OnBoardingScreenDescriptionType, OnBoardingScreenEmailType, OnBoardingScreenErrorsType, OnBoardingScreenOptionType, OnBoardingScreenOptionWithScaleType, OnBoardingScreenOptions, OnBoardingScreenPasswordType, OnBoardingScreenPrivacyType, OnBoardingScreenProgressType, OnBoardingScreenSkipButtonType, OnBoardingScreenStyleOptions, OnBoardingScreenSubgoalButtonType, OnBoardingScreenTranslationsType, OnBoardingScreensType, OnBoardingSingleImageSelectScreenType, OnBoardingSingleRoundImageSelectScreenType, OnBoardingSingleScaleSelectScreenType, OnBoardingSingleSelectScreenType, _default$F as OnBoardingSingleSelectionScreenPreviewFeature, OnBoardingSpecializationSelectScreenType, _default$I as OnBoardingStartScreenPreviewFeature, OnBoardingStartScreenType, OnBoardingThemeV2Type, OnboardingProgressTemplate, OnboardingVariant, OutdatedPersonalDataFeature, PasswordInput, PaymentBadgeType, _default$P as PaymentCalendarFeature, PaymentCalendarFeatureProps, _default$R as PaymentSessionsList, PayoutCurrencySignByLocale, PayoutShortCurrencySignByLocale, _default$1b as Picture, PoweredByStripeFeature, _default$2 as ProfileInformation, _default$f as ProfileView, _default$5 as ProgressBar, ProgressBarDashed, _default$15 as ProgressBar_v2, _default$X as ProgressCard, ProgressCardProps, ProgressRangeProps, _default$Z as PromptCard, PromptCardData, PromptCardProps, _default$x as PromptCardsFeature, PromptCardsFeatureProps, PushNotificationsIsDisabledBanner, PushNotificationsModal, Range, _default$17 as Rating, RatingCircleVariant, RatingCircleWrapper, _default$i as ReSchedule, ReScheduleSuccess, RecurringSchedule, RecurringSession, RecurringSessionPreviewFeature, Refresher, ReservedSessionManageModalFeature, ResponseFileType, ReviewCard, _default$O as ReviewCardFeature, ReviewListFeature, ReviewStatistics, ReviewSubscriptionSessionFeature, ReviewSubscriptionSessionFeatureProps, ReviewSwiperSection, ReviewTrialSessionFeature, ReviewTrialSessionFeatureProps, ReviewsCardFeatureSkeleton, ReviewsSummary, RoundButton, RowItemType, RowSelect, RowSelectProps, Rule, SESSION_DURATION, SIZES, SOON_SESSION_TIME_SECONDS, Schedule, ScheduleDate, ScheduleSlot, _default$M as ScreenDrumPickerFormFeature, ScreenInput, _default$N as ScreenInputFormFeature, ScreenInputUpdateFeature, SectionHeading, Segment, SegmentColor, SegmentType, SelectItemType, _default$K as SelectWithSearchFormFeature, _default$y as SelectionListFeature, Session, SessionDetailWidget, SessionDetailWidgetSkeleton, SessionManageModalFeature, SessionManageTypeEnum, SessionPaymentsWidget, SessionPreviewFeature, SessionQueue, SessionReview$1 as SessionReview, SessionTime, SessionTypeEnum, SessionManageModalFeature$1 as SessionTypeSelectorModalFeature, SessionVariant, SessionsWidget as SessionsListWidget, SessionsWidgetProps, Sex, ShareModalFeature, ShortCurrencySignByLocale, ShortTranscriptionCurrencySignByLocale, _default$_ as ShowMore, _default$n as SignUpSessionButton, _default$k as SignUpSessionModal, SimpleTabs, SimpleTabsProps, SizeValues, Skeleton, _default$1d as Skeleton_v2, Slider, _default$W as SlotsGrid, _default$V as SlotsGridItem, SolidInput, Sort, SortDirection, SortKey, SortValue, Specialist, _default$e as SpecialistAbout, SpecialistAreaList as SpecialistAreaListFeature, SpecialistCard, SpecialistCardListWidget, _default$w as SpecialistCardWidget, SpecialistCardSkeleton as SpecialistCardWithScheduleSkeleton, _default$q as SpecialistCardWithScheduleWidget, SpecialistConsultation, SpecialistConsultationPayment, _default$t as SpecialistDetailWidget, SpecialistDetailWidgetSkeleton, SpecialistDetailWithTabsSkeleton, _default$r as SpecialistDetailWithTabsWidget, SpecialistEducation, SpecialistEducationsFeature, SpecialistInfoColumnFeature, SpecialistLangs, _default$1 as SpecialistMatch, SpecialistOrderType, SpecialistPaymentCardProps, _default$T as SpecialistPaymentCommonCardFeature, SpecialistPaymentCommonCardSkeleton, SpecialistPaymentConsultationDetailsType, _default$S as SpecialistPaymentConsultationsFeature, SpecialistPaymentConsultationsProps, SpecialistPaymentCurrencyProps, _default$u as SpecialistPaymentResumeWidget, SpecialistPaymentResumeWidgetType, SpecialistPaymentTabs, _default$v as SpecialistPaymentWidget, SpecialistPaymentWidgetType, SpecialistPreviewFeature, SpecialistPreviewListWidget, _default$s as SpecialistPreviewWidget, SpecialistProfileNotFound, SpecialistProfileViewCounter, SpecialistRescheduleFeature, SpecialistReview$1 as SpecialistReview, SpecialistScheduleFeature, SpecialistScheduleProvider, SpecialistScheduleProviderRef, ScheduleSkeleton as SpecialistScheduleSkeletonFeature, SpecialistShortInfoItemFeature as SpecialistShortInfoItem, _default as SpecialistStatistic, Spinner, Spinner_v2, StarRating, StatisticsScroll, StripeSupportedCurrency, Subscription, SubscriptionStatuses, SuccessModalFeature, SuccessModalFeatureAction, SuccessScreen, SuperSpecialist, SupportedCurrency, SupportedLangs, SupportedLocales, SwitchDeviceCard, TabItem, Tabs$1 as Tabs, TabsFeature, TabsFeatureSkeleton, TabsToolbarFeature, Tag, Tariff, TariffFeature, _default$L as TextAreaFormFeature, _default$a as TextInput, _default$z as TextWithClampFeature, _default$18 as Textarea_v2, ThemeProvider, ThemeProviderProps, Toast, ToastButton, ToastContext, ToastProps, ToastProvider, ToastRegion, Toggle, TooltipComponent, TranslationMock, TranslationType, TreeNode, _default$1h as Typography, TypographyVariantsEnum, UpdateContractWidget, UpdatesCard, UserInfoModal, UserType, VariantType, VerticalCalendar, VerticalCalendarMonthSkeleton, VerticalCalendarSkeleton, _default$11 as Video, _default$p as VideoCallInfo, _default$1i as VideoPlayer, VideoProvider, ViewedClientsListFeature, ViewedClientsWidget, _default$g as WorkDirections, appThemes, canManageSession, capitalizeFirstLetter, currentUser, decOfNum, formatByDigits, getCountryKeyByName, getDateLocale, getFilterCount, getFiltersQuery, getFiltersValues, getGMTOffset, getMappedFilterValue, getMockSchedule, getMonthNameInGenitive, getProgressForBreakPoint, getRecurringSessionDate, getSessionTimeLabel, getSessionVariant, getSessionsByDay, getSessionsByMonth, getSessionsByYear, getSignAgreementsTabs, getSortFromKey, getSortKey, getStartSessionDate, getStartSessionTimestamp, getVisibleLength, globalAuthState, isClientCan, isCommentValid, isFilterSet, isNewSpecialist, isSpecialistActive, isSpecialistBlocked, isSpecialistPublic, isSuperSpecialist, listReviews, localTimeZone, mergeRefs, mockRecurringSession, mockSession, mockSessions, mockSubscriptionInFuture, mockSubscriptionInNearFuture, mockSubscriptions, mockT, newShade, payoutPriceNormalize, priceNormalize, replaceMarkdownWithReactElements, roundToPrecision, specialist, splitSessions, toast, useAutoFocus, useBreakPointsPosition, useCircleRatingRenderData, useDeepCompareEffect, useDeepUpdateEffect, useDelayMount, useDomRef, useElementWidth, useEvent, useIsKeyBoardShown, useRangeIndex, useRatingCircleBreakPoints, useRatingCircleContentValue, useRatingCircleLegend, useRatingContext, useScrollToElement, useSpecialistScheduleContext, useStopPropagationEvent, useToastContext, useUpdateEffect, useVideoContext, withSpecialistScheduleContext };
|
package/package.json
CHANGED
|
@@ -1,13 +1,15 @@
|
|
|
1
1
|
:root {
|
|
2
|
-
|
|
2
|
+
--color-background-anti-flash-50: rgba(245, 247, 250, 0.5);
|
|
3
3
|
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
4
|
+
--buttons-btn-primary: #212121;
|
|
5
|
+
--buttons-btn-text: #fff;
|
|
6
|
+
--buttons-btn-pressed: #3b3b3b;
|
|
7
|
+
--color-black: #212121;
|
|
8
|
+
--color-white: #ffffff;
|
|
9
9
|
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
10
|
+
--field-field-hint: rgba(33, 33, 33, 0.35);
|
|
11
|
+
--field-field-bg: rgba(33, 33, 33, 0.35);
|
|
12
|
+
--field-field-focus: rgba(33, 33, 33, 1);
|
|
13
|
+
|
|
14
|
+
--border-divider: rgba(33, 33, 33, 0.1);
|
|
15
|
+
}
|