wimui 0.28.0 → 0.29.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/charts.cjs +1 -1
- package/dist/charts.d.ts +4 -0
- package/dist/charts.js +5 -1
- package/dist/components/_internal/barSpan.cjs +2 -0
- package/dist/components/_internal/barSpan.d.ts +60 -0
- package/dist/components/_internal/barSpan.js +13 -0
- package/dist/components/_internal/chartTableData.cjs +0 -0
- package/dist/components/_internal/chartTableData.d.ts +55 -0
- package/dist/components/_internal/chartTableData.js +0 -0
- package/dist/components/charts/BoxPlot/BoxPlot.cjs +2 -0
- package/dist/components/charts/BoxPlot/BoxPlot.d.ts +50 -0
- package/dist/components/charts/BoxPlot/BoxPlot.js +130 -0
- package/dist/components/charts/BoxPlot/box-plot.module.cjs +2 -0
- package/dist/components/charts/BoxPlot/box-plot.module.js +11 -0
- package/dist/components/charts/CandlestickChart/CandlestickChart.cjs +2 -0
- package/dist/components/charts/CandlestickChart/CandlestickChart.d.ts +48 -0
- package/dist/components/charts/CandlestickChart/CandlestickChart.js +119 -0
- package/dist/components/charts/CandlestickChart/candlestick-chart.module.cjs +2 -0
- package/dist/components/charts/CandlestickChart/candlestick-chart.module.js +13 -0
- package/dist/components/charts/SankeyChart/SankeyChart.cjs +2 -0
- package/dist/components/charts/SankeyChart/SankeyChart.d.ts +54 -0
- package/dist/components/charts/SankeyChart/SankeyChart.js +106 -0
- package/dist/components/charts/SankeyChart/sankey-chart.module.cjs +2 -0
- package/dist/components/charts/SankeyChart/sankey-chart.module.js +9 -0
- package/dist/components/charts/SankeyChart/warn-unknown-node.cjs +2 -0
- package/dist/components/charts/SankeyChart/warn-unknown-node.d.ts +9 -0
- package/dist/components/charts/SankeyChart/warn-unknown-node.js +5 -0
- package/dist/components/charts/WaterfallChart/WaterfallChart.cjs +2 -0
- package/dist/components/charts/WaterfallChart/WaterfallChart.d.ts +53 -0
- package/dist/components/charts/WaterfallChart/WaterfallChart.js +128 -0
- package/dist/components/charts/WaterfallChart/waterfall-chart.module.cjs +2 -0
- package/dist/components/charts/WaterfallChart/waterfall-chart.module.js +9 -0
- package/dist/components/data-display/Barcode/Barcode.cjs +1 -1
- package/dist/components/data-display/Barcode/Barcode.js +75 -34
- package/dist/components/data-display/Barcode/barcode.module.cjs +1 -1
- package/dist/components/data-display/Barcode/barcode.module.js +7 -6
- package/dist/components/data-display/Barcode/encode.cjs +1 -1
- package/dist/components/data-display/Barcode/encode.d.ts +36 -0
- package/dist/components/data-display/Barcode/encode.js +19 -1
- package/dist/components/data-display/Comment/Comment.cjs +2 -0
- package/dist/components/data-display/Comment/Comment.d.ts +132 -0
- package/dist/components/data-display/Comment/Comment.js +86 -0
- package/dist/components/data-display/Comment/comment.module.cjs +2 -0
- package/dist/components/data-display/Comment/comment.module.js +19 -0
- package/dist/data-display-core.d.ts +1 -0
- package/dist/data-display.cjs +1 -1
- package/dist/data-display.js +5 -4
- package/dist/i18n/generated/keys.d.ts +1 -1
- package/dist/i18n/generated/resources.cjs +1 -1
- package/dist/i18n/generated/resources.js +21 -0
- package/dist/index.cjs +1 -1
- package/dist/index.js +42 -41
- package/dist/llms-full.txt +68 -1
- package/dist/llms.txt +6 -1
- package/dist/locales/en/common.json +14 -7
- package/dist/locales/en/components.json +2 -1
- package/dist/locales/en/data-display.json +1 -2
- package/dist/locales/ja/common.json +14 -7
- package/dist/locales/ja/components.json +2 -1
- package/dist/locales/ja/data-display.json +1 -2
- package/dist/locales/pt/common.json +14 -7
- package/dist/locales/pt/components.json +2 -1
- package/dist/locales/pt/data-display.json +1 -2
- package/dist/styles.css +1 -1
- package/dist/wimui.umd.css +1 -1
- package/dist/wimui.umd.js +5 -5
- package/package.json +2 -2
|
@@ -0,0 +1,132 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
/** Who wrote the comment. */
|
|
3
|
+
export type CommentAuthor = {
|
|
4
|
+
/** Display name. Also names the comment for assistive tech. */
|
|
5
|
+
name: string;
|
|
6
|
+
/** Avatar image URL. */
|
|
7
|
+
avatarSrc?: string;
|
|
8
|
+
/** Initials shown when there is no avatar image. */
|
|
9
|
+
initials?: string;
|
|
10
|
+
/** Optional marker next to the name — "Author", "Moderator", a `Tag`, etc. */
|
|
11
|
+
badge?: React.ReactNode;
|
|
12
|
+
};
|
|
13
|
+
export type CommentProps = Omit<React.ComponentPropsWithoutRef<"article">, "id" | "children"> & {
|
|
14
|
+
/**
|
|
15
|
+
* Identifies this comment. The `replyingTo` / `editingId` props are compared
|
|
16
|
+
* against it, and the callbacks pass it back.
|
|
17
|
+
*/
|
|
18
|
+
id: string;
|
|
19
|
+
/** Who wrote it. */
|
|
20
|
+
author: CommentAuthor;
|
|
21
|
+
/**
|
|
22
|
+
* When it was written. Pass a `RelativeTime`, or any node — this component
|
|
23
|
+
* does not format dates, because the surrounding page decides whether
|
|
24
|
+
* "3 hours ago" or an absolute date is the useful thing to read.
|
|
25
|
+
*/
|
|
26
|
+
timestamp?: React.ReactNode;
|
|
27
|
+
/** The comment itself. Any node — Markdown, mentions, attachments. */
|
|
28
|
+
children?: React.ReactNode;
|
|
29
|
+
/**
|
|
30
|
+
* Nested replies: `Comment` elements. The nesting is drawn as a list, so
|
|
31
|
+
* assistive tech reads the depth rather than inferring it from indentation.
|
|
32
|
+
*/
|
|
33
|
+
replies?: React.ReactNode;
|
|
34
|
+
/**
|
|
35
|
+
* Marks the comment as changed since it was posted. A comment that was
|
|
36
|
+
* silently rewritten reads as if it always said the new thing.
|
|
37
|
+
* @default false
|
|
38
|
+
*/
|
|
39
|
+
edited?: boolean;
|
|
40
|
+
/**
|
|
41
|
+
* Id of the comment whose reply box is open. When it equals `id`, `composer`
|
|
42
|
+
* is rendered below this comment.
|
|
43
|
+
*/
|
|
44
|
+
replyingTo?: string;
|
|
45
|
+
/**
|
|
46
|
+
* Id of the comment being edited. When it equals `id`, `editor` replaces the
|
|
47
|
+
* body rather than appearing alongside it.
|
|
48
|
+
*/
|
|
49
|
+
editingId?: string;
|
|
50
|
+
/** The reply box. Rendered only while `replyingTo` equals `id`. */
|
|
51
|
+
composer?: React.ReactNode;
|
|
52
|
+
/** The edit form. Rendered only while `editingId` equals `id`. */
|
|
53
|
+
editor?: React.ReactNode;
|
|
54
|
+
/** Shows a Reply button when set. */
|
|
55
|
+
onReply?: (id: string) => void;
|
|
56
|
+
/** Shows an Edit button when set. */
|
|
57
|
+
onEdit?: (id: string) => void;
|
|
58
|
+
/** Shows a Delete button when set. */
|
|
59
|
+
onDelete?: (id: string) => void;
|
|
60
|
+
/** Extra actions, placed after the built-in ones. */
|
|
61
|
+
actions?: React.ReactNode;
|
|
62
|
+
/** Additional class names */
|
|
63
|
+
className?: string;
|
|
64
|
+
};
|
|
65
|
+
/**
|
|
66
|
+
* Comment renders one comment in a discussion — the author, when it was
|
|
67
|
+
* written, the text, the actions on it, and any replies nested underneath.
|
|
68
|
+
*
|
|
69
|
+
* **The reply box and the edit form are slots, not state.** Which one is open
|
|
70
|
+
* is passed in (`replyingTo` / `editingId`) and the form itself is passed in
|
|
71
|
+
* (`composer` / `editor`), so the surrounding app keeps ownership of drafts,
|
|
72
|
+
* validation, and submission — the parts that differ in every product. What
|
|
73
|
+
* this component owns is the part that is the same everywhere and easy to get
|
|
74
|
+
* wrong: the heading structure, the nesting semantics, and the fact that an
|
|
75
|
+
* edited comment says so.
|
|
76
|
+
*
|
|
77
|
+
* Composition Contract:
|
|
78
|
+
* - Managed by: App consumption
|
|
79
|
+
* - Scroll lock: No
|
|
80
|
+
*/
|
|
81
|
+
export declare const Comment: React.ForwardRefExoticComponent<Omit<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>, "ref">, "id" | "children"> & {
|
|
82
|
+
/**
|
|
83
|
+
* Identifies this comment. The `replyingTo` / `editingId` props are compared
|
|
84
|
+
* against it, and the callbacks pass it back.
|
|
85
|
+
*/
|
|
86
|
+
id: string;
|
|
87
|
+
/** Who wrote it. */
|
|
88
|
+
author: CommentAuthor;
|
|
89
|
+
/**
|
|
90
|
+
* When it was written. Pass a `RelativeTime`, or any node — this component
|
|
91
|
+
* does not format dates, because the surrounding page decides whether
|
|
92
|
+
* "3 hours ago" or an absolute date is the useful thing to read.
|
|
93
|
+
*/
|
|
94
|
+
timestamp?: React.ReactNode;
|
|
95
|
+
/** The comment itself. Any node — Markdown, mentions, attachments. */
|
|
96
|
+
children?: React.ReactNode;
|
|
97
|
+
/**
|
|
98
|
+
* Nested replies: `Comment` elements. The nesting is drawn as a list, so
|
|
99
|
+
* assistive tech reads the depth rather than inferring it from indentation.
|
|
100
|
+
*/
|
|
101
|
+
replies?: React.ReactNode;
|
|
102
|
+
/**
|
|
103
|
+
* Marks the comment as changed since it was posted. A comment that was
|
|
104
|
+
* silently rewritten reads as if it always said the new thing.
|
|
105
|
+
* @default false
|
|
106
|
+
*/
|
|
107
|
+
edited?: boolean;
|
|
108
|
+
/**
|
|
109
|
+
* Id of the comment whose reply box is open. When it equals `id`, `composer`
|
|
110
|
+
* is rendered below this comment.
|
|
111
|
+
*/
|
|
112
|
+
replyingTo?: string;
|
|
113
|
+
/**
|
|
114
|
+
* Id of the comment being edited. When it equals `id`, `editor` replaces the
|
|
115
|
+
* body rather than appearing alongside it.
|
|
116
|
+
*/
|
|
117
|
+
editingId?: string;
|
|
118
|
+
/** The reply box. Rendered only while `replyingTo` equals `id`. */
|
|
119
|
+
composer?: React.ReactNode;
|
|
120
|
+
/** The edit form. Rendered only while `editingId` equals `id`. */
|
|
121
|
+
editor?: React.ReactNode;
|
|
122
|
+
/** Shows a Reply button when set. */
|
|
123
|
+
onReply?: (id: string) => void;
|
|
124
|
+
/** Shows an Edit button when set. */
|
|
125
|
+
onEdit?: (id: string) => void;
|
|
126
|
+
/** Shows a Delete button when set. */
|
|
127
|
+
onDelete?: (id: string) => void;
|
|
128
|
+
/** Extra actions, placed after the built-in ones. */
|
|
129
|
+
actions?: React.ReactNode;
|
|
130
|
+
/** Additional class names */
|
|
131
|
+
className?: string;
|
|
132
|
+
} & React.RefAttributes<HTMLElement>>;
|
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import { useWimTranslation as e } from "../../../i18n/useWimTranslation.js";
|
|
3
|
+
import { VisuallyHidden as t } from "../../layout/VisuallyHidden/VisuallyHidden.js";
|
|
4
|
+
import { Avatar as n } from "../Avatar/Avatar.js";
|
|
5
|
+
import r from "./comment.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/Comment/Comment.tsx
|
|
10
|
+
var c = i.forwardRef(({ id: c, author: l, timestamp: u, children: d, replies: f, edited: p = !1, replyingTo: m, editingId: h, composer: g, editor: _, onReply: v, onEdit: y, onDelete: b, actions: x, className: S, ...C }, w) => {
|
|
11
|
+
let { t: T } = e("common"), E = `${c}-author`, D = h !== void 0 && h === c, O = m !== void 0 && m === c, k = {
|
|
12
|
+
reply: v,
|
|
13
|
+
edit: y,
|
|
14
|
+
delete: b
|
|
15
|
+
}, A = [
|
|
16
|
+
"reply",
|
|
17
|
+
"edit",
|
|
18
|
+
"delete"
|
|
19
|
+
].filter((e) => k[e] !== void 0);
|
|
20
|
+
return /* @__PURE__ */ s("article", {
|
|
21
|
+
ref: w,
|
|
22
|
+
"aria-labelledby": E,
|
|
23
|
+
className: a("wim-comment", r.root, S),
|
|
24
|
+
...C,
|
|
25
|
+
children: [
|
|
26
|
+
/* @__PURE__ */ s("div", {
|
|
27
|
+
className: r.head,
|
|
28
|
+
children: [/* @__PURE__ */ o(n, {
|
|
29
|
+
src: l.avatarSrc,
|
|
30
|
+
initials: l.initials,
|
|
31
|
+
size: "sm",
|
|
32
|
+
alt: "",
|
|
33
|
+
"aria-hidden": "true"
|
|
34
|
+
}), /* @__PURE__ */ s("div", {
|
|
35
|
+
className: r.meta,
|
|
36
|
+
children: [
|
|
37
|
+
/* @__PURE__ */ o("span", {
|
|
38
|
+
id: E,
|
|
39
|
+
className: r.author,
|
|
40
|
+
children: l.name
|
|
41
|
+
}),
|
|
42
|
+
l.badge && /* @__PURE__ */ o("span", {
|
|
43
|
+
className: r.badge,
|
|
44
|
+
children: l.badge
|
|
45
|
+
}),
|
|
46
|
+
u && /* @__PURE__ */ o("span", {
|
|
47
|
+
className: r.timestamp,
|
|
48
|
+
children: u
|
|
49
|
+
}),
|
|
50
|
+
p && /* @__PURE__ */ o("span", {
|
|
51
|
+
className: r.edited,
|
|
52
|
+
children: T("comment.edited")
|
|
53
|
+
})
|
|
54
|
+
]
|
|
55
|
+
})]
|
|
56
|
+
}),
|
|
57
|
+
/* @__PURE__ */ o("div", {
|
|
58
|
+
className: r.body,
|
|
59
|
+
children: D ? _ : d
|
|
60
|
+
}),
|
|
61
|
+
(A.length > 0 || x) && /* @__PURE__ */ s("div", {
|
|
62
|
+
className: r.actions,
|
|
63
|
+
children: [A.map((e) => /* @__PURE__ */ s("button", {
|
|
64
|
+
type: "button",
|
|
65
|
+
className: r.action,
|
|
66
|
+
onClick: () => k[e]?.(c),
|
|
67
|
+
children: [T(`comment.${e}`), /* @__PURE__ */ s(t, { children: [" ", T("comment.action_context", { name: l.name })] })]
|
|
68
|
+
}, e)), x]
|
|
69
|
+
}),
|
|
70
|
+
O && g && /* @__PURE__ */ o("div", {
|
|
71
|
+
className: r.composer,
|
|
72
|
+
children: g
|
|
73
|
+
}),
|
|
74
|
+
f && /* @__PURE__ */ o("ul", {
|
|
75
|
+
className: r.replies,
|
|
76
|
+
children: i.Children.map(f, (e, t) => /* @__PURE__ */ o("li", {
|
|
77
|
+
className: r.reply,
|
|
78
|
+
children: e
|
|
79
|
+
}, t))
|
|
80
|
+
})
|
|
81
|
+
]
|
|
82
|
+
});
|
|
83
|
+
});
|
|
84
|
+
c.displayName = "Comment";
|
|
85
|
+
//#endregion
|
|
86
|
+
export { c as Comment };
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
var e=`_root_1nfbe_3`,t=`_head_1nfbe_9`,n=`_meta_1nfbe_18`,r=`_author_1nfbe_25`,i=`_badge_1nfbe_29`,a=`_timestamp_1nfbe_33`,o=`_edited_1nfbe_34`,s=`_body_1nfbe_42`,c=`_actions_1nfbe_46`,l=`_action_1nfbe_46`,u=`_composer_1nfbe_88`,d=`_replies_1nfbe_96`,f=`_reply_1nfbe_106`,p={root:e,head:t,meta:n,author:r,badge:i,timestamp:a,edited:o,body:s,actions:c,action:l,composer:u,replies:d,reply:f};exports.action=l,exports.actions=c,exports.author=r,exports.badge=i,exports.body=s,exports.composer=u,exports.default=p,exports.edited=o,exports.head=t,exports.meta=n,exports.replies=d,exports.reply=f,exports.root=e,exports.timestamp=a;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
//#region src/components/data-display/Comment/comment.module.scss
|
|
3
|
+
var e = "_root_1nfbe_3", t = "_head_1nfbe_9", n = "_meta_1nfbe_18", r = "_author_1nfbe_25", i = "_badge_1nfbe_29", a = "_timestamp_1nfbe_33", o = "_edited_1nfbe_34", s = "_body_1nfbe_42", c = "_actions_1nfbe_46", l = "_action_1nfbe_46", u = "_composer_1nfbe_88", d = "_replies_1nfbe_96", f = "_reply_1nfbe_106", p = {
|
|
4
|
+
root: e,
|
|
5
|
+
head: t,
|
|
6
|
+
meta: n,
|
|
7
|
+
author: r,
|
|
8
|
+
badge: i,
|
|
9
|
+
timestamp: a,
|
|
10
|
+
edited: o,
|
|
11
|
+
body: s,
|
|
12
|
+
actions: c,
|
|
13
|
+
action: l,
|
|
14
|
+
composer: u,
|
|
15
|
+
replies: d,
|
|
16
|
+
reply: f
|
|
17
|
+
};
|
|
18
|
+
//#endregion
|
|
19
|
+
export { l as action, c as actions, r as author, i as badge, s as body, u as composer, p as default, o as edited, t as head, n as meta, d as replies, f as reply, e as root, a as timestamp };
|
|
@@ -29,6 +29,7 @@ export * from './components/data-display/CalendarHeatmap/CalendarHeatmap';
|
|
|
29
29
|
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
|
+
export * from './components/data-display/Comment/Comment';
|
|
32
33
|
export * from './components/data-display/Countdown/Countdown';
|
|
33
34
|
export * from './components/data-display/Presence/Presence';
|
|
34
35
|
export * from './components/data-display/Barcode/Barcode';
|
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"),
|
|
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/Comment/Comment.cjs"),N=require("./components/data-display/Countdown/Countdown.cjs"),P=require("./components/data-display/Presence/Presence.cjs"),F=require("./components/data-display/Barcode/Barcode.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.Barcode=F.Barcode,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.Comment=M.Comment,exports.Countdown=N.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=P.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
|
@@ -31,7 +31,8 @@ import { CalendarHeatmap as se } from "./components/data-display/CalendarHeatmap
|
|
|
31
31
|
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
|
-
import {
|
|
35
|
-
import {
|
|
36
|
-
import {
|
|
37
|
-
|
|
34
|
+
import { Comment as de } from "./components/data-display/Comment/Comment.js";
|
|
35
|
+
import { Countdown as fe } from "./components/data-display/Countdown/Countdown.js";
|
|
36
|
+
import { Presence as pe } from "./components/data-display/Presence/Presence.js";
|
|
37
|
+
import { Barcode as me } from "./components/data-display/Barcode/Barcode.js";
|
|
38
|
+
export { d as Accordion, f as AccordionContent, p as AccordionItem, m as AccordionTrigger, h as Avatar, g as AvatarGroup, i as Badge, me as Barcode, 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 Comment, fe 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, pe 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 };
|