@datatechsolutions/ui 2.7.125 → 2.7.127
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/{chunk-5SX7UGRB.mjs → chunk-3VSRFFI6.mjs} +43 -3
- package/dist/chunk-3VSRFFI6.mjs.map +1 -0
- package/dist/{chunk-5EZ34P4Y.js → chunk-4RB4JPCM.js} +52 -52
- package/dist/{chunk-5EZ34P4Y.js.map → chunk-4RB4JPCM.js.map} +1 -1
- package/dist/{chunk-DU4V77OX.js → chunk-S4MECSAK.js} +43 -3
- package/dist/chunk-S4MECSAK.js.map +1 -0
- package/dist/{chunk-LESGCI4H.mjs → chunk-TGE53WHS.mjs} +3 -3
- package/dist/{chunk-LESGCI4H.mjs.map → chunk-TGE53WHS.mjs.map} +1 -1
- package/dist/index.js +360 -360
- package/dist/index.mjs +1 -1
- package/dist/workflow/index.js +119 -119
- package/dist/workflow/index.mjs +3 -3
- package/dist/workflow/workflow-canvas.js +3 -3
- package/dist/workflow/workflow-canvas.mjs +2 -2
- package/package.json +1 -1
- package/dist/chunk-5SX7UGRB.mjs.map +0 -1
- package/dist/chunk-DU4V77OX.js.map +0 -1
|
@@ -9267,7 +9267,7 @@ function MonthPicker({
|
|
|
9267
9267
|
var FallbackIcon = ({ className }) => /* @__PURE__ */ jsx(HeroIcons.FolderOpenIcon, { className });
|
|
9268
9268
|
function getIcon(name) {
|
|
9269
9269
|
const icon = HeroIcons[name];
|
|
9270
|
-
if (typeof icon === "function") {
|
|
9270
|
+
if (icon && (typeof icon === "function" || typeof icon === "object")) {
|
|
9271
9271
|
return icon;
|
|
9272
9272
|
}
|
|
9273
9273
|
return FallbackIcon;
|
|
@@ -9277,12 +9277,20 @@ var ICON_MAP = {
|
|
|
9277
9277
|
"check-circle": getIcon("CheckCircleIcon"),
|
|
9278
9278
|
"building-storefront": getIcon("BuildingStorefrontIcon"),
|
|
9279
9279
|
"shopping-bag": getIcon("ShoppingBagIcon"),
|
|
9280
|
+
"shopping-cart": getIcon("ShoppingCartIcon"),
|
|
9280
9281
|
"users": getIcon("UsersIcon"),
|
|
9282
|
+
"user-group": getIcon("UserGroupIcon"),
|
|
9281
9283
|
"cpu-chip": getIcon("CpuChipIcon"),
|
|
9282
9284
|
"shield-check": getIcon("ShieldCheckIcon"),
|
|
9283
9285
|
"credit-card": getIcon("CreditCardIcon"),
|
|
9286
|
+
"currency-dollar": getIcon("CurrencyDollarIcon"),
|
|
9284
9287
|
"scale": getIcon("ScaleIcon"),
|
|
9285
9288
|
"cube": getIcon("CubeIcon"),
|
|
9289
|
+
"calendar": getIcon("CalendarIcon"),
|
|
9290
|
+
"chart-bar": getIcon("ChartBarIcon"),
|
|
9291
|
+
"document": getIcon("DocumentIcon"),
|
|
9292
|
+
"plus-circle": getIcon("PlusCircleIcon"),
|
|
9293
|
+
"link": getIcon("LinkIcon"),
|
|
9286
9294
|
"folder-open": getIcon("FolderOpenIcon")
|
|
9287
9295
|
};
|
|
9288
9296
|
var ACCENT_MAP = {
|
|
@@ -9326,6 +9334,38 @@ var ACCENT_MAP = {
|
|
|
9326
9334
|
container: "bg-fuchsia-50/80 dark:bg-fuchsia-900/30 border-fuchsia-100/50 dark:border-fuchsia-800/30",
|
|
9327
9335
|
icon: "text-fuchsia-500 dark:text-fuchsia-400"
|
|
9328
9336
|
},
|
|
9337
|
+
"shopping-cart": {
|
|
9338
|
+
container: "bg-emerald-50/80 dark:bg-emerald-900/30 border-emerald-100/50 dark:border-emerald-800/30",
|
|
9339
|
+
icon: "text-emerald-500 dark:text-emerald-400"
|
|
9340
|
+
},
|
|
9341
|
+
"user-group": {
|
|
9342
|
+
container: "bg-fuchsia-50/80 dark:bg-fuchsia-900/30 border-fuchsia-100/50 dark:border-fuchsia-800/30",
|
|
9343
|
+
icon: "text-fuchsia-500 dark:text-fuchsia-400"
|
|
9344
|
+
},
|
|
9345
|
+
"currency-dollar": {
|
|
9346
|
+
container: "bg-green-50/80 dark:bg-green-900/30 border-green-100/50 dark:border-green-800/30",
|
|
9347
|
+
icon: "text-green-500 dark:text-green-400"
|
|
9348
|
+
},
|
|
9349
|
+
"calendar": {
|
|
9350
|
+
container: "bg-indigo-50/80 dark:bg-indigo-900/30 border-indigo-100/50 dark:border-indigo-800/30",
|
|
9351
|
+
icon: "text-indigo-500 dark:text-indigo-400"
|
|
9352
|
+
},
|
|
9353
|
+
"chart-bar": {
|
|
9354
|
+
container: "bg-purple-50/80 dark:bg-purple-900/30 border-purple-100/50 dark:border-purple-800/30",
|
|
9355
|
+
icon: "text-purple-500 dark:text-purple-400"
|
|
9356
|
+
},
|
|
9357
|
+
"document": {
|
|
9358
|
+
container: "bg-cyan-50/80 dark:bg-cyan-900/30 border-cyan-100/50 dark:border-cyan-800/30",
|
|
9359
|
+
icon: "text-cyan-500 dark:text-cyan-400"
|
|
9360
|
+
},
|
|
9361
|
+
"plus-circle": {
|
|
9362
|
+
container: "bg-pink-50/80 dark:bg-pink-900/30 border-pink-100/50 dark:border-pink-800/30",
|
|
9363
|
+
icon: "text-pink-500 dark:text-pink-400"
|
|
9364
|
+
},
|
|
9365
|
+
"link": {
|
|
9366
|
+
container: "bg-sky-50/80 dark:bg-sky-900/30 border-sky-100/50 dark:border-sky-800/30",
|
|
9367
|
+
icon: "text-sky-500 dark:text-sky-400"
|
|
9368
|
+
},
|
|
9329
9369
|
"folder-open": {
|
|
9330
9370
|
container: "bg-slate-50/80 dark:bg-slate-900/30 border-slate-100/50 dark:border-slate-800/30",
|
|
9331
9371
|
icon: "text-slate-500 dark:text-slate-400"
|
|
@@ -14829,5 +14869,5 @@ function PlatformShell({
|
|
|
14829
14869
|
}
|
|
14830
14870
|
|
|
14831
14871
|
export { ActionMenu, ActionSheet, ActiveFilterChips, AnalysisSkeleton, AnimatedNumber, AnimatedTableRow, AppLogo, AppNavigation, AppShell, ArchiveSwipeAction, AuthLayout, Avatar, AvatarButton, BRAZIL_ACCENT_MAP, BRAZIL_MACRO_REGIONS, BRAZIL_MAP_CENTER, BRAZIL_STATE_COORDINATES, BRAZIL_STATE_PALETTES, BR_THEME_CONFIG, BackupCodeGrid, BadRequestPage, Badge, BaseForm, BentoCard, BooleanFlagsPicker, BottomSafeArea, BrandFilterSkeleton, BrandedLoader, Breadcrumb, Button, Card, Card2, CardActionMenu, CardContent, CardContent2, CardDescription, CardDescription2, CardDivider, CardFooter, CardFooter2, CardGridSkeleton, CardHeader, CardHeader2, CardSectionHeader, CardTitle, CardTitle2, CategoryBadge, CategoryTab, CategoryTabs, ChipPicker, CircularRefreshIndicator, Code, CollapsibleGroupedList, CompactSegmentedControl, ContactCard, ContactSection, Container, ContextMenu, CookieConsent, CopyableId, CountPill, CreateActionButton, DashboardProgressShell, DataPagination, DatePicker, DeleteSwipeAction, Description4 as Description, DetailsPopover, DevModeBanner, Dialog4 as Dialog, DialogActions, DialogBody, DialogDescription, DialogTitle3 as DialogTitle, Divider, Dock, DockContainer, DockSkeleton, DotRefreshIndicator, Dropdown, DropdownButton, DropdownDescription, DropdownDivider, DropdownHeader, DropdownHeading, DropdownItem, DropdownLabel, DropdownMenu, DropdownSection, DropdownSelect, DropdownShortcut, DynamicIsland, DynamicIslandConfirm, DynamicIslandNotification, EdgeSwipeIndicator, EdgeSwipeProvider, EditSwipeAction, EmptyState, EntityCard, EntityDrawer, ErrorMessage, ErrorState, ExpandableHistoryList, ExpandingPageIndicator, FUEL_PRICE_LOADER, FavoriteSwipeAction, FeatureCard, FeedItemCard, Field2 as Field, FieldGroup, Fieldset2 as Fieldset, FilterBadge, FilterPill, FilterSectionHeader, FilterTileButton, FloatingActionButton, FlyoutMenu, FlyoutNavGrid, FlyoutQuickActions, ForceTouchMenu, Form, FormActions, FormActionsRow, FormCheckbox, FormField, FormGrid, FormInput, FormModal, FormPriceInput, FormSection, FormSelect, FormTextarea, FormToggle, GeoMapCanvas, GeoMapLegend, GlassModal, Gradient, GradientBackground, GrowthIndicator, Heading, HeroPanel, HeroSection, IconButton, InfoPopover, InlineForm, InlineSpinner, Input, InputGroup, InteractiveGeoMap, ItemSummary, KORI_ERP_LOADER, Label2 as Label, Label3 as Label2, LabeledToggle, LanguageSwitcher, LaunchpadGrid, Lead, Legend2 as Legend, Link4 as Link, LiquidFilterInput, ListCard, ListCardItem, ListItem, LoadingOverlay, ManagementPageLayout, ManagementSurface, MapZoomControls, MetricCard, MetricCard2, MetricTooltip, MonthPicker, MultiColumnPicker, NavigationProgress, NoDataState, NoResultsState, NotFoundPage, NotificationBadge, NotificationBellButton, NotificationProvider, OfficeCard, OfflineState, OptionGrid, OtpInput, PageEmptyState, PageHeader, PageHeading, PageIndicator, PageLoadingState, PageSectionHeader, Pagination, PasswordInput, PasswordInput2, PasswordStrengthMeter, Pill, PlatformShell, PlusGrid, PlusGridItem, PlusGridRow, PreferenceSection, PriceChangeBadge, ProfileIdentityCard, Progress, ProgressIndicator, PullToRefreshContainer, PullToRefreshIndicator, RadiantHeading, RadiantStatCard, RadiantSubheading, RegionFilterSkeleton, RoleBadge, SafeArea, SafeAreaSpacer, SafeAreaView, SearchBar, SearchFilterToolbar, SearchInput, SectionCard, SectionHeader, SectionHeaderSkeleton, SegmentedControl, Select, SelectContent, SelectItem, SelectTrigger, SelectValue, SelectableChipPicker, SelectableListPicker, SelectableOptionsGrid, SelectableTableRow, SelectionCard, ServerErrorPage, SettingsDialog, SettingsModal, Sheet, SliderInput, SocialLoginButtons, SortableTableHeader, Spinner, Stat, StatCard, StatCard2, StatCardSkeleton, StatusBadge, StatusToggle, StepFormPage, StepNavigationButtons, StepTimeline, Strong, Subheading, SwipeableRow, Switch2 as Switch, SwitchField, SwitchGroup, Table, TableBody, TableCell, TableEmptyState, TableHead, TableHeader, TableRow, TableSkeleton, TableSkeletonRow, Tabs, TabsContent, TabsList, TabsTrigger, TagBadge, Text, TextLink, Textarea, ThemeSwitch, ThemeToggle, ThemeToggleCompact, TimePicker, ToggleSwitch, TouchTarget, US_ACCENT_MAP, US_MACRO_REGIONS, US_MAP_CENTER, US_STATE_COORDINATES, US_STATE_PALETTES, US_THEME_CONFIG, UserAvatar, UserMobileInfo, WINDSOCK_LOADER, WIRE_LOADER, WheelPicker, WindsockIcon, buildDockActions, buildFlyoutNavItems, buildLaunchpadItems, buttonPress, buttonPressReduced, buttonTap, cardHover, cardHoverReduced, cardPress, createMotionProps, durations, durationsReduced, easings, fadeOnly, fadeScale, filterByPermission, formatCurrency, formatDate, formatPercentage, getBrazilAccent, getBrazilColors, getBrazilFlagUrl, getBrazilGradient, getBrazilHexColor, getBrazilPalette, getStatusColor, getSubdivisionAccent, getSubdivisionColors, getSubdivisionFlagUrl, getSubdivisionGradient, getSubdivisionHexColor, getSubdivisionPalette, getTransition, getUsAccent, getUsColors, getUsFlagUrl, getUsGradient, getUsHexColor, getUsPalette, getVariants, iosColors, isValidBrazilState, isValidSubdivision, isValidUsState, listItem, listItemReduced, notificationBanner, notificationBannerReduced, pageControlDot, prefersReducedMotion, registerSubdivisionTheme, resolveGlassAccentRgb, selectIsAuthenticated, selectShowShellChrome, selectUserInitial, selectUserName, shimmerClass, shimmerWhiteClass, slideDown, slideRight, slideUp, springPresets, springPresetsReduced, staggerContainer, swipeActionThreshold, swipeConstraints, useGeoMapState, useNotifications, usePlatformShellStore, usePullToRefresh };
|
|
14832
|
-
//# sourceMappingURL=chunk-
|
|
14833
|
-
//# sourceMappingURL=chunk-
|
|
14872
|
+
//# sourceMappingURL=chunk-3VSRFFI6.mjs.map
|
|
14873
|
+
//# sourceMappingURL=chunk-3VSRFFI6.mjs.map
|