@blinkdotnew/mobile-ui 2.0.0-alpha.13 → 2.0.0-alpha.14
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/index.d.mts +43 -3
- package/dist/index.d.ts +43 -3
- package/dist/index.js +243 -106
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +152 -18
- package/dist/index.mjs.map +1 -1
- package/package.json +4 -2
package/dist/index.d.mts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import * as tamagui from 'tamagui';
|
|
2
|
-
import { TamaguiInternalConfig, GetProps, YStack } from 'tamagui';
|
|
2
|
+
import { TamaguiInternalConfig, GetProps, YStack, Select, Button as Button$1 } from 'tamagui';
|
|
3
3
|
export { Accordion, Adapt, AlertDialog, Anchor, AnimatePresence, Article, Aside, Avatar, TamaguiProvider as BlinkProvider, Button, Card, Checkbox, Circle, ColorTokens, Dialog, EnsureFlexed, Fieldset, Footer, Form, Frame, GetProps, Group, H1, H2, H3, H4, H5, H6, Header, Heading, Input, Label, Main, Nav, Paragraph, Popover, Portal, PortalHost, PortalItem, PortalProvider, Progress, RadioGroup, ScrollView, Select, Separator, Sheet, SizableStack, SizableText, SizeTokens, Slider, Spacer, Spinner, Square, Stack, Switch, Tabs, Image as TamaguiImage, ListItem as TamaguiListItem, TamaguiProvider, Text, TextArea, Theme, ThemeTokens, ThemeableStack, ToggleGroup, Tooltip, TooltipSimple, Unspaced, View, VisuallyHidden, XGroup, XStack, YGroup, YStack, ZStack, addTheme, composeEventHandlers, composeRefs, createFont, createMedia, createStyledContext, createTamagui, createTheme, createTokens, createVariable, getConfig, getToken, getTokenValue, getTokens, isClient, isWeb, replaceTheme, styled, updateTheme, useComposedRefs, useControllableState, useDebounce, useDebounceValue, useDidFinishSSR, useEvent, useForceUpdate, useIsPresent, useIsomorphicLayoutEffect, useMedia, usePresence, useTheme, useThemeName, useWindowDimensions, withStaticProperties } from 'tamagui';
|
|
4
4
|
export { defaultConfig as tamaguiDefaultConfig } from '@tamagui/config/v5';
|
|
5
5
|
import * as react from 'react';
|
|
6
|
-
import { ReactNode } from 'react';
|
|
6
|
+
import react__default, { ReactNode } from 'react';
|
|
7
7
|
import * as _tamagui_core from '@tamagui/core';
|
|
8
8
|
import * as _tamagui_web from '@tamagui/web';
|
|
9
9
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
@@ -901,4 +901,44 @@ type UserPreferencesProps = {
|
|
|
901
901
|
};
|
|
902
902
|
declare function UserPreferences({ sections }: UserPreferencesProps): react_jsx_runtime.JSX.Element;
|
|
903
903
|
|
|
904
|
-
|
|
904
|
+
type BlinkSelectItem = {
|
|
905
|
+
label: string;
|
|
906
|
+
value: string;
|
|
907
|
+
};
|
|
908
|
+
type BlinkSelectProps = {
|
|
909
|
+
items: BlinkSelectItem[];
|
|
910
|
+
value?: string;
|
|
911
|
+
onValueChange?: (value: string) => void;
|
|
912
|
+
placeholder?: string;
|
|
913
|
+
label?: string;
|
|
914
|
+
size?: GetProps<typeof Select.Trigger>['size'];
|
|
915
|
+
disabled?: boolean;
|
|
916
|
+
width?: string | number;
|
|
917
|
+
};
|
|
918
|
+
declare function BlinkSelect({ items, value, onValueChange, placeholder, size, disabled, width, }: BlinkSelectProps): react_jsx_runtime.JSX.Element;
|
|
919
|
+
|
|
920
|
+
type BlinkDialogProps = {
|
|
921
|
+
open?: boolean;
|
|
922
|
+
onOpenChange?: (open: boolean) => void;
|
|
923
|
+
trigger?: react__default.ReactNode;
|
|
924
|
+
title?: string;
|
|
925
|
+
description?: string;
|
|
926
|
+
children?: react__default.ReactNode;
|
|
927
|
+
confirmLabel?: string;
|
|
928
|
+
cancelLabel?: string;
|
|
929
|
+
onConfirm?: () => void;
|
|
930
|
+
onCancel?: () => void;
|
|
931
|
+
confirmTheme?: GetProps<typeof Button$1>['theme'];
|
|
932
|
+
};
|
|
933
|
+
declare function BlinkDialog({ open, onOpenChange, trigger, title, description, children, confirmLabel, cancelLabel, onConfirm, onCancel, confirmTheme, }: BlinkDialogProps): react_jsx_runtime.JSX.Element;
|
|
934
|
+
|
|
935
|
+
type BlinkPopoverProps = {
|
|
936
|
+
trigger: react__default.ReactNode;
|
|
937
|
+
children: react__default.ReactNode;
|
|
938
|
+
placement?: 'top' | 'bottom' | 'left' | 'right';
|
|
939
|
+
allowFlip?: boolean;
|
|
940
|
+
size?: string;
|
|
941
|
+
};
|
|
942
|
+
declare function BlinkPopover({ trigger, children, placement, allowFlip, size, }: BlinkPopoverProps): react_jsx_runtime.JSX.Element;
|
|
943
|
+
|
|
944
|
+
export { ActionSheet, type ActionSheetItem, type ActionSheetProps, AppHeader, type AppHeaderProps, type AppHeaderVariant, type AuthProvider, AvatarGroup, type AvatarGroupProps, Badge, type BadgeProps, BlinkAccordion, type BlinkAccordionItem, type BlinkAccordionProps, Avatar as BlinkAvatar, type AvatarProps as BlinkAvatarProps, Button as BlinkButton, type ButtonProps as BlinkButtonProps, Card as BlinkCard, type CardProps as BlinkCardProps, type BlinkConfig, BlinkDialog, type BlinkDialogProps, Input as BlinkInput, type InputProps as BlinkInputProps, BlinkPopover, type BlinkPopoverProps, BlinkSelect, type BlinkSelectItem, type BlinkSelectProps, type BlinkTabItem, BlinkTabs, type BlinkTabsProps, BlinkText, type BlinkTextProps, type BlinkToastContextType, type BlinkToastData, type BlinkToastOptions, BlinkToastProvider, type BlinkToastVariant, BlinkToggleGroup, type BlinkToggleGroupProps, type BlinkToggleOption, BlinkTooltip, BottomSheet, type BottomSheetProps, Carousel, type CarouselProps, ChatBubble, type ChatBubbleProps, type ChatMessage, Chip, ChipGroup, type ChipGroupProps, type ChipProps, ConfirmDialog, type ConfirmDialogProps, Container, type ContainerProps, CountdownBanner, type CountdownBannerProps, DataTable, type DataTableColumn, type DataTableProps, DatePicker, type DatePickerProps, DialogProvider, Divider, type DividerProps, EmptyState, type EmptyStateProps, EventCard, type EventCardProps, type FABProps, FloatingActionButton, FormField, type FormFieldProps, GlassCard, type GlassCardProps, Grid, type GridProps, ICONS, Icon, type IconName, type IconProps, Image, KeyboardStickyFooter, type KeyboardStickyFooterProps, ListItem, type ListItemProps, LoginScreen, type LoginScreenProps, MediaCard, type MediaCardProps, NotificationBanner, type NotificationBannerProps, OTPInput, type OTPInputProps, OnboardingCarousel, type OnboardingCarouselProps, type OnboardingStep, PageContainer, PageMainContainer, PasswordInput, type PasswordInputProps, PaywallScreen, type PaywallScreenProps, type PlanOption, type PreferenceItem, type PreferenceSection, Pressable, type PricingPlan, PricingTable, type PricingTableProps, ProductCard, type ProductCardProps, ProfileHeader, type ProfileHeaderProps, ProgressSteps, type ProgressStepsProps, PullToRefresh, type PullToRefreshProps, SafeArea, type SafeAreaProps, ScreenLayout, SearchBar, type SearchBarProps, Section, type SectionProps, SepHeading, type SettingsItem, SettingsScreen, type SettingsScreenProps, type SettingsSection, Skeleton, type SkeletonProps, StatusBadge, StepPageLayout, type StepPageProps, SubHeading, type SwipeAction, type SwipeCardItem, SwipeCards, type SwipeCardsProps, SwipeableRow, type SwipeableRowProps, TabBar, type TabBarItem, type TabBarProps, TestimonialCard, type TestimonialCardProps, type TooltipProps, UserPreferences, type UserPreferencesProps, blinkConfig, dialogConfirm, showError, toast, useBlinkToast };
|
package/dist/index.d.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import * as tamagui from 'tamagui';
|
|
2
|
-
import { TamaguiInternalConfig, GetProps, YStack } from 'tamagui';
|
|
2
|
+
import { TamaguiInternalConfig, GetProps, YStack, Select, Button as Button$1 } from 'tamagui';
|
|
3
3
|
export { Accordion, Adapt, AlertDialog, Anchor, AnimatePresence, Article, Aside, Avatar, TamaguiProvider as BlinkProvider, Button, Card, Checkbox, Circle, ColorTokens, Dialog, EnsureFlexed, Fieldset, Footer, Form, Frame, GetProps, Group, H1, H2, H3, H4, H5, H6, Header, Heading, Input, Label, Main, Nav, Paragraph, Popover, Portal, PortalHost, PortalItem, PortalProvider, Progress, RadioGroup, ScrollView, Select, Separator, Sheet, SizableStack, SizableText, SizeTokens, Slider, Spacer, Spinner, Square, Stack, Switch, Tabs, Image as TamaguiImage, ListItem as TamaguiListItem, TamaguiProvider, Text, TextArea, Theme, ThemeTokens, ThemeableStack, ToggleGroup, Tooltip, TooltipSimple, Unspaced, View, VisuallyHidden, XGroup, XStack, YGroup, YStack, ZStack, addTheme, composeEventHandlers, composeRefs, createFont, createMedia, createStyledContext, createTamagui, createTheme, createTokens, createVariable, getConfig, getToken, getTokenValue, getTokens, isClient, isWeb, replaceTheme, styled, updateTheme, useComposedRefs, useControllableState, useDebounce, useDebounceValue, useDidFinishSSR, useEvent, useForceUpdate, useIsPresent, useIsomorphicLayoutEffect, useMedia, usePresence, useTheme, useThemeName, useWindowDimensions, withStaticProperties } from 'tamagui';
|
|
4
4
|
export { defaultConfig as tamaguiDefaultConfig } from '@tamagui/config/v5';
|
|
5
5
|
import * as react from 'react';
|
|
6
|
-
import { ReactNode } from 'react';
|
|
6
|
+
import react__default, { ReactNode } from 'react';
|
|
7
7
|
import * as _tamagui_core from '@tamagui/core';
|
|
8
8
|
import * as _tamagui_web from '@tamagui/web';
|
|
9
9
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
@@ -901,4 +901,44 @@ type UserPreferencesProps = {
|
|
|
901
901
|
};
|
|
902
902
|
declare function UserPreferences({ sections }: UserPreferencesProps): react_jsx_runtime.JSX.Element;
|
|
903
903
|
|
|
904
|
-
|
|
904
|
+
type BlinkSelectItem = {
|
|
905
|
+
label: string;
|
|
906
|
+
value: string;
|
|
907
|
+
};
|
|
908
|
+
type BlinkSelectProps = {
|
|
909
|
+
items: BlinkSelectItem[];
|
|
910
|
+
value?: string;
|
|
911
|
+
onValueChange?: (value: string) => void;
|
|
912
|
+
placeholder?: string;
|
|
913
|
+
label?: string;
|
|
914
|
+
size?: GetProps<typeof Select.Trigger>['size'];
|
|
915
|
+
disabled?: boolean;
|
|
916
|
+
width?: string | number;
|
|
917
|
+
};
|
|
918
|
+
declare function BlinkSelect({ items, value, onValueChange, placeholder, size, disabled, width, }: BlinkSelectProps): react_jsx_runtime.JSX.Element;
|
|
919
|
+
|
|
920
|
+
type BlinkDialogProps = {
|
|
921
|
+
open?: boolean;
|
|
922
|
+
onOpenChange?: (open: boolean) => void;
|
|
923
|
+
trigger?: react__default.ReactNode;
|
|
924
|
+
title?: string;
|
|
925
|
+
description?: string;
|
|
926
|
+
children?: react__default.ReactNode;
|
|
927
|
+
confirmLabel?: string;
|
|
928
|
+
cancelLabel?: string;
|
|
929
|
+
onConfirm?: () => void;
|
|
930
|
+
onCancel?: () => void;
|
|
931
|
+
confirmTheme?: GetProps<typeof Button$1>['theme'];
|
|
932
|
+
};
|
|
933
|
+
declare function BlinkDialog({ open, onOpenChange, trigger, title, description, children, confirmLabel, cancelLabel, onConfirm, onCancel, confirmTheme, }: BlinkDialogProps): react_jsx_runtime.JSX.Element;
|
|
934
|
+
|
|
935
|
+
type BlinkPopoverProps = {
|
|
936
|
+
trigger: react__default.ReactNode;
|
|
937
|
+
children: react__default.ReactNode;
|
|
938
|
+
placement?: 'top' | 'bottom' | 'left' | 'right';
|
|
939
|
+
allowFlip?: boolean;
|
|
940
|
+
size?: string;
|
|
941
|
+
};
|
|
942
|
+
declare function BlinkPopover({ trigger, children, placement, allowFlip, size, }: BlinkPopoverProps): react_jsx_runtime.JSX.Element;
|
|
943
|
+
|
|
944
|
+
export { ActionSheet, type ActionSheetItem, type ActionSheetProps, AppHeader, type AppHeaderProps, type AppHeaderVariant, type AuthProvider, AvatarGroup, type AvatarGroupProps, Badge, type BadgeProps, BlinkAccordion, type BlinkAccordionItem, type BlinkAccordionProps, Avatar as BlinkAvatar, type AvatarProps as BlinkAvatarProps, Button as BlinkButton, type ButtonProps as BlinkButtonProps, Card as BlinkCard, type CardProps as BlinkCardProps, type BlinkConfig, BlinkDialog, type BlinkDialogProps, Input as BlinkInput, type InputProps as BlinkInputProps, BlinkPopover, type BlinkPopoverProps, BlinkSelect, type BlinkSelectItem, type BlinkSelectProps, type BlinkTabItem, BlinkTabs, type BlinkTabsProps, BlinkText, type BlinkTextProps, type BlinkToastContextType, type BlinkToastData, type BlinkToastOptions, BlinkToastProvider, type BlinkToastVariant, BlinkToggleGroup, type BlinkToggleGroupProps, type BlinkToggleOption, BlinkTooltip, BottomSheet, type BottomSheetProps, Carousel, type CarouselProps, ChatBubble, type ChatBubbleProps, type ChatMessage, Chip, ChipGroup, type ChipGroupProps, type ChipProps, ConfirmDialog, type ConfirmDialogProps, Container, type ContainerProps, CountdownBanner, type CountdownBannerProps, DataTable, type DataTableColumn, type DataTableProps, DatePicker, type DatePickerProps, DialogProvider, Divider, type DividerProps, EmptyState, type EmptyStateProps, EventCard, type EventCardProps, type FABProps, FloatingActionButton, FormField, type FormFieldProps, GlassCard, type GlassCardProps, Grid, type GridProps, ICONS, Icon, type IconName, type IconProps, Image, KeyboardStickyFooter, type KeyboardStickyFooterProps, ListItem, type ListItemProps, LoginScreen, type LoginScreenProps, MediaCard, type MediaCardProps, NotificationBanner, type NotificationBannerProps, OTPInput, type OTPInputProps, OnboardingCarousel, type OnboardingCarouselProps, type OnboardingStep, PageContainer, PageMainContainer, PasswordInput, type PasswordInputProps, PaywallScreen, type PaywallScreenProps, type PlanOption, type PreferenceItem, type PreferenceSection, Pressable, type PricingPlan, PricingTable, type PricingTableProps, ProductCard, type ProductCardProps, ProfileHeader, type ProfileHeaderProps, ProgressSteps, type ProgressStepsProps, PullToRefresh, type PullToRefreshProps, SafeArea, type SafeAreaProps, ScreenLayout, SearchBar, type SearchBarProps, Section, type SectionProps, SepHeading, type SettingsItem, SettingsScreen, type SettingsScreenProps, type SettingsSection, Skeleton, type SkeletonProps, StatusBadge, StepPageLayout, type StepPageProps, SubHeading, type SwipeAction, type SwipeCardItem, SwipeCards, type SwipeCardsProps, SwipeableRow, type SwipeableRowProps, TabBar, type TabBarItem, type TabBarProps, TestimonialCard, type TestimonialCardProps, type TooltipProps, UserPreferences, type UserPreferencesProps, blinkConfig, dialogConfirm, showError, toast, useBlinkToast };
|
package/dist/index.js
CHANGED
|
@@ -20,184 +20,187 @@ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: tru
|
|
|
20
20
|
// src/index.ts
|
|
21
21
|
var index_exports = {};
|
|
22
22
|
__export(index_exports, {
|
|
23
|
-
Accordion: () =>
|
|
23
|
+
Accordion: () => import_tamagui67.Accordion,
|
|
24
24
|
ActionSheet: () => ActionSheet,
|
|
25
|
-
Adapt: () =>
|
|
26
|
-
AlertDialog: () =>
|
|
27
|
-
Anchor: () =>
|
|
28
|
-
AnimatePresence: () =>
|
|
25
|
+
Adapt: () => import_tamagui67.Adapt,
|
|
26
|
+
AlertDialog: () => import_tamagui67.AlertDialog,
|
|
27
|
+
Anchor: () => import_tamagui67.Anchor,
|
|
28
|
+
AnimatePresence: () => import_tamagui67.AnimatePresence,
|
|
29
29
|
AppHeader: () => AppHeader,
|
|
30
|
-
Article: () =>
|
|
31
|
-
Aside: () =>
|
|
32
|
-
Avatar: () =>
|
|
30
|
+
Article: () => import_tamagui67.Article,
|
|
31
|
+
Aside: () => import_tamagui67.Aside,
|
|
32
|
+
Avatar: () => import_tamagui67.Avatar,
|
|
33
33
|
AvatarGroup: () => AvatarGroup,
|
|
34
34
|
Badge: () => Badge,
|
|
35
35
|
BlinkAccordion: () => BlinkAccordion,
|
|
36
36
|
BlinkAvatar: () => Avatar,
|
|
37
37
|
BlinkButton: () => Button,
|
|
38
38
|
BlinkCard: () => Card,
|
|
39
|
+
BlinkDialog: () => BlinkDialog,
|
|
39
40
|
BlinkInput: () => Input,
|
|
40
|
-
|
|
41
|
+
BlinkPopover: () => BlinkPopover,
|
|
42
|
+
BlinkProvider: () => import_tamagui67.TamaguiProvider,
|
|
43
|
+
BlinkSelect: () => BlinkSelect,
|
|
41
44
|
BlinkTabs: () => BlinkTabs,
|
|
42
45
|
BlinkText: () => BlinkText,
|
|
43
46
|
BlinkToastProvider: () => BlinkToastProvider,
|
|
44
47
|
BlinkToggleGroup: () => BlinkToggleGroup,
|
|
45
48
|
BlinkTooltip: () => BlinkTooltip,
|
|
46
49
|
BottomSheet: () => BottomSheet,
|
|
47
|
-
Button: () =>
|
|
48
|
-
Card: () =>
|
|
50
|
+
Button: () => import_tamagui67.Button,
|
|
51
|
+
Card: () => import_tamagui67.Card,
|
|
49
52
|
Carousel: () => Carousel,
|
|
50
53
|
ChatBubble: () => ChatBubble,
|
|
51
|
-
Checkbox: () =>
|
|
54
|
+
Checkbox: () => import_tamagui67.Checkbox,
|
|
52
55
|
Chip: () => Chip,
|
|
53
56
|
ChipGroup: () => ChipGroup,
|
|
54
|
-
Circle: () =>
|
|
57
|
+
Circle: () => import_tamagui67.Circle,
|
|
55
58
|
ConfirmDialog: () => ConfirmDialog,
|
|
56
59
|
Container: () => Container,
|
|
57
60
|
CountdownBanner: () => CountdownBanner,
|
|
58
61
|
DataTable: () => DataTable,
|
|
59
62
|
DatePicker: () => DatePicker,
|
|
60
|
-
Dialog: () =>
|
|
63
|
+
Dialog: () => import_tamagui67.Dialog,
|
|
61
64
|
DialogProvider: () => DialogProvider,
|
|
62
65
|
Divider: () => Divider,
|
|
63
66
|
EmptyState: () => EmptyState,
|
|
64
|
-
EnsureFlexed: () =>
|
|
67
|
+
EnsureFlexed: () => import_tamagui67.EnsureFlexed,
|
|
65
68
|
EventCard: () => EventCard,
|
|
66
|
-
Fieldset: () =>
|
|
69
|
+
Fieldset: () => import_tamagui67.Fieldset,
|
|
67
70
|
FloatingActionButton: () => FloatingActionButton,
|
|
68
|
-
Footer: () =>
|
|
69
|
-
Form: () =>
|
|
71
|
+
Footer: () => import_tamagui67.Footer,
|
|
72
|
+
Form: () => import_tamagui67.Form,
|
|
70
73
|
FormField: () => FormField,
|
|
71
|
-
Frame: () =>
|
|
74
|
+
Frame: () => import_tamagui67.Frame,
|
|
72
75
|
GlassCard: () => GlassCard,
|
|
73
76
|
Grid: () => Grid,
|
|
74
|
-
Group: () =>
|
|
75
|
-
H1: () =>
|
|
76
|
-
H2: () =>
|
|
77
|
-
H3: () =>
|
|
78
|
-
H4: () =>
|
|
79
|
-
H5: () =>
|
|
80
|
-
H6: () =>
|
|
81
|
-
Header: () =>
|
|
82
|
-
Heading: () =>
|
|
77
|
+
Group: () => import_tamagui67.Group,
|
|
78
|
+
H1: () => import_tamagui67.H1,
|
|
79
|
+
H2: () => import_tamagui67.H2,
|
|
80
|
+
H3: () => import_tamagui67.H3,
|
|
81
|
+
H4: () => import_tamagui67.H4,
|
|
82
|
+
H5: () => import_tamagui67.H5,
|
|
83
|
+
H6: () => import_tamagui67.H6,
|
|
84
|
+
Header: () => import_tamagui67.Header,
|
|
85
|
+
Heading: () => import_tamagui67.Heading,
|
|
83
86
|
ICONS: () => ICONS,
|
|
84
87
|
Icon: () => Icon,
|
|
85
88
|
Image: () => Image2,
|
|
86
|
-
Input: () =>
|
|
89
|
+
Input: () => import_tamagui67.Input,
|
|
87
90
|
KeyboardStickyFooter: () => KeyboardStickyFooter,
|
|
88
|
-
Label: () =>
|
|
91
|
+
Label: () => import_tamagui67.Label,
|
|
89
92
|
ListItem: () => ListItem,
|
|
90
93
|
LoginScreen: () => LoginScreen,
|
|
91
|
-
Main: () =>
|
|
94
|
+
Main: () => import_tamagui67.Main,
|
|
92
95
|
MediaCard: () => MediaCard,
|
|
93
|
-
Nav: () =>
|
|
96
|
+
Nav: () => import_tamagui67.Nav,
|
|
94
97
|
NotificationBanner: () => NotificationBanner,
|
|
95
98
|
OTPInput: () => OTPInput,
|
|
96
99
|
OnboardingCarousel: () => OnboardingCarousel,
|
|
97
100
|
PageContainer: () => PageContainer,
|
|
98
101
|
PageMainContainer: () => PageMainContainer,
|
|
99
|
-
Paragraph: () =>
|
|
102
|
+
Paragraph: () => import_tamagui67.Paragraph,
|
|
100
103
|
PasswordInput: () => PasswordInput,
|
|
101
104
|
PaywallScreen: () => PaywallScreen,
|
|
102
|
-
Popover: () =>
|
|
103
|
-
Portal: () =>
|
|
104
|
-
PortalHost: () =>
|
|
105
|
-
PortalItem: () =>
|
|
106
|
-
PortalProvider: () =>
|
|
105
|
+
Popover: () => import_tamagui67.Popover,
|
|
106
|
+
Portal: () => import_tamagui67.Portal,
|
|
107
|
+
PortalHost: () => import_tamagui67.PortalHost,
|
|
108
|
+
PortalItem: () => import_tamagui67.PortalItem,
|
|
109
|
+
PortalProvider: () => import_tamagui67.PortalProvider,
|
|
107
110
|
Pressable: () => Pressable,
|
|
108
111
|
PricingTable: () => PricingTable,
|
|
109
112
|
ProductCard: () => ProductCard,
|
|
110
113
|
ProfileHeader: () => ProfileHeader,
|
|
111
|
-
Progress: () =>
|
|
114
|
+
Progress: () => import_tamagui67.Progress,
|
|
112
115
|
ProgressSteps: () => ProgressSteps,
|
|
113
116
|
PullToRefresh: () => PullToRefresh,
|
|
114
|
-
RadioGroup: () =>
|
|
117
|
+
RadioGroup: () => import_tamagui67.RadioGroup,
|
|
115
118
|
SafeArea: () => SafeArea,
|
|
116
119
|
ScreenLayout: () => ScreenLayout,
|
|
117
|
-
ScrollView: () =>
|
|
120
|
+
ScrollView: () => import_tamagui67.ScrollView,
|
|
118
121
|
SearchBar: () => SearchBar,
|
|
119
122
|
Section: () => Section,
|
|
120
|
-
Select: () =>
|
|
123
|
+
Select: () => import_tamagui67.Select,
|
|
121
124
|
SepHeading: () => SepHeading,
|
|
122
|
-
Separator: () =>
|
|
125
|
+
Separator: () => import_tamagui67.Separator,
|
|
123
126
|
SettingsScreen: () => SettingsScreen,
|
|
124
|
-
Sheet: () =>
|
|
125
|
-
SizableStack: () =>
|
|
126
|
-
SizableText: () =>
|
|
127
|
+
Sheet: () => import_tamagui67.Sheet,
|
|
128
|
+
SizableStack: () => import_tamagui67.SizableStack,
|
|
129
|
+
SizableText: () => import_tamagui67.SizableText,
|
|
127
130
|
Skeleton: () => Skeleton,
|
|
128
|
-
Slider: () =>
|
|
129
|
-
Spacer: () =>
|
|
130
|
-
Spinner: () =>
|
|
131
|
-
Square: () =>
|
|
132
|
-
Stack: () =>
|
|
131
|
+
Slider: () => import_tamagui67.Slider,
|
|
132
|
+
Spacer: () => import_tamagui67.Spacer,
|
|
133
|
+
Spinner: () => import_tamagui67.Spinner,
|
|
134
|
+
Square: () => import_tamagui67.Square,
|
|
135
|
+
Stack: () => import_tamagui67.Stack,
|
|
133
136
|
StatusBadge: () => StatusBadge,
|
|
134
137
|
StepPageLayout: () => StepPageLayout,
|
|
135
138
|
SubHeading: () => SubHeading,
|
|
136
139
|
SwipeCards: () => SwipeCards,
|
|
137
140
|
SwipeableRow: () => SwipeableRow,
|
|
138
|
-
Switch: () =>
|
|
141
|
+
Switch: () => import_tamagui67.Switch,
|
|
139
142
|
TabBar: () => TabBar,
|
|
140
|
-
Tabs: () =>
|
|
141
|
-
TamaguiImage: () =>
|
|
142
|
-
TamaguiListItem: () =>
|
|
143
|
-
TamaguiProvider: () =>
|
|
143
|
+
Tabs: () => import_tamagui67.Tabs,
|
|
144
|
+
TamaguiImage: () => import_tamagui67.Image,
|
|
145
|
+
TamaguiListItem: () => import_tamagui67.ListItem,
|
|
146
|
+
TamaguiProvider: () => import_tamagui67.TamaguiProvider,
|
|
144
147
|
TestimonialCard: () => TestimonialCard,
|
|
145
|
-
Text: () =>
|
|
146
|
-
TextArea: () =>
|
|
147
|
-
Theme: () =>
|
|
148
|
-
ThemeableStack: () =>
|
|
149
|
-
ToggleGroup: () =>
|
|
150
|
-
Tooltip: () =>
|
|
151
|
-
TooltipSimple: () =>
|
|
152
|
-
Unspaced: () =>
|
|
148
|
+
Text: () => import_tamagui67.Text,
|
|
149
|
+
TextArea: () => import_tamagui67.TextArea,
|
|
150
|
+
Theme: () => import_tamagui67.Theme,
|
|
151
|
+
ThemeableStack: () => import_tamagui67.ThemeableStack,
|
|
152
|
+
ToggleGroup: () => import_tamagui67.ToggleGroup,
|
|
153
|
+
Tooltip: () => import_tamagui67.Tooltip,
|
|
154
|
+
TooltipSimple: () => import_tamagui67.TooltipSimple,
|
|
155
|
+
Unspaced: () => import_tamagui67.Unspaced,
|
|
153
156
|
UserPreferences: () => UserPreferences,
|
|
154
|
-
View: () =>
|
|
155
|
-
VisuallyHidden: () =>
|
|
156
|
-
XGroup: () =>
|
|
157
|
-
XStack: () =>
|
|
158
|
-
YGroup: () =>
|
|
159
|
-
YStack: () =>
|
|
160
|
-
ZStack: () =>
|
|
161
|
-
addTheme: () =>
|
|
157
|
+
View: () => import_tamagui67.View,
|
|
158
|
+
VisuallyHidden: () => import_tamagui67.VisuallyHidden,
|
|
159
|
+
XGroup: () => import_tamagui67.XGroup,
|
|
160
|
+
XStack: () => import_tamagui67.XStack,
|
|
161
|
+
YGroup: () => import_tamagui67.YGroup,
|
|
162
|
+
YStack: () => import_tamagui67.YStack,
|
|
163
|
+
ZStack: () => import_tamagui67.ZStack,
|
|
164
|
+
addTheme: () => import_tamagui67.addTheme,
|
|
162
165
|
blinkConfig: () => blinkConfig,
|
|
163
|
-
composeEventHandlers: () =>
|
|
164
|
-
composeRefs: () =>
|
|
165
|
-
createFont: () =>
|
|
166
|
-
createMedia: () =>
|
|
167
|
-
createStyledContext: () =>
|
|
168
|
-
createTamagui: () =>
|
|
169
|
-
createTheme: () =>
|
|
170
|
-
createTokens: () =>
|
|
171
|
-
createVariable: () =>
|
|
166
|
+
composeEventHandlers: () => import_tamagui67.composeEventHandlers,
|
|
167
|
+
composeRefs: () => import_tamagui67.composeRefs,
|
|
168
|
+
createFont: () => import_tamagui67.createFont,
|
|
169
|
+
createMedia: () => import_tamagui67.createMedia,
|
|
170
|
+
createStyledContext: () => import_tamagui67.createStyledContext,
|
|
171
|
+
createTamagui: () => import_tamagui67.createTamagui,
|
|
172
|
+
createTheme: () => import_tamagui67.createTheme,
|
|
173
|
+
createTokens: () => import_tamagui67.createTokens,
|
|
174
|
+
createVariable: () => import_tamagui67.createVariable,
|
|
172
175
|
dialogConfirm: () => dialogConfirm,
|
|
173
|
-
getConfig: () =>
|
|
174
|
-
getToken: () =>
|
|
175
|
-
getTokenValue: () =>
|
|
176
|
-
getTokens: () =>
|
|
177
|
-
isClient: () =>
|
|
178
|
-
isWeb: () =>
|
|
179
|
-
replaceTheme: () =>
|
|
176
|
+
getConfig: () => import_tamagui67.getConfig,
|
|
177
|
+
getToken: () => import_tamagui67.getToken,
|
|
178
|
+
getTokenValue: () => import_tamagui67.getTokenValue,
|
|
179
|
+
getTokens: () => import_tamagui67.getTokens,
|
|
180
|
+
isClient: () => import_tamagui67.isClient,
|
|
181
|
+
isWeb: () => import_tamagui67.isWeb,
|
|
182
|
+
replaceTheme: () => import_tamagui67.replaceTheme,
|
|
180
183
|
showError: () => showError,
|
|
181
|
-
styled: () =>
|
|
184
|
+
styled: () => import_tamagui67.styled,
|
|
182
185
|
tamaguiDefaultConfig: () => import_v52.defaultConfig,
|
|
183
186
|
toast: () => toast,
|
|
184
|
-
updateTheme: () =>
|
|
187
|
+
updateTheme: () => import_tamagui67.updateTheme,
|
|
185
188
|
useBlinkToast: () => useBlinkToast,
|
|
186
|
-
useComposedRefs: () =>
|
|
187
|
-
useControllableState: () =>
|
|
188
|
-
useDebounce: () =>
|
|
189
|
-
useDebounceValue: () =>
|
|
190
|
-
useDidFinishSSR: () =>
|
|
191
|
-
useEvent: () =>
|
|
192
|
-
useForceUpdate: () =>
|
|
193
|
-
useIsPresent: () =>
|
|
194
|
-
useIsomorphicLayoutEffect: () =>
|
|
195
|
-
useMedia: () =>
|
|
196
|
-
usePresence: () =>
|
|
197
|
-
useTheme: () =>
|
|
198
|
-
useThemeName: () =>
|
|
199
|
-
useWindowDimensions: () =>
|
|
200
|
-
withStaticProperties: () =>
|
|
189
|
+
useComposedRefs: () => import_tamagui67.useComposedRefs,
|
|
190
|
+
useControllableState: () => import_tamagui67.useControllableState,
|
|
191
|
+
useDebounce: () => import_tamagui67.useDebounce,
|
|
192
|
+
useDebounceValue: () => import_tamagui67.useDebounceValue,
|
|
193
|
+
useDidFinishSSR: () => import_tamagui67.useDidFinishSSR,
|
|
194
|
+
useEvent: () => import_tamagui67.useEvent,
|
|
195
|
+
useForceUpdate: () => import_tamagui67.useForceUpdate,
|
|
196
|
+
useIsPresent: () => import_tamagui67.useIsPresent,
|
|
197
|
+
useIsomorphicLayoutEffect: () => import_tamagui67.useIsomorphicLayoutEffect,
|
|
198
|
+
useMedia: () => import_tamagui67.useMedia,
|
|
199
|
+
usePresence: () => import_tamagui67.usePresence,
|
|
200
|
+
useTheme: () => import_tamagui67.useTheme,
|
|
201
|
+
useThemeName: () => import_tamagui67.useThemeName,
|
|
202
|
+
useWindowDimensions: () => import_tamagui67.useWindowDimensions,
|
|
203
|
+
withStaticProperties: () => import_tamagui67.withStaticProperties
|
|
201
204
|
});
|
|
202
205
|
module.exports = __toCommonJS(index_exports);
|
|
203
206
|
|
|
@@ -210,7 +213,7 @@ var blinkConfig = (0, import_tamagui.createTamagui)({
|
|
|
210
213
|
|
|
211
214
|
// src/index.ts
|
|
212
215
|
var import_v52 = require("@tamagui/config/v5");
|
|
213
|
-
var
|
|
216
|
+
var import_tamagui67 = require("tamagui");
|
|
214
217
|
|
|
215
218
|
// src/primitives/Button.tsx
|
|
216
219
|
var import_tamagui2 = require("tamagui");
|
|
@@ -3232,6 +3235,137 @@ function UserPreferences({ sections }) {
|
|
|
3232
3235
|
)
|
|
3233
3236
|
] }, si)) });
|
|
3234
3237
|
}
|
|
3238
|
+
|
|
3239
|
+
// src/patterns/BlinkSelect.tsx
|
|
3240
|
+
var import_tamagui63 = require("tamagui");
|
|
3241
|
+
var import_jsx_runtime55 = require("react/jsx-runtime");
|
|
3242
|
+
function BlinkSelect({
|
|
3243
|
+
items,
|
|
3244
|
+
value,
|
|
3245
|
+
onValueChange,
|
|
3246
|
+
placeholder = "Select...",
|
|
3247
|
+
size = "$4",
|
|
3248
|
+
disabled,
|
|
3249
|
+
width = "100%"
|
|
3250
|
+
}) {
|
|
3251
|
+
return /* @__PURE__ */ (0, import_jsx_runtime55.jsxs)(
|
|
3252
|
+
import_tamagui63.Select,
|
|
3253
|
+
{
|
|
3254
|
+
value,
|
|
3255
|
+
onValueChange,
|
|
3256
|
+
disablePreventBodyScroll: true,
|
|
3257
|
+
...disabled ? { disabled: true } : {},
|
|
3258
|
+
children: [
|
|
3259
|
+
/* @__PURE__ */ (0, import_jsx_runtime55.jsx)(import_tamagui63.Select.Trigger, { width, iconAfter: () => /* @__PURE__ */ (0, import_jsx_runtime55.jsx)(import_tamagui63.SizableText, { children: "\u25BC" }), size, children: /* @__PURE__ */ (0, import_jsx_runtime55.jsx)(import_tamagui63.Select.Value, { placeholder }) }),
|
|
3260
|
+
/* @__PURE__ */ (0, import_jsx_runtime55.jsx)(import_tamagui63.Adapt, { when: "maxMd", platform: "touch", children: /* @__PURE__ */ (0, import_jsx_runtime55.jsxs)(import_tamagui63.Sheet, { modal: true, dismissOnSnapToBottom: true, snapPointsMode: "fit", children: [
|
|
3261
|
+
/* @__PURE__ */ (0, import_jsx_runtime55.jsx)(import_tamagui63.Sheet.Frame, { padding: "$4", children: /* @__PURE__ */ (0, import_jsx_runtime55.jsx)(import_tamagui63.Adapt.Contents, {}) }),
|
|
3262
|
+
/* @__PURE__ */ (0, import_jsx_runtime55.jsx)(import_tamagui63.Sheet.Overlay, {})
|
|
3263
|
+
] }) }),
|
|
3264
|
+
/* @__PURE__ */ (0, import_jsx_runtime55.jsxs)(import_tamagui63.Select.Content, { zIndex: 2e5, children: [
|
|
3265
|
+
/* @__PURE__ */ (0, import_jsx_runtime55.jsx)(import_tamagui63.Select.ScrollUpButton, { alignItems: "center", justifyContent: "center", height: "$3", children: /* @__PURE__ */ (0, import_jsx_runtime55.jsx)(import_tamagui63.SizableText, { children: "\u25B2" }) }),
|
|
3266
|
+
/* @__PURE__ */ (0, import_jsx_runtime55.jsx)(import_tamagui63.Select.Viewport, { minWidth: 200, children: /* @__PURE__ */ (0, import_jsx_runtime55.jsx)(import_tamagui63.Select.Group, { children: items.map((item, i) => /* @__PURE__ */ (0, import_jsx_runtime55.jsxs)(import_tamagui63.Select.Item, { index: i, value: item.value, children: [
|
|
3267
|
+
/* @__PURE__ */ (0, import_jsx_runtime55.jsx)(import_tamagui63.Select.ItemText, { children: item.label }),
|
|
3268
|
+
/* @__PURE__ */ (0, import_jsx_runtime55.jsx)(import_tamagui63.Select.ItemIndicator, { marginLeft: "auto", children: /* @__PURE__ */ (0, import_jsx_runtime55.jsx)(import_tamagui63.SizableText, { children: "\u2713" }) })
|
|
3269
|
+
] }, item.value)) }) }),
|
|
3270
|
+
/* @__PURE__ */ (0, import_jsx_runtime55.jsx)(import_tamagui63.Select.ScrollDownButton, { alignItems: "center", justifyContent: "center", height: "$3", children: /* @__PURE__ */ (0, import_jsx_runtime55.jsx)(import_tamagui63.SizableText, { children: "\u25BC" }) })
|
|
3271
|
+
] })
|
|
3272
|
+
]
|
|
3273
|
+
}
|
|
3274
|
+
);
|
|
3275
|
+
}
|
|
3276
|
+
|
|
3277
|
+
// src/patterns/BlinkDialog.tsx
|
|
3278
|
+
var import_tamagui64 = require("tamagui");
|
|
3279
|
+
var import_jsx_runtime56 = require("react/jsx-runtime");
|
|
3280
|
+
function BlinkDialog({
|
|
3281
|
+
open,
|
|
3282
|
+
onOpenChange,
|
|
3283
|
+
trigger,
|
|
3284
|
+
title,
|
|
3285
|
+
description,
|
|
3286
|
+
children,
|
|
3287
|
+
confirmLabel = "Confirm",
|
|
3288
|
+
cancelLabel = "Cancel",
|
|
3289
|
+
onConfirm,
|
|
3290
|
+
onCancel,
|
|
3291
|
+
confirmTheme = "active"
|
|
3292
|
+
}) {
|
|
3293
|
+
return /* @__PURE__ */ (0, import_jsx_runtime56.jsxs)(import_tamagui64.Dialog, { modal: true, open, onOpenChange, children: [
|
|
3294
|
+
trigger && /* @__PURE__ */ (0, import_jsx_runtime56.jsx)(import_tamagui64.Dialog.Trigger, { asChild: true, children: trigger }),
|
|
3295
|
+
/* @__PURE__ */ (0, import_jsx_runtime56.jsx)(import_tamagui64.Adapt, { when: "maxMd", platform: "touch", children: /* @__PURE__ */ (0, import_jsx_runtime56.jsxs)(import_tamagui64.Sheet, { modal: true, dismissOnSnapToBottom: true, snapPointsMode: "fit", children: [
|
|
3296
|
+
/* @__PURE__ */ (0, import_jsx_runtime56.jsx)(import_tamagui64.Sheet.Frame, { padding: "$4", gap: "$4", children: /* @__PURE__ */ (0, import_jsx_runtime56.jsx)(import_tamagui64.Adapt.Contents, {}) }),
|
|
3297
|
+
/* @__PURE__ */ (0, import_jsx_runtime56.jsx)(import_tamagui64.Sheet.Overlay, {})
|
|
3298
|
+
] }) }),
|
|
3299
|
+
/* @__PURE__ */ (0, import_jsx_runtime56.jsxs)(import_tamagui64.Dialog.Portal, { children: [
|
|
3300
|
+
/* @__PURE__ */ (0, import_jsx_runtime56.jsx)(
|
|
3301
|
+
import_tamagui64.Dialog.Overlay,
|
|
3302
|
+
{
|
|
3303
|
+
animation: "quick",
|
|
3304
|
+
opacity: 0.5,
|
|
3305
|
+
enterStyle: { opacity: 0 },
|
|
3306
|
+
exitStyle: { opacity: 0 }
|
|
3307
|
+
},
|
|
3308
|
+
"overlay"
|
|
3309
|
+
),
|
|
3310
|
+
/* @__PURE__ */ (0, import_jsx_runtime56.jsxs)(
|
|
3311
|
+
import_tamagui64.Dialog.Content,
|
|
3312
|
+
{
|
|
3313
|
+
bordered: true,
|
|
3314
|
+
elevate: true,
|
|
3315
|
+
animateOnly: ["transform", "opacity"],
|
|
3316
|
+
animation: ["quick", { opacity: { overshootClamping: true } }],
|
|
3317
|
+
enterStyle: { x: 0, y: -20, opacity: 0, scale: 0.9 },
|
|
3318
|
+
exitStyle: { x: 0, y: 10, opacity: 0, scale: 0.95 },
|
|
3319
|
+
gap: "$4",
|
|
3320
|
+
children: [
|
|
3321
|
+
title && /* @__PURE__ */ (0, import_jsx_runtime56.jsx)(import_tamagui64.Dialog.Title, { children: title }),
|
|
3322
|
+
description && /* @__PURE__ */ (0, import_jsx_runtime56.jsx)(import_tamagui64.Dialog.Description, { size: "$3", color: "$color10", children: description }),
|
|
3323
|
+
children,
|
|
3324
|
+
(onConfirm || onCancel) && /* @__PURE__ */ (0, import_jsx_runtime56.jsxs)(import_tamagui64.XStack, { justifyContent: "flex-end", gap: "$3", children: [
|
|
3325
|
+
onCancel && /* @__PURE__ */ (0, import_jsx_runtime56.jsx)(import_tamagui64.Dialog.Close, { displayWhenAdapted: true, asChild: true, children: /* @__PURE__ */ (0, import_jsx_runtime56.jsx)(import_tamagui64.Button, { variant: "outlined", onPress: onCancel, children: cancelLabel }) }),
|
|
3326
|
+
onConfirm && /* @__PURE__ */ (0, import_jsx_runtime56.jsx)(import_tamagui64.Dialog.Close, { displayWhenAdapted: true, asChild: true, children: /* @__PURE__ */ (0, import_jsx_runtime56.jsx)(import_tamagui64.Button, { theme: confirmTheme, onPress: onConfirm, children: confirmLabel }) })
|
|
3327
|
+
] })
|
|
3328
|
+
]
|
|
3329
|
+
},
|
|
3330
|
+
"content"
|
|
3331
|
+
)
|
|
3332
|
+
] })
|
|
3333
|
+
] });
|
|
3334
|
+
}
|
|
3335
|
+
|
|
3336
|
+
// src/patterns/BlinkPopover.tsx
|
|
3337
|
+
var import_tamagui65 = require("tamagui");
|
|
3338
|
+
var import_jsx_runtime57 = require("react/jsx-runtime");
|
|
3339
|
+
function BlinkPopover({
|
|
3340
|
+
trigger,
|
|
3341
|
+
children,
|
|
3342
|
+
placement = "bottom",
|
|
3343
|
+
allowFlip = true,
|
|
3344
|
+
size = "$5"
|
|
3345
|
+
}) {
|
|
3346
|
+
return /* @__PURE__ */ (0, import_jsx_runtime57.jsxs)(import_tamagui65.Popover, { size, allowFlip, placement, children: [
|
|
3347
|
+
/* @__PURE__ */ (0, import_jsx_runtime57.jsx)(import_tamagui65.Popover.Trigger, { asChild: true, children: trigger }),
|
|
3348
|
+
/* @__PURE__ */ (0, import_jsx_runtime57.jsx)(import_tamagui65.Adapt, { when: "maxMd", platform: "touch", children: /* @__PURE__ */ (0, import_jsx_runtime57.jsxs)(import_tamagui65.Popover.Sheet, { modal: true, dismissOnSnapToBottom: true, snapPointsMode: "fit", children: [
|
|
3349
|
+
/* @__PURE__ */ (0, import_jsx_runtime57.jsx)(import_tamagui65.Popover.Sheet.Frame, { padding: "$4", children: /* @__PURE__ */ (0, import_jsx_runtime57.jsx)(import_tamagui65.Adapt.Contents, {}) }),
|
|
3350
|
+
/* @__PURE__ */ (0, import_jsx_runtime57.jsx)(import_tamagui65.Popover.Sheet.Overlay, {})
|
|
3351
|
+
] }) }),
|
|
3352
|
+
/* @__PURE__ */ (0, import_jsx_runtime57.jsxs)(
|
|
3353
|
+
import_tamagui65.Popover.Content,
|
|
3354
|
+
{
|
|
3355
|
+
borderWidth: 1,
|
|
3356
|
+
borderColor: "$borderColor",
|
|
3357
|
+
enterStyle: { y: -10, opacity: 0 },
|
|
3358
|
+
exitStyle: { y: -10, opacity: 0 },
|
|
3359
|
+
elevate: true,
|
|
3360
|
+
animation: ["quick", { opacity: { overshootClamping: true } }],
|
|
3361
|
+
children: [
|
|
3362
|
+
/* @__PURE__ */ (0, import_jsx_runtime57.jsx)(import_tamagui65.Popover.Arrow, { borderWidth: 1, borderColor: "$borderColor" }),
|
|
3363
|
+
/* @__PURE__ */ (0, import_jsx_runtime57.jsx)(import_tamagui65.YStack, { gap: "$3", padding: "$3", children })
|
|
3364
|
+
]
|
|
3365
|
+
}
|
|
3366
|
+
)
|
|
3367
|
+
] });
|
|
3368
|
+
}
|
|
3235
3369
|
// Annotate the CommonJS export names for ESM import in node:
|
|
3236
3370
|
0 && (module.exports = {
|
|
3237
3371
|
Accordion,
|
|
@@ -3250,8 +3384,11 @@ function UserPreferences({ sections }) {
|
|
|
3250
3384
|
BlinkAvatar,
|
|
3251
3385
|
BlinkButton,
|
|
3252
3386
|
BlinkCard,
|
|
3387
|
+
BlinkDialog,
|
|
3253
3388
|
BlinkInput,
|
|
3389
|
+
BlinkPopover,
|
|
3254
3390
|
BlinkProvider,
|
|
3391
|
+
BlinkSelect,
|
|
3255
3392
|
BlinkTabs,
|
|
3256
3393
|
BlinkText,
|
|
3257
3394
|
BlinkToastProvider,
|