@mieweb/ui 0.6.1-dev.146 → 0.6.1-dev.148
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.cjs +80 -11
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +11 -1
- package/dist/index.d.ts +11 -1
- package/dist/index.js +80 -11
- package/dist/index.js.map +1 -1
- package/package.json +58 -20
package/dist/index.d.cts
CHANGED
|
@@ -525,7 +525,7 @@ type AIMessageStatus = 'pending' | 'streaming' | 'complete' | 'error';
|
|
|
525
525
|
*/
|
|
526
526
|
interface AIMessageContent {
|
|
527
527
|
/** Type of content */
|
|
528
|
-
type: 'text' | 'tool_use' | 'tool_result' | 'thinking' | 'code';
|
|
528
|
+
type: 'text' | 'tool_use' | 'tool_result' | 'thinking' | 'code' | 'image' | 'file';
|
|
529
529
|
/** Text content */
|
|
530
530
|
text?: string;
|
|
531
531
|
/** Tool call reference */
|
|
@@ -534,6 +534,16 @@ interface AIMessageContent {
|
|
|
534
534
|
language?: string;
|
|
535
535
|
/** Whether this content is collapsed by default */
|
|
536
536
|
collapsed?: boolean;
|
|
537
|
+
/** Image source URL (for `image` blocks) */
|
|
538
|
+
imageUrl?: string;
|
|
539
|
+
/** Alt text / file name (for `image` and `file` blocks) */
|
|
540
|
+
name?: string;
|
|
541
|
+
/** File size in bytes (for `file` blocks) */
|
|
542
|
+
fileSize?: number;
|
|
543
|
+
/** MIME type (for `file` blocks) */
|
|
544
|
+
mimeType?: string;
|
|
545
|
+
/** Download/open URL (for `file` blocks) */
|
|
546
|
+
fileUrl?: string;
|
|
537
547
|
}
|
|
538
548
|
/**
|
|
539
549
|
* AI Chat Message
|
package/dist/index.d.ts
CHANGED
|
@@ -525,7 +525,7 @@ type AIMessageStatus = 'pending' | 'streaming' | 'complete' | 'error';
|
|
|
525
525
|
*/
|
|
526
526
|
interface AIMessageContent {
|
|
527
527
|
/** Type of content */
|
|
528
|
-
type: 'text' | 'tool_use' | 'tool_result' | 'thinking' | 'code';
|
|
528
|
+
type: 'text' | 'tool_use' | 'tool_result' | 'thinking' | 'code' | 'image' | 'file';
|
|
529
529
|
/** Text content */
|
|
530
530
|
text?: string;
|
|
531
531
|
/** Tool call reference */
|
|
@@ -534,6 +534,16 @@ interface AIMessageContent {
|
|
|
534
534
|
language?: string;
|
|
535
535
|
/** Whether this content is collapsed by default */
|
|
536
536
|
collapsed?: boolean;
|
|
537
|
+
/** Image source URL (for `image` blocks) */
|
|
538
|
+
imageUrl?: string;
|
|
539
|
+
/** Alt text / file name (for `image` and `file` blocks) */
|
|
540
|
+
name?: string;
|
|
541
|
+
/** File size in bytes (for `file` blocks) */
|
|
542
|
+
fileSize?: number;
|
|
543
|
+
/** MIME type (for `file` blocks) */
|
|
544
|
+
mimeType?: string;
|
|
545
|
+
/** Download/open URL (for `file` blocks) */
|
|
546
|
+
fileUrl?: string;
|
|
537
547
|
}
|
|
538
548
|
/**
|
|
539
549
|
* AI Chat Message
|
package/dist/index.js
CHANGED
|
@@ -2381,8 +2381,77 @@ function ContentBlock({
|
|
|
2381
2381
|
}
|
|
2382
2382
|
);
|
|
2383
2383
|
}
|
|
2384
|
+
if (content.type === "image" && content.imageUrl) {
|
|
2385
|
+
const safeHref = /^\s*javascript:/i.test(content.imageUrl) ? void 0 : content.imageUrl;
|
|
2386
|
+
return /* @__PURE__ */ jsx(
|
|
2387
|
+
"a",
|
|
2388
|
+
{
|
|
2389
|
+
href: safeHref,
|
|
2390
|
+
target: "_blank",
|
|
2391
|
+
rel: "noopener noreferrer",
|
|
2392
|
+
className: "block w-fit transition-transform hover:scale-[1.02]",
|
|
2393
|
+
"aria-label": `View ${content.name || "Uploaded image"}`,
|
|
2394
|
+
children: /* @__PURE__ */ jsx(
|
|
2395
|
+
"img",
|
|
2396
|
+
{
|
|
2397
|
+
src: content.imageUrl,
|
|
2398
|
+
alt: content.name || "Uploaded image",
|
|
2399
|
+
loading: "lazy",
|
|
2400
|
+
className: "my-1 max-h-64 w-auto rounded-lg object-cover"
|
|
2401
|
+
}
|
|
2402
|
+
)
|
|
2403
|
+
}
|
|
2404
|
+
);
|
|
2405
|
+
}
|
|
2406
|
+
if (content.type === "file") {
|
|
2407
|
+
const sizeLabel = typeof content.fileSize === "number" ? formatFileSize(content.fileSize) : void 0;
|
|
2408
|
+
const card = /* @__PURE__ */ jsxs("div", { className: "my-1 flex items-center gap-3 rounded-lg bg-neutral-100 p-3 transition-colors dark:bg-neutral-800", children: [
|
|
2409
|
+
/* @__PURE__ */ jsx("div", { className: "rounded-lg bg-neutral-200 p-2 dark:bg-neutral-700", children: /* @__PURE__ */ jsx(
|
|
2410
|
+
"svg",
|
|
2411
|
+
{
|
|
2412
|
+
"aria-hidden": "true",
|
|
2413
|
+
className: "h-6 w-6",
|
|
2414
|
+
fill: "none",
|
|
2415
|
+
viewBox: "0 0 24 24",
|
|
2416
|
+
stroke: "currentColor",
|
|
2417
|
+
strokeWidth: 2,
|
|
2418
|
+
children: /* @__PURE__ */ jsx(
|
|
2419
|
+
"path",
|
|
2420
|
+
{
|
|
2421
|
+
strokeLinecap: "round",
|
|
2422
|
+
strokeLinejoin: "round",
|
|
2423
|
+
d: "M9 12h6m-6 4h6m2 5H7a2 2 0 01-2-2V5a2 2 0 012-2h5.586a1 1 0 01.707.293l5.414 5.414a1 1 0 01.293.707V19a2 2 0 01-2 2z"
|
|
2424
|
+
}
|
|
2425
|
+
)
|
|
2426
|
+
}
|
|
2427
|
+
) }),
|
|
2428
|
+
/* @__PURE__ */ jsxs("div", { className: "min-w-0 flex-1", children: [
|
|
2429
|
+
/* @__PURE__ */ jsx("p", { className: "truncate text-sm font-medium", children: content.name || "Document" }),
|
|
2430
|
+
sizeLabel && /* @__PURE__ */ jsx("p", { className: "text-xs opacity-70", children: sizeLabel })
|
|
2431
|
+
] })
|
|
2432
|
+
] });
|
|
2433
|
+
if (content.fileUrl) {
|
|
2434
|
+
const safeFileHref = /^\s*javascript:/i.test(content.fileUrl) ? void 0 : content.fileUrl;
|
|
2435
|
+
return /* @__PURE__ */ jsx(
|
|
2436
|
+
"a",
|
|
2437
|
+
{
|
|
2438
|
+
href: safeFileHref,
|
|
2439
|
+
target: "_blank",
|
|
2440
|
+
rel: "noopener noreferrer",
|
|
2441
|
+
className: "block w-fit no-underline",
|
|
2442
|
+
children: card
|
|
2443
|
+
}
|
|
2444
|
+
);
|
|
2445
|
+
}
|
|
2446
|
+
return card;
|
|
2447
|
+
}
|
|
2384
2448
|
return null;
|
|
2385
2449
|
}
|
|
2450
|
+
function formatFileSize(bytes) {
|
|
2451
|
+
if (bytes < 1024) return `${bytes} B`;
|
|
2452
|
+
if (bytes < 1024 * 1024) return `${(bytes / 1024).toFixed(1)} KB`;
|
|
2453
|
+
return `${(bytes / (1024 * 1024)).toFixed(1)} MB`;
|
|
2454
|
+
}
|
|
2386
2455
|
var messageVariants = cva("flex gap-3", {
|
|
2387
2456
|
variants: {
|
|
2388
2457
|
role: {
|
|
@@ -2513,7 +2582,7 @@ function getFileType(mimeType) {
|
|
|
2513
2582
|
}
|
|
2514
2583
|
return "file";
|
|
2515
2584
|
}
|
|
2516
|
-
function
|
|
2585
|
+
function formatFileSize2(bytes) {
|
|
2517
2586
|
if (bytes < 1024) return `${bytes} B`;
|
|
2518
2587
|
if (bytes < 1024 * 1024) return `${(bytes / 1024).toFixed(1)} KB`;
|
|
2519
2588
|
return `${(bytes / (1024 * 1024)).toFixed(1)} MB`;
|
|
@@ -2536,7 +2605,7 @@ function validateFile(file, acceptedTypes, maxSize) {
|
|
|
2536
2605
|
if (maxSize && file.size > maxSize) {
|
|
2537
2606
|
return {
|
|
2538
2607
|
valid: false,
|
|
2539
|
-
error: `File too large (max ${
|
|
2608
|
+
error: `File too large (max ${formatFileSize2(maxSize)})`
|
|
2540
2609
|
};
|
|
2541
2610
|
}
|
|
2542
2611
|
return { valid: true };
|
|
@@ -3797,13 +3866,13 @@ function AttachmentPreview({
|
|
|
3797
3866
|
) }),
|
|
3798
3867
|
/* @__PURE__ */ jsxs("div", { className: "min-w-0 flex-1 text-left", children: [
|
|
3799
3868
|
/* @__PURE__ */ jsx("p", { className: "truncate text-sm font-medium", children: attachment.filename }),
|
|
3800
|
-
/* @__PURE__ */ jsx("p", { className: "text-xs opacity-70", children:
|
|
3869
|
+
/* @__PURE__ */ jsx("p", { className: "text-xs opacity-70", children: formatFileSize3(attachment.size) })
|
|
3801
3870
|
] })
|
|
3802
3871
|
]
|
|
3803
3872
|
}
|
|
3804
3873
|
);
|
|
3805
3874
|
}
|
|
3806
|
-
function
|
|
3875
|
+
function formatFileSize3(bytes) {
|
|
3807
3876
|
if (bytes < 1024) return `${bytes} B`;
|
|
3808
3877
|
if (bytes < 1024 * 1024) return `${(bytes / 1024).toFixed(1)} KB`;
|
|
3809
3878
|
return `${(bytes / (1024 * 1024)).toFixed(1)} MB`;
|
|
@@ -13173,13 +13242,13 @@ function FilePreviewItem({ file, onRemove, disabled }) {
|
|
|
13173
13242
|
children: file.file.name
|
|
13174
13243
|
}
|
|
13175
13244
|
),
|
|
13176
|
-
/* @__PURE__ */ jsx("p", { className: "text-muted-foreground text-xs", children:
|
|
13245
|
+
/* @__PURE__ */ jsx("p", { className: "text-muted-foreground text-xs", children: formatFileSize4(file.file.size) })
|
|
13177
13246
|
] })
|
|
13178
13247
|
]
|
|
13179
13248
|
}
|
|
13180
13249
|
);
|
|
13181
13250
|
}
|
|
13182
|
-
function
|
|
13251
|
+
function formatFileSize4(bytes) {
|
|
13183
13252
|
if (bytes === 0) return "0 Bytes";
|
|
13184
13253
|
const k = 1024;
|
|
13185
13254
|
const sizes = ["Bytes", "KB", "MB", "GB"];
|
|
@@ -18326,7 +18395,7 @@ function AlertIcon({ className }) {
|
|
|
18326
18395
|
}
|
|
18327
18396
|
);
|
|
18328
18397
|
}
|
|
18329
|
-
function
|
|
18398
|
+
function formatFileSize5(bytes) {
|
|
18330
18399
|
if (bytes === 0) return "0 B";
|
|
18331
18400
|
const k = 1024;
|
|
18332
18401
|
const sizes = ["B", "KB", "MB", "GB"];
|
|
@@ -18557,11 +18626,11 @@ function FileManager({
|
|
|
18557
18626
|
children: /* @__PURE__ */ jsxs("p", { className: "text-muted-foreground text-sm", children: [
|
|
18558
18627
|
"Used Storage:",
|
|
18559
18628
|
" ",
|
|
18560
|
-
/* @__PURE__ */ jsx("span", { className: "font-semibold text-gray-900 dark:text-white", children:
|
|
18629
|
+
/* @__PURE__ */ jsx("span", { className: "font-semibold text-gray-900 dark:text-white", children: formatFileSize5(totalStorageUsed) }),
|
|
18561
18630
|
storageLimit && /* @__PURE__ */ jsxs("span", { className: "text-muted-foreground", children: [
|
|
18562
18631
|
" ",
|
|
18563
18632
|
"/ ",
|
|
18564
|
-
|
|
18633
|
+
formatFileSize5(storageLimit)
|
|
18565
18634
|
] })
|
|
18566
18635
|
] })
|
|
18567
18636
|
}
|
|
@@ -18579,7 +18648,7 @@ function FileManager({
|
|
|
18579
18648
|
/* @__PURE__ */ jsx("span", { className: "max-w-xs truncate text-sm text-gray-900 dark:text-white", children: file.filename })
|
|
18580
18649
|
] }) }),
|
|
18581
18650
|
/* @__PURE__ */ jsx(TableCell, { className: "text-center", children: /* @__PURE__ */ jsx("span", { className: "text-muted-foreground text-xs uppercase", children: file.fileExtension.replace(".", "") }) }),
|
|
18582
|
-
/* @__PURE__ */ jsx(TableCell, { className: "text-center", children: /* @__PURE__ */ jsx("span", { className: "text-muted-foreground text-sm", children:
|
|
18651
|
+
/* @__PURE__ */ jsx(TableCell, { className: "text-center", children: /* @__PURE__ */ jsx("span", { className: "text-muted-foreground text-sm", children: formatFileSize5(file.fileSize) }) }),
|
|
18583
18652
|
hasActions && /* @__PURE__ */ jsx(
|
|
18584
18653
|
TableCell,
|
|
18585
18654
|
{
|
|
@@ -40083,6 +40152,6 @@ function WebsiteInputGroup({
|
|
|
40083
40152
|
}
|
|
40084
40153
|
WebsiteInputGroup.displayName = "WebsiteInputGroup";
|
|
40085
40154
|
|
|
40086
|
-
export { AIChat, AIChatModal, AIChatTrigger, AILogoIcon, AIMessageDisplay, AIReconciliationPanel, AITypingIndicator, AccessDeniedPage, ActionButton2 as ActionButton, ActionButtonsBar, ActiveFilters, AddContactModal, AddServiceCard, AdditionalFields, Address, AddressCard, AddressCompact, AddressDisplay, AddressForm, AddressInline, AppHeader, AppHeaderActions, AppHeaderBrand, AppHeaderDivider, AppHeaderIconButton, AppHeaderSearch, AppHeaderSection, AppHeaderTitle, AppHeaderUserMenu, AttachmentPicker, AttachmentPreview, AttachmentPreviewItem, AuthButtons, AuthDialog, BookAppointmentButton, BookingDialog, BusinessHours, BusinessHoursEditor, CSVColumnMapper, CSVFileUpload, CameraButton, CardSkeleton, CharacterCounter, CheckrIntegration, ChevronIcon, ClaimListingButton, ClaimProviderForm, CloseIcon, CommandPalette, CommandPaletteProvider, CommandPaletteTrigger, CompactCookieBanner, CompactFilterBar, CompactHeader, CompactHours, CompactProviderHeader, ConnectionStatusBadge, ConnectionStatusBar, ConnectionStatusOverlay, ConsentSwitch, ConversationHeader, ConversationListItem, ConversationListSkeleton, CookieConsentBanner, CopyrightText, CountBadge, CreateInvoiceModal, CreateReferralModal, DEFAULT_ERROR_CONFIGS, DEFAULT_LANGUAGES, DEFAULT_RADIUS_OPTIONS, DEFAULT_SOCIAL_PROVIDERS, DOTBadge, DashboardWidget, DashboardWidgetActions, DashboardWidgetDataCards, DashboardWidgetInfo, DashboardWidgetTable, DateRangeFilter, DateRangePicker, DateSeparator, DialogOverlay, DisclaimerText, DocumentDetectionOverlay, DocumentScanner, DragDropZone, DropZone, DropzoneOverlay, EditUserRoleModal, EmployeeForm, EmployeeProfileCard, EmployerContactCard, EmployerList, EmployerPricingCard, EmployerServiceModal, EmployerView, EmptyState, ErrorPage, FileManager, FilePreview, FloatingAIChat, FloatingInput, FooterLinkSection, SocialMediaLinks2 as FooterSocialLinks, HRISProviderSelector, HelpSupportPanel, HeroSearchBar, HoursSummary, InlineBookingForm, InventoryManager, InviteUserModal, InvoiceList, InvoicePaymentPage, InvoiceView, LanguageSelector, LanguageSelectorInline, LanguageSelectorNative, LegalLinks, LightboxModal, LoadMoreButton, LoadingBar, LoadingDots, LoadingOverlay, LoadingPage, LoadingSkeleton, MCPToolCallDisplay, MaintenancePage, MessageAvatar, MessageBubble, MessageComposer, MessageList, MessageStatusIcon, MessageThread, MessagingSplitView, MobileBackButton, MobileMenuButton, MobileMenuPanel, NavLinks, NewsletterForm, NotFoundPage, NotificationCenter, OfflinePage, OnboardingCompletion, OnboardingStepQuestion, OnboardingWizard, OpenStatusBadge, OrderCard, OrderConfirmation, OrderConfirmationWizard, OrderDetailSidebar, OrderList, OrderLookupForm, OrderSidebar, OrderSidebarTabs, PageHeader, PatientHeader, PaymentHistoryTable, PaymentMethodBank, PaymentMethodCard, PaymentMethodList, PendingClaimsTable, PermissionsEditor, ProductVersion, ProductVersionBadge, Breadcrumb2 as ProviderBreadcrumb, ProviderCard, ProviderCardGrid, ProviderCardSkeleton, ProviderDetailHeader, ProviderDetailHeaderSkeleton, ProviderLogo2 as ProviderLogo, ProviderOverview, ProviderSearchBar, ProviderSearchFilters, ProviderSelector, ProviderSettings, SocialMediaLinks as ProviderSocialLinks, ProviderUsersTable, QuickBookCard, QuickLinksCard, ReadReceiptIndicator, RecurringServiceAddCard, RecurringServiceCard, RecurringServiceGrid, RecurringServiceSetupModal, RefreshIcon, RejectionModal, ReportDashboard, ReportDatePicker, ReportLink, ReportTimeRange, ResourceLink, ResultsEntryCard, ResultsEntryForm, ResultsEntryModal, SSOConfigForm, ScheduleCalendar, SearchResultsMessage, SelectedServicesBadges, SendButton, SendIcon, ServerErrorPage, ServiceAccordion, ServiceBadge, ServiceBadgeGroup, ServiceCard, ServiceCategoryBadge, ServiceGeneralSettings, ServiceGrid, ServiceLink, ServiceList, ServiceMultiSelect, ServicePicker, ServicePricingManager, ServiceSelect, ServiceShippingSettings, ServiceTagCloud, ServiceTagCloudBadges, SetupServiceModal, Sidebar, SidebarContent, SidebarFooter, SidebarHeader, SidebarMobileToggle, SidebarNav, SidebarNavGroup, SidebarNavItem, SidebarProvider, SidebarSearch, SidebarToggle, SimpleFooter, SiteFooter, SiteHeader, SiteLogo, SkeletonMessage, SparklesIcon, SpinnerIcon2 as SpinnerIcon, StepIndicator, StripeBadge, StripeSecureBadge, SuggestedActions, TableOfContents, TimelineEventList, TimelineProgress, Toast, ToastContainer, ToastProvider, ToolStatusIcon, TypingIndicator, UpdateAvailableOverlay, UserMenu, VerifiedBadge2 as VerifiedBadge, WEBSITE_TYPES, WebChartReportViewer, WebcamModal, WebsiteInput, WebsiteInputGroup, bubbleVariants2 as bubbleVariants, calculateDateRange, countBadgeVariants, countChipVariants, create24HourSchedule, createDefaultSchedule, createWeekdaySchedule, defaultOrderTabs, defaultReconciliationIsEqual, formatAddressLines, formatAddressSingleLine, formatCityState, formatCityStateZip, formatDateLabel,
|
|
40155
|
+
export { AIChat, AIChatModal, AIChatTrigger, AILogoIcon, AIMessageDisplay, AIReconciliationPanel, AITypingIndicator, AccessDeniedPage, ActionButton2 as ActionButton, ActionButtonsBar, ActiveFilters, AddContactModal, AddServiceCard, AdditionalFields, Address, AddressCard, AddressCompact, AddressDisplay, AddressForm, AddressInline, AppHeader, AppHeaderActions, AppHeaderBrand, AppHeaderDivider, AppHeaderIconButton, AppHeaderSearch, AppHeaderSection, AppHeaderTitle, AppHeaderUserMenu, AttachmentPicker, AttachmentPreview, AttachmentPreviewItem, AuthButtons, AuthDialog, BookAppointmentButton, BookingDialog, BusinessHours, BusinessHoursEditor, CSVColumnMapper, CSVFileUpload, CameraButton, CardSkeleton, CharacterCounter, CheckrIntegration, ChevronIcon, ClaimListingButton, ClaimProviderForm, CloseIcon, CommandPalette, CommandPaletteProvider, CommandPaletteTrigger, CompactCookieBanner, CompactFilterBar, CompactHeader, CompactHours, CompactProviderHeader, ConnectionStatusBadge, ConnectionStatusBar, ConnectionStatusOverlay, ConsentSwitch, ConversationHeader, ConversationListItem, ConversationListSkeleton, CookieConsentBanner, CopyrightText, CountBadge, CreateInvoiceModal, CreateReferralModal, DEFAULT_ERROR_CONFIGS, DEFAULT_LANGUAGES, DEFAULT_RADIUS_OPTIONS, DEFAULT_SOCIAL_PROVIDERS, DOTBadge, DashboardWidget, DashboardWidgetActions, DashboardWidgetDataCards, DashboardWidgetInfo, DashboardWidgetTable, DateRangeFilter, DateRangePicker, DateSeparator, DialogOverlay, DisclaimerText, DocumentDetectionOverlay, DocumentScanner, DragDropZone, DropZone, DropzoneOverlay, EditUserRoleModal, EmployeeForm, EmployeeProfileCard, EmployerContactCard, EmployerList, EmployerPricingCard, EmployerServiceModal, EmployerView, EmptyState, ErrorPage, FileManager, FilePreview, FloatingAIChat, FloatingInput, FooterLinkSection, SocialMediaLinks2 as FooterSocialLinks, HRISProviderSelector, HelpSupportPanel, HeroSearchBar, HoursSummary, InlineBookingForm, InventoryManager, InviteUserModal, InvoiceList, InvoicePaymentPage, InvoiceView, LanguageSelector, LanguageSelectorInline, LanguageSelectorNative, LegalLinks, LightboxModal, LoadMoreButton, LoadingBar, LoadingDots, LoadingOverlay, LoadingPage, LoadingSkeleton, MCPToolCallDisplay, MaintenancePage, MessageAvatar, MessageBubble, MessageComposer, MessageList, MessageStatusIcon, MessageThread, MessagingSplitView, MobileBackButton, MobileMenuButton, MobileMenuPanel, NavLinks, NewsletterForm, NotFoundPage, NotificationCenter, OfflinePage, OnboardingCompletion, OnboardingStepQuestion, OnboardingWizard, OpenStatusBadge, OrderCard, OrderConfirmation, OrderConfirmationWizard, OrderDetailSidebar, OrderList, OrderLookupForm, OrderSidebar, OrderSidebarTabs, PageHeader, PatientHeader, PaymentHistoryTable, PaymentMethodBank, PaymentMethodCard, PaymentMethodList, PendingClaimsTable, PermissionsEditor, ProductVersion, ProductVersionBadge, Breadcrumb2 as ProviderBreadcrumb, ProviderCard, ProviderCardGrid, ProviderCardSkeleton, ProviderDetailHeader, ProviderDetailHeaderSkeleton, ProviderLogo2 as ProviderLogo, ProviderOverview, ProviderSearchBar, ProviderSearchFilters, ProviderSelector, ProviderSettings, SocialMediaLinks as ProviderSocialLinks, ProviderUsersTable, QuickBookCard, QuickLinksCard, ReadReceiptIndicator, RecurringServiceAddCard, RecurringServiceCard, RecurringServiceGrid, RecurringServiceSetupModal, RefreshIcon, RejectionModal, ReportDashboard, ReportDatePicker, ReportLink, ReportTimeRange, ResourceLink, ResultsEntryCard, ResultsEntryForm, ResultsEntryModal, SSOConfigForm, ScheduleCalendar, SearchResultsMessage, SelectedServicesBadges, SendButton, SendIcon, ServerErrorPage, ServiceAccordion, ServiceBadge, ServiceBadgeGroup, ServiceCard, ServiceCategoryBadge, ServiceGeneralSettings, ServiceGrid, ServiceLink, ServiceList, ServiceMultiSelect, ServicePicker, ServicePricingManager, ServiceSelect, ServiceShippingSettings, ServiceTagCloud, ServiceTagCloudBadges, SetupServiceModal, Sidebar, SidebarContent, SidebarFooter, SidebarHeader, SidebarMobileToggle, SidebarNav, SidebarNavGroup, SidebarNavItem, SidebarProvider, SidebarSearch, SidebarToggle, SimpleFooter, SiteFooter, SiteHeader, SiteLogo, SkeletonMessage, SparklesIcon, SpinnerIcon2 as SpinnerIcon, StepIndicator, StripeBadge, StripeSecureBadge, SuggestedActions, TableOfContents, TimelineEventList, TimelineProgress, Toast, ToastContainer, ToastProvider, ToolStatusIcon, TypingIndicator, UpdateAvailableOverlay, UserMenu, VerifiedBadge2 as VerifiedBadge, WEBSITE_TYPES, WebChartReportViewer, WebcamModal, WebsiteInput, WebsiteInputGroup, bubbleVariants2 as bubbleVariants, calculateDateRange, countBadgeVariants, countChipVariants, create24HourSchedule, createDefaultSchedule, createWeekdaySchedule, defaultOrderTabs, defaultReconciliationIsEqual, formatAddressLines, formatAddressSingleLine, formatCityState, formatCityStateZip, formatDateLabel, formatFileSize3 as formatFileSize, formatLastSeen, generateAttachmentId, generateId, getConversationSubtitle, getConversationTitle, getDefaultPresets, getExtendedPresets, getFileType, getGoogleMapsSearchUrl, getGoogleMapsUrl, getToolIcon, groupMessagesByDate, headerVariants, isSameSenderGroup, isValidUrl, panelVariants as reconciliationPanelVariants, sendButtonVariants, useCamera, useCommandPalette, useConnectionStatus, useCookieConsent, useDocumentDetection, useDropzone, useFileUpload, useMessageScroll, useMessages, useReadReceipts, useSidebar, useToast, useTypingIndicator, validateFile, widgetVariants };
|
|
40087
40156
|
//# sourceMappingURL=index.js.map
|
|
40088
40157
|
//# sourceMappingURL=index.js.map
|