wimui 0.26.0 → 0.27.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/components/data-display/Presence/Presence.cjs +2 -0
- package/dist/components/data-display/Presence/Presence.d.ts +77 -0
- package/dist/components/data-display/Presence/Presence.js +38 -0
- package/dist/components/data-display/Presence/presence.module.cjs +2 -0
- package/dist/components/data-display/Presence/presence.module.js +8 -0
- package/dist/components/feedback/Loader/Loader.cjs +1 -1
- package/dist/components/feedback/Loader/Loader.js +0 -2
- package/dist/components/feedback/Spinner/Spinner.cjs +1 -1
- package/dist/components/feedback/Spinner/Spinner.js +2 -2
- package/dist/data-display-core.d.ts +1 -0
- package/dist/data-display.cjs +1 -1
- package/dist/data-display.js +2 -1
- package/dist/i18n/generated/keys.d.ts +1 -1
- package/dist/i18n/generated/resources.cjs +1 -1
- package/dist/i18n/generated/resources.js +18 -0
- package/dist/index.cjs +1 -1
- package/dist/index.js +39 -38
- package/dist/llms-full.txt +22 -10
- package/dist/llms.txt +11 -10
- package/dist/locales/en/common.json +7 -18
- package/dist/locales/en/components.json +2 -4
- package/dist/locales/en/data-display.json +1 -2
- package/dist/locales/en/form.json +0 -3
- package/dist/locales/ja/common.json +7 -18
- package/dist/locales/ja/components.json +2 -4
- package/dist/locales/ja/data-display.json +1 -2
- package/dist/locales/ja/form.json +0 -3
- package/dist/locales/pt/common.json +7 -18
- package/dist/locales/pt/components.json +2 -4
- package/dist/locales/pt/data-display.json +1 -2
- package/dist/locales/pt/form.json +0 -3
- package/dist/styles.css +1 -1
- package/dist/wimui.umd.css +1 -1
- package/dist/wimui.umd.js +5 -5
- package/package.json +9 -7
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
const e=require("../../../_virtual/_rolldown/runtime.cjs"),t=require("../../../i18n/useWimTranslation.cjs"),n=require("../../layout/VisuallyHidden/VisuallyHidden.cjs"),r=require("../../feedback/Indicator/Indicator.cjs"),i=require("./presence.module.cjs");let a=require("react");a=e.__toESM(a,1);let o=require("classnames");o=e.__toESM(o,1);let s=require("react/jsx-runtime");var c={online:`success`,away:`warning`,busy:`danger`,offline:`neutral`},l=a.default.forwardRef(({status:e,label:a,showLabel:l=!1,size:u=`md`,position:d=`bottom-right`,children:f,className:p,...m},h)=>{let{t:g}=t.useWimTranslation(`common`),_=a??g(`presence.${e}`);return(0,s.jsxs)(`span`,{ref:h,className:(0,o.default)(`wim-presence`,i.default.root,p),...m,children:[f?(0,s.jsx)(r.Indicator,{color:c[e],size:u,position:d,children:f}):(0,s.jsx)(r.Indicator,{color:c[e],size:u,inline:!0}),l?(0,s.jsx)(`span`,{className:i.default.label,children:_}):(0,s.jsx)(n.VisuallyHidden,{children:_})]})});l.displayName=`Presence`,exports.Presence=l;
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
import { ComponentSizeBasic } from '../../../types/tokens';
|
|
3
|
+
export type PresenceStatus = "online" | "away" | "busy" | "offline";
|
|
4
|
+
export type PresenceProps = Omit<React.ComponentPropsWithoutRef<"span">, "children"> & {
|
|
5
|
+
/**
|
|
6
|
+
* Availability of the person or resource.
|
|
7
|
+
*/
|
|
8
|
+
status: PresenceStatus;
|
|
9
|
+
/**
|
|
10
|
+
* Text for the status. Defaults to the localized name of `status`.
|
|
11
|
+
*/
|
|
12
|
+
label?: string;
|
|
13
|
+
/**
|
|
14
|
+
* Whether the label is shown next to the dot. The label is always exposed to
|
|
15
|
+
* assistive technology; this only controls whether it is also visible.
|
|
16
|
+
* @default false
|
|
17
|
+
*/
|
|
18
|
+
showLabel?: boolean;
|
|
19
|
+
/**
|
|
20
|
+
* Size of the dot.
|
|
21
|
+
* @default "md"
|
|
22
|
+
*/
|
|
23
|
+
size?: ComponentSizeBasic;
|
|
24
|
+
/**
|
|
25
|
+
* Corner the dot is placed at. Only applies when `children` is given.
|
|
26
|
+
* @default "bottom-right"
|
|
27
|
+
*/
|
|
28
|
+
position?: "top-right" | "top-left" | "bottom-right" | "bottom-left";
|
|
29
|
+
/**
|
|
30
|
+
* Element the dot is attached to, typically an `Avatar`. Without it the dot
|
|
31
|
+
* renders inline, next to whatever follows it.
|
|
32
|
+
*/
|
|
33
|
+
children?: React.ReactNode;
|
|
34
|
+
};
|
|
35
|
+
/**
|
|
36
|
+
* Shows whether a person is online, away, busy, or offline.
|
|
37
|
+
*
|
|
38
|
+
* The dot is the same one `Indicator` draws; what this component adds is the
|
|
39
|
+
* vocabulary (which state maps to which color) and a name for that state —
|
|
40
|
+
* a colored dot on its own carries meaning by color alone, so the name is
|
|
41
|
+
* always exposed to assistive technology even when `showLabel` is false.
|
|
42
|
+
*
|
|
43
|
+
* Composition Contract:
|
|
44
|
+
* - Managed by: App consumption
|
|
45
|
+
* - Scroll lock: No
|
|
46
|
+
*/
|
|
47
|
+
export declare const Presence: React.ForwardRefExoticComponent<Omit<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "ref">, "children"> & {
|
|
48
|
+
/**
|
|
49
|
+
* Availability of the person or resource.
|
|
50
|
+
*/
|
|
51
|
+
status: PresenceStatus;
|
|
52
|
+
/**
|
|
53
|
+
* Text for the status. Defaults to the localized name of `status`.
|
|
54
|
+
*/
|
|
55
|
+
label?: string;
|
|
56
|
+
/**
|
|
57
|
+
* Whether the label is shown next to the dot. The label is always exposed to
|
|
58
|
+
* assistive technology; this only controls whether it is also visible.
|
|
59
|
+
* @default false
|
|
60
|
+
*/
|
|
61
|
+
showLabel?: boolean;
|
|
62
|
+
/**
|
|
63
|
+
* Size of the dot.
|
|
64
|
+
* @default "md"
|
|
65
|
+
*/
|
|
66
|
+
size?: ComponentSizeBasic;
|
|
67
|
+
/**
|
|
68
|
+
* Corner the dot is placed at. Only applies when `children` is given.
|
|
69
|
+
* @default "bottom-right"
|
|
70
|
+
*/
|
|
71
|
+
position?: "top-right" | "top-left" | "bottom-right" | "bottom-left";
|
|
72
|
+
/**
|
|
73
|
+
* Element the dot is attached to, typically an `Avatar`. Without it the dot
|
|
74
|
+
* renders inline, next to whatever follows it.
|
|
75
|
+
*/
|
|
76
|
+
children?: React.ReactNode;
|
|
77
|
+
} & React.RefAttributes<HTMLSpanElement>>;
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import { useWimTranslation as e } from "../../../i18n/useWimTranslation.js";
|
|
3
|
+
import { VisuallyHidden as t } from "../../layout/VisuallyHidden/VisuallyHidden.js";
|
|
4
|
+
import { Indicator as n } from "../../feedback/Indicator/Indicator.js";
|
|
5
|
+
import r from "./presence.module.js";
|
|
6
|
+
import i from "react";
|
|
7
|
+
import a from "classnames";
|
|
8
|
+
import { jsx as o, jsxs as s } from "react/jsx-runtime";
|
|
9
|
+
//#region src/components/data-display/Presence/Presence.tsx
|
|
10
|
+
var c = {
|
|
11
|
+
online: "success",
|
|
12
|
+
away: "warning",
|
|
13
|
+
busy: "danger",
|
|
14
|
+
offline: "neutral"
|
|
15
|
+
}, l = i.forwardRef(({ status: i, label: l, showLabel: u = !1, size: d = "md", position: f = "bottom-right", children: p, className: m, ...h }, g) => {
|
|
16
|
+
let { t: _ } = e("common"), v = l ?? _(`presence.${i}`);
|
|
17
|
+
return /* @__PURE__ */ s("span", {
|
|
18
|
+
ref: g,
|
|
19
|
+
className: a("wim-presence", r.root, m),
|
|
20
|
+
...h,
|
|
21
|
+
children: [p ? /* @__PURE__ */ o(n, {
|
|
22
|
+
color: c[i],
|
|
23
|
+
size: d,
|
|
24
|
+
position: f,
|
|
25
|
+
children: p
|
|
26
|
+
}) : /* @__PURE__ */ o(n, {
|
|
27
|
+
color: c[i],
|
|
28
|
+
size: d,
|
|
29
|
+
inline: !0
|
|
30
|
+
}), u ? /* @__PURE__ */ o("span", {
|
|
31
|
+
className: r.label,
|
|
32
|
+
children: v
|
|
33
|
+
}) : /* @__PURE__ */ o(t, { children: v })]
|
|
34
|
+
});
|
|
35
|
+
});
|
|
36
|
+
l.displayName = "Presence";
|
|
37
|
+
//#endregion
|
|
38
|
+
export { l as Presence };
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
"use client";
|
|
2
|
-
const e=require("../../../_virtual/_rolldown/runtime.cjs"),t=require("../../../utilities/style-utils.cjs"),n=require("./loader.module.cjs");let r=require("react");r=e.__toESM(r,1);let i=require("classnames");i=e.__toESM(i,1);let a=require("react/jsx-runtime");var o=({variant:e=`bars`,size:r=`md`,color:o=`primary`,className:s,style:c,...l})=>{let u=typeof o==`string`&&[`primary`,`secondary`,`success`,`warning`,`danger`,`neutral`].includes(o);return(0,a.jsxs)(`div`,{className:(0,i.default)(`wim-loader`,n.default.root,n.default[e],n.default[r],u&&n.default[o],s),style:{color:u?void 0:t.getColorValue(o),...c}
|
|
2
|
+
const e=require("../../../_virtual/_rolldown/runtime.cjs"),t=require("../../../utilities/style-utils.cjs"),n=require("./loader.module.cjs");let r=require("react");r=e.__toESM(r,1);let i=require("classnames");i=e.__toESM(i,1);let a=require("react/jsx-runtime");var o=({variant:e=`bars`,size:r=`md`,color:o=`primary`,className:s,style:c,...l})=>{let u=typeof o==`string`&&[`primary`,`secondary`,`success`,`warning`,`danger`,`neutral`].includes(o);return(0,a.jsxs)(`div`,{className:(0,i.default)(`wim-loader`,n.default.root,n.default[e],n.default[r],u&&n.default[o],s),style:{color:u?void 0:t.getColorValue(o),...c},...l,children:[(0,a.jsx)(`span`,{className:n.default.item}),(0,a.jsx)(`span`,{className:n.default.item}),(0,a.jsx)(`span`,{className:n.default.item})]})};exports.Loader=o;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
"use client";
|
|
2
|
-
const e=require("../../../_virtual/_rolldown/runtime.cjs"),t=require("../../../utilities/style-utils.cjs"),n=require("./spinner.module.cjs");let r=require("react");r=e.__toESM(r,1);let i=require("classnames");i=e.__toESM(i,1);let a=require("react/jsx-runtime");var o=({size:e=`md`,color:r=`primary`,label:o,labelPosition:s=`right`,className:c,style:l,...u})=>{let d=typeof r==`string`&&[`primary`,`secondary`,`success`,`warning`,`danger`,`neutral`].includes(r);return(0,a.jsxs)(`div`,{className:(0,i.default)(n.default.container,o&&n.default[`label-${s}`],c),role
|
|
2
|
+
const e=require("../../../_virtual/_rolldown/runtime.cjs"),t=require("../../../utilities/style-utils.cjs"),n=require("./spinner.module.cjs");let r=require("react");r=e.__toESM(r,1);let i=require("classnames");i=e.__toESM(i,1);let a=require("react/jsx-runtime");var o=({size:e=`md`,color:r=`primary`,label:o,labelPosition:s=`right`,className:c,style:l,...u})=>{let d=typeof r==`string`&&[`primary`,`secondary`,`success`,`warning`,`danger`,`neutral`].includes(r);return(0,a.jsxs)(`div`,{className:(0,i.default)(n.default.container,o&&n.default[`label-${s}`],c),role:o?`status`:void 0,"aria-live":o?`polite`:void 0,style:{color:d?void 0:t.getColorValue(r),...l},...u,children:[(0,a.jsxs)(`svg`,{className:(0,i.default)(`wim-spinner`,n.default.root,n.default[e],d&&n.default[r]),viewBox:`0 0 50 50`,fill:`none`,xmlns:`http://www.w3.org/2000/svg`,children:[(0,a.jsx)(`circle`,{className:n.default.track,cx:`25`,cy:`25`,r:`20`,stroke:`currentColor`,strokeWidth:`4`}),(0,a.jsx)(`circle`,{className:n.default.head,cx:`25`,cy:`25`,r:`20`,stroke:`currentColor`,strokeWidth:`4`,strokeLinecap:`round`,strokeDasharray:`126`,strokeDashoffset:`100`})]}),o&&(0,a.jsx)(`span`,{className:n.default.label,children:o})]})};exports.Spinner=o;
|
|
@@ -16,8 +16,8 @@ var a = ({ size: a = "md", color: o = "primary", label: s, labelPosition: c = "r
|
|
|
16
16
|
].includes(o);
|
|
17
17
|
return /* @__PURE__ */ i("div", {
|
|
18
18
|
className: n(t.container, s && t[`label-${c}`], l),
|
|
19
|
-
role: "status",
|
|
20
|
-
"aria-live": "polite",
|
|
19
|
+
role: s ? "status" : void 0,
|
|
20
|
+
"aria-live": s ? "polite" : void 0,
|
|
21
21
|
style: {
|
|
22
22
|
color: f ? void 0 : e(o),
|
|
23
23
|
...u
|
|
@@ -30,3 +30,4 @@ export * from './components/data-display/Reaction/Reaction';
|
|
|
30
30
|
export * from './components/data-display/Leaderboard/Leaderboard';
|
|
31
31
|
export * from './components/data-display/RelativeTime/RelativeTime';
|
|
32
32
|
export * from './components/data-display/Countdown/Countdown';
|
|
33
|
+
export * from './components/data-display/Presence/Presence';
|
package/dist/data-display.cjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
"use client";
|
|
2
|
-
Object.defineProperty(exports,Symbol.toStringTag,{value:`Module`});const e=require("./components/data-display/Card/Card.cjs"),t=require("./components/data-display/Badge/Badge.cjs"),n=require("./components/data-display/Calendar/Calendar.cjs"),r=require("./components/data-display/Chip/Chip.cjs"),i=require("./components/data-display/VirtualList/VirtualList.cjs"),a=require("./components/data-display/TreeView/TreeView.cjs"),o=require("./components/data-display/Tag/Tag.cjs"),s=require("./components/data-display/Accordion/Accordion.cjs"),c=require("./components/data-display/Avatar/Avatar.cjs"),l=require("./components/data-display/AvatarGroup/AvatarGroup.cjs"),u=require("./components/data-display/Calendar/RangeCalendar.cjs"),d=require("./components/data-display/Carousel/Carousel.cjs"),f=require("./components/data-display/Table/useTableSort.cjs"),p=require("./components/data-display/Table/Table.cjs"),m=require("./components/data-display/DataGrid/DataGrid.cjs"),h=require("./components/data-display/DescriptionList/DescriptionList.cjs"),g=require("./components/data-display/EmptyState/EmptyState.cjs"),_=require("./components/data-display/Kanban/Kanban.cjs"),v=require("./components/data-display/List/List.cjs"),y=require("./components/data-display/Marquee/Marquee.cjs"),b=require("./components/data-display/Stats/Stats.cjs"),x=require("./components/data-display/Timeline/Timeline.cjs"),S=require("./components/data-display/FAQSection/FAQSection.cjs"),C=require("./components/data-display/InfiniteScroll/InfiniteScroll.cjs"),w=require("./components/data-display/SortableList/SortableList.cjs"),T=require("./components/data-display/SwipeAction/SwipeAction.cjs"),E=require("./components/data-display/PullToRefresh/PullToRefresh.cjs"),D=require("./components/data-display/JsonViewer/JsonViewer.cjs"),O=require("./components/data-display/CalendarHeatmap/CalendarHeatmap.cjs"),k=require("./components/data-display/Reaction/Reaction.cjs"),A=require("./components/data-display/Leaderboard/Leaderboard.cjs"),j=require("./components/data-display/RelativeTime/RelativeTime.cjs"),M=require("./components/data-display/Countdown/Countdown.cjs");exports.Accordion=s.Accordion,exports.AccordionContent=s.AccordionContent,exports.AccordionItem=s.AccordionItem,exports.AccordionTrigger=s.AccordionTrigger,exports.Avatar=c.Avatar,exports.AvatarGroup=l.AvatarGroup,exports.Badge=t.Badge,exports.Calendar=n.Calendar,exports.CalendarHeatmap=O.CalendarHeatmap,exports.Card=e.Card,exports.CardBody=e.CardBody,exports.CardFooter=e.CardFooter,exports.CardHeader=e.CardHeader,exports.Carousel=d.Carousel,exports.Chip=r.Chip,exports.Countdown=M.Countdown,exports.DataGrid=m.DataGrid,exports.DescriptionList=h.DescriptionList,exports.DescriptionListDetails=h.DescriptionListDetails,exports.DescriptionListItem=h.DescriptionListItem,exports.DescriptionListTerm=h.DescriptionListTerm,exports.EmptyState=g.EmptyState,exports.FAQSection=S.FAQSection,exports.InfiniteScroll=C.InfiniteScroll,exports.JsonViewer=D.JsonViewer,exports.Kanban=_.Kanban,exports.KanbanBoard=_.KanbanBoard,exports.KanbanCard=_.KanbanCard,exports.KanbanColumn=_.KanbanColumn,exports.Leaderboard=A.Leaderboard,exports.List=v.List,exports.ListItem=v.ListItem,exports.Marquee=y.Marquee,exports.PullToRefresh=E.PullToRefresh,exports.RangeCalendar=u.RangeCalendar,exports.Reaction=k.Reaction,exports.RelativeTime=j.RelativeTime,exports.SortableList=w.SortableList,exports.SortableListDragHandle=w.SortableListDragHandle,exports.SortableListItem=w.SortableListItem,exports.Stats=b.Stats,exports.StatsDescription=b.StatsDescription,exports.StatsLabel=b.StatsLabel,exports.StatsTrend=b.StatsTrend,exports.StatsValue=b.StatsValue,exports.SwipeAction=T.SwipeAction,exports.Table=p.Table,exports.TableBody=p.TableBody,exports.TableCell=p.TableCell,exports.TableFooter=p.TableFooter,exports.TableHead=p.TableHead,exports.TableHeader=p.TableHeader,exports.TableRow=p.TableRow,exports.Tag=o.Tag,exports.Timeline=x.Timeline,exports.TimelineConnector=x.TimelineConnector,exports.TimelineContent=x.TimelineContent,exports.TimelineItem=x.TimelineItem,exports.TimelineOppositeContent=x.TimelineOppositeContent,exports.TimelinePoint=x.TimelinePoint,exports.TimelineSeparator=x.TimelineSeparator,exports.TreeView=a.TreeView,exports.TreeViewItem=a.TreeViewItem,exports.VirtualList=i.VirtualList,exports.getNextSortDirection=f.getNextSortDirection,exports.useTableSort=f.useTableSort;
|
|
2
|
+
Object.defineProperty(exports,Symbol.toStringTag,{value:`Module`});const e=require("./components/data-display/Card/Card.cjs"),t=require("./components/data-display/Badge/Badge.cjs"),n=require("./components/data-display/Calendar/Calendar.cjs"),r=require("./components/data-display/Chip/Chip.cjs"),i=require("./components/data-display/VirtualList/VirtualList.cjs"),a=require("./components/data-display/TreeView/TreeView.cjs"),o=require("./components/data-display/Tag/Tag.cjs"),s=require("./components/data-display/Accordion/Accordion.cjs"),c=require("./components/data-display/Avatar/Avatar.cjs"),l=require("./components/data-display/AvatarGroup/AvatarGroup.cjs"),u=require("./components/data-display/Calendar/RangeCalendar.cjs"),d=require("./components/data-display/Carousel/Carousel.cjs"),f=require("./components/data-display/Table/useTableSort.cjs"),p=require("./components/data-display/Table/Table.cjs"),m=require("./components/data-display/DataGrid/DataGrid.cjs"),h=require("./components/data-display/DescriptionList/DescriptionList.cjs"),g=require("./components/data-display/EmptyState/EmptyState.cjs"),_=require("./components/data-display/Kanban/Kanban.cjs"),v=require("./components/data-display/List/List.cjs"),y=require("./components/data-display/Marquee/Marquee.cjs"),b=require("./components/data-display/Stats/Stats.cjs"),x=require("./components/data-display/Timeline/Timeline.cjs"),S=require("./components/data-display/FAQSection/FAQSection.cjs"),C=require("./components/data-display/InfiniteScroll/InfiniteScroll.cjs"),w=require("./components/data-display/SortableList/SortableList.cjs"),T=require("./components/data-display/SwipeAction/SwipeAction.cjs"),E=require("./components/data-display/PullToRefresh/PullToRefresh.cjs"),D=require("./components/data-display/JsonViewer/JsonViewer.cjs"),O=require("./components/data-display/CalendarHeatmap/CalendarHeatmap.cjs"),k=require("./components/data-display/Reaction/Reaction.cjs"),A=require("./components/data-display/Leaderboard/Leaderboard.cjs"),j=require("./components/data-display/RelativeTime/RelativeTime.cjs"),M=require("./components/data-display/Countdown/Countdown.cjs"),N=require("./components/data-display/Presence/Presence.cjs");exports.Accordion=s.Accordion,exports.AccordionContent=s.AccordionContent,exports.AccordionItem=s.AccordionItem,exports.AccordionTrigger=s.AccordionTrigger,exports.Avatar=c.Avatar,exports.AvatarGroup=l.AvatarGroup,exports.Badge=t.Badge,exports.Calendar=n.Calendar,exports.CalendarHeatmap=O.CalendarHeatmap,exports.Card=e.Card,exports.CardBody=e.CardBody,exports.CardFooter=e.CardFooter,exports.CardHeader=e.CardHeader,exports.Carousel=d.Carousel,exports.Chip=r.Chip,exports.Countdown=M.Countdown,exports.DataGrid=m.DataGrid,exports.DescriptionList=h.DescriptionList,exports.DescriptionListDetails=h.DescriptionListDetails,exports.DescriptionListItem=h.DescriptionListItem,exports.DescriptionListTerm=h.DescriptionListTerm,exports.EmptyState=g.EmptyState,exports.FAQSection=S.FAQSection,exports.InfiniteScroll=C.InfiniteScroll,exports.JsonViewer=D.JsonViewer,exports.Kanban=_.Kanban,exports.KanbanBoard=_.KanbanBoard,exports.KanbanCard=_.KanbanCard,exports.KanbanColumn=_.KanbanColumn,exports.Leaderboard=A.Leaderboard,exports.List=v.List,exports.ListItem=v.ListItem,exports.Marquee=y.Marquee,exports.Presence=N.Presence,exports.PullToRefresh=E.PullToRefresh,exports.RangeCalendar=u.RangeCalendar,exports.Reaction=k.Reaction,exports.RelativeTime=j.RelativeTime,exports.SortableList=w.SortableList,exports.SortableListDragHandle=w.SortableListDragHandle,exports.SortableListItem=w.SortableListItem,exports.Stats=b.Stats,exports.StatsDescription=b.StatsDescription,exports.StatsLabel=b.StatsLabel,exports.StatsTrend=b.StatsTrend,exports.StatsValue=b.StatsValue,exports.SwipeAction=T.SwipeAction,exports.Table=p.Table,exports.TableBody=p.TableBody,exports.TableCell=p.TableCell,exports.TableFooter=p.TableFooter,exports.TableHead=p.TableHead,exports.TableHeader=p.TableHeader,exports.TableRow=p.TableRow,exports.Tag=o.Tag,exports.Timeline=x.Timeline,exports.TimelineConnector=x.TimelineConnector,exports.TimelineContent=x.TimelineContent,exports.TimelineItem=x.TimelineItem,exports.TimelineOppositeContent=x.TimelineOppositeContent,exports.TimelinePoint=x.TimelinePoint,exports.TimelineSeparator=x.TimelineSeparator,exports.TreeView=a.TreeView,exports.TreeViewItem=a.TreeViewItem,exports.VirtualList=i.VirtualList,exports.getNextSortDirection=f.getNextSortDirection,exports.useTableSort=f.useTableSort;
|
package/dist/data-display.js
CHANGED
|
@@ -32,4 +32,5 @@ import { Reaction as ce } from "./components/data-display/Reaction/Reaction.js";
|
|
|
32
32
|
import { Leaderboard as le } from "./components/data-display/Leaderboard/Leaderboard.js";
|
|
33
33
|
import { RelativeTime as ue } from "./components/data-display/RelativeTime/RelativeTime.js";
|
|
34
34
|
import { Countdown as de } from "./components/data-display/Countdown/Countdown.js";
|
|
35
|
-
|
|
35
|
+
import { Presence as fe } from "./components/data-display/Presence/Presence.js";
|
|
36
|
+
export { d as Accordion, f as AccordionContent, p as AccordionItem, m as AccordionTrigger, h as Avatar, g as AvatarGroup, i as Badge, a as Calendar, se as CalendarHeatmap, e as Card, t as CardBody, n as CardFooter, r as CardHeader, v as Carousel, o as Chip, de as Countdown, O as DataGrid, k as DescriptionList, A as DescriptionListDetails, j as DescriptionListItem, M as DescriptionListTerm, N as EmptyState, $ as FAQSection, ee as InfiniteScroll, oe as JsonViewer, P as Kanban, F as KanbanBoard, I as KanbanCard, L as KanbanColumn, le as Leaderboard, R as List, z as ListItem, B as Marquee, fe as Presence, ae as PullToRefresh, _ as RangeCalendar, ce as Reaction, ue as RelativeTime, te as SortableList, ne as SortableListDragHandle, re as SortableListItem, V as Stats, H as StatsDescription, U as StatsLabel, W as StatsTrend, G as StatsValue, ie as SwipeAction, x as Table, S as TableBody, C as TableCell, w as TableFooter, T as TableHead, E as TableHeader, D as TableRow, u as Tag, K as Timeline, q as TimelineConnector, J as TimelineContent, Y as TimelineItem, X as TimelineOppositeContent, Z as TimelinePoint, Q as TimelineSeparator, c as TreeView, l as TreeViewItem, s as VirtualList, y as getNextSortDirection, b as useTableSort };
|