@tapizlabs/ui 0.2.12 → 0.2.13
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.ts +55 -27
- package/dist/index.js +633 -533
- package/dist/index.js.map +1 -1
- package/dist/theme.css +244 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -637,22 +637,26 @@ interface DataTableProps<T> {
|
|
|
637
637
|
*/
|
|
638
638
|
declare function DataTable<T>({ data, columns, rowKey, isLoading, emptyState, onRowClick, loadingRows, rowActions, serverSort, footer, mobileCard, density, variant, stickyHeader, striped, className, }: DataTableProps<T>): react.JSX.Element;
|
|
639
639
|
|
|
640
|
-
interface
|
|
641
|
-
children: ReactNode;
|
|
642
|
-
grid?: boolean;
|
|
643
|
-
noise?: boolean;
|
|
644
|
-
}
|
|
645
|
-
declare function MarketingShell({ children, className, grid, noise }: MarketingShellProps): react.JSX.Element;
|
|
646
|
-
|
|
647
|
-
interface HeroFrameProps extends BaseProps {
|
|
640
|
+
interface CTASectionProps extends BaseProps {
|
|
648
641
|
eyebrow?: ReactNode;
|
|
649
642
|
title: ReactNode;
|
|
650
643
|
description?: ReactNode;
|
|
651
644
|
actions?: ReactNode;
|
|
652
|
-
visual?: ReactNode;
|
|
653
|
-
meta?: ReactNode;
|
|
654
645
|
}
|
|
655
|
-
declare function
|
|
646
|
+
declare function CTASection({ eyebrow, title, description, actions, className }: CTASectionProps): react.JSX.Element;
|
|
647
|
+
|
|
648
|
+
interface ComparisonTableRow {
|
|
649
|
+
feature: ReactNode;
|
|
650
|
+
included: ReactNode;
|
|
651
|
+
alternative?: ReactNode;
|
|
652
|
+
}
|
|
653
|
+
interface ComparisonTableProps extends BaseProps {
|
|
654
|
+
rows: ComparisonTableRow[];
|
|
655
|
+
featureHeader?: ReactNode;
|
|
656
|
+
includedHeader?: ReactNode;
|
|
657
|
+
alternativeHeader?: ReactNode;
|
|
658
|
+
}
|
|
659
|
+
declare function ComparisonTable({ rows, featureHeader, includedHeader, alternativeHeader, className }: ComparisonTableProps): react.JSX.Element;
|
|
656
660
|
|
|
657
661
|
interface FeatureCardProps extends BaseProps {
|
|
658
662
|
title: ReactNode;
|
|
@@ -669,13 +673,50 @@ interface FeatureGridProps extends BaseProps {
|
|
|
669
673
|
}
|
|
670
674
|
declare function FeatureGrid({ children, className }: FeatureGridProps): react.JSX.Element;
|
|
671
675
|
|
|
672
|
-
interface
|
|
676
|
+
interface HeroFrameProps extends BaseProps {
|
|
673
677
|
eyebrow?: ReactNode;
|
|
674
678
|
title: ReactNode;
|
|
675
679
|
description?: ReactNode;
|
|
676
680
|
actions?: ReactNode;
|
|
681
|
+
visual?: ReactNode;
|
|
682
|
+
meta?: ReactNode;
|
|
677
683
|
}
|
|
678
|
-
declare function
|
|
684
|
+
declare function HeroFrame({ eyebrow, title, description, actions, visual, meta, className }: HeroFrameProps): react.JSX.Element;
|
|
685
|
+
|
|
686
|
+
interface LandingNavbarItem {
|
|
687
|
+
href: string;
|
|
688
|
+
icon?: ReactNode;
|
|
689
|
+
label: string;
|
|
690
|
+
}
|
|
691
|
+
interface LandingNavbarThemeLabels {
|
|
692
|
+
dark: string;
|
|
693
|
+
light: string;
|
|
694
|
+
}
|
|
695
|
+
interface LandingNavbarShellProps extends BaseProps {
|
|
696
|
+
ariaNavLabel: string;
|
|
697
|
+
brand: ReactNode;
|
|
698
|
+
closeMenuLabel?: string;
|
|
699
|
+
desktopActions?: ReactNode;
|
|
700
|
+
desktopLanguageSwitcher?: ReactNode;
|
|
701
|
+
items: LandingNavbarItem[];
|
|
702
|
+
menuLabel: string;
|
|
703
|
+
mobileActions?: ReactNode;
|
|
704
|
+
mobileDialogLabel?: string;
|
|
705
|
+
mobileLanguageSwitcher?: ReactNode;
|
|
706
|
+
mobileNavLabel?: string;
|
|
707
|
+
onThemeToggle: () => void;
|
|
708
|
+
theme: string;
|
|
709
|
+
themeLabels: LandingNavbarThemeLabels;
|
|
710
|
+
containerClassName?: string;
|
|
711
|
+
}
|
|
712
|
+
declare function LandingNavbarShell({ ariaNavLabel, brand, className, closeMenuLabel, containerClassName, desktopActions, desktopLanguageSwitcher, items, menuLabel, mobileActions, mobileDialogLabel, mobileLanguageSwitcher, mobileNavLabel, onThemeToggle, theme, themeLabels, }: LandingNavbarShellProps): react.JSX.Element;
|
|
713
|
+
|
|
714
|
+
interface MarketingShellProps extends BaseProps {
|
|
715
|
+
children: ReactNode;
|
|
716
|
+
grid?: boolean;
|
|
717
|
+
noise?: boolean;
|
|
718
|
+
}
|
|
719
|
+
declare function MarketingShell({ children, className, grid, noise }: MarketingShellProps): react.JSX.Element;
|
|
679
720
|
|
|
680
721
|
interface MockupFrameProps extends BaseProps {
|
|
681
722
|
children: ReactNode;
|
|
@@ -684,19 +725,6 @@ interface MockupFrameProps extends BaseProps {
|
|
|
684
725
|
}
|
|
685
726
|
declare function MockupFrame({ children, title, toolbar, className }: MockupFrameProps): react.JSX.Element;
|
|
686
727
|
|
|
687
|
-
interface ComparisonTableRow {
|
|
688
|
-
feature: ReactNode;
|
|
689
|
-
included: ReactNode;
|
|
690
|
-
alternative?: ReactNode;
|
|
691
|
-
}
|
|
692
|
-
interface ComparisonTableProps extends BaseProps {
|
|
693
|
-
rows: ComparisonTableRow[];
|
|
694
|
-
featureHeader?: ReactNode;
|
|
695
|
-
includedHeader?: ReactNode;
|
|
696
|
-
alternativeHeader?: ReactNode;
|
|
697
|
-
}
|
|
698
|
-
declare function ComparisonTable({ rows, featureHeader, includedHeader, alternativeHeader, className }: ComparisonTableProps): react.JSX.Element;
|
|
699
|
-
|
|
700
728
|
interface AppShellProps extends BaseProps {
|
|
701
729
|
sidebar?: ReactNode;
|
|
702
730
|
topbar?: ReactNode;
|
|
@@ -1450,4 +1478,4 @@ interface InlineStatusProps extends BaseProps {
|
|
|
1450
1478
|
}
|
|
1451
1479
|
declare function InlineStatus({ tone, children, pulse, className }: InlineStatusProps): react.JSX.Element;
|
|
1452
1480
|
|
|
1453
|
-
export { AccessMatrix, type AccessMatrixPermission, type AccessMatrixProps, type AccessMatrixRole, Accordion, type AccordionItem, type AccordionProps, ActionMenu, type ActionMenuItem, type ActionMenuProps, Activity, ActivityFeed, type ActivityFeedItem, type ActivityFeedProps, ActivityMenu, Alert, type AlertProps, type AlertTone, AnnouncementBar, type AnnouncementBarProps, AppShell, type AppShellProps, AppleIcon, type ApprovalItem, ApprovalQueue, type ApprovalQueueProps, ArrowLeft, ArrowRight, AuditLog, type AuditLogItem, type AuditLogProps, Avatar, type AvatarProps, Badge, Ban, BarChart, BarList, type BarListItem, type BarListProps, BaseModal, type BaseModalProps, type BaseProps, Bell, Book, type BreadcrumbItem, Breadcrumbs, type BreadcrumbsProps, Button, type ButtonProps, CTASection, type CTASectionProps, Calendar, CalendarGrid, type CalendarGridDay, type CalendarGridProps, CalendarMonth, CalendarWeek, Callout, type CalloutProps, type CalloutTone, Card, CardBody, CardHeader, type CardPadding, type CardProps, type CardSectionProps, type CardVariant, Check, CheckCircle, CheckSquare, Checkbox, type CheckboxProps, ChevronDown, ChevronLeft, ChevronRight, ChevronUp, Clipboard, Clock, Cluster, type ClusterProps, CodeBlock, type CodeBlockProps, type ColorSwatchOption, ColorSwatchPicker, type ColorSwatchPickerProps, type Column, type ColumnAlign, Combobox, type ComboboxOption, type ComboboxProps, type CommandGroup, type CommandItem, CommandMenu, type CommandMenuProps, Compare, ComparisonMeter, type ComparisonMeterProps, ComparisonTable, type ComparisonTableProps, type ComparisonTableRow, ConfirmDialog, type ConfirmDialogProps, Container, type ContainerProps, type ContainerSize, Copy, Cpu, CreditCard, DataTable, type DataTableDensity, type DataTableProps, type DataTableVariant, DataToolbar, type DataToolbarProps, Database, DateRangePicker, type DateRangePickerProps, DefaultErrorFallback, Divider, type DividerProps, DonutMetric, type DonutMetricProps, Download, Drawer, type DrawerProps, Edit, EmptyState, type EmptyStateProps, ErrorBoundary, ErrorState, ExternalLink, Eye, EyeOff, type FAQItem, FAQSection, type FAQSectionProps, Faculty, FeatureCard, type FeatureCardProps, type FeatureFlag, FeatureFlagTable, type FeatureFlagTableProps, FeatureGrid, type FeatureGridProps, FieldHint, type FieldHintProps, FieldLabel, type FieldLabelProps, FileDropzone, type FileDropzoneProps, FileText, FileUpload, FilterChip, type FilterChipProps, FingerprintIcon, FormError, type FormErrorProps, FormField, type FormFieldProps, FormIcon, FormulaIcon, FunnelChart, type FunnelChartProps, type FunnelStep, Gear, GitHubIcon, Globe, GooglePlayIcon, GraduationCap, Grid, GridBg, HardDrive, Hash, HealthIndicator, type HealthIndicatorProps, type HealthTone, type HeatmapCell, HeatmapGrid, type HeatmapGridProps, HelpCircle, HeroFrame, type HeroFrameProps, History, Home, Icons, Image, type InboxItem, InboxList, type InboxListProps, Info, InfoBanner, type InfoBannerProps, InlineStatus, type InlineStatusProps, type InlineStatusTone, Input, InputGroup, type InputGroupProps, type InputProps, IntegrationCard, type IntegrationCardProps, type IntegrationStatus, Intersect, KanbanBoard, type KanbanBoardProps, type KanbanCardItem, type KanbanColumn, Kbd, type KbdProps, type KeyValueItem, KeyValueList, type KeyValueListProps, Layers, LoadingOverlay, type LoadingOverlayProps, LockIcon, LogOut, LogoCloud, type LogoCloudItem, type LogoCloudProps, LogoMark, Mail, MarketingShell, type MarketingShellProps, MasonryGrid, type MasonryGridProps, Megaphone, Menu, MetricCard, type MetricCardProps, type MetricTrendTone, MockupFrame, type MockupFrameProps, Monitor, Moon, NavAnalytics, NavQrAttendance, NavScoresheet, NavSecurity, type NotificationItem, NotificationList, type NotificationListProps, NumberIcon, OfficeHours, PageHeader, type PageHeaderProps, PageRail, type PageRailItem, type PageRailProps, PageSpinner, Pagination, type PaginationLabels, type PaginationProps, PasswordInput, type PasswordInputProps, Pdf, PlanUsage, type PlanUsageItem, type PlanUsageProps, Plus, Popover, type PopoverProps, PricingCard, type PricingCardProps, Printer, Progress, type ProgressProps, QrCode, RadioButton, type RadioButtonProps, RatingInput, type RatingInputProps, Refresh, RefreshCw, Repeat, Report, ResourceCard, type ResourceCardProps, ResponsiveGrid, type ResponsiveGridProps, type RoadmapItem, RoadmapList, type RoadmapListProps, RotateCcw, SLAStatus, type SLAStatusProps, Scan, ScoreRing, type ScoreRingProps, Search, SearchInput, type SearchInputProps, SectionCard, type SectionCardProps, SectionIcons, SectionTitle, type SectionTitleProps, Select, type SelectProps, Server, type ServerSort, Shield, SidebarNav, type SidebarNavGroup, type SidebarNavItem, type SidebarNavProps, Skeleton, SkeletonBanner, SkeletonCard, SkeletonKpiCard, SkeletonPageHeader, type SkeletonProps, SkeletonTable, Slider, type SliderProps, Smartphone, type SortDirection, type SortState, Sparkline, type SparklineProps, Spinner, type SpinnerProps, SplitPane, type SplitPaneProps, Spotlight, Stack, type StackProps, Star, StatGrid, type StatGridProps, StatsBand, type StatsBandItem, type StatsBandProps, StatusBadge, type StatusBadgeProps, type StatusBadgeVariant, type StepItem, Stepper, type StepperProps, StickyBar, type StickyBarProps, Sun, Surface, type SurfacePadding, type SurfaceProps, type SurfaceVariant, Switch, type SwitchProps, type TabItem, Table, Tablet, Tabs, type TabsProps, type TapizFrameworkPreset, type TapizPresetDefinition, TestimonialCard, type TestimonialCardProps, TextIcon, Textarea, TextareaCounter, type TextareaCounterProps, type TextareaProps, ThemeIconButton, type ThemeIconButtonProps, Timeline, type TimelineItem, type TimelineProps, Toast, type ToastProps, ToastProvider, type ToastProviderProps, type ToastState, ToggleGroup, type ToggleGroupProps, type ToggleOption, Tooltip, type TooltipProps, TopNav, type TopNavLink, type TopNavProps, Trash, Trophy, TwoFAIcon, University, User, UserCheck, UserCog, UserMinus, UserPlus, Users, X, Zap, tapizFrameworkPresets, useToast };
|
|
1481
|
+
export { AccessMatrix, type AccessMatrixPermission, type AccessMatrixProps, type AccessMatrixRole, Accordion, type AccordionItem, type AccordionProps, ActionMenu, type ActionMenuItem, type ActionMenuProps, Activity, ActivityFeed, type ActivityFeedItem, type ActivityFeedProps, ActivityMenu, Alert, type AlertProps, type AlertTone, AnnouncementBar, type AnnouncementBarProps, AppShell, type AppShellProps, AppleIcon, type ApprovalItem, ApprovalQueue, type ApprovalQueueProps, ArrowLeft, ArrowRight, AuditLog, type AuditLogItem, type AuditLogProps, Avatar, type AvatarProps, Badge, Ban, BarChart, BarList, type BarListItem, type BarListProps, BaseModal, type BaseModalProps, type BaseProps, Bell, Book, type BreadcrumbItem, Breadcrumbs, type BreadcrumbsProps, Button, type ButtonProps, CTASection, type CTASectionProps, Calendar, CalendarGrid, type CalendarGridDay, type CalendarGridProps, CalendarMonth, CalendarWeek, Callout, type CalloutProps, type CalloutTone, Card, CardBody, CardHeader, type CardPadding, type CardProps, type CardSectionProps, type CardVariant, Check, CheckCircle, CheckSquare, Checkbox, type CheckboxProps, ChevronDown, ChevronLeft, ChevronRight, ChevronUp, Clipboard, Clock, Cluster, type ClusterProps, CodeBlock, type CodeBlockProps, type ColorSwatchOption, ColorSwatchPicker, type ColorSwatchPickerProps, type Column, type ColumnAlign, Combobox, type ComboboxOption, type ComboboxProps, type CommandGroup, type CommandItem, CommandMenu, type CommandMenuProps, Compare, ComparisonMeter, type ComparisonMeterProps, ComparisonTable, type ComparisonTableProps, type ComparisonTableRow, ConfirmDialog, type ConfirmDialogProps, Container, type ContainerProps, type ContainerSize, Copy, Cpu, CreditCard, DataTable, type DataTableDensity, type DataTableProps, type DataTableVariant, DataToolbar, type DataToolbarProps, Database, DateRangePicker, type DateRangePickerProps, DefaultErrorFallback, Divider, type DividerProps, DonutMetric, type DonutMetricProps, Download, Drawer, type DrawerProps, Edit, EmptyState, type EmptyStateProps, ErrorBoundary, ErrorState, ExternalLink, Eye, EyeOff, type FAQItem, FAQSection, type FAQSectionProps, Faculty, FeatureCard, type FeatureCardProps, type FeatureFlag, FeatureFlagTable, type FeatureFlagTableProps, FeatureGrid, type FeatureGridProps, FieldHint, type FieldHintProps, FieldLabel, type FieldLabelProps, FileDropzone, type FileDropzoneProps, FileText, FileUpload, FilterChip, type FilterChipProps, FingerprintIcon, FormError, type FormErrorProps, FormField, type FormFieldProps, FormIcon, FormulaIcon, FunnelChart, type FunnelChartProps, type FunnelStep, Gear, GitHubIcon, Globe, GooglePlayIcon, GraduationCap, Grid, GridBg, HardDrive, Hash, HealthIndicator, type HealthIndicatorProps, type HealthTone, type HeatmapCell, HeatmapGrid, type HeatmapGridProps, HelpCircle, HeroFrame, type HeroFrameProps, History, Home, Icons, Image, type InboxItem, InboxList, type InboxListProps, Info, InfoBanner, type InfoBannerProps, InlineStatus, type InlineStatusProps, type InlineStatusTone, Input, InputGroup, type InputGroupProps, type InputProps, IntegrationCard, type IntegrationCardProps, type IntegrationStatus, Intersect, KanbanBoard, type KanbanBoardProps, type KanbanCardItem, type KanbanColumn, Kbd, type KbdProps, type KeyValueItem, KeyValueList, type KeyValueListProps, type LandingNavbarItem, LandingNavbarShell, type LandingNavbarShellProps, type LandingNavbarThemeLabels, Layers, LoadingOverlay, type LoadingOverlayProps, LockIcon, LogOut, LogoCloud, type LogoCloudItem, type LogoCloudProps, LogoMark, Mail, MarketingShell, type MarketingShellProps, MasonryGrid, type MasonryGridProps, Megaphone, Menu, MetricCard, type MetricCardProps, type MetricTrendTone, MockupFrame, type MockupFrameProps, Monitor, Moon, NavAnalytics, NavQrAttendance, NavScoresheet, NavSecurity, type NotificationItem, NotificationList, type NotificationListProps, NumberIcon, OfficeHours, PageHeader, type PageHeaderProps, PageRail, type PageRailItem, type PageRailProps, PageSpinner, Pagination, type PaginationLabels, type PaginationProps, PasswordInput, type PasswordInputProps, Pdf, PlanUsage, type PlanUsageItem, type PlanUsageProps, Plus, Popover, type PopoverProps, PricingCard, type PricingCardProps, Printer, Progress, type ProgressProps, QrCode, RadioButton, type RadioButtonProps, RatingInput, type RatingInputProps, Refresh, RefreshCw, Repeat, Report, ResourceCard, type ResourceCardProps, ResponsiveGrid, type ResponsiveGridProps, type RoadmapItem, RoadmapList, type RoadmapListProps, RotateCcw, SLAStatus, type SLAStatusProps, Scan, ScoreRing, type ScoreRingProps, Search, SearchInput, type SearchInputProps, SectionCard, type SectionCardProps, SectionIcons, SectionTitle, type SectionTitleProps, Select, type SelectProps, Server, type ServerSort, Shield, SidebarNav, type SidebarNavGroup, type SidebarNavItem, type SidebarNavProps, Skeleton, SkeletonBanner, SkeletonCard, SkeletonKpiCard, SkeletonPageHeader, type SkeletonProps, SkeletonTable, Slider, type SliderProps, Smartphone, type SortDirection, type SortState, Sparkline, type SparklineProps, Spinner, type SpinnerProps, SplitPane, type SplitPaneProps, Spotlight, Stack, type StackProps, Star, StatGrid, type StatGridProps, StatsBand, type StatsBandItem, type StatsBandProps, StatusBadge, type StatusBadgeProps, type StatusBadgeVariant, type StepItem, Stepper, type StepperProps, StickyBar, type StickyBarProps, Sun, Surface, type SurfacePadding, type SurfaceProps, type SurfaceVariant, Switch, type SwitchProps, type TabItem, Table, Tablet, Tabs, type TabsProps, type TapizFrameworkPreset, type TapizPresetDefinition, TestimonialCard, type TestimonialCardProps, TextIcon, Textarea, TextareaCounter, type TextareaCounterProps, type TextareaProps, ThemeIconButton, type ThemeIconButtonProps, Timeline, type TimelineItem, type TimelineProps, Toast, type ToastProps, ToastProvider, type ToastProviderProps, type ToastState, ToggleGroup, type ToggleGroupProps, type ToggleOption, Tooltip, type TooltipProps, TopNav, type TopNavLink, type TopNavProps, Trash, Trophy, TwoFAIcon, University, User, UserCheck, UserCog, UserMinus, UserPlus, Users, X, Zap, tapizFrameworkPresets, useToast };
|