@bioturing/components 0.35.2 → 0.36.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/base.d.ts +2 -0
- package/dist/base.d.ts.map +1 -0
- package/dist/base.js +2 -0
- package/dist/base.js.map +1 -0
- package/dist/components/base-menu/item.css +1 -1
- package/dist/components/dropdown-menu/item.d.ts.map +1 -1
- package/dist/components/dropdown-menu/item.js +32 -22
- package/dist/components/dropdown-menu/item.js.map +1 -1
- package/dist/components/index.d.ts +1 -1
- package/dist/components/index.d.ts.map +1 -1
- package/dist/components/nav/index.d.ts.map +1 -1
- package/dist/components/nav/item.d.ts.map +1 -1
- package/dist/components/nav/item.js +25 -24
- package/dist/components/nav/item.js.map +1 -1
- package/dist/components/nav/style.css +1 -1
- package/dist/components/tag/component.js.map +1 -1
- package/dist/components/tag/index.d.ts +1 -0
- package/dist/components/tag/index.d.ts.map +1 -1
- package/dist/components/tag/list.d.ts +18 -0
- package/dist/components/tag/list.d.ts.map +1 -0
- package/dist/components/tag/list.js +100 -0
- package/dist/components/tag/list.js.map +1 -0
- package/dist/components/tag/style.css +1 -1
- package/dist/components/utils/client.d.ts +1 -0
- package/dist/components/utils/client.d.ts.map +1 -1
- package/dist/components/utils/createSyntheticClickEvent.d.ts +13 -0
- package/dist/components/utils/createSyntheticClickEvent.d.ts.map +1 -0
- package/dist/components/utils/createSyntheticClickEvent.js +62 -0
- package/dist/components/utils/createSyntheticClickEvent.js.map +1 -0
- package/dist/index.js +275 -271
- package/dist/index.js.map +1 -1
- package/dist/stats.html +1 -1
- package/package.json +7 -3
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"createSyntheticClickEvent.js","sources":["../../../src/components/utils/createSyntheticClickEvent.ts"],"sourcesContent":["import React from \"react\";\n\n/**\n * Creates a synthetic React MouseEvent for programmatic event simulation\n *\n * References:\n * - React SyntheticEvent: https://react.dev/reference/react-dom/components/common#react-event-object\n * - MouseEvent Web API: https://developer.mozilla.org/en-US/docs/Web/API/MouseEvent\n * - React TypeScript types: @types/react package\n * - Dispatch events in tests: https://react.dev/reference/react/act#dispatching-events-in-tests\n */\nfunction createSyntheticClickEvent(\n target: HTMLElement | null\n): React.MouseEvent<HTMLElement, MouseEvent> {\n // Create native MouseEvent - standard Web API\n const nativeEvent = new MouseEvent(\"click\", {\n bubbles: true,\n cancelable: true,\n view: window,\n detail: 1,\n });\n\n // React's synthetic event wraps the native event\n // Using 'unknown' first to bypass strict type checking, as recommended by TypeScript\n const syntheticEvent = {\n nativeEvent,\n currentTarget: target,\n target: target,\n bubbles: true,\n cancelable: true,\n defaultPrevented: false,\n eventPhase: nativeEvent.eventPhase,\n isTrusted: true,\n timeStamp: nativeEvent.timeStamp,\n type: \"click\",\n\n // UIEvent properties\n detail: 1,\n view: window as any, // Type cast to avoid AbstractView mismatch\n\n // Event methods\n preventDefault: function () {\n nativeEvent.preventDefault();\n },\n isDefaultPrevented: function () {\n return nativeEvent.defaultPrevented;\n },\n stopPropagation: function () {\n nativeEvent.stopPropagation();\n },\n isPropagationStopped: function () {\n return false;\n },\n persist: function () {\n // React 17+ doesn't pool events, so this is a no-op\n },\n\n // MouseEvent specific properties\n altKey: false,\n button: 0,\n buttons: 0,\n clientX: 0,\n clientY: 0,\n ctrlKey: false,\n metaKey: false,\n movementX: 0,\n movementY: 0,\n pageX: 0,\n pageY: 0,\n relatedTarget: null as EventTarget | null,\n screenX: 0,\n screenY: 0,\n shiftKey: false,\n\n getModifierState: function (key: string): boolean {\n return false;\n },\n } as unknown as React.MouseEvent<HTMLElement, MouseEvent>;\n\n return syntheticEvent;\n}\n\nexport default createSyntheticClickEvent;\n"],"names":["createSyntheticClickEvent","target","nativeEvent","key"],"mappings":"AAWA,SAASA,EACPC,GAC2C;AAE3C,QAAMC,IAAc,IAAI,WAAW,SAAS;AAAA,IAC1C,SAAS;AAAA,IACT,YAAY;AAAA,IACZ,MAAM;AAAA,IACN,QAAQ;AAAA,EAAA,CACT;AA2DD,SAvDuB;AAAA,IACrB,aAAAA;AAAA,IACA,eAAeD;AAAA,IACf,QAAAA;AAAA,IACA,SAAS;AAAA,IACT,YAAY;AAAA,IACZ,kBAAkB;AAAA,IAClB,YAAYC,EAAY;AAAA,IACxB,WAAW;AAAA,IACX,WAAWA,EAAY;AAAA,IACvB,MAAM;AAAA;AAAA,IAGN,QAAQ;AAAA,IACR,MAAM;AAAA;AAAA;AAAA,IAGN,gBAAgB,WAAY;AAC1B,MAAAA,EAAY,eAAA;AAAA,IACd;AAAA,IACA,oBAAoB,WAAY;AAC9B,aAAOA,EAAY;AAAA,IACrB;AAAA,IACA,iBAAiB,WAAY;AAC3B,MAAAA,EAAY,gBAAA;AAAA,IACd;AAAA,IACA,sBAAsB,WAAY;AAChC,aAAO;AAAA,IACT;AAAA,IACA,SAAS,WAAY;AAAA,IAErB;AAAA;AAAA,IAGA,QAAQ;AAAA,IACR,QAAQ;AAAA,IACR,SAAS;AAAA,IACT,SAAS;AAAA,IACT,SAAS;AAAA,IACT,SAAS;AAAA,IACT,SAAS;AAAA,IACT,WAAW;AAAA,IACX,WAAW;AAAA,IACX,OAAO;AAAA,IACP,OAAO;AAAA,IACP,eAAe;AAAA,IACf,SAAS;AAAA,IACT,SAAS;AAAA,IACT,UAAU;AAAA,IAEV,kBAAkB,SAAUC,GAAsB;AAChD,aAAO;AAAA,IACT;AAAA,EAAA;AAIJ;"}
|
package/dist/index.js
CHANGED
|
@@ -1,277 +1,281 @@
|
|
|
1
1
|
import { componentMetadata as r, getComponentsByCategory as t } from "./metadata.js";
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
import {
|
|
8
|
-
import {
|
|
9
|
-
import {
|
|
10
|
-
import {
|
|
11
|
-
import {
|
|
12
|
-
import {
|
|
13
|
-
import {
|
|
14
|
-
import {
|
|
15
|
-
import {
|
|
16
|
-
import {
|
|
17
|
-
import {
|
|
18
|
-
import {
|
|
19
|
-
import {
|
|
20
|
-
import {
|
|
21
|
-
import {
|
|
22
|
-
import {
|
|
23
|
-
import {
|
|
24
|
-
import {
|
|
25
|
-
import {
|
|
26
|
-
import {
|
|
27
|
-
import {
|
|
28
|
-
import {
|
|
29
|
-
import {
|
|
30
|
-
import {
|
|
31
|
-
import {
|
|
32
|
-
import {
|
|
33
|
-
import {
|
|
34
|
-
import {
|
|
35
|
-
import {
|
|
36
|
-
import {
|
|
37
|
-
import {
|
|
38
|
-
import {
|
|
39
|
-
import {
|
|
40
|
-
import {
|
|
41
|
-
import {
|
|
42
|
-
import {
|
|
43
|
-
import {
|
|
44
|
-
import {
|
|
45
|
-
import {
|
|
46
|
-
import {
|
|
47
|
-
import {
|
|
48
|
-
import {
|
|
49
|
-
import {
|
|
50
|
-
import {
|
|
51
|
-
import {
|
|
52
|
-
import {
|
|
53
|
-
import {
|
|
54
|
-
import {
|
|
55
|
-
import {
|
|
56
|
-
import {
|
|
57
|
-
import {
|
|
58
|
-
import {
|
|
59
|
-
import {
|
|
60
|
-
import {
|
|
61
|
-
import {
|
|
62
|
-
import {
|
|
63
|
-
import {
|
|
64
|
-
import {
|
|
65
|
-
import {
|
|
66
|
-
import {
|
|
67
|
-
import {
|
|
68
|
-
import {
|
|
69
|
-
import {
|
|
70
|
-
import {
|
|
71
|
-
import {
|
|
72
|
-
import {
|
|
73
|
-
import {
|
|
74
|
-
import {
|
|
75
|
-
import {
|
|
76
|
-
import {
|
|
77
|
-
import {
|
|
78
|
-
import {
|
|
79
|
-
import {
|
|
80
|
-
import {
|
|
81
|
-
import {
|
|
82
|
-
import {
|
|
83
|
-
import {
|
|
84
|
-
import {
|
|
85
|
-
import {
|
|
86
|
-
import {
|
|
87
|
-
import {
|
|
88
|
-
import {
|
|
89
|
-
import {
|
|
90
|
-
import {
|
|
2
|
+
import { default as m } from "./components/utils/createSyntheticClickEvent.js";
|
|
3
|
+
import { Affix as f, Alert as x, Anchor as s, App as l, AutoComplete as n, Avatar as i, BackTop as C, Calendar as c, Card as u, Carousel as T, Cascader as d, Col as g, ColorPicker as S, ConfigProvider as h, DatePicker as A, Descriptions as E, Divider as P, Drawer as b, Dropdown as R, Flex as k, FloatButton as D, Grid as I, InputNumber as L, Layout as O, List as y, Mentions as B, Menu as v, Pagination as N, Popconfirm as M, Progress as _, QRCode as w, Rate as U, Result as F, Row as W, Skeleton as V, Space as K, Statistic as q, Steps as z, Tabs as G, TimePicker as Q, Timeline as H, Transfer as j, TreeSelect as J, Typography as X, Watermark as Y, message as Z, notification as $, theme as ee, unstableSetRender as oe, version as re } from "antd";
|
|
4
|
+
import { DataTable as ae } from "./components/data-table/component.js";
|
|
5
|
+
import { Select as pe } from "./components/select/component.js";
|
|
6
|
+
import { Modal as xe } from "./components/modal/index.js";
|
|
7
|
+
import { IconButton as le } from "./components/icon-button/component.js";
|
|
8
|
+
import { Switch as ie } from "./components/switch/component.js";
|
|
9
|
+
import { Checkbox as ce } from "./components/checkbox/component.js";
|
|
10
|
+
import { Segmented as Te } from "./components/segmented/component.js";
|
|
11
|
+
import { Table as ge } from "./components/table/component.js";
|
|
12
|
+
import { Tag as he } from "./components/tag/component.js";
|
|
13
|
+
import { TagList as Ee } from "./components/tag/list.js";
|
|
14
|
+
import { ThemeProvider as be } from "./components/theme-provider/component.js";
|
|
15
|
+
import { ThemeContext as ke, useTheme as De } from "./components/theme-provider/context/themeStore.js";
|
|
16
|
+
import { ThemeContextProvider as Le } from "./components/theme-provider/context/provider.js";
|
|
17
|
+
import { Split as ye, Splitter as Be } from "./components/splitter/component.js";
|
|
18
|
+
import { Truncate as Ne } from "./components/truncate/component.js";
|
|
19
|
+
import { DropdownMenu as _e } from "./components/dropdown-menu/component.js";
|
|
20
|
+
import { DropdownMenuItem as Ue } from "./components/dropdown-menu/item.js";
|
|
21
|
+
import { CommandPalette as We } from "./components/command-palette/component.js";
|
|
22
|
+
import { KeyboardShortcut as Ke } from "./components/keyboard-shortcut/component.js";
|
|
23
|
+
import { Transition as ze } from "./components/transition/component.js";
|
|
24
|
+
import { DefaultUpload as Qe, Upload as He } from "./components/upload/component.js";
|
|
25
|
+
import { useUploadItemRender as Je } from "./components/upload/hooks.js";
|
|
26
|
+
import { clsx as Ye, cn as Ze, cx as $e } from "./components/utils/cn.js";
|
|
27
|
+
import { reactNodeToString as oo } from "./components/utils/reactToString.js";
|
|
28
|
+
import { isTracebackError as to } from "./components/utils/isTracebackError.js";
|
|
29
|
+
import { isValidHexColor as mo } from "./components/utils/colors.js";
|
|
30
|
+
import { WithRenderProp as fo } from "./components/utils/WithRenderProp.js";
|
|
31
|
+
import { getReactElementProp as so } from "./components/utils/reactElement.js";
|
|
32
|
+
import { default as no } from "merge-refs";
|
|
33
|
+
import { useAntdCssVarClassname as Co, useCls as co, useGetPrefixCls as uo } from "./components/utils/antdUtils.js";
|
|
34
|
+
import { changeThemeWithoutTransition as go } from "./components/utils/theme.js";
|
|
35
|
+
import { moveTypingCursorToEnd as ho } from "./components/utils/selectionRange.js";
|
|
36
|
+
import { DROPDOWN_COLLISION_AVOIDANCE as Eo, POPUP_COLLISION_AVOIDANCE as Po } from "./components/utils/constants.js";
|
|
37
|
+
import { buildAntdPlacement as Ro, parseAntdPlacement as ko } from "./components/utils/placement.js";
|
|
38
|
+
import { ScrollArea as Io } from "./components/scroll-area/component.js";
|
|
39
|
+
import { Popover as Oo } from "./components/popover/component.js";
|
|
40
|
+
import { Slider as Bo } from "./components/slider/component.js";
|
|
41
|
+
import { Tooltip as No } from "./components/tooltip/component.js";
|
|
42
|
+
import { Breadcrumb as _o } from "./components/breadcrumb/component.js";
|
|
43
|
+
import { BreadcrumbItem as Uo } from "./components/breadcrumb/item.js";
|
|
44
|
+
import { useUniqueKeysTree as Wo } from "./components/tree/useUniqueKeysTree.js";
|
|
45
|
+
import { getUniqueKeysFromOriginals as Ko, processTreeData as qo } from "./components/tree/helpers.js";
|
|
46
|
+
import { Tree as Go } from "./components/tree/components.js";
|
|
47
|
+
import { Spin as Ho } from "./components/spin/component.js";
|
|
48
|
+
import { Empty as Jo, EmptyIcon as Xo } from "./components/empty/component.js";
|
|
49
|
+
import { Form as Zo } from "./components/form/component.js";
|
|
50
|
+
import { Field as er } from "./components/field/component.js";
|
|
51
|
+
import { Tour as rr } from "./components/tour/component.js";
|
|
52
|
+
import { Toast as ar } from "./components/toast/component.js";
|
|
53
|
+
import { toast as pr, toastManager as fr } from "./components/toast/function.js";
|
|
54
|
+
import { VerticalCollapsiblePanel as sr } from "./components/vertical-collapsible-panel/component.js";
|
|
55
|
+
import { PopupPanel as nr } from "./components/popup-panel/component.js";
|
|
56
|
+
import { CodeBlock as Cr } from "./components/code-block/component.js";
|
|
57
|
+
import { StackChild as ur } from "./components/stack/StackChild.js";
|
|
58
|
+
import { Stack as dr } from "./components/stack/index.js";
|
|
59
|
+
import { Collapse as Sr } from "./components/collapse/component.js";
|
|
60
|
+
import { Input as Ar } from "./components/input/component.js";
|
|
61
|
+
import { Badge as Pr, InternalBadge as br } from "./components/badge/component.js";
|
|
62
|
+
import { Radio as kr } from "./components/radio/component.js";
|
|
63
|
+
import { Button as Ir } from "./components/button/component.js";
|
|
64
|
+
import { DSRoot as Or } from "./components/ds-root/component.js";
|
|
65
|
+
import { useDS as Br } from "./components/ds-root/hook.js";
|
|
66
|
+
import { DragDrop as Nr, DragDropRoot as Mr } from "./components/drag-drop/index.js";
|
|
67
|
+
import { ColorSelect as wr } from "./components/color-select/component.js";
|
|
68
|
+
import { Nav as Fr } from "./components/nav/index.js";
|
|
69
|
+
import { ChoiceList as Vr } from "./components/choice-list/component.js";
|
|
70
|
+
import { StatusIcon as qr } from "./components/status-icon/component.js";
|
|
71
|
+
import { Resizable as Gr } from "./components/resizable/component.js";
|
|
72
|
+
import { Combobox as Hr } from "./components/combobox/component.js";
|
|
73
|
+
import { SelectTrigger as Jr, SelectTriggerArrow as Xr, SelectTriggerClear as Yr, SelectTriggerContent as Zr, SelectTriggerRoot as $r } from "./components/select-trigger/component.js";
|
|
74
|
+
import { Loader as ot } from "./components/loader/component.js";
|
|
75
|
+
import { useForm as tt, useWatch as at } from "antd/es/form/Form";
|
|
76
|
+
import { useMessage as pt, useModal as ft, useToken as xt } from "./components/hooks/antd.js";
|
|
77
|
+
import { default as lt } from "antd/es/app/useApp";
|
|
78
|
+
import { useAnimationsFinished as it, useEnhancedEffect as Ct, useEventCallback as ct, useLatestRef as ut } from "./components/hooks/base-ui.js";
|
|
79
|
+
import { useControlledState as dt } from "./components/hooks/useControlledState.js";
|
|
80
|
+
import { useCharts as St } from "./components/hooks/useCharts.js";
|
|
81
|
+
import { useCSSVariables as At } from "./components/hooks/useCSSVariables.js";
|
|
82
|
+
import { useHover as Pt } from "./components/hooks/useHover.js";
|
|
83
|
+
import { useDraggable as Rt } from "./components/hooks/useDraggable.js";
|
|
84
|
+
import { BREAKPOINTS as Dt, useBreakpoint as It } from "./components/hooks/useBreakpoint.js";
|
|
85
|
+
import { useWindowSize as Ot } from "./components/hooks/useWindowSize.js";
|
|
86
|
+
import { useElementSize as Bt, useResizeObserver as vt } from "./components/hooks/useResizeObserver.js";
|
|
87
|
+
import { antdColorTokens as Mt, darkTheme as _t, lightTheme as wt } from "./tokens/and-theme/tokens.js";
|
|
88
|
+
import { categoricalChartColorKeys as Ft, categoricalChartColorTokens as Wt, categoricalChartsColors as Vt, chartColorTokens as Kt, rawChartColorTokens as qt } from "./tokens/charts/palettes/cloudscape.js";
|
|
89
|
+
import { COLORBREWER as Gt } from "./tokens/charts/palettes/colorbrewer.js";
|
|
90
|
+
import { tab10 as Ht, tab20 as jt, tab20b as Jt, tab20c as Xt } from "./tokens/charts/palettes/tableau.js";
|
|
91
|
+
import { CATEGORICAL_PALETTES as Zt, CATEGORICAL_PALETTE_NAMES as $t, SEQUENTIAL_PALETTES as ea, SEQUENTIAL_PALETTE_NAMES as oa, getAllCategoricalChartColors as ra, getAllSequentialChartColors as ta, getCategoricalChartColors as aa, getSequentialChartColors as ma } from "./tokens/charts/palettes/index.js";
|
|
92
|
+
import { getColorsByTheme as fa, getTokensByTheme as xa, resolveColorTokens as sa } from "./tokens/utils.js";
|
|
91
93
|
export {
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
Ee as
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
94
|
+
f as Affix,
|
|
95
|
+
x as Alert,
|
|
96
|
+
s as Anchor,
|
|
97
|
+
l as App,
|
|
98
|
+
n as AutoComplete,
|
|
99
|
+
i as Avatar,
|
|
100
|
+
Dt as BREAKPOINTS,
|
|
101
|
+
C as BackTop,
|
|
102
|
+
Pr as Badge,
|
|
103
|
+
_o as Breadcrumb,
|
|
104
|
+
Uo as BreadcrumbItem,
|
|
105
|
+
Ir as Button,
|
|
106
|
+
Zt as CATEGORICAL_PALETTES,
|
|
107
|
+
$t as CATEGORICAL_PALETTE_NAMES,
|
|
108
|
+
Gt as COLORBREWER,
|
|
109
|
+
c as Calendar,
|
|
110
|
+
u as Card,
|
|
111
|
+
T as Carousel,
|
|
112
|
+
d as Cascader,
|
|
113
|
+
ce as Checkbox,
|
|
114
|
+
Vr as ChoiceList,
|
|
115
|
+
Cr as CodeBlock,
|
|
116
|
+
g as Col,
|
|
117
|
+
Sr as Collapse,
|
|
118
|
+
S as ColorPicker,
|
|
119
|
+
wr as ColorSelect,
|
|
120
|
+
Hr as Combobox,
|
|
121
|
+
We as CommandPalette,
|
|
122
|
+
h as ConfigProvider,
|
|
123
|
+
Eo as DROPDOWN_COLLISION_AVOIDANCE,
|
|
124
|
+
Or as DSRoot,
|
|
125
|
+
ae as DataTable,
|
|
126
|
+
A as DatePicker,
|
|
127
|
+
Qe as DefaultUpload,
|
|
128
|
+
E as Descriptions,
|
|
129
|
+
P as Divider,
|
|
130
|
+
Nr as DragDrop,
|
|
131
|
+
Mr as DragDropRoot,
|
|
132
|
+
b as Drawer,
|
|
133
|
+
R as Dropdown,
|
|
134
|
+
_e as DropdownMenu,
|
|
135
|
+
Ue as DropdownMenuItem,
|
|
136
|
+
Jo as Empty,
|
|
137
|
+
Xo as EmptyIcon,
|
|
138
|
+
er as Field,
|
|
139
|
+
k as Flex,
|
|
140
|
+
D as FloatButton,
|
|
141
|
+
Zo as Form,
|
|
142
|
+
I as Grid,
|
|
143
|
+
le as IconButton,
|
|
144
|
+
Ar as Input,
|
|
145
|
+
L as InputNumber,
|
|
146
|
+
br as InternalBadge,
|
|
147
|
+
Ke as KeyboardShortcut,
|
|
148
|
+
O as Layout,
|
|
149
|
+
y as List,
|
|
150
|
+
ot as Loader,
|
|
151
|
+
B as Mentions,
|
|
152
|
+
v as Menu,
|
|
153
|
+
xe as Modal,
|
|
154
|
+
Fr as Nav,
|
|
155
|
+
Po as POPUP_COLLISION_AVOIDANCE,
|
|
156
|
+
N as Pagination,
|
|
157
|
+
M as Popconfirm,
|
|
158
|
+
Oo as Popover,
|
|
159
|
+
nr as PopupPanel,
|
|
160
|
+
_ as Progress,
|
|
161
|
+
w as QRCode,
|
|
162
|
+
kr as Radio,
|
|
163
|
+
U as Rate,
|
|
164
|
+
Gr as Resizable,
|
|
165
|
+
F as Result,
|
|
166
|
+
W as Row,
|
|
167
|
+
ea as SEQUENTIAL_PALETTES,
|
|
168
|
+
oa as SEQUENTIAL_PALETTE_NAMES,
|
|
169
|
+
Io as ScrollArea,
|
|
170
|
+
Te as Segmented,
|
|
171
|
+
pe as Select,
|
|
172
|
+
Jr as SelectTrigger,
|
|
173
|
+
Xr as SelectTriggerArrow,
|
|
174
|
+
Yr as SelectTriggerClear,
|
|
175
|
+
Zr as SelectTriggerContent,
|
|
176
|
+
$r as SelectTriggerRoot,
|
|
177
|
+
V as Skeleton,
|
|
178
|
+
Bo as Slider,
|
|
179
|
+
K as Space,
|
|
180
|
+
Ho as Spin,
|
|
181
|
+
ye as Split,
|
|
182
|
+
Be as Splitter,
|
|
183
|
+
dr as Stack,
|
|
184
|
+
ur as StackChild,
|
|
185
|
+
q as Statistic,
|
|
186
|
+
qr as StatusIcon,
|
|
187
|
+
z as Steps,
|
|
188
|
+
ie as Switch,
|
|
189
|
+
ge as Table,
|
|
190
|
+
G as Tabs,
|
|
191
|
+
he as Tag,
|
|
192
|
+
Ee as TagList,
|
|
193
|
+
ke as ThemeContext,
|
|
194
|
+
Le as ThemeContextProvider,
|
|
195
|
+
be as ThemeProvider,
|
|
196
|
+
Q as TimePicker,
|
|
197
|
+
H as Timeline,
|
|
198
|
+
ar as Toast,
|
|
199
|
+
No as Tooltip,
|
|
200
|
+
rr as Tour,
|
|
201
|
+
j as Transfer,
|
|
202
|
+
ze as Transition,
|
|
203
|
+
Go as Tree,
|
|
204
|
+
J as TreeSelect,
|
|
205
|
+
Ne as Truncate,
|
|
206
|
+
X as Typography,
|
|
207
|
+
He as Upload,
|
|
208
|
+
sr as VerticalCollapsiblePanel,
|
|
209
|
+
Y as Watermark,
|
|
210
|
+
fo as WithRenderProp,
|
|
211
|
+
Mt as antdColorTokens,
|
|
212
|
+
Ro as buildAntdPlacement,
|
|
213
|
+
Ft as categoricalChartColorKeys,
|
|
214
|
+
Wt as categoricalChartColorTokens,
|
|
215
|
+
Vt as categoricalChartsColors,
|
|
216
|
+
go as changeThemeWithoutTransition,
|
|
217
|
+
Kt as chartColorTokens,
|
|
218
|
+
Ye as clsx,
|
|
219
|
+
Ze as cn,
|
|
217
220
|
r as componentMetadata,
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
221
|
+
m as createSyntheticClickEvent,
|
|
222
|
+
$e as cx,
|
|
223
|
+
_t as darkTheme,
|
|
224
|
+
ra as getAllCategoricalChartColors,
|
|
225
|
+
ta as getAllSequentialChartColors,
|
|
226
|
+
aa as getCategoricalChartColors,
|
|
227
|
+
fa as getColorsByTheme,
|
|
224
228
|
t as getComponentsByCategory,
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
229
|
+
so as getReactElementProp,
|
|
230
|
+
ma as getSequentialChartColors,
|
|
231
|
+
xa as getTokensByTheme,
|
|
232
|
+
Ko as getUniqueKeysFromOriginals,
|
|
233
|
+
to as isTracebackError,
|
|
234
|
+
mo as isValidHexColor,
|
|
235
|
+
wt as lightTheme,
|
|
236
|
+
no as mergeRefs,
|
|
237
|
+
Z as message,
|
|
238
|
+
ho as moveTypingCursorToEnd,
|
|
239
|
+
$ as notification,
|
|
240
|
+
ko as parseAntdPlacement,
|
|
241
|
+
qo as processTreeData,
|
|
242
|
+
qt as rawChartColorTokens,
|
|
243
|
+
oo as reactNodeToString,
|
|
244
|
+
sa as resolveColorTokens,
|
|
245
|
+
Ht as tab10,
|
|
246
|
+
jt as tab20,
|
|
247
|
+
Jt as tab20b,
|
|
248
|
+
Xt as tab20c,
|
|
249
|
+
ee as theme,
|
|
250
|
+
pr as toast,
|
|
251
|
+
fr as toastManager,
|
|
252
|
+
oe as unstableSetRender,
|
|
253
|
+
it as useAnimationsFinished,
|
|
254
|
+
Co as useAntdCssVarClassname,
|
|
255
|
+
lt as useApp,
|
|
256
|
+
It as useBreakpoint,
|
|
257
|
+
At as useCSSVariables,
|
|
258
|
+
St as useCharts,
|
|
259
|
+
co as useCls,
|
|
260
|
+
dt as useControlledState,
|
|
261
|
+
Br as useDS,
|
|
262
|
+
Rt as useDraggable,
|
|
263
|
+
Bt as useElementSize,
|
|
264
|
+
Ct as useEnhancedEffect,
|
|
265
|
+
ct as useEventCallback,
|
|
266
|
+
tt as useForm,
|
|
267
|
+
uo as useGetPrefixCls,
|
|
268
|
+
Pt as useHover,
|
|
269
|
+
ut as useLatestRef,
|
|
270
|
+
pt as useMessage,
|
|
271
|
+
ft as useModal,
|
|
272
|
+
vt as useResizeObserver,
|
|
273
|
+
De as useTheme,
|
|
274
|
+
xt as useToken,
|
|
275
|
+
Wo as useUniqueKeysTree,
|
|
276
|
+
Je as useUploadItemRender,
|
|
277
|
+
at as useWatch,
|
|
278
|
+
Ot as useWindowSize,
|
|
279
|
+
re as version
|
|
276
280
|
};
|
|
277
281
|
//# sourceMappingURL=index.js.map
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|