@j3m-quantum/ui 1.7.0 → 1.8.0
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 +1507 -182
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +375 -1
- package/dist/index.d.ts +375 -1
- package/dist/index.js +1492 -183
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1630,6 +1630,380 @@ interface SubmitCalibrationBarProps extends React$1.HTMLAttributes<HTMLDivElemen
|
|
|
1630
1630
|
*/
|
|
1631
1631
|
declare function SubmitCalibrationBar({ className, status, lastSaved, canSubmit, shortfallCount, pendingCount, message, onSubmit, onSaveDraft, ...props }: SubmitCalibrationBarProps): react_jsx_runtime.JSX.Element;
|
|
1632
1632
|
|
|
1633
|
+
/**
|
|
1634
|
+
* Types for the Supplier Weekly Loading (iPad) block
|
|
1635
|
+
*
|
|
1636
|
+
* A touch-first weekly view for suppliers to view deliveries
|
|
1637
|
+
* and add pre-unloading comments.
|
|
1638
|
+
*/
|
|
1639
|
+
/**
|
|
1640
|
+
* User role for role-based access control
|
|
1641
|
+
*/
|
|
1642
|
+
type LoadingUserRole = "supplier" | "j3m";
|
|
1643
|
+
/**
|
|
1644
|
+
* Delivery status for loading
|
|
1645
|
+
*/
|
|
1646
|
+
type LoadingDeliveryStatus = "planned" | "in_progress" | "loaded" | "shipped" | "delivered" | "cancelled";
|
|
1647
|
+
/**
|
|
1648
|
+
* Element shipment status for loading (neutral tone, non-critical)
|
|
1649
|
+
*/
|
|
1650
|
+
type LoadingElementStatus = "loaded" | "missing" | "moved" | "addon";
|
|
1651
|
+
/**
|
|
1652
|
+
* Get label for element shipment status (neutral tone)
|
|
1653
|
+
*/
|
|
1654
|
+
declare function getLoadingElementStatusLabel(status: LoadingElementStatus): string;
|
|
1655
|
+
/**
|
|
1656
|
+
* Get status label for delivery
|
|
1657
|
+
*/
|
|
1658
|
+
declare function getLoadingDeliveryStatusLabel(status: LoadingDeliveryStatus): string;
|
|
1659
|
+
/**
|
|
1660
|
+
* Visual state for delivery cards (3-state model)
|
|
1661
|
+
* - sent: Greyed out with checkmark (shipped/delivered)
|
|
1662
|
+
* - ready: Highlighted as ready to unload
|
|
1663
|
+
* - normal: Default neutral state
|
|
1664
|
+
*/
|
|
1665
|
+
type DeliveryVisualState = "sent" | "ready" | "normal";
|
|
1666
|
+
/**
|
|
1667
|
+
* Determine the visual state for a delivery card
|
|
1668
|
+
*/
|
|
1669
|
+
declare function getDeliveryVisualState(delivery: LoadingDelivery): DeliveryVisualState;
|
|
1670
|
+
/**
|
|
1671
|
+
* An element to be loaded/unloaded
|
|
1672
|
+
*/
|
|
1673
|
+
interface LoadingElement {
|
|
1674
|
+
/** Unique identifier */
|
|
1675
|
+
id: string;
|
|
1676
|
+
/** Prefix code (e.g., "VP", "YV") */
|
|
1677
|
+
prefix: string;
|
|
1678
|
+
/** Element type (e.g., "Wall panel", "Column") */
|
|
1679
|
+
type: string;
|
|
1680
|
+
/** Weight in kg or tons */
|
|
1681
|
+
weight?: number;
|
|
1682
|
+
/** Weight unit */
|
|
1683
|
+
weightUnit?: "kg" | "ton";
|
|
1684
|
+
/** Size in square meters */
|
|
1685
|
+
sizeSqm?: number;
|
|
1686
|
+
/** Delivery reference (the delivery this element belongs to) */
|
|
1687
|
+
deliveryId: string;
|
|
1688
|
+
/** Shipment status */
|
|
1689
|
+
status: LoadingElementStatus;
|
|
1690
|
+
/** If moved, reference to actual delivery */
|
|
1691
|
+
actualDeliveryId?: string;
|
|
1692
|
+
/** If moved, label of actual delivery */
|
|
1693
|
+
actualDeliveryLabel?: string;
|
|
1694
|
+
/** If addon, reference to original delivery */
|
|
1695
|
+
originalDeliveryId?: string;
|
|
1696
|
+
/** If addon, label of original delivery */
|
|
1697
|
+
originalDeliveryLabel?: string;
|
|
1698
|
+
}
|
|
1699
|
+
/**
|
|
1700
|
+
* Comment context for pre-unloading notes
|
|
1701
|
+
*/
|
|
1702
|
+
type CommentContext = "pre_unloading" | "general";
|
|
1703
|
+
/**
|
|
1704
|
+
* A comment attached to a delivery (pre-unloading)
|
|
1705
|
+
*/
|
|
1706
|
+
interface LoadingComment {
|
|
1707
|
+
/** Unique identifier */
|
|
1708
|
+
id: string;
|
|
1709
|
+
/** Author name */
|
|
1710
|
+
author: string;
|
|
1711
|
+
/** Comment text */
|
|
1712
|
+
text: string;
|
|
1713
|
+
/** Timestamp */
|
|
1714
|
+
createdAt: Date;
|
|
1715
|
+
/** Context type */
|
|
1716
|
+
context: CommentContext;
|
|
1717
|
+
/** Week ID (YYYY-WXX format) */
|
|
1718
|
+
weekId: string;
|
|
1719
|
+
/** Delivery ID */
|
|
1720
|
+
deliveryId: string;
|
|
1721
|
+
/** Supplier ID */
|
|
1722
|
+
supplierId?: string;
|
|
1723
|
+
/** Supplier name for display */
|
|
1724
|
+
supplierName?: string;
|
|
1725
|
+
/** Prefix ID (optional) */
|
|
1726
|
+
prefixId?: string;
|
|
1727
|
+
/** Prefix name for display */
|
|
1728
|
+
prefixName?: string;
|
|
1729
|
+
}
|
|
1730
|
+
/**
|
|
1731
|
+
* A delivery to be loaded
|
|
1732
|
+
*/
|
|
1733
|
+
interface LoadingDelivery {
|
|
1734
|
+
/** Unique identifier */
|
|
1735
|
+
id: string;
|
|
1736
|
+
/** Display label (e.g., "Delivery #1") */
|
|
1737
|
+
label: string;
|
|
1738
|
+
/** Delivery date */
|
|
1739
|
+
date: Date;
|
|
1740
|
+
/** Supplier ID */
|
|
1741
|
+
supplierId: string;
|
|
1742
|
+
/** Supplier name */
|
|
1743
|
+
supplierName: string;
|
|
1744
|
+
/** Prefix scope (if available) */
|
|
1745
|
+
prefixScope?: string;
|
|
1746
|
+
/** Delivery status */
|
|
1747
|
+
status: LoadingDeliveryStatus;
|
|
1748
|
+
/** Destination */
|
|
1749
|
+
destination?: string;
|
|
1750
|
+
/** Elements to load */
|
|
1751
|
+
elements: LoadingElement[];
|
|
1752
|
+
/** Pre-unloading comments */
|
|
1753
|
+
comments: LoadingComment[];
|
|
1754
|
+
/** Number loaded (if loading has started) */
|
|
1755
|
+
loadedCount?: number;
|
|
1756
|
+
/** Total elements count */
|
|
1757
|
+
totalCount?: number;
|
|
1758
|
+
/** Number of elements produced (for "Produced: X / Y" display) */
|
|
1759
|
+
producedCount?: number;
|
|
1760
|
+
/** Total weight in tons produced */
|
|
1761
|
+
producedTons?: number;
|
|
1762
|
+
/** Total weight in tons planned */
|
|
1763
|
+
totalTons?: number;
|
|
1764
|
+
/** Whether all elements are produced and ready to load */
|
|
1765
|
+
isReadyToUnload?: boolean;
|
|
1766
|
+
/** Whether there's a production delay risk (shows red styling) */
|
|
1767
|
+
hasProductionRisk?: boolean;
|
|
1768
|
+
/** Risk reason if hasProductionRisk is true */
|
|
1769
|
+
riskReason?: string;
|
|
1770
|
+
}
|
|
1771
|
+
/**
|
|
1772
|
+
* A supplier with deliveries
|
|
1773
|
+
*/
|
|
1774
|
+
interface LoadingSupplier {
|
|
1775
|
+
/** Unique identifier */
|
|
1776
|
+
id: string;
|
|
1777
|
+
/** Supplier name */
|
|
1778
|
+
name: string;
|
|
1779
|
+
/** Prefixes this supplier handles */
|
|
1780
|
+
prefixes?: string[];
|
|
1781
|
+
}
|
|
1782
|
+
/**
|
|
1783
|
+
* A prefix/delivery type for the Y-axis legend (like Calibration table)
|
|
1784
|
+
*/
|
|
1785
|
+
interface LoadingPrefix {
|
|
1786
|
+
/** Unique identifier (prefix code) */
|
|
1787
|
+
id: string;
|
|
1788
|
+
/** Display name (e.g., "Wall Panels") */
|
|
1789
|
+
name: string;
|
|
1790
|
+
/** Short type code (e.g., "VP") */
|
|
1791
|
+
typeCode: string;
|
|
1792
|
+
/** Supplier this prefix belongs to */
|
|
1793
|
+
supplierId: string;
|
|
1794
|
+
/** Supplier name */
|
|
1795
|
+
supplierName: string;
|
|
1796
|
+
/** Total deliveries for this prefix in the week */
|
|
1797
|
+
totalDeliveries: number;
|
|
1798
|
+
/** Sent/completed deliveries */
|
|
1799
|
+
sentDeliveries: number;
|
|
1800
|
+
/** Whether any delivery in this prefix has a risk */
|
|
1801
|
+
hasRisk?: boolean;
|
|
1802
|
+
}
|
|
1803
|
+
/**
|
|
1804
|
+
* Week data for the loading view
|
|
1805
|
+
*/
|
|
1806
|
+
interface LoadingWeek {
|
|
1807
|
+
/** Week key (YYYY-WXX format) */
|
|
1808
|
+
weekKey: string;
|
|
1809
|
+
/** Week label (e.g., "W02") */
|
|
1810
|
+
label: string;
|
|
1811
|
+
/** Start date (Monday) */
|
|
1812
|
+
startDate: Date;
|
|
1813
|
+
/** End date (Friday) */
|
|
1814
|
+
endDate: Date;
|
|
1815
|
+
/** Date range string (e.g., "Jan 6 - Jan 10") */
|
|
1816
|
+
dateRange: string;
|
|
1817
|
+
/** Whether this is the current week */
|
|
1818
|
+
isCurrentWeek: boolean;
|
|
1819
|
+
}
|
|
1820
|
+
/**
|
|
1821
|
+
* Props for the SupplierWeeklyLoading component
|
|
1822
|
+
*/
|
|
1823
|
+
interface SupplierWeeklyLoadingProps {
|
|
1824
|
+
/** Current week data */
|
|
1825
|
+
week: LoadingWeek;
|
|
1826
|
+
/** Deliveries for the week (grouped by day) */
|
|
1827
|
+
deliveries: LoadingDelivery[];
|
|
1828
|
+
/** Available suppliers (for comment selector) */
|
|
1829
|
+
suppliers: LoadingSupplier[];
|
|
1830
|
+
/** User role for access control */
|
|
1831
|
+
userRole?: LoadingUserRole;
|
|
1832
|
+
/** Current supplier ID (required when userRole is "supplier") */
|
|
1833
|
+
currentSupplierId?: string;
|
|
1834
|
+
/** Callback when a delivery card is tapped */
|
|
1835
|
+
onDeliveryClick?: (delivery: LoadingDelivery) => void;
|
|
1836
|
+
/** Callback when navigating back from detail */
|
|
1837
|
+
onBack?: () => void;
|
|
1838
|
+
/** Callback when a comment is added */
|
|
1839
|
+
onAddComment?: (comment: Omit<LoadingComment, "id" | "createdAt">) => void;
|
|
1840
|
+
/** Callback when confirming a load */
|
|
1841
|
+
onConfirmLoad?: (deliveryId: string) => void;
|
|
1842
|
+
/** Additional class names */
|
|
1843
|
+
className?: string;
|
|
1844
|
+
}
|
|
1845
|
+
/**
|
|
1846
|
+
* Props for the DeliveryDetailPage component
|
|
1847
|
+
*/
|
|
1848
|
+
interface DeliveryDetailPageProps {
|
|
1849
|
+
/** Delivery data */
|
|
1850
|
+
delivery: LoadingDelivery;
|
|
1851
|
+
/** Week data */
|
|
1852
|
+
week: LoadingWeek;
|
|
1853
|
+
/** Available suppliers for comment selector */
|
|
1854
|
+
suppliers: LoadingSupplier[];
|
|
1855
|
+
/** User role */
|
|
1856
|
+
userRole?: LoadingUserRole;
|
|
1857
|
+
/** Current supplier ID */
|
|
1858
|
+
currentSupplierId?: string;
|
|
1859
|
+
/** Callback to navigate back */
|
|
1860
|
+
onBack: () => void;
|
|
1861
|
+
/** Callback when a comment is added */
|
|
1862
|
+
onAddComment?: (comment: Omit<LoadingComment, "id" | "createdAt">) => void;
|
|
1863
|
+
/** Callback when confirming a load */
|
|
1864
|
+
onConfirmLoad?: (deliveryId: string) => void;
|
|
1865
|
+
}
|
|
1866
|
+
/**
|
|
1867
|
+
* Helper: Get ISO week number from a date
|
|
1868
|
+
*/
|
|
1869
|
+
declare function getLoadingISOWeek(date: Date): number;
|
|
1870
|
+
/**
|
|
1871
|
+
* Helper: Get week key from a date (YYYY-WXX format)
|
|
1872
|
+
*/
|
|
1873
|
+
declare function getLoadingWeekKey(date: Date): string;
|
|
1874
|
+
/**
|
|
1875
|
+
* Helper: Generate week data from a date
|
|
1876
|
+
*/
|
|
1877
|
+
declare function generateLoadingWeek(date: Date): LoadingWeek;
|
|
1878
|
+
/**
|
|
1879
|
+
* Helper: Group deliveries by day of week (Mon-Fri)
|
|
1880
|
+
*/
|
|
1881
|
+
declare function groupDeliveriesByDay(deliveries: LoadingDelivery[]): Map<number, LoadingDelivery[]>;
|
|
1882
|
+
/**
|
|
1883
|
+
* Helper: Get day label
|
|
1884
|
+
*/
|
|
1885
|
+
declare function getDayLabel(dayOfWeek: number): string;
|
|
1886
|
+
/**
|
|
1887
|
+
* Helper: Get short day label
|
|
1888
|
+
*/
|
|
1889
|
+
declare function getShortDayLabel(dayOfWeek: number): string;
|
|
1890
|
+
/**
|
|
1891
|
+
* Helper: Extract unique prefixes from deliveries
|
|
1892
|
+
*/
|
|
1893
|
+
declare function extractPrefixes(deliveries: LoadingDelivery[]): LoadingPrefix[];
|
|
1894
|
+
/**
|
|
1895
|
+
* Helper: Group deliveries by prefix AND day (for grid view)
|
|
1896
|
+
* Returns Map<prefixId, Map<dayOfWeek, LoadingDelivery[]>>
|
|
1897
|
+
*/
|
|
1898
|
+
declare function groupDeliveriesByPrefixAndDay(deliveries: LoadingDelivery[]): Map<string, Map<number, LoadingDelivery[]>>;
|
|
1899
|
+
|
|
1900
|
+
/**
|
|
1901
|
+
* SupplierWeeklyLoading - Weekly loading view matching Big Calendar patterns
|
|
1902
|
+
*
|
|
1903
|
+
* Features:
|
|
1904
|
+
* - Clean weekly grid (Mon-Fri) with compact delivery badges
|
|
1905
|
+
* - Sheet-based drilldown for delivery details
|
|
1906
|
+
* - Responsive layout (desktop centered, mobile full-width)
|
|
1907
|
+
* - Role-based supplier/prefix filtering
|
|
1908
|
+
*
|
|
1909
|
+
* Layout matches Big Calendar:
|
|
1910
|
+
* - Bordered card container
|
|
1911
|
+
* - Internal header with week navigation
|
|
1912
|
+
* - Scrollable content area
|
|
1913
|
+
* - Sheet overlay for details (not page replacement)
|
|
1914
|
+
*/
|
|
1915
|
+
declare function SupplierWeeklyLoading({ week, deliveries, suppliers, userRole, currentSupplierId, onDeliveryClick, onBack, onAddComment, onConfirmLoad, onWeekChange, showNavigation, bordered, className, }: SupplierWeeklyLoadingProps & {
|
|
1916
|
+
onWeekChange?: (direction: "prev" | "next") => void;
|
|
1917
|
+
showNavigation?: boolean;
|
|
1918
|
+
bordered?: boolean;
|
|
1919
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1920
|
+
|
|
1921
|
+
interface DeliveryCardProps {
|
|
1922
|
+
/** Delivery data */
|
|
1923
|
+
delivery: LoadingDelivery;
|
|
1924
|
+
/** Callback when card is tapped */
|
|
1925
|
+
onTap?: () => void;
|
|
1926
|
+
/** Additional class names */
|
|
1927
|
+
className?: string;
|
|
1928
|
+
}
|
|
1929
|
+
/**
|
|
1930
|
+
* DeliveryCard - Touch-first card for displaying a delivery.
|
|
1931
|
+
*
|
|
1932
|
+
* Matches Calibration table visual language:
|
|
1933
|
+
* - Full-width (no max-width)
|
|
1934
|
+
* - 90° corners (j3m.radius.none = rounded-none)
|
|
1935
|
+
* - Left stroke only for status (j3m.stroke.m = border-l-2)
|
|
1936
|
+
* - 56px min-height for iPad tap targets
|
|
1937
|
+
*
|
|
1938
|
+
* Visual States (left stroke):
|
|
1939
|
+
* - Sent: Green stroke (subtle) + greyed content + checkmark
|
|
1940
|
+
* - Ready: Green stroke + "Ready" badge
|
|
1941
|
+
* - Risk: Red stroke (same as Calibration)
|
|
1942
|
+
* - Normal: Transparent stroke (border on hover)
|
|
1943
|
+
*/
|
|
1944
|
+
declare function DeliveryCard({ delivery, onTap, className, }: DeliveryCardProps): react_jsx_runtime.JSX.Element;
|
|
1945
|
+
|
|
1946
|
+
interface DeliveryBadgeProps {
|
|
1947
|
+
/** Delivery data */
|
|
1948
|
+
delivery: LoadingDelivery;
|
|
1949
|
+
/** Callback when badge is clicked */
|
|
1950
|
+
onClick?: () => void;
|
|
1951
|
+
/** Additional class names */
|
|
1952
|
+
className?: string;
|
|
1953
|
+
}
|
|
1954
|
+
/**
|
|
1955
|
+
* DeliveryBadge - Touch-first card for weekly grid view
|
|
1956
|
+
*
|
|
1957
|
+
* Card title = prefixes carried (e.g., "TF · WP · CF")
|
|
1958
|
+
* Factory icon + progress bar for production readiness
|
|
1959
|
+
*
|
|
1960
|
+
* Spacing using Quantum tokens:
|
|
1961
|
+
* - Card height: h-[80px]
|
|
1962
|
+
* - Padding: px-6 py-4 (j3m.spacing.l / j3m.spacing.m)
|
|
1963
|
+
* - Row gap: gap-3 (j3m.spacing.s = 12px) - breathing room between title and progress
|
|
1964
|
+
* - Intra-row gap: gap-2 (j3m.spacing.xs = 8px) - tighter within rows
|
|
1965
|
+
*/
|
|
1966
|
+
declare function DeliveryBadge({ delivery, onClick, className, }: DeliveryBadgeProps): react_jsx_runtime.JSX.Element;
|
|
1967
|
+
|
|
1968
|
+
/**
|
|
1969
|
+
* DeliveryDetailPage - Touch-first detail page for a delivery
|
|
1970
|
+
*
|
|
1971
|
+
* Shows:
|
|
1972
|
+
* - Delivery summary with visual state (sent/ready/normal)
|
|
1973
|
+
* - Production progress with risk indicators
|
|
1974
|
+
* - Elements table (view-only)
|
|
1975
|
+
* - Pre-unloading notes (Dialog for adding - no "Applies to" selector)
|
|
1976
|
+
* - Actions (Confirm load)
|
|
1977
|
+
*/
|
|
1978
|
+
declare function DeliveryDetailPage({ delivery, week, suppliers, userRole, currentSupplierId, onBack, onAddComment, onConfirmLoad, }: DeliveryDetailPageProps): react_jsx_runtime.JSX.Element;
|
|
1979
|
+
|
|
1980
|
+
interface WeeklyLoadingViewProps {
|
|
1981
|
+
/** Week data */
|
|
1982
|
+
week: LoadingWeek;
|
|
1983
|
+
/** Deliveries for the week */
|
|
1984
|
+
deliveries: LoadingDelivery[];
|
|
1985
|
+
/** Callback when a delivery is clicked */
|
|
1986
|
+
onDeliveryClick?: (delivery: LoadingDelivery) => void;
|
|
1987
|
+
/** Callback for week navigation (optional) */
|
|
1988
|
+
onWeekChange?: (direction: "prev" | "next") => void;
|
|
1989
|
+
/** Callback when day comment button is clicked */
|
|
1990
|
+
onDayCommentClick?: (dayOfWeek: number, date: Date) => void;
|
|
1991
|
+
/** Show week navigation controls */
|
|
1992
|
+
showNavigation?: boolean;
|
|
1993
|
+
/** Additional class names */
|
|
1994
|
+
className?: string;
|
|
1995
|
+
}
|
|
1996
|
+
/**
|
|
1997
|
+
* WeeklyLoadingView - Clean weekly view with day columns
|
|
1998
|
+
*
|
|
1999
|
+
* Layout using Quantum spacing tokens:
|
|
2000
|
+
* - Columns = Mon-Fri (no vertical dividers)
|
|
2001
|
+
* - Day headers include comment button (top-right)
|
|
2002
|
+
* - Each column contains stacked delivery cards with gap-3 (j3m.spacing.s = 12px)
|
|
2003
|
+
* - Content-sized grid
|
|
2004
|
+
*/
|
|
2005
|
+
declare function WeeklyLoadingView({ week, deliveries, onDeliveryClick, onWeekChange, onDayCommentClick, showNavigation, className, }: WeeklyLoadingViewProps): react_jsx_runtime.JSX.Element;
|
|
2006
|
+
|
|
1633
2007
|
/**
|
|
1634
2008
|
* Event Calendar Types
|
|
1635
2009
|
* Based on big-calendar by Leonardo Ramos (MIT License)
|
|
@@ -2202,4 +2576,4 @@ interface BigCalendarProps extends Omit<EventCalendarProviderProps, "children">
|
|
|
2202
2576
|
}
|
|
2203
2577
|
declare function BigCalendar({ className, compact, bordered, showHeader, showAddButton, showSettings, enableDragDrop, weekStartsOn, maxEventsPerDay, config, ...providerProps }: BigCalendarProps): react_jsx_runtime.JSX.Element;
|
|
2204
2578
|
|
|
2205
|
-
export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, AgendaView, type AgendaViewProps, Alert, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertTitle, AspectRatio, Avatar, AvatarFallback, AvatarImage, BADGE_VARIANT_LABELS, Badge, BigCalendar, type BigCalendarProps, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, ButtonGroup, ButtonGroupSeparator, ButtonGroupText, type ButtonProps, Calendar, CalendarContext, CalendarDayButton, CalendarHeader, CalendarHeaderCompact, type CalendarHeaderCompactProps, type CalendarHeaderProps, CalendarSettingsButton, type CalendarSettingsButtonProps, CalendarSettingsContent, type CalendarSettingsContentProps, CalendarSettingsDialog, type CalendarSettingsDialogProps, type CalibrationCellData, type CalibrationComment, type CalibrationMode, type CalibrationOverviewProps, type CalibrationPrefix, type CalibrationStatus, type CalibrationSupplier, CalibrationTable, type CalibrationTableConfig, type CalibrationTableProps, type CalibrationUnit, CalibrationWeekCell, type CalibrationWeekCellProps, CalibrationWeekHeader, type CalibrationWeekHeaderProps, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Carousel, type CarouselApi, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, ChangeBadgeVariantInput, ChangeVisibleHoursInput, ChangeWorkingHoursInput, type ChartConfig, ChartContainer, ChartLegend, ChartLegendContent, ChartStyle, ChartTooltip, ChartTooltipContent, Checkbox, type CheckpointBadgeType, CircularProgress, type CircularProgressProps, Collapsible, CollapsibleContent, CollapsibleTrigger, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, CommentButton, type CommentButtonProps, CommentDialog, type CommentDialogProps, type CommentLocationOption, CommentPopover, type CommentPopoverProps, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, DEFAULT_VISIBLE_HOURS, DEFAULT_WORKING_HOURS, DataTableColumnHeader, type DataTableColumnHeaderProps, DataTablePagination, type DataTablePaginationProps, DataTableViewOptions, type DataTableViewOptionsProps, DateBadge, type DateBadgeProps, DayView, type DayViewProps, type Delivery, type DeliveryElement, DeliveryIndicator, type DeliveryIndicatorProps, DeliveryIndicators, type DeliveryIndicatorsProps, type DeliveryStatus, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DragContext, DragProvider, type DragProviderProps, DraggableEvent, type DraggableEventProps, Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, DroppableZone, type DroppableZoneProps, EVENT_COLORS, type ElementShipmentStatus, Empty, EmptyContent, EmptyDescription, EmptyHeader, EmptyMedia, EmptyTitle, EventBadge, type EventBadgeProps, EventCalendarProvider, type EventCalendarProviderProps, EventDialog, type EventDialogProps, Field, FieldContent, FieldDescription, FieldError, FieldGroup, FieldLabel, FieldLegend, FieldSeparator, FieldSet, FieldTitle, Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, HoverCard, HoverCardContent, HoverCardTrigger, type ICalendarActions, type ICalendarCell, type ICalendarConfig, type ICalendarContext, type ICalendarHeaderProps, type ICalendarState, type IDayCellProps, type IDragContext, type IEvent, type IEventBadgeProps, type IEventDialogProps, type IEventPosition, type ITimeSlotProps, type IUser, type IViewProps, type IWorkingHours, Input, InputGroup, InputGroupAddon, InputGroupButton, InputGroupInput, InputGroupText, InputGroupTextarea, Item, ItemActions, ItemContent, ItemDescription, ItemFooter, ItemGroup, ItemHeader, ItemMedia, ItemSeparator, ItemTitle, Kbd, KbdGroup, Label, Menubar, MenubarCheckboxItem, MenubarContent, MenubarGroup, MenubarItem, MenubarLabel, MenubarMenu, MenubarPortal, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger, MonthView, type MonthViewProps, MoreEvents, type MoreEventsProps, NativeSelect, NativeSelectOptGroup, NativeSelectOption, type NavItem, NavMain, type NavProject, NavProjects, NavSecondary, NavUser, NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, NavigationMenuViewport, NetBadge, type NetBadgeProps, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, type PlanningComment, type PlanningCommentLocation, type PlanningCommentLocationType, PlanningTable, type PlanningTableConfig, type PlanningTableProps, PlanningTableToolbar, type PlanningTableToolbarProps, type PlanningUserRole, PlanningWeekCommentPopover, type PlanningWeekCommentPopoverProps, PlayerCanvas, PlayerCanvasActionButton, PlayerCanvasControls, PlayerCanvasDivider, PlayerCanvasInfo, PlayerCanvasLabel, PlayerCanvasPlayButton, PlayerCanvasProgress, PlayerCanvasSkipButton, PlayerCanvasTitle, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, type PrefixOption, type ProductionData, type ProductionUnit, Progress, QuickAddEvent, type QuickAddEventProps, RadioGroup, RadioGroupItem, ResizableHandle, ResizablePanel, ResizablePanelGroup, RowHeaderCell, type RowHeaderCellProps, ScrollArea, ScrollBar, SearchForm, SearchTrigger, type SearchTriggerProps, Section, SectionContent, SectionDescription, SectionFooter, SectionHeader, type SectionProps, SectionTitle, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, Sheet, SheetBody, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, SiteHeader, Skeleton, Slider, Spinner, type SubmissionStatus, SubmitCalibrationBar, type SubmitCalibrationBarProps, type Supplier, type SupplierBadgeType, SupplierCell, type SupplierCellProps, Switch, type TBadgeVariant, type TCalendarView, type TEventColor, type TVisibleHours, type TWorkingHours, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Textarea, ThemeSwitch, type ThemeSwitchProps, TimeIndicator, type TimeIndicatorProps, Toaster, Toggle, ToggleGroup, ToggleGroupItem, ToolBarCanvas, ToolBarCanvasButton, ToolBarCanvasDivider, ToolBarCanvasGroup, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, type UseDroppableOptions, type UserAvatarItem, UserAvatarsDropdown, type UserAvatarsDropdownProps, VIEW_LABELS, type Week, WeekCell, type WeekCellData, type WeekCellProps, WeekDetailDialog, type WeekDetailDialogProps, WeekHeader, type WeekHeaderProps, WeekView, type WeekViewProps, YearView, type YearViewProps, badgeVariants, buttonGroupVariants, buttonVariants, calculateCalibrationCells, calculateDropDates, calculateMonthEventPositions, canSubmitCalibration, cardVariants, createDefaultEvent, deliveryIndicatorVariants, formatCalibrationUnit, formatDateRange, formatProductionUnit, formatTime, generateColumns, generateEventId, generateLocationOptions, generateWeekColumns, generateWeeks, getCalendarCells, getCommentLocationLabel, getCurrentEvents, getDayHours, getElementShipmentStatus, getEventBlockStyle, getEventDuration, getEventDurationMinutes, getEventsCount, getEventsForDate, getEventsInRange, getHeaderLabel, getISOWeek, getMonthCellEvents, getMonthDays, getShipmentStatusLabel, getSupplierColumn, getTimeHeight, getTimePosition, getViewDateRange, getVisibleHours, getWeekDayNames, getWeekDays, getWeekKey, getYearMonths, groupEvents, isMultiDayEvent, isWorkingHour, navigateDate, navigationMenuTriggerStyle, playerCanvasPlayButtonVariants, playerCanvasSkipButtonVariants, rangeText, sectionVariants, snapToInterval, sortEvents, splitEventsByDuration, toggleVariants, toolBarCanvasButtonVariants, useDrag, useDraggable, useDroppable, useEventCalendar, useEventsInRange, useFilteredEvents, useFormField, useIsMobile, useSearchShortcut, useSidebar };
|
|
2579
|
+
export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, AgendaView, type AgendaViewProps, Alert, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertTitle, AspectRatio, Avatar, AvatarFallback, AvatarImage, BADGE_VARIANT_LABELS, Badge, BigCalendar, type BigCalendarProps, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, ButtonGroup, ButtonGroupSeparator, ButtonGroupText, type ButtonProps, Calendar, CalendarContext, CalendarDayButton, CalendarHeader, CalendarHeaderCompact, type CalendarHeaderCompactProps, type CalendarHeaderProps, CalendarSettingsButton, type CalendarSettingsButtonProps, CalendarSettingsContent, type CalendarSettingsContentProps, CalendarSettingsDialog, type CalendarSettingsDialogProps, type CalibrationCellData, type CalibrationComment, type CalibrationMode, type CalibrationOverviewProps, type CalibrationPrefix, type CalibrationStatus, type CalibrationSupplier, CalibrationTable, type CalibrationTableConfig, type CalibrationTableProps, type CalibrationUnit, CalibrationWeekCell, type CalibrationWeekCellProps, CalibrationWeekHeader, type CalibrationWeekHeaderProps, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Carousel, type CarouselApi, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, ChangeBadgeVariantInput, ChangeVisibleHoursInput, ChangeWorkingHoursInput, type ChartConfig, ChartContainer, ChartLegend, ChartLegendContent, ChartStyle, ChartTooltip, ChartTooltipContent, Checkbox, type CheckpointBadgeType, CircularProgress, type CircularProgressProps, Collapsible, CollapsibleContent, CollapsibleTrigger, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, CommentButton, type CommentButtonProps, type CommentContext, CommentDialog, type CommentDialogProps, type CommentLocationOption, CommentPopover, type CommentPopoverProps, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, DEFAULT_VISIBLE_HOURS, DEFAULT_WORKING_HOURS, DataTableColumnHeader, type DataTableColumnHeaderProps, DataTablePagination, type DataTablePaginationProps, DataTableViewOptions, type DataTableViewOptionsProps, DateBadge, type DateBadgeProps, DayView, type DayViewProps, type Delivery, DeliveryBadge, type DeliveryBadgeProps, DeliveryCard, type DeliveryCardProps, DeliveryDetailPage, type DeliveryDetailPageProps, type DeliveryElement, DeliveryIndicator, type DeliveryIndicatorProps, DeliveryIndicators, type DeliveryIndicatorsProps, type DeliveryStatus, type DeliveryVisualState, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DragContext, DragProvider, type DragProviderProps, DraggableEvent, type DraggableEventProps, Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, DroppableZone, type DroppableZoneProps, EVENT_COLORS, type ElementShipmentStatus, Empty, EmptyContent, EmptyDescription, EmptyHeader, EmptyMedia, EmptyTitle, EventBadge, type EventBadgeProps, EventCalendarProvider, type EventCalendarProviderProps, EventDialog, type EventDialogProps, Field, FieldContent, FieldDescription, FieldError, FieldGroup, FieldLabel, FieldLegend, FieldSeparator, FieldSet, FieldTitle, Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, HoverCard, HoverCardContent, HoverCardTrigger, type ICalendarActions, type ICalendarCell, type ICalendarConfig, type ICalendarContext, type ICalendarHeaderProps, type ICalendarState, type IDayCellProps, type IDragContext, type IEvent, type IEventBadgeProps, type IEventDialogProps, type IEventPosition, type ITimeSlotProps, type IUser, type IViewProps, type IWorkingHours, Input, InputGroup, InputGroupAddon, InputGroupButton, InputGroupInput, InputGroupText, InputGroupTextarea, Item, ItemActions, ItemContent, ItemDescription, ItemFooter, ItemGroup, ItemHeader, ItemMedia, ItemSeparator, ItemTitle, Kbd, KbdGroup, Label, type LoadingComment, type LoadingDelivery, type LoadingDeliveryStatus, type LoadingElement, type LoadingElementStatus, type LoadingPrefix, type LoadingSupplier, type LoadingUserRole, type LoadingWeek, Menubar, MenubarCheckboxItem, MenubarContent, MenubarGroup, MenubarItem, MenubarLabel, MenubarMenu, MenubarPortal, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger, MonthView, type MonthViewProps, MoreEvents, type MoreEventsProps, NativeSelect, NativeSelectOptGroup, NativeSelectOption, type NavItem, NavMain, type NavProject, NavProjects, NavSecondary, NavUser, NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, NavigationMenuViewport, NetBadge, type NetBadgeProps, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, type PlanningComment, type PlanningCommentLocation, type PlanningCommentLocationType, PlanningTable, type PlanningTableConfig, type PlanningTableProps, PlanningTableToolbar, type PlanningTableToolbarProps, type PlanningUserRole, PlanningWeekCommentPopover, type PlanningWeekCommentPopoverProps, PlayerCanvas, PlayerCanvasActionButton, PlayerCanvasControls, PlayerCanvasDivider, PlayerCanvasInfo, PlayerCanvasLabel, PlayerCanvasPlayButton, PlayerCanvasProgress, PlayerCanvasSkipButton, PlayerCanvasTitle, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, type PrefixOption, type ProductionData, type ProductionUnit, Progress, QuickAddEvent, type QuickAddEventProps, RadioGroup, RadioGroupItem, ResizableHandle, ResizablePanel, ResizablePanelGroup, RowHeaderCell, type RowHeaderCellProps, ScrollArea, ScrollBar, SearchForm, SearchTrigger, type SearchTriggerProps, Section, SectionContent, SectionDescription, SectionFooter, SectionHeader, type SectionProps, SectionTitle, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, Sheet, SheetBody, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, SiteHeader, Skeleton, Slider, Spinner, type SubmissionStatus, SubmitCalibrationBar, type SubmitCalibrationBarProps, type Supplier, type SupplierBadgeType, SupplierCell, type SupplierCellProps, SupplierWeeklyLoading, type SupplierWeeklyLoadingProps, Switch, type TBadgeVariant, type TCalendarView, type TEventColor, type TVisibleHours, type TWorkingHours, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Textarea, ThemeSwitch, type ThemeSwitchProps, TimeIndicator, type TimeIndicatorProps, Toaster, Toggle, ToggleGroup, ToggleGroupItem, ToolBarCanvas, ToolBarCanvasButton, ToolBarCanvasDivider, ToolBarCanvasGroup, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, type UseDroppableOptions, type UserAvatarItem, UserAvatarsDropdown, type UserAvatarsDropdownProps, VIEW_LABELS, type Week, WeekCell, type WeekCellData, type WeekCellProps, WeekDetailDialog, type WeekDetailDialogProps, WeekHeader, type WeekHeaderProps, WeekView, type WeekViewProps, WeeklyLoadingView, type WeeklyLoadingViewProps, YearView, type YearViewProps, badgeVariants, buttonGroupVariants, buttonVariants, calculateCalibrationCells, calculateDropDates, calculateMonthEventPositions, canSubmitCalibration, cardVariants, createDefaultEvent, deliveryIndicatorVariants, extractPrefixes, formatCalibrationUnit, formatDateRange, formatProductionUnit, formatTime, generateColumns, generateEventId, generateLoadingWeek, generateLocationOptions, generateWeekColumns, generateWeeks, getCalendarCells, getCommentLocationLabel, getCurrentEvents, getDayHours, getDayLabel, getDeliveryVisualState, getElementShipmentStatus, getEventBlockStyle, getEventDuration, getEventDurationMinutes, getEventsCount, getEventsForDate, getEventsInRange, getHeaderLabel, getISOWeek, getLoadingDeliveryStatusLabel, getLoadingElementStatusLabel, getLoadingISOWeek, getLoadingWeekKey, getMonthCellEvents, getMonthDays, getShipmentStatusLabel, getShortDayLabel, getSupplierColumn, getTimeHeight, getTimePosition, getViewDateRange, getVisibleHours, getWeekDayNames, getWeekDays, getWeekKey, getYearMonths, groupDeliveriesByDay, groupDeliveriesByPrefixAndDay, groupEvents, isMultiDayEvent, isWorkingHour, navigateDate, navigationMenuTriggerStyle, playerCanvasPlayButtonVariants, playerCanvasSkipButtonVariants, rangeText, sectionVariants, snapToInterval, sortEvents, splitEventsByDuration, toggleVariants, toolBarCanvasButtonVariants, useDrag, useDraggable, useDroppable, useEventCalendar, useEventsInRange, useFilteredEvents, useFormField, useIsMobile, useSearchShortcut, useSidebar };
|