react-os-shell 3.3.2 → 3.6.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/README.md +13 -1
- package/dist/{Browser-GGKJBZCQ.js → Browser-KMCFAQ6B.js} +4 -4
- package/dist/{Browser-GGKJBZCQ.js.map → Browser-KMCFAQ6B.js.map} +1 -1
- package/dist/{Documents-GY6E25YJ.js → Documents-Q3IGUDRC.js} +3 -3
- package/dist/{Documents-GY6E25YJ.js.map → Documents-Q3IGUDRC.js.map} +1 -1
- package/dist/Files-JQMMXIM3.js +12 -0
- package/dist/{Files-ZCGJDSXN.js.map → Files-JQMMXIM3.js.map} +1 -1
- package/dist/{Notepad-JBG2GDDQ.js → Notepad-RGNFWBH7.js} +3 -3
- package/dist/{Notepad-JBG2GDDQ.js.map → Notepad-RGNFWBH7.js.map} +1 -1
- package/dist/Preview-6QVSOGRM.js +8 -0
- package/dist/{Preview-T2XC46AG.js.map → Preview-6QVSOGRM.js.map} +1 -1
- package/dist/{Spreadsheet-L6DMYE6W.js → Spreadsheet-FHAQX6CU.js} +4 -4
- package/dist/{Spreadsheet-L6DMYE6W.js.map → Spreadsheet-FHAQX6CU.js.map} +1 -1
- package/dist/apps/index.js +12 -12
- package/dist/{chunk-OS36T6ZP.js → chunk-2OONWKUI.js} +3 -3
- package/dist/{chunk-OS36T6ZP.js.map → chunk-2OONWKUI.js.map} +1 -1
- package/dist/{chunk-GLKDDFJL.js → chunk-65NSWQAT.js} +3 -3
- package/dist/{chunk-GLKDDFJL.js.map → chunk-65NSWQAT.js.map} +1 -1
- package/dist/{chunk-4J4V7FLN.js → chunk-CML7B3S4.js} +3 -3
- package/dist/{chunk-4J4V7FLN.js.map → chunk-CML7B3S4.js.map} +1 -1
- package/dist/{chunk-ZDTM7HX6.js → chunk-JQGXIQVO.js} +3 -3
- package/dist/{chunk-ZDTM7HX6.js.map → chunk-JQGXIQVO.js.map} +1 -1
- package/dist/{chunk-44B7SHZQ.js → chunk-L5TFGRBY.js} +4 -4
- package/dist/{chunk-44B7SHZQ.js.map → chunk-L5TFGRBY.js.map} +1 -1
- package/dist/{chunk-HM2POVAI.js → chunk-TVSL5Y5H.js} +4 -4
- package/dist/{chunk-HM2POVAI.js.map → chunk-TVSL5Y5H.js.map} +1 -1
- package/dist/index.d.ts +311 -2
- package/dist/index.js +1186 -9
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/dist/Files-ZCGJDSXN.js +0 -12
- package/dist/Preview-T2XC46AG.js +0 -8
package/dist/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { W as WindowRegistry } from './types-CTPtgkiG.js';
|
|
2
2
|
export { M as ModalRegistryEntry, P as PageRegistryEntry, a as WindowRegistryEntry, i as isEntityEntry, b as isPageEntry, s as setShellWindowRegistry } from './types-CTPtgkiG.js';
|
|
3
3
|
import * as react from 'react';
|
|
4
|
-
import react__default, { ReactNode, Component, ErrorInfo, CSSProperties, Dispatch, SetStateAction, RefObject } from 'react';
|
|
4
|
+
import react__default, { ReactNode, Component, ErrorInfo, CSSProperties, Dispatch, SetStateAction, RefObject, ButtonHTMLAttributes, InputHTMLAttributes, TextareaHTMLAttributes, SelectHTMLAttributes, LabelHTMLAttributes } from 'react';
|
|
5
5
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
6
6
|
import * as _tanstack_query_core from '@tanstack/query-core';
|
|
7
7
|
import { AxiosInstance } from 'axios';
|
|
@@ -1380,6 +1380,315 @@ declare function useSort(defaultField: string, defaultDir?: 'asc' | 'desc'): {
|
|
|
1380
1380
|
ordering: string;
|
|
1381
1381
|
};
|
|
1382
1382
|
|
|
1383
|
+
/**
|
|
1384
|
+
* Pagination — a numbered page control for classic paginated tables/lists, with
|
|
1385
|
+
* prev/next and optional first/last edges and ellipsis gaps. Controlled: the
|
|
1386
|
+
* consumer owns `page` and updates it in `onPageChange`. Complements ListFooter
|
|
1387
|
+
* (which shows counts/selection for infinite-scroll lists).
|
|
1388
|
+
*/
|
|
1389
|
+
interface PaginationProps {
|
|
1390
|
+
/** Current page, 1-based. */
|
|
1391
|
+
page: number;
|
|
1392
|
+
pageCount: number;
|
|
1393
|
+
onPageChange: (page: number) => void;
|
|
1394
|
+
/** How many page numbers to show on each side of the current page. */
|
|
1395
|
+
siblingCount?: number;
|
|
1396
|
+
/** Show first/last («/») buttons. */
|
|
1397
|
+
showEdges?: boolean;
|
|
1398
|
+
className?: string;
|
|
1399
|
+
}
|
|
1400
|
+
declare function Pagination({ page, pageCount, onPageChange, siblingCount, showEdges, className, }: PaginationProps): react_jsx_runtime.JSX.Element | null;
|
|
1401
|
+
|
|
1402
|
+
type ButtonVariant = 'primary' | 'secondary' | 'ghost' | 'danger';
|
|
1403
|
+
type ButtonSize = 'sm' | 'md';
|
|
1404
|
+
interface ButtonProps extends Omit<ButtonHTMLAttributes<HTMLButtonElement>, 'className'> {
|
|
1405
|
+
variant?: ButtonVariant;
|
|
1406
|
+
size?: ButtonSize;
|
|
1407
|
+
/** Show a spinner and disable the button while an action is in flight. */
|
|
1408
|
+
loading?: boolean;
|
|
1409
|
+
leftIcon?: ReactNode;
|
|
1410
|
+
rightIcon?: ReactNode;
|
|
1411
|
+
/** Stretch to the full width of the container. */
|
|
1412
|
+
block?: boolean;
|
|
1413
|
+
className?: string;
|
|
1414
|
+
}
|
|
1415
|
+
declare const Button: react.ForwardRefExoticComponent<ButtonProps & react.RefAttributes<HTMLButtonElement>>;
|
|
1416
|
+
|
|
1417
|
+
interface InputProps extends Omit<InputHTMLAttributes<HTMLInputElement>, 'className'> {
|
|
1418
|
+
/** Error state — red border + ring. */
|
|
1419
|
+
invalid?: boolean;
|
|
1420
|
+
/** Icon rendered inside the field's left edge (e.g. a search glyph). */
|
|
1421
|
+
leftIcon?: ReactNode;
|
|
1422
|
+
/** Content pinned to the field's right edge (e.g. a unit, a small action). */
|
|
1423
|
+
rightAdornment?: ReactNode;
|
|
1424
|
+
className?: string;
|
|
1425
|
+
}
|
|
1426
|
+
declare const Input: react.ForwardRefExoticComponent<InputProps & react.RefAttributes<HTMLInputElement>>;
|
|
1427
|
+
|
|
1428
|
+
interface TextareaProps extends Omit<TextareaHTMLAttributes<HTMLTextAreaElement>, 'className'> {
|
|
1429
|
+
/** Error state — red border + ring. */
|
|
1430
|
+
invalid?: boolean;
|
|
1431
|
+
/** Grow the field to fit its content instead of scrolling. */
|
|
1432
|
+
autoGrow?: boolean;
|
|
1433
|
+
className?: string;
|
|
1434
|
+
}
|
|
1435
|
+
declare const Textarea: react.ForwardRefExoticComponent<TextareaProps & react.RefAttributes<HTMLTextAreaElement>>;
|
|
1436
|
+
|
|
1437
|
+
interface SelectOption {
|
|
1438
|
+
value: string;
|
|
1439
|
+
label: string;
|
|
1440
|
+
disabled?: boolean;
|
|
1441
|
+
}
|
|
1442
|
+
interface SelectProps extends Omit<SelectHTMLAttributes<HTMLSelectElement>, 'onChange' | 'value' | 'className'> {
|
|
1443
|
+
value: string;
|
|
1444
|
+
onChange: (value: string) => void;
|
|
1445
|
+
options: SelectOption[];
|
|
1446
|
+
/** Shown as a disabled first option when no value is selected. */
|
|
1447
|
+
placeholder?: string;
|
|
1448
|
+
invalid?: boolean;
|
|
1449
|
+
className?: string;
|
|
1450
|
+
}
|
|
1451
|
+
declare const Select: react.ForwardRefExoticComponent<SelectProps & react.RefAttributes<HTMLSelectElement>>;
|
|
1452
|
+
|
|
1453
|
+
interface CheckboxProps extends Omit<InputHTMLAttributes<HTMLInputElement>, 'type' | 'onChange' | 'checked' | 'className'> {
|
|
1454
|
+
checked: boolean;
|
|
1455
|
+
onChange: (checked: boolean) => void;
|
|
1456
|
+
label?: ReactNode;
|
|
1457
|
+
description?: ReactNode;
|
|
1458
|
+
className?: string;
|
|
1459
|
+
}
|
|
1460
|
+
declare const Checkbox: react.ForwardRefExoticComponent<CheckboxProps & react.RefAttributes<HTMLInputElement>>;
|
|
1461
|
+
|
|
1462
|
+
interface RadioProps extends Omit<InputHTMLAttributes<HTMLInputElement>, 'type' | 'onChange' | 'checked' | 'className'> {
|
|
1463
|
+
checked: boolean;
|
|
1464
|
+
onChange: (checked: boolean) => void;
|
|
1465
|
+
label?: ReactNode;
|
|
1466
|
+
description?: ReactNode;
|
|
1467
|
+
className?: string;
|
|
1468
|
+
}
|
|
1469
|
+
declare const Radio: react.ForwardRefExoticComponent<RadioProps & react.RefAttributes<HTMLInputElement>>;
|
|
1470
|
+
|
|
1471
|
+
interface FormFieldProps {
|
|
1472
|
+
label?: ReactNode;
|
|
1473
|
+
/** id of the control, for label-for wiring. */
|
|
1474
|
+
htmlFor?: string;
|
|
1475
|
+
/** Greyed helper text below the control. */
|
|
1476
|
+
hint?: ReactNode;
|
|
1477
|
+
/** Red error text below the control — overrides `hint` when present. */
|
|
1478
|
+
error?: ReactNode;
|
|
1479
|
+
/** Append a red asterisk to the label. */
|
|
1480
|
+
required?: boolean;
|
|
1481
|
+
className?: string;
|
|
1482
|
+
children: ReactNode;
|
|
1483
|
+
}
|
|
1484
|
+
declare function FormField({ label, htmlFor, hint, error, required, className, children, }: FormFieldProps): react_jsx_runtime.JSX.Element;
|
|
1485
|
+
|
|
1486
|
+
interface LabelProps extends LabelHTMLAttributes<HTMLLabelElement> {
|
|
1487
|
+
/** Append a red asterisk. */
|
|
1488
|
+
required?: boolean;
|
|
1489
|
+
}
|
|
1490
|
+
declare function Label({ required, children, className, ...rest }: LabelProps): react_jsx_runtime.JSX.Element;
|
|
1491
|
+
|
|
1492
|
+
/**
|
|
1493
|
+
* Shared form-control styling — the single source of truth for the kit's
|
|
1494
|
+
* text-input look. Promoted out of SearchableSelect so every form control
|
|
1495
|
+
* (Input, Textarea, Select, SearchableSelect) renders identically and picks
|
|
1496
|
+
* up the same `[data-theme="dark"]` input remaps from styles.css.
|
|
1497
|
+
*
|
|
1498
|
+
* Keep this in the documented Tailwind vocabulary (see .design-sync/conventions.md)
|
|
1499
|
+
* so the classes survive both the dark-mode allow-list and the design-sync
|
|
1500
|
+
* compiled stylesheet.
|
|
1501
|
+
*/
|
|
1502
|
+
/** Base look for a text-bearing form control. Native <input>/<select>/<textarea>
|
|
1503
|
+
* also receive dark styling for free via the global rule in styles.css. */
|
|
1504
|
+
declare const INPUT_BASE: string;
|
|
1505
|
+
/** Compose the input classes for a control. */
|
|
1506
|
+
declare function inputClasses(opts?: {
|
|
1507
|
+
invalid?: boolean;
|
|
1508
|
+
className?: string;
|
|
1509
|
+
}): string;
|
|
1510
|
+
|
|
1511
|
+
interface CardProps {
|
|
1512
|
+
children: ReactNode;
|
|
1513
|
+
/** Title row above the body, divided by a hairline. */
|
|
1514
|
+
header?: ReactNode;
|
|
1515
|
+
/** Row below the body, divided by a hairline. */
|
|
1516
|
+
footer?: ReactNode;
|
|
1517
|
+
/** Apply default padding to the body. Default true; set false to fill edge-to-edge. */
|
|
1518
|
+
padded?: boolean;
|
|
1519
|
+
className?: string;
|
|
1520
|
+
}
|
|
1521
|
+
declare function Card({ children, header, footer, padded, className }: CardProps): react_jsx_runtime.JSX.Element;
|
|
1522
|
+
interface StatCardProps {
|
|
1523
|
+
label: ReactNode;
|
|
1524
|
+
value: ReactNode;
|
|
1525
|
+
icon?: ReactNode;
|
|
1526
|
+
/** Trend pill, e.g. `{ value: '12%', direction: 'up' }`. */
|
|
1527
|
+
delta?: {
|
|
1528
|
+
value: ReactNode;
|
|
1529
|
+
direction: 'up' | 'down' | 'flat';
|
|
1530
|
+
};
|
|
1531
|
+
className?: string;
|
|
1532
|
+
}
|
|
1533
|
+
declare function StatCard({ label, value, icon, delta, className }: StatCardProps): react_jsx_runtime.JSX.Element;
|
|
1534
|
+
|
|
1535
|
+
type AvatarSize = 'xs' | 'sm' | 'md' | 'lg';
|
|
1536
|
+
type AvatarStatus = 'online' | 'offline' | 'busy' | 'away';
|
|
1537
|
+
interface AvatarProps {
|
|
1538
|
+
src?: string;
|
|
1539
|
+
/** Used for the initials fallback and the image alt text. */
|
|
1540
|
+
name?: string;
|
|
1541
|
+
size?: AvatarSize;
|
|
1542
|
+
status?: AvatarStatus;
|
|
1543
|
+
className?: string;
|
|
1544
|
+
}
|
|
1545
|
+
declare function Avatar({ src, name, size, status, className }: AvatarProps): react_jsx_runtime.JSX.Element;
|
|
1546
|
+
interface AvatarGroupProps {
|
|
1547
|
+
children: ReactNode;
|
|
1548
|
+
/** Show at most this many avatars; the rest collapse into a +N chip. */
|
|
1549
|
+
max?: number;
|
|
1550
|
+
/** Size of the children — used for the overlap + overflow-chip geometry.
|
|
1551
|
+
* Give the child Avatars this same size. */
|
|
1552
|
+
size?: AvatarSize;
|
|
1553
|
+
className?: string;
|
|
1554
|
+
}
|
|
1555
|
+
declare function AvatarGroup({ children, max, size, className }: AvatarGroupProps): react_jsx_runtime.JSX.Element;
|
|
1556
|
+
|
|
1557
|
+
type BannerTone = 'info' | 'success' | 'warning' | 'danger';
|
|
1558
|
+
interface BannerProps {
|
|
1559
|
+
tone?: BannerTone;
|
|
1560
|
+
title?: ReactNode;
|
|
1561
|
+
children?: ReactNode;
|
|
1562
|
+
/** Override the default tone icon. */
|
|
1563
|
+
icon?: ReactNode;
|
|
1564
|
+
/** When provided, renders a dismiss × that calls this. */
|
|
1565
|
+
onDismiss?: () => void;
|
|
1566
|
+
className?: string;
|
|
1567
|
+
}
|
|
1568
|
+
declare function Banner({ tone, title, children, icon, onDismiss, className }: BannerProps): react_jsx_runtime.JSX.Element;
|
|
1569
|
+
|
|
1570
|
+
interface TabItem {
|
|
1571
|
+
id: string;
|
|
1572
|
+
label: ReactNode;
|
|
1573
|
+
icon?: ReactNode;
|
|
1574
|
+
disabled?: boolean;
|
|
1575
|
+
}
|
|
1576
|
+
interface TabsProps {
|
|
1577
|
+
items: TabItem[];
|
|
1578
|
+
value: string;
|
|
1579
|
+
onChange: (id: string) => void;
|
|
1580
|
+
variant?: 'underline' | 'pill';
|
|
1581
|
+
className?: string;
|
|
1582
|
+
}
|
|
1583
|
+
declare function Tabs({ items, value, onChange, variant, className }: TabsProps): react_jsx_runtime.JSX.Element;
|
|
1584
|
+
|
|
1585
|
+
interface AccordionItem {
|
|
1586
|
+
id: string;
|
|
1587
|
+
title: ReactNode;
|
|
1588
|
+
content: ReactNode;
|
|
1589
|
+
disabled?: boolean;
|
|
1590
|
+
}
|
|
1591
|
+
interface AccordionProps {
|
|
1592
|
+
items: AccordionItem[];
|
|
1593
|
+
defaultOpenIds?: string[];
|
|
1594
|
+
/** Controlled open set — when provided, the component stops tracking its own. */
|
|
1595
|
+
openIds?: string[];
|
|
1596
|
+
onOpenChange?: (ids: string[]) => void;
|
|
1597
|
+
allowMultiple?: boolean;
|
|
1598
|
+
className?: string;
|
|
1599
|
+
}
|
|
1600
|
+
declare function Accordion({ items, defaultOpenIds, openIds, onOpenChange, allowMultiple, className, }: AccordionProps): react_jsx_runtime.JSX.Element;
|
|
1601
|
+
|
|
1602
|
+
interface TooltipProps {
|
|
1603
|
+
content: ReactNode;
|
|
1604
|
+
side?: 'top' | 'bottom' | 'left' | 'right';
|
|
1605
|
+
/** Hover delay before showing, in ms. */
|
|
1606
|
+
delay?: number;
|
|
1607
|
+
children: ReactNode;
|
|
1608
|
+
}
|
|
1609
|
+
declare function Tooltip({ content, side, delay, children }: TooltipProps): react_jsx_runtime.JSX.Element;
|
|
1610
|
+
|
|
1611
|
+
/**
|
|
1612
|
+
* Shared chart types. The charts are dependency-free inline SVG/CSS — color
|
|
1613
|
+
* defaults to `currentColor` so a parent `text-*` class themes them, and
|
|
1614
|
+
* geometry comes from numeric props (not Tailwind classes), so they sidestep
|
|
1615
|
+
* the design-sync compiled-CSS / arbitrary-value constraints entirely.
|
|
1616
|
+
*/
|
|
1617
|
+
|
|
1618
|
+
interface SparklineProps {
|
|
1619
|
+
data: number[];
|
|
1620
|
+
width?: number;
|
|
1621
|
+
height?: number;
|
|
1622
|
+
/** Line color. Defaults to `currentColor`. */
|
|
1623
|
+
stroke?: string;
|
|
1624
|
+
/** Area fill under the line. Omit for a bare line. */
|
|
1625
|
+
fill?: string;
|
|
1626
|
+
strokeWidth?: number;
|
|
1627
|
+
showDots?: boolean;
|
|
1628
|
+
className?: string;
|
|
1629
|
+
style?: CSSProperties;
|
|
1630
|
+
}
|
|
1631
|
+
interface BarChartProps {
|
|
1632
|
+
data: number[];
|
|
1633
|
+
/** Optional labels under each bar. */
|
|
1634
|
+
labels?: string[];
|
|
1635
|
+
height?: number;
|
|
1636
|
+
/** Bar color. Defaults to `currentColor`. */
|
|
1637
|
+
color?: string;
|
|
1638
|
+
/** Per-bar color overrides. */
|
|
1639
|
+
colors?: string[];
|
|
1640
|
+
/** Value mapped to a full-height bar. Defaults to the max of `data`. */
|
|
1641
|
+
max?: number;
|
|
1642
|
+
/** Gap between bars, in px. */
|
|
1643
|
+
gap?: number;
|
|
1644
|
+
className?: string;
|
|
1645
|
+
style?: CSSProperties;
|
|
1646
|
+
}
|
|
1647
|
+
interface DonutSegment {
|
|
1648
|
+
label: string;
|
|
1649
|
+
value: number;
|
|
1650
|
+
color?: string;
|
|
1651
|
+
}
|
|
1652
|
+
interface DonutChartProps {
|
|
1653
|
+
segments: DonutSegment[];
|
|
1654
|
+
size?: number;
|
|
1655
|
+
thickness?: number;
|
|
1656
|
+
/** Rendered in the hole, e.g. a total. */
|
|
1657
|
+
centerLabel?: ReactNode;
|
|
1658
|
+
className?: string;
|
|
1659
|
+
style?: CSSProperties;
|
|
1660
|
+
}
|
|
1661
|
+
|
|
1662
|
+
declare function Sparkline({ data, width, height, stroke, fill, strokeWidth, showDots, className, style, }: SparklineProps): react_jsx_runtime.JSX.Element | null;
|
|
1663
|
+
|
|
1664
|
+
declare function BarChart({ data, labels, height, color, colors, max, gap, className, style, }: BarChartProps): react_jsx_runtime.JSX.Element | null;
|
|
1665
|
+
|
|
1666
|
+
declare function DonutChart({ segments, size, thickness, centerLabel, className, style }: DonutChartProps): react_jsx_runtime.JSX.Element;
|
|
1667
|
+
|
|
1668
|
+
declare function DashboardTemplate(): react_jsx_runtime.JSX.Element;
|
|
1669
|
+
|
|
1670
|
+
declare function DataTablePage(): react_jsx_runtime.JSX.Element;
|
|
1671
|
+
|
|
1672
|
+
declare function FormLayoutPage(): react_jsx_runtime.JSX.Element;
|
|
1673
|
+
|
|
1674
|
+
declare function CheckoutTemplate(): react_jsx_runtime.JSX.Element;
|
|
1675
|
+
|
|
1676
|
+
declare function EmailTemplate(): react_jsx_runtime.JSX.Element;
|
|
1677
|
+
|
|
1678
|
+
declare function ChatTemplate(): react_jsx_runtime.JSX.Element;
|
|
1679
|
+
|
|
1680
|
+
declare function GalleryTemplate(): react_jsx_runtime.JSX.Element;
|
|
1681
|
+
|
|
1682
|
+
interface AuthScreenProps {
|
|
1683
|
+
mode?: 'login' | 'register' | 'forgot';
|
|
1684
|
+
}
|
|
1685
|
+
declare function AuthScreen({ mode }: AuthScreenProps): react_jsx_runtime.JSX.Element;
|
|
1686
|
+
|
|
1687
|
+
interface ErrorPageProps {
|
|
1688
|
+
code?: 403 | 404 | 500;
|
|
1689
|
+
}
|
|
1690
|
+
declare function ErrorPage({ code }: ErrorPageProps): react_jsx_runtime.JSX.Element;
|
|
1691
|
+
|
|
1383
1692
|
/** Package version, injected by tsup at build time. Stays as an empty
|
|
1384
1693
|
* string when the source is consumed without a build (e.g. tests). */
|
|
1385
1694
|
declare const VERSION: string;
|
|
@@ -1537,4 +1846,4 @@ declare function useNewHotkey(callback: () => void): void;
|
|
|
1537
1846
|
*/
|
|
1538
1847
|
declare function useEditHotkey(callback: (() => void) | null): void;
|
|
1539
1848
|
|
|
1540
|
-
export { ALT, ALT_SHIFT_D, ALT_SHIFT_E, ALT_SHIFT_N, BehaviorPanel, type BreadcrumbItem, Breadcrumbs, type BreadcrumbsProps, CMD_A, CMD_DOT, CMD_ENTER, CMD_K, CMD_S, CancelButton, type CellStyle, type ChangelogEntry, type ClockCalendarConfig, type ColumnDef, ConfirmProvider, CopyButton, Customization, type CustomizationOmitSection, type CustomizationProps, type CustomizationSection, DEV_BANNER_TEXT, Desktop, type DesktopContextMenuItem, type DesktopHostConfig, DesktopHostProvider, DevIndicator, DocFavStar, ENTER, EditableGrid, type EditableGridProps, type EntityFetcher, EntityList, type EntityListColumn, type EntityListProps, GLASS_DIVIDER, GLASS_INPUT_BG, GlobalSearch, type GridColumn, HelpCenter, type HelpCenterDoc, type HelpCenterProps, ImageAnnotator, type ImageAnnotatorHandle, type ImageAnnotatorProps, Kanban, type KanbanColumn, type KanbanProps, Layout, type LayoutProps, ListFooter, MOD, Markdown, type MarkdownProps, Modal, ModalActions, NotificationBell, type NotificationsConfig, type PaginatedResponse, PopupMenu, PopupMenuDivider, PopupMenuItem, PopupMenuLabel, ResizableTable, SHIFT, type SearchConfig, type SearchProvider, type SearchResult, type SearchableOption, SearchableSelect, type SearchableSelectProps, type SemanticGroup, type ShellAuth, ShellAuthProvider, ShellEntityFetcherProvider, type ShellNotification, type ShellPrefsAdapter, ShellPrefsProvider, ShortcutHelp, SidebarLayout, type SidebarLayoutProps, type SortState, SoundsPanel, StartMenu, StatusBadge, StatusBadgeProvider, type StickyEntityRef, type StickyResolver, SystemPreferences, type SystemPreferencesProps, type SystemPreferencesSection, type TodoProvider, type TodoTask, TopNav, type TopNavItem, type TopNavProps, VERSION, WidgetManager, WindowCrashedFallback, WindowErrorBoundary, WindowManagerProvider, WindowRegistry, WindowTitle, applyDevTitle, commitExposeHighlight, confirm, confirmDestructive, createWindowRegistry, exitExposeMode, formatDate, getActiveWindowRoute, getExposeHighlight, getWindowPosition, glassStyle, isDevEnv, isMac, prompt, registerModalEscapeInterceptor, setExposeHighlight, setShellApiClient, setShellAuthBridge, setShellNavIcons, setShellTodoProvider, setWindowDefaultPosition, setWindowPosition, subscribeExposeHighlight, toast, toggleExposeMode, useClickOutside, useColumnConfig, useDesktopHost, useEditHotkey, useInfiniteScroll, useLocalStoragePrefs, useModalActive, useNewHotkey, useShellAuth, useShellEntityFetcher, useShellPrefs, useSort, useTableNav, useWidgetSettings, useWindowManager, useWindowMenuItem, useWindowTitle };
|
|
1849
|
+
export { ALT, ALT_SHIFT_D, ALT_SHIFT_E, ALT_SHIFT_N, Accordion, type AccordionItem, type AccordionProps, AuthScreen, type AuthScreenProps, Avatar, AvatarGroup, type AvatarGroupProps, type AvatarProps, type AvatarSize, type AvatarStatus, Banner, type BannerProps, type BannerTone, BarChart, type BarChartProps, BehaviorPanel, type BreadcrumbItem, Breadcrumbs, type BreadcrumbsProps, Button, type ButtonProps, type ButtonSize, type ButtonVariant, CMD_A, CMD_DOT, CMD_ENTER, CMD_K, CMD_S, CancelButton, Card, type CardProps, type CellStyle, type ChangelogEntry, ChatTemplate, Checkbox, type CheckboxProps, CheckoutTemplate, type ClockCalendarConfig, type ColumnDef, ConfirmProvider, CopyButton, Customization, type CustomizationOmitSection, type CustomizationProps, type CustomizationSection, DEV_BANNER_TEXT, DashboardTemplate, DataTablePage, Desktop, type DesktopContextMenuItem, type DesktopHostConfig, DesktopHostProvider, DevIndicator, DocFavStar, DonutChart, type DonutChartProps, type DonutSegment, ENTER, EditableGrid, type EditableGridProps, EmailTemplate, type EntityFetcher, EntityList, type EntityListColumn, type EntityListProps, ErrorPage, type ErrorPageProps, FormField, type FormFieldProps, FormLayoutPage, GLASS_DIVIDER, GLASS_INPUT_BG, GalleryTemplate, GlobalSearch, type GridColumn, HelpCenter, type HelpCenterDoc, type HelpCenterProps, INPUT_BASE, ImageAnnotator, type ImageAnnotatorHandle, type ImageAnnotatorProps, Input, type InputProps, Kanban, type KanbanColumn, type KanbanProps, Label, type LabelProps, Layout, type LayoutProps, ListFooter, MOD, Markdown, type MarkdownProps, Modal, ModalActions, NotificationBell, type NotificationsConfig, type PaginatedResponse, Pagination, type PaginationProps, PopupMenu, PopupMenuDivider, PopupMenuItem, PopupMenuLabel, Radio, type RadioProps, ResizableTable, SHIFT, type SearchConfig, type SearchProvider, type SearchResult, type SearchableOption, SearchableSelect, type SearchableSelectProps, Select, type SelectOption, type SelectProps, type SemanticGroup, type ShellAuth, ShellAuthProvider, ShellEntityFetcherProvider, type ShellNotification, type ShellPrefsAdapter, ShellPrefsProvider, ShortcutHelp, SidebarLayout, type SidebarLayoutProps, type SortState, SoundsPanel, Sparkline, type SparklineProps, StartMenu, StatCard, type StatCardProps, StatusBadge, StatusBadgeProvider, type StickyEntityRef, type StickyResolver, SystemPreferences, type SystemPreferencesProps, type SystemPreferencesSection, type TabItem, Tabs, type TabsProps, Textarea, type TextareaProps, type TodoProvider, type TodoTask, Tooltip, type TooltipProps, TopNav, type TopNavItem, type TopNavProps, VERSION, WidgetManager, WindowCrashedFallback, WindowErrorBoundary, WindowManagerProvider, WindowRegistry, WindowTitle, applyDevTitle, commitExposeHighlight, confirm, confirmDestructive, createWindowRegistry, exitExposeMode, formatDate, getActiveWindowRoute, getExposeHighlight, getWindowPosition, glassStyle, inputClasses, isDevEnv, isMac, prompt, registerModalEscapeInterceptor, setExposeHighlight, setShellApiClient, setShellAuthBridge, setShellNavIcons, setShellTodoProvider, setWindowDefaultPosition, setWindowPosition, subscribeExposeHighlight, toast, toggleExposeMode, useClickOutside, useColumnConfig, useDesktopHost, useEditHotkey, useInfiniteScroll, useLocalStoragePrefs, useModalActive, useNewHotkey, useShellAuth, useShellEntityFetcher, useShellPrefs, useSort, useTableNav, useWidgetSettings, useWindowManager, useWindowMenuItem, useWindowTitle };
|