@wallarm-org/design-system 0.48.0 → 0.49.0-rc-feature-page.2
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/components/AppShell/story-content/_storyConfigRenderer.js +20 -14
- package/dist/components/Page/Page.d.ts +23 -0
- package/dist/components/Page/Page.js +38 -0
- package/dist/components/Page/PageActions.d.ts +5 -0
- package/dist/components/Page/PageActions.js +16 -0
- package/dist/components/Page/PageContent.d.ts +9 -0
- package/dist/components/Page/PageContent.js +16 -0
- package/dist/components/Page/PageHeader.d.ts +5 -0
- package/dist/components/Page/PageHeader.js +16 -0
- package/dist/components/Page/PageHostContext.d.ts +25 -0
- package/dist/components/Page/PageHostContext.js +7 -0
- package/dist/components/Page/PageTitle.d.ts +5 -0
- package/dist/components/Page/PageTitle.js +16 -0
- package/dist/components/Page/classes.d.ts +3 -0
- package/dist/components/Page/classes.js +14 -0
- package/dist/components/Page/index.d.ts +6 -0
- package/dist/components/Page/index.js +7 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +2 -1
- package/dist/metadata/components.json +1411 -2
- package/package.json +1 -1
|
@@ -1,28 +1,34 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
2
2
|
import { useEffect, useState } from "react";
|
|
3
3
|
import { NavPanel, NavPanelHeader } from "../../NavPanel/index.js";
|
|
4
|
+
import { Page, PageContent, PageHeader, PageTitle } from "../../Page/index.js";
|
|
4
5
|
import { NavPanelSkeleton, ProductNav, ProductNavBreadcrumbs, ProductNavPanel, useProductNavContext } from "../../ProductNav/index.js";
|
|
5
6
|
import { RemoteShell, RemoteShellBreadcrumb, RemoteShellContent, RemoteShellPanel } from "../../RemoteShell/index.js";
|
|
6
7
|
import { HomeContent } from "./_storyHomeContent.js";
|
|
7
8
|
import { PRODUCT_CONFIGS } from "./_storyLib.js";
|
|
8
|
-
const
|
|
9
|
+
const RemotePageContent = ()=>{
|
|
9
10
|
const { breadcrumbSegments } = useProductNavContext();
|
|
10
11
|
const lastSegment = breadcrumbSegments[breadcrumbSegments.length - 1];
|
|
11
12
|
const pageTitle = lastSegment?.label ?? '';
|
|
12
13
|
const fullPath = breadcrumbSegments.map((s)=>s.label).join(' / ');
|
|
13
|
-
return /*#__PURE__*/ jsxs(
|
|
14
|
+
return /*#__PURE__*/ jsxs(Page, {
|
|
15
|
+
title: pageTitle,
|
|
16
|
+
fixedHeight: true,
|
|
14
17
|
children: [
|
|
15
|
-
/*#__PURE__*/ jsx(
|
|
16
|
-
|
|
17
|
-
|
|
18
|
+
/*#__PURE__*/ jsx(PageHeader, {
|
|
19
|
+
children: /*#__PURE__*/ jsx(PageTitle, {
|
|
20
|
+
children: pageTitle
|
|
21
|
+
})
|
|
18
22
|
}),
|
|
19
|
-
/*#__PURE__*/
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
23
|
+
/*#__PURE__*/ jsx(PageContent, {
|
|
24
|
+
children: /*#__PURE__*/ jsxs("p", {
|
|
25
|
+
className: "text-sm text-text-secondary",
|
|
26
|
+
children: [
|
|
27
|
+
"Placeholder page for ",
|
|
28
|
+
fullPath,
|
|
29
|
+
"."
|
|
30
|
+
]
|
|
31
|
+
})
|
|
26
32
|
})
|
|
27
33
|
]
|
|
28
34
|
});
|
|
@@ -69,7 +75,7 @@ const ConfigRemote = ({ config, basePath })=>{
|
|
|
69
75
|
children: /*#__PURE__*/ jsx(ProductNavBreadcrumbs, {})
|
|
70
76
|
}),
|
|
71
77
|
/*#__PURE__*/ jsx(RemoteShellContent, {
|
|
72
|
-
children: /*#__PURE__*/ jsx(
|
|
78
|
+
children: /*#__PURE__*/ jsx(RemotePageContent, {})
|
|
73
79
|
})
|
|
74
80
|
]
|
|
75
81
|
})
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import type { FC, HTMLAttributes, ReactNode, Ref } from 'react';
|
|
2
|
+
import { type TestableProps } from '../../utils/testId';
|
|
3
|
+
export interface PageProps extends HTMLAttributes<HTMLDivElement>, TestableProps {
|
|
4
|
+
ref?: Ref<HTMLDivElement>;
|
|
5
|
+
name?: string;
|
|
6
|
+
title?: string;
|
|
7
|
+
fullSize?: boolean;
|
|
8
|
+
fixedHeight?: boolean;
|
|
9
|
+
children?: ReactNode;
|
|
10
|
+
}
|
|
11
|
+
/**
|
|
12
|
+
* @example
|
|
13
|
+
* ```tsx
|
|
14
|
+
* <Page name="api-attack-surface" fullSize fixedHeight>
|
|
15
|
+
* <PageHeader>
|
|
16
|
+
* <PageTitle>API Attack Surface</PageTitle>
|
|
17
|
+
* <PageActions>***</PageActions>
|
|
18
|
+
* </PageHeader>
|
|
19
|
+
* <PageContent>{children}</PageContent>
|
|
20
|
+
* </Page>
|
|
21
|
+
* ```
|
|
22
|
+
*/
|
|
23
|
+
export declare const Page: FC<PageProps>;
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
2
|
+
import { useEffect } from "react";
|
|
3
|
+
import { cn } from "../../utils/cn.js";
|
|
4
|
+
import { TestIdProvider } from "../../utils/testId.js";
|
|
5
|
+
import { usePageHost } from "./PageHostContext.js";
|
|
6
|
+
const Page = ({ ref, name, title, fullSize, fixedHeight, children, className, 'data-testid': testId, ...props })=>{
|
|
7
|
+
const host = usePageHost();
|
|
8
|
+
useEffect(()=>{
|
|
9
|
+
host?.setLayout({
|
|
10
|
+
name,
|
|
11
|
+
fullSize,
|
|
12
|
+
fixedHeight
|
|
13
|
+
});
|
|
14
|
+
}, [
|
|
15
|
+
host,
|
|
16
|
+
name,
|
|
17
|
+
fullSize,
|
|
18
|
+
fixedHeight
|
|
19
|
+
]);
|
|
20
|
+
return /*#__PURE__*/ jsxs(TestIdProvider, {
|
|
21
|
+
value: testId,
|
|
22
|
+
children: [
|
|
23
|
+
title && /*#__PURE__*/ jsx("title", {
|
|
24
|
+
children: title
|
|
25
|
+
}),
|
|
26
|
+
/*#__PURE__*/ jsx("div", {
|
|
27
|
+
...props,
|
|
28
|
+
ref: ref,
|
|
29
|
+
"data-testid": testId,
|
|
30
|
+
"data-slot": "page",
|
|
31
|
+
className: cn('flex flex-col', fixedHeight && 'h-full', className),
|
|
32
|
+
children: children
|
|
33
|
+
})
|
|
34
|
+
]
|
|
35
|
+
});
|
|
36
|
+
};
|
|
37
|
+
Page.displayName = 'Page';
|
|
38
|
+
export { Page };
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { jsx } from "react/jsx-runtime";
|
|
2
|
+
import { cn } from "../../utils/cn.js";
|
|
3
|
+
import { useTestId } from "../../utils/testId.js";
|
|
4
|
+
const PageActions = ({ ref, children, className, ...props })=>{
|
|
5
|
+
const testId = useTestId('actions');
|
|
6
|
+
return /*#__PURE__*/ jsx("div", {
|
|
7
|
+
...props,
|
|
8
|
+
ref: ref,
|
|
9
|
+
"data-testid": testId,
|
|
10
|
+
"data-slot": "page-actions",
|
|
11
|
+
className: cn('flex items-center gap-8 shrink-0', className),
|
|
12
|
+
children: children
|
|
13
|
+
});
|
|
14
|
+
};
|
|
15
|
+
PageActions.displayName = 'PageActions';
|
|
16
|
+
export { PageActions };
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import type { FC, HTMLAttributes, Ref } from 'react';
|
|
2
|
+
export interface PageContentProps extends HTMLAttributes<HTMLDivElement> {
|
|
3
|
+
ref?: Ref<HTMLDivElement>;
|
|
4
|
+
}
|
|
5
|
+
/**
|
|
6
|
+
* Scrollable content area that fills the remaining vertical space.
|
|
7
|
+
* Use `min-h-0` to allow flex-based shrinking within a `fixedHeight` Page.
|
|
8
|
+
*/
|
|
9
|
+
export declare const PageContent: FC<PageContentProps>;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { jsx } from "react/jsx-runtime";
|
|
2
|
+
import { cn } from "../../utils/cn.js";
|
|
3
|
+
import { useTestId } from "../../utils/testId.js";
|
|
4
|
+
const PageContent = ({ ref, children, className, ...props })=>{
|
|
5
|
+
const testId = useTestId('content');
|
|
6
|
+
return /*#__PURE__*/ jsx("div", {
|
|
7
|
+
...props,
|
|
8
|
+
ref: ref,
|
|
9
|
+
"data-testid": testId,
|
|
10
|
+
"data-slot": "page-content",
|
|
11
|
+
className: cn('flex-1 min-h-0 overflow-auto px-24 py-16', className),
|
|
12
|
+
children: children
|
|
13
|
+
});
|
|
14
|
+
};
|
|
15
|
+
PageContent.displayName = 'PageContent';
|
|
16
|
+
export { PageContent };
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { jsx } from "react/jsx-runtime";
|
|
2
|
+
import { cn } from "../../utils/cn.js";
|
|
3
|
+
import { useTestId } from "../../utils/testId.js";
|
|
4
|
+
const PageHeader = ({ ref, children, className, ...props })=>{
|
|
5
|
+
const testId = useTestId('header');
|
|
6
|
+
return /*#__PURE__*/ jsx("div", {
|
|
7
|
+
...props,
|
|
8
|
+
ref: ref,
|
|
9
|
+
"data-testid": testId,
|
|
10
|
+
"data-slot": "page-header",
|
|
11
|
+
className: cn('flex items-center justify-between px-24 py-16 gap-16', className),
|
|
12
|
+
children: children
|
|
13
|
+
});
|
|
14
|
+
};
|
|
15
|
+
PageHeader.displayName = 'PageHeader';
|
|
16
|
+
export { PageHeader };
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
export interface PageLayoutOptions {
|
|
2
|
+
name?: string;
|
|
3
|
+
fullSize?: boolean;
|
|
4
|
+
fixedHeight?: boolean;
|
|
5
|
+
}
|
|
6
|
+
export interface PageHostContextValue {
|
|
7
|
+
setLayout: (options: PageLayoutOptions) => void;
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* Provider used by the host application to receive layout preferences
|
|
11
|
+
* from remote microfrontend `Page` components.
|
|
12
|
+
*
|
|
13
|
+
* @example
|
|
14
|
+
* ```tsx
|
|
15
|
+
* <PageHostProvider value={{ setLayout: handleRemoteLayout }}>
|
|
16
|
+
* <AppShellRemote>{remoteApp}</AppShellRemote>
|
|
17
|
+
* </PageHostProvider>
|
|
18
|
+
* ```
|
|
19
|
+
*/
|
|
20
|
+
export declare const PageHostProvider: import("react").Provider<PageHostContextValue | null>;
|
|
21
|
+
/**
|
|
22
|
+
* Returns the host context value, or `null` when no `PageHostProvider`
|
|
23
|
+
* exists (e.g. standalone Storybook / tests).
|
|
24
|
+
*/
|
|
25
|
+
export declare function usePageHost(): PageHostContextValue | null;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { jsx } from "react/jsx-runtime";
|
|
2
|
+
import { cn } from "../../utils/cn.js";
|
|
3
|
+
import { useTestId } from "../../utils/testId.js";
|
|
4
|
+
const PageTitle = ({ ref, children, className, ...props })=>{
|
|
5
|
+
const testId = useTestId('title');
|
|
6
|
+
return /*#__PURE__*/ jsx("h1", {
|
|
7
|
+
...props,
|
|
8
|
+
ref: ref,
|
|
9
|
+
"data-testid": testId,
|
|
10
|
+
"data-slot": "page-title",
|
|
11
|
+
className: cn('font-sans-display text-xl font-medium leading-28 text-text-primary truncate', className),
|
|
12
|
+
children: children
|
|
13
|
+
});
|
|
14
|
+
};
|
|
15
|
+
PageTitle.displayName = 'PageTitle';
|
|
16
|
+
export { PageTitle };
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { cva } from "class-variance-authority";
|
|
2
|
+
import { cn } from "../../utils/cn.js";
|
|
3
|
+
const pageTabVariants = cva(cn('relative inline-flex items-center justify-center', 'rounded-lg bg-transparent', 'border-b-2 border-transparent', 'transition-all cursor-pointer', 'text-text-secondary font-medium font-sans whitespace-nowrap', 'h-32 px-8 py-6 gap-6', 'text-sm', 'not-disabled:hover:bg-states-primary-hover not-disabled:hover:text-text-primary', 'not-disabled:active:bg-states-primary-pressed not-disabled:active:text-text-secondary', 'focus-visible:outline-none focus-visible:ring-3 focus-visible:ring-focus-primary focus-visible:bg-states-primary-hover', 'disabled:opacity-50 disabled:cursor-not-allowed'), {
|
|
4
|
+
variants: {
|
|
5
|
+
active: {
|
|
6
|
+
true: cn('text-text-primary border-b-border-brand'),
|
|
7
|
+
false: ''
|
|
8
|
+
}
|
|
9
|
+
},
|
|
10
|
+
defaultVariants: {
|
|
11
|
+
active: false
|
|
12
|
+
}
|
|
13
|
+
});
|
|
14
|
+
export { pageTabVariants };
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
export { Page, type PageProps } from './Page';
|
|
2
|
+
export { PageActions, type PageActionsProps } from './PageActions';
|
|
3
|
+
export { PageContent, type PageContentProps } from './PageContent';
|
|
4
|
+
export { PageHeader, type PageHeaderProps } from './PageHeader';
|
|
5
|
+
export { type PageHostContextValue, PageHostProvider, type PageLayoutOptions, usePageHost, } from './PageHostContext';
|
|
6
|
+
export { PageTitle, type PageTitleProps } from './PageTitle';
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Page } from "./Page.js";
|
|
2
|
+
import { PageActions } from "./PageActions.js";
|
|
3
|
+
import { PageContent } from "./PageContent.js";
|
|
4
|
+
import { PageHeader } from "./PageHeader.js";
|
|
5
|
+
import { PageHostProvider, usePageHost } from "./PageHostContext.js";
|
|
6
|
+
import { PageTitle } from "./PageTitle.js";
|
|
7
|
+
export { Page, PageActions, PageContent, PageHeader, PageHostProvider, PageTitle, usePageHost };
|
package/dist/index.d.ts
CHANGED
|
@@ -44,6 +44,7 @@ export { NavRail, NavRailBody, type NavRailBodyProps, NavRailFooter, type NavRai
|
|
|
44
44
|
export { NumberInput, type NumberInputProps } from './components/NumberInput';
|
|
45
45
|
export { NumericBadge, type NumericBadgeProps, } from './components/NumericBadge';
|
|
46
46
|
export { OverflowTooltip, OverflowTooltipContent, type OverflowTooltipContentProps, type OverflowTooltipProps, } from './components/OverflowTooltip';
|
|
47
|
+
export { Page, PageActions, type PageActionsProps, PageContent, type PageContentProps, PageHeader, type PageHeaderProps, type PageHostContextValue, PageHostProvider, type PageLayoutOptions, type PageProps, PageTitle, type PageTitleProps, usePageHost, } from './components/Page';
|
|
47
48
|
export { type CopyFormatData, formatAsFilter, ParameterPath, type ParameterPathProps, } from './components/ParameterPath';
|
|
48
49
|
export { Popover, PopoverContent, PopoverTrigger } from './components/Popover';
|
|
49
50
|
export { type BreadcrumbSegment, findDrillNode, findFirstLinkPath, type MatchNavResult, matchNav, type NavConfig, type NavConfigDrill, type NavConfigGroup, type NavConfigLink, type NavConfigNode, NavPanelSkeleton, type NavPanelSkeletonProps, type NavStackEntry, ProductNav, ProductNavBreadcrumbs, type ProductNavContextValue, ProductNavPanel, type ProductNavProps, type UseProductNavResult, useProductNav, useProductNavContext, } from './components/ProductNav';
|
package/dist/index.js
CHANGED
|
@@ -33,6 +33,7 @@ import { NavRail, NavRailBody, NavRailFooter, NavRailItem, NavRailSeparator, Nav
|
|
|
33
33
|
import { NumberInput } from "./components/NumberInput/index.js";
|
|
34
34
|
import { NumericBadge } from "./components/NumericBadge/index.js";
|
|
35
35
|
import { OverflowTooltip, OverflowTooltipContent } from "./components/OverflowTooltip/index.js";
|
|
36
|
+
import { Page, PageActions, PageContent, PageHeader, PageHostProvider, PageTitle, usePageHost } from "./components/Page/index.js";
|
|
36
37
|
import { ParameterPath, formatAsFilter } from "./components/ParameterPath/index.js";
|
|
37
38
|
import { Popover, PopoverContent, PopoverTrigger } from "./components/Popover/index.js";
|
|
38
39
|
import { NavPanelSkeleton, ProductNav, ProductNavBreadcrumbs, ProductNavPanel, findDrillNode, findFirstLinkPath, matchNav, useProductNav, useProductNavContext } from "./components/ProductNav/index.js";
|
|
@@ -64,4 +65,4 @@ import { Tooltip, TooltipContent, TooltipTrigger } from "./components/Tooltip/in
|
|
|
64
65
|
import { TopHeader, TopHeaderActions, TopHeaderLogo } from "./components/TopHeader/index.js";
|
|
65
66
|
import { Tour, beaconStepEffect, useTour, waitForStepEvent } from "./components/Tour/index.js";
|
|
66
67
|
import { TestIdProvider, useTestId } from "./utils/testId.js";
|
|
67
|
-
export { Accordion, AccordionActions, AccordionContent, AccordionItem, AccordionTrigger, Alert, AlertClose, AlertContent, AlertControls, AlertDescription, AlertIcon, AlertTitle, AppShell, AppShellHeader, AppShellRail, AppShellRemote, Attribute, AttributeActions, AttributeActionsContent, AttributeActionsItem, AttributeActionsTarget, AttributeLabel, AttributeLabelDescription, AttributeLabelInfo, AttributeValue, Badge, Breadcrumbs, BreadcrumbsEllipsis, BreadcrumbsItem, BreadcrumbsScopeSwitcher, BreadcrumbsSeparator, Button, Calendar, CalendarApplyButton, CalendarBody, CalendarContent, CalendarDate, CalendarDateTime, CalendarDayName, CalendarFooter, CalendarFooterControls, CalendarGrid, CalendarGrids, CalendarHeader, CalendarInputHeader, CalendarKeyboardHints, CalendarPresetItem, CalendarPresets, CalendarProvider, CalendarResetButton, CalendarTrigger, Card, CardContent, CardFooter, CardHeader, CardTitle, Checkbox, CheckboxDescription, CheckboxGroup, CheckboxIndicator, CheckboxLabel, Code, Country, CountryFlag, CountryName, DAY_NAMES, DEFAULT_RANGE_PRESETS, DEFAULT_SINGLE_PRESETS, DateFormatProvider, DateInput, DateRangeEndValue, DateRangeInput, DateRangeProvider, DateRangeSeparator, DateRangeStartValue, Drawer, DrawerBody, DrawerClose, DrawerContent, DrawerFooter, DrawerFooterControls, DrawerHeader, DrawerPositioner, DrawerResizeHandle, DrawerTitle, DrawerTrigger, DropdownMenu, DropdownMenuContent, DropdownMenuContextTrigger, DropdownMenuFooter, DropdownMenuGroup, DropdownMenuInput, DropdownMenuItem, DropdownMenuItemContent, DropdownMenuItemDescription, DropdownMenuItemIcon, DropdownMenuItemText, DropdownMenuLabel, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuTrigger, DropdownMenuTriggerItem, Field, FieldContent, FieldDescription, FieldError, FieldGroup, FieldLabel, FieldLegend, FieldSeparator, FieldSet, FieldTitle, FilterInput, FilterInputChip, FilterInputFieldMenu, FilterInputOperatorMenu, Flex, FormatDateTime, HStack, HTTP_METHODS, HTTP_METHOD_COLOR, Heading, HttpMethod, Input, InputGroup, InputGroupAddon, InputGroupText, Ip, IpAddress, IpCountry, IpList, IpPort, IpProvider, Kbd, KbdGroup, Link, Loader, Logo, MONTH_NAMES, NavPanelSkeleton, NavRail, NavRailBody, NavRailFooter, NavRailItem, NavRailSeparator, NavRailSkeleton, NumberInput, NumericBadge, OverflowTooltip, OverflowTooltipContent, ParameterPath, Popover, PopoverContent, PopoverTrigger, ProductNav, ProductNavBreadcrumbs, ProductNavPanel, Progress, RESPONSE_CODE_COLOR, Radio, RadioDescription, RadioGroup, RadioIndicator, RadioLabel, RemoteShell, RemoteShellBreadcrumb, RemoteShellContent, RemoteShellPanel, ResponseCode, ScrollArea, ScrollAreaContent, ScrollAreaCorner, ScrollAreaScrollbar, ScrollAreaViewport, SegmentedControl, SegmentedControlButton, SegmentedControlItem, SegmentedControlSeparator, SegmentedTabs, SegmentedTabsButton, SegmentedTabsContent, SegmentedTabsList, SegmentedTabsSeparator, SegmentedTabsTrigger, SegmentedTabsTriggerButton, Select, SelectButton, SelectClearTrigger, SelectContent, SelectFooter, SelectGroup, SelectGroupLabel, SelectHeader, SelectInput, SelectOption, SelectOptionDescription, SelectOptionIndicator, SelectOptionText, SelectPositioner, SelectSearchInput, SelectSeparator, Selection, SelectionAll, SelectionBulkBar, SelectionItem, Separator, Skeleton, SplashScreen, SplitButton, Stack, Switch, SwitchControl, SwitchDescription, SwitchLabel, Table, TableActionBar, TableEmptyState, TableSettingsMenu, Tabs, TabsButton, TabsContent, TabsLineActions, TabsList, TabsSeparator, TabsTrigger, Tag, TagClose, TestIdProvider, Text, Textarea, ThemeProvider, Time, TimeInput, Toast, ToastActions, Toaster, ToggleButton, Tooltip, TooltipContent, TooltipTrigger, TopHeader, TopHeaderActions, TopHeaderLogo, Tour, VStack, ZonedDateTime, beaconStepEffect, cardVariants, createTableColumnHelper, datacenters, drawerContentVariants, drawerPositionerVariants, findDrillNode, findFirstLinkPath, formatAsFilter, getLocalTimeZone, getResponseCodeCategory, matchNav, parseDate, parseDateTime, parseTime, parseZonedDateTime, proxyTypes, sourceLabels, toaster, today, useCalendarContext, useDateFormat, useDateRangeContext, useDrawerContext, useProductNav, useProductNavContext, useTestId, useTheme, useTour, waitForStepEvent };
|
|
68
|
+
export { Accordion, AccordionActions, AccordionContent, AccordionItem, AccordionTrigger, Alert, AlertClose, AlertContent, AlertControls, AlertDescription, AlertIcon, AlertTitle, AppShell, AppShellHeader, AppShellRail, AppShellRemote, Attribute, AttributeActions, AttributeActionsContent, AttributeActionsItem, AttributeActionsTarget, AttributeLabel, AttributeLabelDescription, AttributeLabelInfo, AttributeValue, Badge, Breadcrumbs, BreadcrumbsEllipsis, BreadcrumbsItem, BreadcrumbsScopeSwitcher, BreadcrumbsSeparator, Button, Calendar, CalendarApplyButton, CalendarBody, CalendarContent, CalendarDate, CalendarDateTime, CalendarDayName, CalendarFooter, CalendarFooterControls, CalendarGrid, CalendarGrids, CalendarHeader, CalendarInputHeader, CalendarKeyboardHints, CalendarPresetItem, CalendarPresets, CalendarProvider, CalendarResetButton, CalendarTrigger, Card, CardContent, CardFooter, CardHeader, CardTitle, Checkbox, CheckboxDescription, CheckboxGroup, CheckboxIndicator, CheckboxLabel, Code, Country, CountryFlag, CountryName, DAY_NAMES, DEFAULT_RANGE_PRESETS, DEFAULT_SINGLE_PRESETS, DateFormatProvider, DateInput, DateRangeEndValue, DateRangeInput, DateRangeProvider, DateRangeSeparator, DateRangeStartValue, Drawer, DrawerBody, DrawerClose, DrawerContent, DrawerFooter, DrawerFooterControls, DrawerHeader, DrawerPositioner, DrawerResizeHandle, DrawerTitle, DrawerTrigger, DropdownMenu, DropdownMenuContent, DropdownMenuContextTrigger, DropdownMenuFooter, DropdownMenuGroup, DropdownMenuInput, DropdownMenuItem, DropdownMenuItemContent, DropdownMenuItemDescription, DropdownMenuItemIcon, DropdownMenuItemText, DropdownMenuLabel, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuTrigger, DropdownMenuTriggerItem, Field, FieldContent, FieldDescription, FieldError, FieldGroup, FieldLabel, FieldLegend, FieldSeparator, FieldSet, FieldTitle, FilterInput, FilterInputChip, FilterInputFieldMenu, FilterInputOperatorMenu, Flex, FormatDateTime, HStack, HTTP_METHODS, HTTP_METHOD_COLOR, Heading, HttpMethod, Input, InputGroup, InputGroupAddon, InputGroupText, Ip, IpAddress, IpCountry, IpList, IpPort, IpProvider, Kbd, KbdGroup, Link, Loader, Logo, MONTH_NAMES, NavPanelSkeleton, NavRail, NavRailBody, NavRailFooter, NavRailItem, NavRailSeparator, NavRailSkeleton, NumberInput, NumericBadge, OverflowTooltip, OverflowTooltipContent, Page, PageActions, PageContent, PageHeader, PageHostProvider, PageTitle, ParameterPath, Popover, PopoverContent, PopoverTrigger, ProductNav, ProductNavBreadcrumbs, ProductNavPanel, Progress, RESPONSE_CODE_COLOR, Radio, RadioDescription, RadioGroup, RadioIndicator, RadioLabel, RemoteShell, RemoteShellBreadcrumb, RemoteShellContent, RemoteShellPanel, ResponseCode, ScrollArea, ScrollAreaContent, ScrollAreaCorner, ScrollAreaScrollbar, ScrollAreaViewport, SegmentedControl, SegmentedControlButton, SegmentedControlItem, SegmentedControlSeparator, SegmentedTabs, SegmentedTabsButton, SegmentedTabsContent, SegmentedTabsList, SegmentedTabsSeparator, SegmentedTabsTrigger, SegmentedTabsTriggerButton, Select, SelectButton, SelectClearTrigger, SelectContent, SelectFooter, SelectGroup, SelectGroupLabel, SelectHeader, SelectInput, SelectOption, SelectOptionDescription, SelectOptionIndicator, SelectOptionText, SelectPositioner, SelectSearchInput, SelectSeparator, Selection, SelectionAll, SelectionBulkBar, SelectionItem, Separator, Skeleton, SplashScreen, SplitButton, Stack, Switch, SwitchControl, SwitchDescription, SwitchLabel, Table, TableActionBar, TableEmptyState, TableSettingsMenu, Tabs, TabsButton, TabsContent, TabsLineActions, TabsList, TabsSeparator, TabsTrigger, Tag, TagClose, TestIdProvider, Text, Textarea, ThemeProvider, Time, TimeInput, Toast, ToastActions, Toaster, ToggleButton, Tooltip, TooltipContent, TooltipTrigger, TopHeader, TopHeaderActions, TopHeaderLogo, Tour, VStack, ZonedDateTime, beaconStepEffect, cardVariants, createTableColumnHelper, datacenters, drawerContentVariants, drawerPositionerVariants, findDrillNode, findFirstLinkPath, formatAsFilter, getLocalTimeZone, getResponseCodeCategory, matchNav, parseDate, parseDateTime, parseTime, parseZonedDateTime, proxyTypes, sourceLabels, toaster, today, useCalendarContext, useDateFormat, useDateRangeContext, useDrawerContext, usePageHost, useProductNav, useProductNavContext, useTestId, useTheme, useTour, waitForStepEvent };
|