@inntechcorp/it-design 4.0.0-beta.4 → 4.0.0-beta.5
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/CHANGELOG.md +105 -0
- package/MIGRATION.md +13 -0
- package/README.md +182 -64
- package/dist/cjs/_bundled/vaul/dist/index.js +1 -1
- package/dist/cjs/blocks/user-hub/settings.js +1 -1
- package/dist/cjs/dialog/Dialog.js +1 -1
- package/dist/cjs/index.js +1 -1
- package/dist/css/login.css +1 -1
- package/dist/css/sheet.css +1 -1
- package/dist/css/signup.css +1 -0
- package/dist/css/user-hub.css +3 -1
- package/dist/es/_bundled/vaul/dist/index.js +1 -1
- package/dist/es/blocks/user-hub/settings.js +1 -1
- package/dist/es/dialog/Dialog.js +1 -1
- package/dist/es/index.js +1 -1
- package/dist/global.css +6 -4
- package/dist/index.d.ts +33 -4
- package/package.json +3 -2
package/dist/index.d.ts
CHANGED
|
@@ -2280,7 +2280,7 @@ declare const Input: react.ForwardRefExoticComponent<Omit<react.InputHTMLAttribu
|
|
|
2280
2280
|
* stray drag are intercepted, the real input is held collapsed, and the
|
|
2281
2281
|
* highlight is drawn on the cells instead.
|
|
2282
2282
|
*/
|
|
2283
|
-
declare const CodeInput: react.ForwardRefExoticComponent<Omit<react.InputHTMLAttributes<HTMLInputElement>, "className" | "id" | "defaultValue" | "value" | "size" | "placeholder" | "disabled" | "onChange" | "
|
|
2283
|
+
declare const CodeInput: react.ForwardRefExoticComponent<Omit<react.InputHTMLAttributes<HTMLInputElement>, "className" | "id" | "defaultValue" | "value" | "size" | "placeholder" | "disabled" | "onChange" | "readOnly" | "onFocus" | "onBlur" | "type" | "autoComplete" | "maxLength" | "autoFocus" | "inputMode" | "onSelect"> & {
|
|
2284
2284
|
id?: string;
|
|
2285
2285
|
length?: number;
|
|
2286
2286
|
value?: string;
|
|
@@ -2986,7 +2986,7 @@ type RadioGroupItemProps = Omit<InputHTMLAttributes<HTMLInputElement>, 'type' |
|
|
|
2986
2986
|
* - no children — just the dot; compose labels, descriptions and choice-cards
|
|
2987
2987
|
* with the `Field` family (`FieldLabel htmlFor`).
|
|
2988
2988
|
*/
|
|
2989
|
-
declare const RadioGroupItem: react.ForwardRefExoticComponent<Omit<InputHTMLAttributes<HTMLInputElement>, "value" | "size" | "onChange" | "
|
|
2989
|
+
declare const RadioGroupItem: react.ForwardRefExoticComponent<Omit<InputHTMLAttributes<HTMLInputElement>, "value" | "size" | "onChange" | "checked" | "type" | "name" | "defaultChecked"> & {
|
|
2990
2990
|
/** The value this item selects in the enclosing group. */
|
|
2991
2991
|
value: string;
|
|
2992
2992
|
} & react.RefAttributes<HTMLInputElement>>;
|
|
@@ -8047,6 +8047,35 @@ declare const HubNotificationPrefs: ({ intro, header, prefs, onToggle, saveLabel
|
|
|
8047
8047
|
saveLabel?: string;
|
|
8048
8048
|
onSave?: () => void;
|
|
8049
8049
|
}) => react_jsx_runtime.JSX.Element;
|
|
8050
|
+
/** One identity/method row of the security screen (auth canvas 13). */
|
|
8051
|
+
type HubSecurityRow = {
|
|
8052
|
+
id: string;
|
|
8053
|
+
/** "Phone", "Password", "Passkeys" */
|
|
8054
|
+
label: ReactNode;
|
|
8055
|
+
/** the value, or the not-set sentence ("Not set. You sign in with codes") */
|
|
8056
|
+
value?: ReactNode;
|
|
8057
|
+
/** the state badge beside the value - "Verified" / "Unverified" */
|
|
8058
|
+
status?: {
|
|
8059
|
+
label: string;
|
|
8060
|
+
tone?: HubStatusTone;
|
|
8061
|
+
};
|
|
8062
|
+
/** the row's one action - "Verify", "Link", "Set password", "Add" */
|
|
8063
|
+
action?: string;
|
|
8064
|
+
};
|
|
8065
|
+
/**
|
|
8066
|
+
* UserHub - Sign-in & security (auth canvas, screen 13): the account's
|
|
8067
|
+
* identities and sign-in methods as rows - value, state badge, one action.
|
|
8068
|
+
* Presentational like its siblings: every request is the consumer's, the
|
|
8069
|
+
* click comes back with the row's id. The note at the foot carries the
|
|
8070
|
+
* architecture's promise ("verified contact info is never taken back;
|
|
8071
|
+
* methods upgrade, never downgrade") - copy is the consumer's.
|
|
8072
|
+
*/
|
|
8073
|
+
declare const HubSecurity: ({ header, rows, note, onAction, }: {
|
|
8074
|
+
header?: ReactNode;
|
|
8075
|
+
rows: HubSecurityRow[];
|
|
8076
|
+
note?: ReactNode;
|
|
8077
|
+
onAction?: (id: string) => void;
|
|
8078
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
8050
8079
|
|
|
8051
8080
|
/**
|
|
8052
8081
|
* UserHub — Account history pages (Hesap Geçmişi tabs): game history, payment
|
|
@@ -11028,5 +11057,5 @@ declare const resources: {
|
|
|
11028
11057
|
};
|
|
11029
11058
|
};
|
|
11030
11059
|
|
|
11031
|
-
export { _default as ALink, Accordion, AddDefaultThemeStyle, AddDefaultUnit, AddZero, Alert, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogTitle, AlertDialogTrigger, AlertTitle, Amount, AnnouncementBar, Arrow as ArrowIcon, Avatar, AvatarFallback, AvatarImage, BLOCK_ENTRIES, BLOCK_MANIFEST, BackToTop, BackTop, Badge, Banner, Base64Decode, Base64Encode, BlockForm, BlockPreview, BoxTitle, Button, ButtonGroup, ButtonGroupText, ButtonSizes, ButtonSizesSlug, ButtonTypes, Calendar, Card, CardAction, CardContent, CardDescription, CardFooter, CardHeader, CardTabs, CardTitle, CasinoFeatured, CasinoFeaturedWinners, CategoryChip, CheckFileURL, Checkbox, Checkmark, ChunkArray, CodeEditor, CodeInput, ColorInput, ComingSoon, ComponentPositions, ComponentSizes, ComponentSizesSlug, ComponentVariants, ComponentXPositions, ComponentYPositions, ConnectionStatus, ConsoleLog, ContextMenu, DropdownMenuCheckboxItem as ContextMenuCheckboxItem, DropdownMenuContent as ContextMenuContent, DropdownMenuItem as ContextMenuItem, DropdownMenuLabel as ContextMenuLabel, DropdownMenuRadioGroup as ContextMenuRadioGroup, DropdownMenuRadioItem as ContextMenuRadioItem, DropdownMenuSeparator as ContextMenuSeparator, DropdownMenuSub as ContextMenuSub, DropdownMenuSubContent as ContextMenuSubContent, DropdownMenuSubTrigger as ContextMenuSubTrigger, ContextMenuTrigger, ConvertCurrency, DatePicker, DefaultAvatar, DetectPlatform, DetermineNewHeight, DetermineNewWidth, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, DialogTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuItem, DropdownMenuLabel, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, FeaturedGames, Field, FieldContent, FieldDescription, FieldError, FieldGroup, FieldLabel, FieldLegend, FieldSeparator, FieldSet, FieldTitle, FileChecker, FileDocument, FileExcel, FileExtensions, FilePdf, FileTypes, FilterTabs, FindSelector, Flex, Footer, Form, FormDefaultsContext, FormValidationTypes, FormValidations, FormatBytes, FormatDate, FormatDateTime, FormatSimpleDate, FormatSimpleDateTime, FormatTime, GameBox, GameCarousel, GameCategories, GameProviders, GameShell, GameShellBrowse, GameShellSettings, GameShellSwipeHint, GamesGrid, generateColorScaleFromBase as GenerateColorScale, GetByCurrency, GetClassNameByPlatform, GetCountryCodeByCurrencyCode, GetCountryCodeByLanguage, GetCurrencyFormat, GetCurrencySymbol, GetDecimalByCurrency, GetPlatform, GetTypeByFileType, H1, H2, H3, H4, HUB_NAME_KEYS, HUB_PRIZE_TONE, HUB_STATUS_TONE, Header, Help, HoverCard, HoverCardContent, HoverCardTrigger, HubAccountModal, HubActiveBonus, HubBonusActivation, HubBonusHistory, HubBonusRequest, HubChangePassword, HubComingSoon, HubCopyBtn, HubDepositModal, HubDepositPage, HubDt, HubFreespinActivation, HubFreespinHistory, HubGameHistory, HubHistName, HubMedalButton, HubMedalDetail, HubMedals, HubMessageInbox, HubNewTicketForm, HubNotificationPrefs, HubPayFieldRow, HubPayFilter, HubPayLogoBadge, HubPayModalCard, HubPayModalTiles, HubPayName, HubPaymentHistory, HubPrizesModal, HubProfileSummary, HubRaffleActive, HubRaffleJoined, HubSettingsDetails, HubStatistics, HubStatusBadge, HubStatusCard, HubTable, HubTicketThread, HubTicketsModal, HubVipClub, HubVipLevels, HubWithdrawModal, HubWithdrawPage, ITDContext, ITDLink, ITDProvider, ITDRouterContext, ITDThemeProvider, _default$1 as Image, ImageCropper, InitPlatform, _default$2 as InlineSVGCached, InlineSelectArrow, Input, IsValidJSON, KNOWN_BLOCKS, Label, LayoutBoxes, LineChart, Lock as LockIcon, MaskProvider, MegaMenu, MinWidthGate, MobileBottomNav, MobileGameCategories, MobileGameFilter, MobileGameNavigator, MobileGameSearch, MobileLastWinners, ModalManager, ModalState, MultipleJackpots, NoData, NotificationsPanel, PAGE_BACKGROUND_FIELDS, PAGE_EDITOR_CHANNEL, PAGE_EDITOR_PROTOCOL, PAGE_SETTLE_DEADLINE, PAGE_TYPES, PHONE_COUNTRIES, PageBackground, PageCustomCode, PageProvider, PageRenderer, Picture, PlatformTypes, Popover, PopoverContent, PopoverTrigger, PortalDocumentProvider, PostViewer, Progress, PromotionsGrid, RadioGroup, RadioGroupItem, Raffle, RaffleShowcase, RangePicker, RemoveUnits, Result, SITE_THEME_DEFAULTS, SITE_THEME_FIELDS, SVGLoader, SVGUrlToPNGDataUrl, Select, SelectGroup, SelectItem, SelectLabel, SelectSeparator, Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger, Skeleton, Slider, SliderDouble, Spacer, Spin, StatCard, SubPageHeader, Switch, Table$1 as Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, Table as TablePrimitive, TableRow as TableRowPrimitive, TableWrapper, Tabs, TabsContent, TabsList, TabsTrigger, TextArea, ThemeAppearances, TinyScrollbar, Toaster, ToggleGroup, ToggleGroupItem, TokenSetError, Tooltip, TooltipContent, TooltipPositions, TooltipTrigger, TournamentCard, TournamentDetail, TournamentList, Tournaments, Trash, TriggerTypes, UniUpperCase, Upload, Upload$1 as UploadIcon, UserHub, Wait, ZoomIn, ZoomOut, actionHasTarget, applyLayout, applySampleImages, applySampleRefs, applyTouchMode, arrayMove, blockName, blocksForPageType, cn, darkTheme, decodeCustomCode, defaultData, defineITDConfig, defineTokenSet, dropTargetAt, editableBlock, export_default as enCalendarLocale, findCssError, generateColorScaleFromBase, getContrastText, getPhoneCountry, hexToRgba, hubVipMedalSrc, importShadcnTheme, injectThemeColors, isPhoneComplete, isTouchDevice, lightTheme, locales, lockScroll, matchActive, moveIndex, normalizeAction, pageBackgroundFields, pageBlocks, pageChecks, pageKey, pageTypeLabel, pageVisibility, parseCustomCode, pathnameOf, phoneDigits, phoneLength, pushOverlayLayer, readField, realmOf, resolveSiteTheme, resolveTokenSet, resources, sampleAnswer, sampleArt, sampleSlider, toE164, toKebabCase, toTurkishTitleCase, export_default$1 as trCalendarLocale, unwrap, useActionProps, useAddExternalCSS, useAmountMask, useAvoidCollision, useComponentSize, useConnectionStatus, useConstructor, useContextBridge, useCoreFetch, useDefaultVariant, useEditorBridge, useHubMobile, useITD, useITDHref, useITDLocation, useITDNavigate, useITDRouterAdapter, useITDSearchParams, useKeyboardShortcut, useMediaQuery, useModal, useModalContent, useMultiQuery, useNaturalRatio, useNotificationsFeed, useOnClickOutside, useOnESCKeyDown, useOnResize, useOrientation, usePageContext, usePhoneCountry, usePortalDocument, useReCaptcha, useRealm, useScrollLock, useSingleQuery, useViewer, validateTokenSet, withOpacity, worstLevel, wrap, writeField };
|
|
11032
|
-
export type { AccordionItemProps, AccordionProps, AccordionSubMenuProps, AlertDialogContentProps, AlertProps, AlertType, AmountMaskContextValue, AmountProps, AnnouncementBarHideMode, AnnouncementBarProps, BadgeColor, BadgeProps, BadgeVariant, BannerProps, BlockFormProps, BlockKind, BlockManifestEntry, BlockNotification, BlockPreviewProps, BoxTitleProps, ButtonGroupOrientation, ButtonGroupProps, ButtonGroupTextProps, ButtonGroupVariant, ButtonProps, ButtonSize, ButtonStates, ButtonVariants, CalendarDayProps, CalendarLocale, CalendarProps, CalendarValueProps, CardProps, CasinoFeaturedItem, CasinoFeaturedProps, CasinoFeaturedTournament, CasinoWinnersProps, ChartSeries, CheckCode, CheckLevel, CheckboxEvent, CheckboxGroupProps, CheckboxProps, CodeEditorProps, CodeInputProps, ComingSoonProps, DropdownMenuCheckboxItemProps as ContextMenuCheckboxItemProps, DropdownMenuContentProps as ContextMenuContentProps, DropdownMenuItemProps as ContextMenuItemProps, DropdownMenuLabelProps as ContextMenuLabelProps, ContextMenuProps, DropdownMenuRadioGroupProps as ContextMenuRadioGroupProps, DropdownMenuRadioItemProps as ContextMenuRadioItemProps, DropdownMenuSeparatorProps as ContextMenuSeparatorProps, DropdownMenuSubContentProps$1 as ContextMenuSubContentProps, DropdownMenuSubProps$1 as ContextMenuSubProps, DropdownMenuSubTriggerProps as ContextMenuSubTriggerProps, ContextMenuTriggerProps, CropArea, CropSettings, DatePickerProps, DialogSide, DropTarget, DropdownMenuCheckboxItemProps, DropdownMenuContentProps, DropdownMenuItemProps, DropdownMenuLabelProps, DropdownMenuProps, DropdownMenuRadioGroupProps, DropdownMenuRadioItemProps, DropdownMenuSeparatorProps, DropdownMenuSubContentProps$1 as DropdownMenuSubContentProps, DropdownMenuSubProps$1 as DropdownMenuSubProps, DropdownMenuSubTriggerProps, DropdownMenuTriggerProps, EditorBlockRect, EditorBridge, EditorBridgeOptions, EditorCommand, EditorEnvelope, EditorEvent, EditorRect, FeaturedGamesProps, FieldLegendProps, FieldOption, FieldProps, FieldSchema, FieldSource, FieldUpdateProps, FieldsSchema, FilterTabOption, FilterTabsProps, FlexAlignProps, FlexGapProps, FlexJustifyProps, FlexProps, FooterApp, FooterLink, FooterProps, FooterSeal, FooterSitemapGroup, FooterSocial, FormContextType, FormDefaults, FormItemProps, FormProps, FormRuleProps, FormSubComponentProps, FormValueProps, GameBoxLiveData, GameBoxProps, GameBrowseGame, GameBrowseJackpot, GameBrowseProvider, GameBrowseTab, GameBrowseWinner, GameCarouselProps, GameCategoriesProps, GameCategory, GameFilterSort, GameProvider, GameProvidersProps, GameShellBrowseProps, GameShellContent, GameShellNotice, GameShellProps, GameShellSettingsAction, GameShellSettingsProps, GameShellSwipeHintProps, GamesGridProps, GroupCheckboxOptionType, HeaderLanguage, HeaderNavItem, HeaderProps, HeaderUser, HelpProps, HelpSection, HubActiveBonusData, HubBonusActRow, HubBonusReqRow, HubBonusRow, HubFsActRow, HubFsRow, HubGameRow, HubGameStat, HubHistFilter, HubMedal, HubMsg, HubPayField, HubPayFilterOption, HubPayHRow, HubPayLogo, HubPayMethod, HubPayRow, HubPayTableRow, HubPrizeTone, HubRafflePrize, HubRaffleRow, HubRewardTier, HubRewardTip, HubSettingsField, HubSettingsGroup, HubStat, HubStatusField, HubStatusTone, HubTableMarker, HubTicket, HubTopSlot, HubTypeFieldMap, HubVipArt, HubVipBonus, HubVipGroup, HubVipHero, HubVipLevel, HubVipSummary, HubVipTier, HubWagerRow, HubWdAccount, ITDContextType, ITDHorizontalPosition, ITDImperativeFuncProps, ITDImportConfig, ITDInitConfig, ITDLinkProps, ITDLinkRenderProps, ITDLocation, ITDNavigateOptions, ITDProviderProps, ITDRouterAdapter, ITDSize, ITDSizeSlug, ITDTheme, ITDVariant, ITDVerticalPosition, ImageCropperProps, ImageCropperRef, InputProps, InputVariant, ItdAction, ItdActionKind, JackpotGame, JackpotSlide, JackpotTier, JackpotTierStats, JackpotWin, LabelProps, LayoutBoxesProps, LineChartProps, MaskProviderProps, MatchActiveOptions, MegaMenuEntry, MegaMenuLink, MegaMenuProps, MinWidthGateProps, MobileBottomNavItem, MobileBottomNavProps, MobileGameCategoriesProps, MobileGameFilterProps, MobileGameNavigatorProps, MobileGameSearchProps, MobileLastWinner, MobileLastWinnersProps, ModalContentProps, ModalProps, ModalRefProps, MultipleJackpotsProps, NotificationsFeed, NotificationsSource, OverlayLayerHandle, OverlayLayerOptions, PageAudience, PageBackground$1 as PageBackgroundData, PageCheckFinding, PageCheckInput, PageComponent, PageContextValue, PageCustomCodes, PageDocument, PageGame, PageLabels, PageLayout, PageLayoutPages, PagePayload, PagePlatform, PageQueryResult, PageRefs, PageRenderMode, PageRendererProps, PageStatus, PageType, PageViewer, PhoneCountry, PopoverProps, PostViewerBlock, ProgressProps, ProgressStatus, PromotionCardData, PromotionsGridProps, QueryValueProps, RadioGroupItemProps, RadioGroupProps, RaffleData, RaffleParticipant, RafflePrize, RangePickerProps, RangePreset, RangeValue, RangeValueProps, Realm, ResolvedSiteTheme, ResultProps, SampleSource, SelectOptionProps, SelectProps, SelectToggleProps, SelectValue, SeparatorProps, ShadcnImportResult, SheetContentProps, SheetSide, SingleQueryProps, SiteChromeSettings, SiteThemeSettings, SkeletonAnimation, SkeletonProps, SkeletonVariant, SliderDoubleProps, SliderProps, SliderRef, SliderSlide, SpacerProps, StatCardProps, StatCardTrend, SubPageHeaderProps, SvgToPngOptions, SwitchProps, TableColumnType, TableProps, TableRefProps, TableRow$1 as TableRow, TableSortDirection, TableSortMode, TableSortState, TableTRProps, TabsContentProps, TabsListProps, TabsOrientation, TabsProps, TabsTriggerProps, TabsVariant, TextAreaEvent, TextAreaProps, TextAreaVariant, ToasterProps, ToggleGroupItemProps, ToggleGroupProps, TokenDef, TokenSet, Tournament, TournamentFilter, TournamentGame, TournamentPrizeRow, TournamentStanding, TournamentStatBox, TournamentStatus, UploadProgressProps, UploadProps, UploadResultMessageProps, UserHubBalance, UserHubBalanceRow, UserHubNavItem, UserHubProps, UserHubTab };
|
|
11060
|
+
export { _default as ALink, Accordion, AddDefaultThemeStyle, AddDefaultUnit, AddZero, Alert, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogTitle, AlertDialogTrigger, AlertTitle, Amount, AnnouncementBar, Arrow as ArrowIcon, Avatar, AvatarFallback, AvatarImage, BLOCK_ENTRIES, BLOCK_MANIFEST, BackToTop, BackTop, Badge, Banner, Base64Decode, Base64Encode, BlockForm, BlockPreview, BoxTitle, Button, ButtonGroup, ButtonGroupText, ButtonSizes, ButtonSizesSlug, ButtonTypes, Calendar, Card, CardAction, CardContent, CardDescription, CardFooter, CardHeader, CardTabs, CardTitle, CasinoFeatured, CasinoFeaturedWinners, CategoryChip, CheckFileURL, Checkbox, Checkmark, ChunkArray, CodeEditor, CodeInput, ColorInput, ComingSoon, ComponentPositions, ComponentSizes, ComponentSizesSlug, ComponentVariants, ComponentXPositions, ComponentYPositions, ConnectionStatus, ConsoleLog, ContextMenu, DropdownMenuCheckboxItem as ContextMenuCheckboxItem, DropdownMenuContent as ContextMenuContent, DropdownMenuItem as ContextMenuItem, DropdownMenuLabel as ContextMenuLabel, DropdownMenuRadioGroup as ContextMenuRadioGroup, DropdownMenuRadioItem as ContextMenuRadioItem, DropdownMenuSeparator as ContextMenuSeparator, DropdownMenuSub as ContextMenuSub, DropdownMenuSubContent as ContextMenuSubContent, DropdownMenuSubTrigger as ContextMenuSubTrigger, ContextMenuTrigger, ConvertCurrency, DatePicker, DefaultAvatar, DetectPlatform, DetermineNewHeight, DetermineNewWidth, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, DialogTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuItem, DropdownMenuLabel, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, FeaturedGames, Field, FieldContent, FieldDescription, FieldError, FieldGroup, FieldLabel, FieldLegend, FieldSeparator, FieldSet, FieldTitle, FileChecker, FileDocument, FileExcel, FileExtensions, FilePdf, FileTypes, FilterTabs, FindSelector, Flex, Footer, Form, FormDefaultsContext, FormValidationTypes, FormValidations, FormatBytes, FormatDate, FormatDateTime, FormatSimpleDate, FormatSimpleDateTime, FormatTime, GameBox, GameCarousel, GameCategories, GameProviders, GameShell, GameShellBrowse, GameShellSettings, GameShellSwipeHint, GamesGrid, generateColorScaleFromBase as GenerateColorScale, GetByCurrency, GetClassNameByPlatform, GetCountryCodeByCurrencyCode, GetCountryCodeByLanguage, GetCurrencyFormat, GetCurrencySymbol, GetDecimalByCurrency, GetPlatform, GetTypeByFileType, H1, H2, H3, H4, HUB_NAME_KEYS, HUB_PRIZE_TONE, HUB_STATUS_TONE, Header, Help, HoverCard, HoverCardContent, HoverCardTrigger, HubAccountModal, HubActiveBonus, HubBonusActivation, HubBonusHistory, HubBonusRequest, HubChangePassword, HubComingSoon, HubCopyBtn, HubDepositModal, HubDepositPage, HubDt, HubFreespinActivation, HubFreespinHistory, HubGameHistory, HubHistName, HubMedalButton, HubMedalDetail, HubMedals, HubMessageInbox, HubNewTicketForm, HubNotificationPrefs, HubPayFieldRow, HubPayFilter, HubPayLogoBadge, HubPayModalCard, HubPayModalTiles, HubPayName, HubPaymentHistory, HubPrizesModal, HubProfileSummary, HubRaffleActive, HubRaffleJoined, HubSecurity, HubSettingsDetails, HubStatistics, HubStatusBadge, HubStatusCard, HubTable, HubTicketThread, HubTicketsModal, HubVipClub, HubVipLevels, HubWithdrawModal, HubWithdrawPage, ITDContext, ITDLink, ITDProvider, ITDRouterContext, ITDThemeProvider, _default$1 as Image, ImageCropper, InitPlatform, _default$2 as InlineSVGCached, InlineSelectArrow, Input, IsValidJSON, KNOWN_BLOCKS, Label, LayoutBoxes, LineChart, Lock as LockIcon, MaskProvider, MegaMenu, MinWidthGate, MobileBottomNav, MobileGameCategories, MobileGameFilter, MobileGameNavigator, MobileGameSearch, MobileLastWinners, ModalManager, ModalState, MultipleJackpots, NoData, NotificationsPanel, PAGE_BACKGROUND_FIELDS, PAGE_EDITOR_CHANNEL, PAGE_EDITOR_PROTOCOL, PAGE_SETTLE_DEADLINE, PAGE_TYPES, PHONE_COUNTRIES, PageBackground, PageCustomCode, PageProvider, PageRenderer, Picture, PlatformTypes, Popover, PopoverContent, PopoverTrigger, PortalDocumentProvider, PostViewer, Progress, PromotionsGrid, RadioGroup, RadioGroupItem, Raffle, RaffleShowcase, RangePicker, RemoveUnits, Result, SITE_THEME_DEFAULTS, SITE_THEME_FIELDS, SVGLoader, SVGUrlToPNGDataUrl, Select, SelectGroup, SelectItem, SelectLabel, SelectSeparator, Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger, Skeleton, Slider, SliderDouble, Spacer, Spin, StatCard, SubPageHeader, Switch, Table$1 as Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, Table as TablePrimitive, TableRow as TableRowPrimitive, TableWrapper, Tabs, TabsContent, TabsList, TabsTrigger, TextArea, ThemeAppearances, TinyScrollbar, Toaster, ToggleGroup, ToggleGroupItem, TokenSetError, Tooltip, TooltipContent, TooltipPositions, TooltipTrigger, TournamentCard, TournamentDetail, TournamentList, Tournaments, Trash, TriggerTypes, UniUpperCase, Upload, Upload$1 as UploadIcon, UserHub, Wait, ZoomIn, ZoomOut, actionHasTarget, applyLayout, applySampleImages, applySampleRefs, applyTouchMode, arrayMove, blockName, blocksForPageType, cn, darkTheme, decodeCustomCode, defaultData, defineITDConfig, defineTokenSet, dropTargetAt, editableBlock, export_default as enCalendarLocale, findCssError, generateColorScaleFromBase, getContrastText, getPhoneCountry, hexToRgba, hubVipMedalSrc, importShadcnTheme, injectThemeColors, isPhoneComplete, isTouchDevice, lightTheme, locales, lockScroll, matchActive, moveIndex, normalizeAction, pageBackgroundFields, pageBlocks, pageChecks, pageKey, pageTypeLabel, pageVisibility, parseCustomCode, pathnameOf, phoneDigits, phoneLength, pushOverlayLayer, readField, realmOf, resolveSiteTheme, resolveTokenSet, resources, sampleAnswer, sampleArt, sampleSlider, toE164, toKebabCase, toTurkishTitleCase, export_default$1 as trCalendarLocale, unwrap, useActionProps, useAddExternalCSS, useAmountMask, useAvoidCollision, useComponentSize, useConnectionStatus, useConstructor, useContextBridge, useCoreFetch, useDefaultVariant, useEditorBridge, useHubMobile, useITD, useITDHref, useITDLocation, useITDNavigate, useITDRouterAdapter, useITDSearchParams, useKeyboardShortcut, useMediaQuery, useModal, useModalContent, useMultiQuery, useNaturalRatio, useNotificationsFeed, useOnClickOutside, useOnESCKeyDown, useOnResize, useOrientation, usePageContext, usePhoneCountry, usePortalDocument, useReCaptcha, useRealm, useScrollLock, useSingleQuery, useViewer, validateTokenSet, withOpacity, worstLevel, wrap, writeField };
|
|
11061
|
+
export type { AccordionItemProps, AccordionProps, AccordionSubMenuProps, AlertDialogContentProps, AlertProps, AlertType, AmountMaskContextValue, AmountProps, AnnouncementBarHideMode, AnnouncementBarProps, BadgeColor, BadgeProps, BadgeVariant, BannerProps, BlockFormProps, BlockKind, BlockManifestEntry, BlockNotification, BlockPreviewProps, BoxTitleProps, ButtonGroupOrientation, ButtonGroupProps, ButtonGroupTextProps, ButtonGroupVariant, ButtonProps, ButtonSize, ButtonStates, ButtonVariants, CalendarDayProps, CalendarLocale, CalendarProps, CalendarValueProps, CardProps, CasinoFeaturedItem, CasinoFeaturedProps, CasinoFeaturedTournament, CasinoWinnersProps, ChartSeries, CheckCode, CheckLevel, CheckboxEvent, CheckboxGroupProps, CheckboxProps, CodeEditorProps, CodeInputProps, ComingSoonProps, DropdownMenuCheckboxItemProps as ContextMenuCheckboxItemProps, DropdownMenuContentProps as ContextMenuContentProps, DropdownMenuItemProps as ContextMenuItemProps, DropdownMenuLabelProps as ContextMenuLabelProps, ContextMenuProps, DropdownMenuRadioGroupProps as ContextMenuRadioGroupProps, DropdownMenuRadioItemProps as ContextMenuRadioItemProps, DropdownMenuSeparatorProps as ContextMenuSeparatorProps, DropdownMenuSubContentProps$1 as ContextMenuSubContentProps, DropdownMenuSubProps$1 as ContextMenuSubProps, DropdownMenuSubTriggerProps as ContextMenuSubTriggerProps, ContextMenuTriggerProps, CropArea, CropSettings, DatePickerProps, DialogSide, DropTarget, DropdownMenuCheckboxItemProps, DropdownMenuContentProps, DropdownMenuItemProps, DropdownMenuLabelProps, DropdownMenuProps, DropdownMenuRadioGroupProps, DropdownMenuRadioItemProps, DropdownMenuSeparatorProps, DropdownMenuSubContentProps$1 as DropdownMenuSubContentProps, DropdownMenuSubProps$1 as DropdownMenuSubProps, DropdownMenuSubTriggerProps, DropdownMenuTriggerProps, EditorBlockRect, EditorBridge, EditorBridgeOptions, EditorCommand, EditorEnvelope, EditorEvent, EditorRect, FeaturedGamesProps, FieldLegendProps, FieldOption, FieldProps, FieldSchema, FieldSource, FieldUpdateProps, FieldsSchema, FilterTabOption, FilterTabsProps, FlexAlignProps, FlexGapProps, FlexJustifyProps, FlexProps, FooterApp, FooterLink, FooterProps, FooterSeal, FooterSitemapGroup, FooterSocial, FormContextType, FormDefaults, FormItemProps, FormProps, FormRuleProps, FormSubComponentProps, FormValueProps, GameBoxLiveData, GameBoxProps, GameBrowseGame, GameBrowseJackpot, GameBrowseProvider, GameBrowseTab, GameBrowseWinner, GameCarouselProps, GameCategoriesProps, GameCategory, GameFilterSort, GameProvider, GameProvidersProps, GameShellBrowseProps, GameShellContent, GameShellNotice, GameShellProps, GameShellSettingsAction, GameShellSettingsProps, GameShellSwipeHintProps, GamesGridProps, GroupCheckboxOptionType, HeaderLanguage, HeaderNavItem, HeaderProps, HeaderUser, HelpProps, HelpSection, HubActiveBonusData, HubBonusActRow, HubBonusReqRow, HubBonusRow, HubFsActRow, HubFsRow, HubGameRow, HubGameStat, HubHistFilter, HubMedal, HubMsg, HubPayField, HubPayFilterOption, HubPayHRow, HubPayLogo, HubPayMethod, HubPayRow, HubPayTableRow, HubPrizeTone, HubRafflePrize, HubRaffleRow, HubRewardTier, HubRewardTip, HubSecurityRow, HubSettingsField, HubSettingsGroup, HubStat, HubStatusField, HubStatusTone, HubTableMarker, HubTicket, HubTopSlot, HubTypeFieldMap, HubVipArt, HubVipBonus, HubVipGroup, HubVipHero, HubVipLevel, HubVipSummary, HubVipTier, HubWagerRow, HubWdAccount, ITDContextType, ITDHorizontalPosition, ITDImperativeFuncProps, ITDImportConfig, ITDInitConfig, ITDLinkProps, ITDLinkRenderProps, ITDLocation, ITDNavigateOptions, ITDProviderProps, ITDRouterAdapter, ITDSize, ITDSizeSlug, ITDTheme, ITDVariant, ITDVerticalPosition, ImageCropperProps, ImageCropperRef, InputProps, InputVariant, ItdAction, ItdActionKind, JackpotGame, JackpotSlide, JackpotTier, JackpotTierStats, JackpotWin, LabelProps, LayoutBoxesProps, LineChartProps, MaskProviderProps, MatchActiveOptions, MegaMenuEntry, MegaMenuLink, MegaMenuProps, MinWidthGateProps, MobileBottomNavItem, MobileBottomNavProps, MobileGameCategoriesProps, MobileGameFilterProps, MobileGameNavigatorProps, MobileGameSearchProps, MobileLastWinner, MobileLastWinnersProps, ModalContentProps, ModalProps, ModalRefProps, MultipleJackpotsProps, NotificationsFeed, NotificationsSource, OverlayLayerHandle, OverlayLayerOptions, PageAudience, PageBackground$1 as PageBackgroundData, PageCheckFinding, PageCheckInput, PageComponent, PageContextValue, PageCustomCodes, PageDocument, PageGame, PageLabels, PageLayout, PageLayoutPages, PagePayload, PagePlatform, PageQueryResult, PageRefs, PageRenderMode, PageRendererProps, PageStatus, PageType, PageViewer, PhoneCountry, PopoverProps, PostViewerBlock, ProgressProps, ProgressStatus, PromotionCardData, PromotionsGridProps, QueryValueProps, RadioGroupItemProps, RadioGroupProps, RaffleData, RaffleParticipant, RafflePrize, RangePickerProps, RangePreset, RangeValue, RangeValueProps, Realm, ResolvedSiteTheme, ResultProps, SampleSource, SelectOptionProps, SelectProps, SelectToggleProps, SelectValue, SeparatorProps, ShadcnImportResult, SheetContentProps, SheetSide, SingleQueryProps, SiteChromeSettings, SiteThemeSettings, SkeletonAnimation, SkeletonProps, SkeletonVariant, SliderDoubleProps, SliderProps, SliderRef, SliderSlide, SpacerProps, StatCardProps, StatCardTrend, SubPageHeaderProps, SvgToPngOptions, SwitchProps, TableColumnType, TableProps, TableRefProps, TableRow$1 as TableRow, TableSortDirection, TableSortMode, TableSortState, TableTRProps, TabsContentProps, TabsListProps, TabsOrientation, TabsProps, TabsTriggerProps, TabsVariant, TextAreaEvent, TextAreaProps, TextAreaVariant, ToasterProps, ToggleGroupItemProps, ToggleGroupProps, TokenDef, TokenSet, Tournament, TournamentFilter, TournamentGame, TournamentPrizeRow, TournamentStanding, TournamentStatBox, TournamentStatus, UploadProgressProps, UploadProps, UploadResultMessageProps, UserHubBalance, UserHubBalanceRow, UserHubNavItem, UserHubProps, UserHubTab };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@inntechcorp/it-design",
|
|
3
|
-
"version": "4.0.0-beta.
|
|
3
|
+
"version": "4.0.0-beta.5",
|
|
4
4
|
"description": "All in one Design library for web applications.",
|
|
5
5
|
"author": "Inn.Tech",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -21,7 +21,8 @@
|
|
|
21
21
|
"files": [
|
|
22
22
|
"dist",
|
|
23
23
|
"ACCESSIBILITY.md",
|
|
24
|
-
"MIGRATION.md"
|
|
24
|
+
"MIGRATION.md",
|
|
25
|
+
"CHANGELOG.md"
|
|
25
26
|
],
|
|
26
27
|
"scripts": {
|
|
27
28
|
"build": "rm -rf dist && rollup -c --bundleConfigAsCjs && node scripts/postbuild.mjs",
|