@unicom-cloud/ui 0.8.95 → 0.8.97
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/Affix.js +1 -1
- package/Carousel.js +1 -1
- package/LiquidFill.js +4 -0
- package/Message.js +1 -1
- package/Notification.js +1 -1
- package/OverflowEllipsis.js +1 -1
- package/PageHeader.js +1 -1
- package/QrCode.js +57 -0
- package/Switch.js +1 -1
- package/Tour.js +63 -0
- package/Trigger.js +2 -2
- package/_virtual/_commonjsHelpers.js +6 -0
- package/_virtual/index.js +7 -0
- package/_virtual/index2.js +4 -0
- package/affix/index.js +70 -72
- package/alert/index.js +52 -51
- package/anchor/Anchor.js +55 -55
- package/anchor/Link.js +34 -34
- package/anchor/util.js +5 -5
- package/auto-complete/index.js +116 -122
- package/avatar/Avatar.js +33 -33
- package/avatar/Group.js +26 -26
- package/back-top/index.js +58 -61
- package/badge/index.js +46 -46
- package/breadcrumb/Item.js +42 -43
- package/breadcrumb/index.js +47 -47
- package/button/Group.js +6 -6
- package/button/index.js +91 -91
- package/calendar/Month.js +75 -75
- package/calendar/Year.js +35 -35
- package/calendar/header/index.js +25 -25
- package/calendar/index.js +103 -103
- package/card/Grid.js +8 -8
- package/card/Meta.js +16 -16
- package/card/index.js +49 -49
- package/carousel/Arrow.js +19 -19
- package/carousel/Indicator.js +26 -26
- package/carousel/index.js +108 -108
- package/cascader/Cascader.js +178 -191
- package/cascader/base/node.js +133 -136
- package/cascader/base/store.js +82 -85
- package/cascader/panel/List.js +126 -130
- package/cascader/panel/Search.js +79 -81
- package/cascader/util.js +13 -13
- package/checkbox/Checkbox.js +94 -96
- package/checkbox/Group.js +54 -56
- package/checkbox/GroupBlock.js +28 -29
- package/collapse/Collapse.js +45 -45
- package/collapse/Item.js +53 -55
- package/color-picker/ControlBar.js +43 -43
- package/color-picker/InputAlpha.js +12 -12
- package/color-picker/InputHex.js +30 -31
- package/color-picker/InputRgb.js +24 -24
- package/color-picker/Palette.js +18 -18
- package/color-picker/Panel.js +122 -125
- package/color-picker/hooks/useColorPicker.js +85 -88
- package/color-picker/hooks/useControlBlock.js +38 -40
- package/color-picker/index.js +47 -47
- package/comment/index.js +29 -29
- package/components/common/higher-order/with-speech-synthesis/index.js +37 -40
- package/components/common/hooks/useForceUpdate.js +6 -2
- package/components/common/hooks/useId.js +4 -4
- package/components/common/hooks/useInView.js +16 -16
- package/components/common/hooks/useIntersectionObserver.js +1 -1
- package/components/common/hooks/useKeyboardEvent.js +9 -10
- package/components/common/hooks/useOverflowHidden.js +1 -4
- package/components/common/hooks/usePersistCallback.js +7 -7
- package/components/common/hooks/useStateCallback.js +9 -10
- package/components/common/hooks/useWindowSize.js +8 -8
- package/components/common/space/index.js +11 -10
- package/components/common/utils/PqbCSSTransition.js +1 -1
- package/components/common/utils/convertToDurationBasedOnTimeUnits.js +6 -0
- package/components/common/utils/dom.js +27 -29
- package/components/common/utils/findScrollParent.js +17 -0
- package/components/common/utils/intersectionObserver.js +21 -0
- package/components/common/utils/is.js +99 -109
- package/components/common/utils/mutationObserver.js +19 -0
- package/components/common/utils/reactDOM.js +34 -34
- package/components/common/utils/resizeObserver.js +21 -0
- package/copy/index.js +38 -40
- package/date-picker/Picker.js +290 -295
- package/date-picker/RangePicker.js +367 -372
- package/date-picker/index.js +33 -35
- package/date-picker/panel/Body.js +46 -47
- package/date-picker/panel/Header.js +33 -33
- package/date-picker/panel/Shortcut.js +31 -31
- package/date-picker/panel/date/index.js +85 -85
- package/date-picker/panel/month/index.js +59 -59
- package/date-picker/panel/quarter/index.js +67 -70
- package/date-picker/panel/range/index.js +101 -101
- package/date-picker/panel/year/index.js +39 -39
- package/date-picker/util.js +17 -18
- package/descriptions/index.js +62 -62
- package/details/index.js +55 -56
- package/development/index.js +9 -9
- package/dist/react-transition-group/src/CSSTransition.js +1 -1
- package/dist/react-transition-group/src/SwitchTransition.js +1 -1
- package/dist/tinycolor/chunk/BOzCVdr0.js +1 -1
- package/dist/tween/src/tween.js +24 -25
- package/dist/validate/src/index.js +5 -5
- package/dist/validate/src/util.js +1 -1
- package/divider/index.js +21 -21
- package/draggable/Item.js +35 -35
- package/draggable/index.js +22 -22
- package/drawer/Drawer.js +142 -147
- package/dropdown/Button.js +48 -48
- package/dropdown/index.js +88 -92
- package/empty/index.js +16 -16
- package/form/Control.js +211 -225
- package/form/Form.js +109 -113
- package/form/FormItem.js +118 -120
- package/form/FormList.js +60 -66
- package/form/FormProvider.js +31 -34
- package/form/hook/useContext.js +17 -19
- package/form/hook/useState.js +22 -23
- package/form/hook/useWatch.js +26 -27
- package/form/promisify.js +14 -18
- package/form/store.js +304 -316
- package/form/util.js +14 -15
- package/grid/Col.js +64 -64
- package/grid/Grid.js +51 -51
- package/grid/GridItem.js +48 -48
- package/grid/Row.js +39 -39
- package/hooks/index.js +50 -52
- package/hooks/useVerificationCode.js +41 -43
- package/hooks/useWatermark.js +89 -92
- package/icon/index.js +23 -24
- package/icon-hover/index.js +16 -16
- package/icons/file.js +11 -11
- package/image/Image.js +140 -141
- package/image/ImagePreview.js +252 -255
- package/image/ImagePreviewArrow.js +25 -25
- package/image/ImagePreviewGroup.js +62 -62
- package/image/util/getScale.js +25 -28
- package/index.js +682 -679
- package/input/Button.js +48 -50
- package/input/Group.js +9 -9
- package/input/Input.js +145 -154
- package/input/InputElement.js +108 -115
- package/input/Password.js +38 -38
- package/input/Search.js +51 -55
- package/input/Textarea.js +80 -81
- package/input/useComposition.js +23 -23
- package/input-number/decimal.js +59 -62
- package/input-number/index.js +139 -141
- package/input-tag/InputTag.js +223 -231
- package/layout/Content.js +6 -6
- package/layout/Footer.js +8 -8
- package/layout/Header.js +7 -7
- package/layout/Sider.js +88 -90
- package/layout/index.js +30 -30
- package/link/index.js +45 -46
- package/liquid-fill/LiquidFill.js +189 -0
- package/liquid-fill/LiquidFill2.js +3 -0
- package/liquid-fill/index.js +4 -0
- package/liquid-fill/interface.js +1 -0
- package/list/Item.js +28 -28
- package/list/Meta.js +12 -12
- package/list/index.js +146 -148
- package/mentions/index.js +75 -76
- package/menu/Item.js +58 -58
- package/menu/Menu.js +125 -127
- package/menu/OverflowWrap.js +39 -40
- package/menu/sub-menu/Inline.js +45 -45
- package/menu/util.js +26 -28
- package/message/index.js +97 -100
- package/message/useMessage.js +26 -27
- package/modal/Confirm.js +47 -49
- package/modal/Modal.js +250 -257
- package/modal/use-modal/Hook.js +26 -28
- package/modal/use-modal/index.js +46 -49
- package/notice/index.js +89 -90
- package/notification/index.js +61 -66
- package/notification/withNotification.js +35 -35
- package/overflow-ellipsis/OverflowItem.js +19 -20
- package/overflow-ellipsis/index.js +45 -46
- package/package.json +1 -1
- package/page-header/index.js +45 -45
- package/pagination/PageItem.js +87 -91
- package/pagination/PageJumper.js +40 -41
- package/pagination/PageOption.js +31 -35
- package/pagination/Pagination.js +162 -163
- package/picker/Input.js +90 -96
- package/picker/InputRange.js +115 -122
- package/popconfirm/index.js +98 -100
- package/popover/index.js +28 -28
- package/portal/Portal.js +10 -11
- package/progress/index.js +36 -36
- package/qr-code/index.js +99 -0
- package/qr-code/interface.js +1 -0
- package/radio/Group.js +48 -48
- package/radio/GroupBlock.js +32 -33
- package/radio/Radio.js +62 -64
- package/rate/index.js +88 -88
- package/resize-box/ResizeTrigger.js +39 -39
- package/resize-box/Split.js +92 -96
- package/resize-box/SplitGroup.js +116 -122
- package/resize-box/index.js +112 -115
- package/result/index.js +44 -44
- package/select/Option.js +53 -56
- package/select/Select.js +365 -381
- package/select/util.js +95 -99
- package/select-view/Core.js +159 -160
- package/skeleton/index.js +23 -23
- package/slider/Button.js +84 -92
- package/slider/Input.js +47 -49
- package/slider/Tick.js +28 -31
- package/slider/index.js +108 -108
- package/slider/util.js +1 -1
- package/space/index.js +26 -26
- package/space-/index.js +51 -51
- package/spin/DotLoading.js +8 -8
- package/spin/index.js +47 -47
- package/statistic/Countdown.js +37 -37
- package/statistic/index.js +61 -61
- package/steps/Step.js +42 -42
- package/steps/index.js +54 -54
- package/style.css +1 -1
- package/switch/index.js +78 -79
- package/table/ColGroup.js +36 -37
- package/table/Table.js +447 -450
- package/table/hook/useExpand.js +24 -24
- package/table/hook/useRowSelection.js +62 -62
- package/table/summary/Row.js +16 -17
- package/table/tbody/Td.js +119 -118
- package/table/tbody/Tr.js +119 -121
- package/table/tbody/index.js +62 -63
- package/table/th-resizable/index.js +30 -30
- package/table/thead/Column.js +148 -148
- package/table/thead/index.js +87 -88
- package/tabs/Tab.js +55 -55
- package/tabs/TabContent.js +8 -8
- package/tabs/TabPane.js +15 -15
- package/tabs/hook/useHeaderScroll.js +36 -36
- package/tabs/tab-header/TabInk.js +31 -33
- package/tabs/tab-header/TabNavIcon.js +34 -35
- package/tabs/tab-header/index.js +192 -195
- package/tag/index.js +94 -97
- package/time-picker/Picker.js +167 -172
- package/time-picker/RangePicker.js +28 -28
- package/time-picker/TimePicker.js +146 -146
- package/time-picker/util.js +4 -4
- package/timeline/Item.js +46 -46
- package/timeline/Timeline.js +52 -52
- package/tooltip/index.js +89 -95
- package/tour/index.js +289 -0
- package/transfer/Item.js +54 -54
- package/transfer/List.js +134 -136
- package/transfer/index.js +91 -91
- package/tree/Animation.js +49 -52
- package/tree/Node.js +114 -122
- package/tree/NodeList.js +51 -51
- package/tree/Tree.js +386 -393
- package/tree-select/List.js +71 -72
- package/tree-select/Select.js +135 -143
- package/tree-select/hook/useKeyCache.js +39 -39
- package/tree-select/hook/useStateValue.js +12 -12
- package/trigger/getPopupStyle.js +60 -61
- package/trigger/index.js +338 -347
- package/types/common/space/interface.d.ts +1 -1
- package/types/common/utils/convertToDurationBasedOnTimeUnits.d.ts +3 -0
- package/types/common/utils/findScrollParent.d.ts +2 -0
- package/types/common/utils/index.d.ts +5 -0
- package/types/common/utils/intersectionObserver.d.ts +2 -0
- package/types/common/utils/math.d.ts +1 -1
- package/types/common/utils/mutationObserver.d.ts +2 -0
- package/types/common/utils/resizeObserver.d.ts +2 -0
- package/types/pc/alert/interface.d.ts +2 -2
- package/types/pc/details/interface.d.ts +2 -2
- package/types/pc/hooks/index.d.ts +0 -1
- package/types/pc/index.d.ts +3 -0
- package/types/pc/liquid-fill/LiquidFill.d.ts +30 -0
- package/types/pc/liquid-fill/LiquidFill2.d.ts +1 -0
- package/types/pc/liquid-fill/index.d.ts +4 -0
- package/types/pc/liquid-fill/interface.d.ts +0 -0
- package/types/pc/qr-code/index.d.ts +34 -0
- package/types/pc/qr-code/interface.d.ts +39 -0
- package/types/pc/table/interface.d.ts +2 -2
- package/types/pc/tour/index.d.ts +42 -0
- package/types/pc/utils/convertToDurationBasedOnTimeUnits.d.ts +3 -0
- package/types/pc/utils/findScrollParent.d.ts +2 -0
- package/types/pc/utils/index.d.ts +5 -0
- package/types/pc/utils/intersectionObserver.d.ts +2 -0
- package/types/pc/utils/math.d.ts +1 -1
- package/types/pc/utils/mutationObserver.d.ts +2 -0
- package/types/pc/utils/names.d.ts +18 -0
- package/types/pc/utils/resizeObserver.d.ts +2 -0
- package/typography/Base.js +79 -81
- package/typography/EditContent.js +30 -33
- package/typography/Ellipsis.js +78 -75
- package/typography/Operations.js +50 -52
- package/typography/Paragraph.js +7 -7
- package/typography/Typography.js +7 -7
- package/typography/useEllipsis.js +105 -106
- package/upload/TriggerNode.js +69 -76
- package/upload/Upload.js +84 -87
- package/upload/Uploader.js +115 -118
- package/upload/list/PictureItem.js +61 -71
- package/upload/list/TextItem.js +61 -67
- package/upload/list/UploadProgress.js +42 -49
- package/upload/list/index.js +49 -50
- package/upload/request_.js +37 -38
- package/upload/util.js +39 -39
- package/utils/convertToDurationBasedOnTimeUnits.js +6 -0
- package/utils/findScrollParent.js +4 -0
- package/utils/index.js +274 -275
- package/utils/intersectionObserver.js +4 -0
- package/utils/math.js +7 -11
- package/utils/mutationObserver.js +4 -0
- package/utils/names.js +12 -0
- package/utils/reactTransitionGroup.js +1 -1
- package/utils/resizeObserver.js +4 -0
- package/verification-code/VerificationCode.js +50 -51
- package/version/index.js +1 -1
- package/virtual-list/VirtualList.js +243 -244
- package/virtual-list/util/item.js +3 -4
- package/watermark/Watermark.js +27 -31
- package/components/common/hooks/useComputedState.js +0 -11
- package/components/common/utils/resizeObserverEffect.js +0 -23
- package/hooks/useComputedState.js +0 -4
- package/types/common/hooks/useComputedState.d.ts +0 -4
- package/types/common/utils/resizeObserverEffect.d.ts +0 -2
- package/types/pc/hooks/useComputedState.d.ts +0 -1
- package/types/pc/utils/resizeObserverEffect.d.ts +0 -2
- package/utils/resizeObserverEffect.js +0 -4
- /package/dist/react-transition-group/chunk/{C6QwjD4L.js → CPfP7aNL.js} +0 -0
package/timeline/Timeline.js
CHANGED
|
@@ -1,69 +1,69 @@
|
|
|
1
1
|
import { jsx as u } from "react/jsx-runtime";
|
|
2
|
-
import d, { useContext as
|
|
2
|
+
import d, { useContext as R } from "react";
|
|
3
3
|
import "../config-provider/ConfigProvider.js";
|
|
4
|
-
import
|
|
5
|
-
import
|
|
6
|
-
import
|
|
7
|
-
import
|
|
8
|
-
import
|
|
9
|
-
const
|
|
4
|
+
import w from "../components/common/hooks/useMergeProps.js";
|
|
5
|
+
import z from "../spin/index.js";
|
|
6
|
+
import C from "@unicom-cloud/utils/class-name";
|
|
7
|
+
import N from "./Item.js";
|
|
8
|
+
import j from "../config-provider/context.js";
|
|
9
|
+
const k = (m, p, r, a) => {
|
|
10
10
|
let t = ["left", "right"];
|
|
11
|
-
|
|
12
|
-
const
|
|
13
|
-
return t.indexOf(
|
|
14
|
-
},
|
|
11
|
+
a === "horizontal" && (t = ["top", "bottom"]);
|
|
12
|
+
const s = r === "alternate" ? m || t[p % 2] : r;
|
|
13
|
+
return t.indexOf(s) > -1 ? s : t[0];
|
|
14
|
+
}, y = {
|
|
15
15
|
mode: "left",
|
|
16
16
|
direction: "vertical",
|
|
17
|
-
pendingDot: /* @__PURE__ */ u(
|
|
17
|
+
pendingDot: /* @__PURE__ */ u(z, { size: 12 }),
|
|
18
18
|
labelPosition: "same"
|
|
19
19
|
};
|
|
20
|
-
function E(
|
|
21
|
-
const { getPrefixCls:
|
|
22
|
-
t && (
|
|
23
|
-
const
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
20
|
+
function E(m, p) {
|
|
21
|
+
const { getPrefixCls: r, componentConfig: a, rtl: t } = R(j);
|
|
22
|
+
t && (y.mode = "right");
|
|
23
|
+
const s = w(
|
|
24
|
+
m,
|
|
25
|
+
y,
|
|
26
|
+
a?.Timeline
|
|
27
27
|
), {
|
|
28
|
-
className:
|
|
29
|
-
mode:
|
|
30
|
-
reverse:
|
|
31
|
-
children:
|
|
32
|
-
style:
|
|
28
|
+
className: h,
|
|
29
|
+
mode: g,
|
|
30
|
+
reverse: T,
|
|
31
|
+
children: P,
|
|
32
|
+
style: v,
|
|
33
33
|
direction: f,
|
|
34
|
-
pending:
|
|
34
|
+
pending: l,
|
|
35
35
|
labelPosition: b,
|
|
36
|
-
pendingDot:
|
|
37
|
-
...
|
|
38
|
-
} =
|
|
39
|
-
return
|
|
40
|
-
/* @__PURE__ */ u(
|
|
41
|
-
),
|
|
36
|
+
pendingDot: x,
|
|
37
|
+
...D
|
|
38
|
+
} = s, o = r?.("timeline"), i = d.Children.map(P, (e) => e && e.type && e.type.isTimelineItem ? e : null) || [];
|
|
39
|
+
return l && i.push(
|
|
40
|
+
/* @__PURE__ */ u(N, { lineType: "dashed", dot: x, children: l === !0 ? "" : l })
|
|
41
|
+
), T && i.reverse(), /* @__PURE__ */ u(
|
|
42
42
|
"div",
|
|
43
43
|
{
|
|
44
44
|
role: "list",
|
|
45
|
-
...
|
|
46
|
-
ref:
|
|
47
|
-
className:
|
|
48
|
-
|
|
49
|
-
`${
|
|
50
|
-
`${
|
|
51
|
-
{ [`${
|
|
52
|
-
|
|
45
|
+
...D,
|
|
46
|
+
ref: p,
|
|
47
|
+
className: C(
|
|
48
|
+
o,
|
|
49
|
+
`${o}-${g}`,
|
|
50
|
+
`${o}-direction-${f}`,
|
|
51
|
+
{ [`${o}-rtl`]: t },
|
|
52
|
+
h
|
|
53
53
|
),
|
|
54
|
-
style:
|
|
55
|
-
children:
|
|
54
|
+
style: v,
|
|
55
|
+
children: i.map((e, n) => {
|
|
56
56
|
if (!e)
|
|
57
57
|
return null;
|
|
58
|
-
const { position:
|
|
58
|
+
const { position: I } = e.props;
|
|
59
59
|
let c = e.props.lineType;
|
|
60
|
-
return
|
|
61
|
-
key:
|
|
62
|
-
className:
|
|
63
|
-
[`${
|
|
60
|
+
return l && (T ? n === 0 && (c = "dashed") : i.length - 2 === n && (c = "dashed")), d.cloneElement(e, {
|
|
61
|
+
key: n,
|
|
62
|
+
className: C(e.props.className, {
|
|
63
|
+
[`${o}-item-last`]: i.length - 1 === n
|
|
64
64
|
}),
|
|
65
65
|
labelPosition: b,
|
|
66
|
-
position:
|
|
66
|
+
position: k(I, n, g, f),
|
|
67
67
|
direction: f,
|
|
68
68
|
lineType: c
|
|
69
69
|
});
|
|
@@ -71,10 +71,10 @@ function E(p, a) {
|
|
|
71
71
|
}
|
|
72
72
|
);
|
|
73
73
|
}
|
|
74
|
-
const F = d.forwardRef(E),
|
|
75
|
-
|
|
76
|
-
|
|
74
|
+
const F = d.forwardRef(E), $ = F;
|
|
75
|
+
$.displayName = "Timeline";
|
|
76
|
+
$.Item = N;
|
|
77
77
|
export {
|
|
78
|
-
|
|
79
|
-
|
|
78
|
+
N as TimelineItem,
|
|
79
|
+
$ as default
|
|
80
80
|
};
|
package/tooltip/index.js
CHANGED
|
@@ -1,142 +1,136 @@
|
|
|
1
|
-
import { jsx as
|
|
1
|
+
import { jsx as p } from "react/jsx-runtime";
|
|
2
2
|
import "../dist/tinycolor/chunk/BOzCVdr0.js";
|
|
3
|
-
import { TinyColor as
|
|
4
|
-
import
|
|
5
|
-
import { forwardRef as
|
|
3
|
+
import { TinyColor as L } from "../dist/tinycolor/src/index.js";
|
|
4
|
+
import F from "lodash/isFunction";
|
|
5
|
+
import { forwardRef as I, useContext as S, useRef as j, useImperativeHandle as z, useMemo as B } from "react";
|
|
6
6
|
import "../config-provider/ConfigProvider.js";
|
|
7
|
-
import
|
|
8
|
-
import
|
|
9
|
-
import
|
|
10
|
-
import { isEmptyReactNode as
|
|
11
|
-
import { pickDataAttributes as
|
|
12
|
-
import
|
|
13
|
-
const
|
|
7
|
+
import W from "../components/common/hooks/useMergeProps.js";
|
|
8
|
+
import q, { EventsByTriggerNeed as G } from "../trigger/index.js";
|
|
9
|
+
import f from "@unicom-cloud/utils/class-name";
|
|
10
|
+
import { isEmptyReactNode as J } from "../components/common/utils/is.js";
|
|
11
|
+
import { pickDataAttributes as K, pick as Q } from "../components/common/utils/pick.js";
|
|
12
|
+
import U from "../config-provider/context.js";
|
|
13
|
+
const X = {
|
|
14
14
|
position: "top",
|
|
15
15
|
trigger: "hover",
|
|
16
16
|
escToClose: !1,
|
|
17
17
|
unmountOnExit: !0,
|
|
18
18
|
blurToHide: !0,
|
|
19
19
|
popupHoverStay: !0
|
|
20
|
-
},
|
|
20
|
+
}, Y = {
|
|
21
21
|
enter: 300,
|
|
22
22
|
exit: 100
|
|
23
|
-
},
|
|
23
|
+
}, Z = {
|
|
24
24
|
left: 12,
|
|
25
25
|
right: 12,
|
|
26
26
|
top: 12,
|
|
27
27
|
bottom: 12
|
|
28
28
|
};
|
|
29
|
-
function
|
|
30
|
-
const { getPrefixCls:
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
29
|
+
function _(g, d) {
|
|
30
|
+
const { getPrefixCls: P, componentConfig: C } = S(U), n = W(
|
|
31
|
+
g,
|
|
32
|
+
X,
|
|
33
|
+
C?.Tooltip
|
|
34
34
|
), {
|
|
35
|
-
style:
|
|
36
|
-
className:
|
|
37
|
-
children:
|
|
38
|
-
trigger:
|
|
39
|
-
escToClose:
|
|
40
|
-
defaultPopupVisible:
|
|
41
|
-
position:
|
|
42
|
-
unmountOnExit:
|
|
43
|
-
popupVisible:
|
|
44
|
-
prefixCls:
|
|
45
|
-
blurToHide:
|
|
46
|
-
popupHoverStay:
|
|
47
|
-
disabled:
|
|
48
|
-
onVisibleChange:
|
|
49
|
-
triggerProps:
|
|
50
|
-
childrenPrefix:
|
|
51
|
-
getPopupContainer:
|
|
52
|
-
content:
|
|
53
|
-
mini:
|
|
54
|
-
color:
|
|
55
|
-
...
|
|
56
|
-
} =
|
|
57
|
-
|
|
58
|
-
(b = (r = p.current) == null ? void 0 : r.updatePopupPosition) == null || b.call(r, o, e);
|
|
35
|
+
style: b,
|
|
36
|
+
className: l,
|
|
37
|
+
children: h,
|
|
38
|
+
trigger: x,
|
|
39
|
+
escToClose: N,
|
|
40
|
+
defaultPopupVisible: y,
|
|
41
|
+
position: a,
|
|
42
|
+
unmountOnExit: T,
|
|
43
|
+
popupVisible: w,
|
|
44
|
+
prefixCls: V,
|
|
45
|
+
blurToHide: v,
|
|
46
|
+
popupHoverStay: $,
|
|
47
|
+
disabled: D,
|
|
48
|
+
onVisibleChange: A,
|
|
49
|
+
triggerProps: u,
|
|
50
|
+
childrenPrefix: E,
|
|
51
|
+
getPopupContainer: H,
|
|
52
|
+
content: i,
|
|
53
|
+
mini: O,
|
|
54
|
+
color: e,
|
|
55
|
+
...c
|
|
56
|
+
} = n, t = j(), R = (s = 0, M) => {
|
|
57
|
+
t.current?.updatePopupPosition?.(s, M);
|
|
59
58
|
};
|
|
60
|
-
|
|
61
|
-
|
|
59
|
+
z(
|
|
60
|
+
d,
|
|
62
61
|
() => ({
|
|
63
62
|
// ...refTrigger.current,
|
|
64
|
-
updatePopupPosition:
|
|
65
|
-
getRootDOMNode: () =>
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
},
|
|
69
|
-
setPopupVisible(o) {
|
|
70
|
-
var e, r;
|
|
71
|
-
(r = (e = p.current) == null ? void 0 : e.setPopupVisible) == null || r.call(e, o);
|
|
63
|
+
updatePopupPosition: R,
|
|
64
|
+
getRootDOMNode: () => t.current?.getRootDOMNode?.(),
|
|
65
|
+
setPopupVisible(s) {
|
|
66
|
+
t.current?.setPopupVisible?.(s);
|
|
72
67
|
},
|
|
73
68
|
hide() {
|
|
74
|
-
|
|
75
|
-
(e = (o = p.current) == null ? void 0 : o.setPopupVisible) == null || e.call(o, !1);
|
|
69
|
+
t.current?.setPopupVisible?.(!1);
|
|
76
70
|
}
|
|
77
71
|
}),
|
|
78
72
|
[]
|
|
79
73
|
);
|
|
80
|
-
const
|
|
81
|
-
...
|
|
82
|
-
...
|
|
83
|
-
...
|
|
84
|
-
className:
|
|
85
|
-
},
|
|
86
|
-
"popupVisible" in
|
|
87
|
-
backgroundColor:
|
|
88
|
-
...
|
|
74
|
+
const r = V || P?.("tooltip"), o = {
|
|
75
|
+
...Q(c, G),
|
|
76
|
+
...K(c),
|
|
77
|
+
...u,
|
|
78
|
+
className: f(l, u?.className)
|
|
79
|
+
}, m = F(i) ? i() : i;
|
|
80
|
+
"popupVisible" in n ? o.popupVisible = w : J(m, !0) && (o.popupVisible = !1), (o.showArrow !== !1 || o.arrowProps) && (o.arrowProps = o.arrowProps || {}, e && (o.arrowProps.style = {
|
|
81
|
+
backgroundColor: e,
|
|
82
|
+
...o.arrowProps.style
|
|
89
83
|
}));
|
|
90
|
-
const
|
|
91
|
-
return /* @__PURE__ */
|
|
92
|
-
|
|
84
|
+
const k = B(() => e ? new L(e).isLight() ?? !1 : !1, [e]);
|
|
85
|
+
return /* @__PURE__ */ p(
|
|
86
|
+
q,
|
|
93
87
|
{
|
|
94
88
|
style: {
|
|
95
89
|
maxWidth: 350,
|
|
96
|
-
...
|
|
90
|
+
...b
|
|
97
91
|
},
|
|
98
|
-
className:
|
|
99
|
-
ref:
|
|
92
|
+
className: l,
|
|
93
|
+
ref: t,
|
|
100
94
|
classNames: "zoomInFadeOut",
|
|
101
|
-
duration:
|
|
102
|
-
popup: () => /* @__PURE__ */
|
|
95
|
+
duration: Y,
|
|
96
|
+
popup: () => /* @__PURE__ */ p(
|
|
103
97
|
"div",
|
|
104
98
|
{
|
|
105
|
-
style: { backgroundColor:
|
|
106
|
-
className:
|
|
107
|
-
`${
|
|
108
|
-
`${
|
|
99
|
+
style: { backgroundColor: e },
|
|
100
|
+
className: f(
|
|
101
|
+
`${r}-content`,
|
|
102
|
+
`${r}-content-${a}`,
|
|
109
103
|
{
|
|
110
|
-
[`${
|
|
111
|
-
[`${
|
|
104
|
+
[`${r}-mini`]: O,
|
|
105
|
+
[`${r}-light-color`]: k
|
|
112
106
|
}
|
|
113
107
|
),
|
|
114
108
|
role: "tooltip",
|
|
115
|
-
children: /* @__PURE__ */
|
|
109
|
+
children: /* @__PURE__ */ p("div", { className: `${r}-content-inner`, children: m })
|
|
116
110
|
}
|
|
117
111
|
),
|
|
118
|
-
position:
|
|
119
|
-
disabled:
|
|
120
|
-
trigger:
|
|
121
|
-
escToClose:
|
|
112
|
+
position: a,
|
|
113
|
+
disabled: D,
|
|
114
|
+
trigger: x,
|
|
115
|
+
escToClose: N,
|
|
122
116
|
showArrow: !0,
|
|
123
|
-
popupAlign:
|
|
117
|
+
popupAlign: Z,
|
|
124
118
|
mouseEnterDelay: 200,
|
|
125
119
|
mouseLeaveDelay: 200,
|
|
126
|
-
unmountOnExit:
|
|
127
|
-
popupHoverStay:
|
|
128
|
-
blurToHide:
|
|
129
|
-
childrenPrefix:
|
|
130
|
-
getPopupContainer:
|
|
131
|
-
onVisibleChange:
|
|
132
|
-
defaultPopupVisible:
|
|
133
|
-
...
|
|
134
|
-
children:
|
|
120
|
+
unmountOnExit: T,
|
|
121
|
+
popupHoverStay: $,
|
|
122
|
+
blurToHide: v,
|
|
123
|
+
childrenPrefix: E || r,
|
|
124
|
+
getPopupContainer: H,
|
|
125
|
+
onVisibleChange: A,
|
|
126
|
+
defaultPopupVisible: y,
|
|
127
|
+
...o,
|
|
128
|
+
children: h
|
|
135
129
|
}
|
|
136
130
|
);
|
|
137
131
|
}
|
|
138
|
-
const
|
|
139
|
-
|
|
132
|
+
const oo = I(_);
|
|
133
|
+
oo.displayName = "Tooltip";
|
|
140
134
|
export {
|
|
141
|
-
|
|
135
|
+
oo as default
|
|
142
136
|
};
|
package/tour/index.js
ADDED
|
@@ -0,0 +1,289 @@
|
|
|
1
|
+
import { jsxs as d, Fragment as it, jsx as s } from "react/jsx-runtime";
|
|
2
|
+
import nt from "@unicom-cloud/icons/IconUiClose";
|
|
3
|
+
import st from "lodash/merge";
|
|
4
|
+
import { useContext as lt, useState as C, useRef as F, useEffect as h } from "react";
|
|
5
|
+
import { createPortal as pt } from "react-dom";
|
|
6
|
+
import D from "../button/index.js";
|
|
7
|
+
import "../config-provider/ConfigProvider.js";
|
|
8
|
+
import ct from "../icon-hover/index.js";
|
|
9
|
+
import z from "../space/index.js";
|
|
10
|
+
import "@unicom-cloud/utils/case-name";
|
|
11
|
+
import k from "@unicom-cloud/utils/class-name";
|
|
12
|
+
import "../dist/tinycolor/chunk/BOzCVdr0.js";
|
|
13
|
+
import "@unicom-cloud/utils/constant/ui";
|
|
14
|
+
import "../utils/contextHolder.js";
|
|
15
|
+
import "@unicom-cloud/utils/dayjs";
|
|
16
|
+
import "@unicom-cloud/utils/clipboard-copy";
|
|
17
|
+
import "../components/common/utils/dayjs.js";
|
|
18
|
+
import { on as mt, off as at } from "../components/common/utils/dom.js";
|
|
19
|
+
import "@unicom-cloud/utils/file/fileToURL";
|
|
20
|
+
import "lodash/escapeRegExp";
|
|
21
|
+
import "lodash/isArray";
|
|
22
|
+
import "lodash/isNumber";
|
|
23
|
+
import "lodash/isString";
|
|
24
|
+
import { intersectionObserver as ft } from "../components/common/utils/intersectionObserver.js";
|
|
25
|
+
import "../components/common/utils/is.js";
|
|
26
|
+
import "lodash/camelCase";
|
|
27
|
+
import "lodash/capitalize";
|
|
28
|
+
import "lodash/cloneDeep";
|
|
29
|
+
import "lodash/debounce";
|
|
30
|
+
import "lodash/get";
|
|
31
|
+
import "lodash/has";
|
|
32
|
+
import "lodash/kebabCase";
|
|
33
|
+
import "lodash/mergeWith";
|
|
34
|
+
import "lodash/set";
|
|
35
|
+
import "lodash/setWith";
|
|
36
|
+
import "lodash/snakeCase";
|
|
37
|
+
import "lodash/startCase";
|
|
38
|
+
import "lodash/throttle";
|
|
39
|
+
import "lodash/uniq";
|
|
40
|
+
import "lodash/upperFirst";
|
|
41
|
+
import "@unicom-cloud/utils/math";
|
|
42
|
+
import "lodash/isPlainObject";
|
|
43
|
+
import { mutationObserver as dt } from "../components/common/utils/mutationObserver.js";
|
|
44
|
+
import "../dist/react-transition-group/src/CSSTransition.js";
|
|
45
|
+
import "../dist/react-transition-group/src/ReplaceTransition.js";
|
|
46
|
+
import "../dist/react-transition-group/src/SwitchTransition.js";
|
|
47
|
+
import "../dist/react-transition-group/chunk/CPfP7aNL.js";
|
|
48
|
+
import "../dist/react-transition-group/src/TransitionGroup.js";
|
|
49
|
+
import "../components/common/utils/reactDOM.js";
|
|
50
|
+
import { resizeObserver as ht } from "../components/common/utils/resizeObserver.js";
|
|
51
|
+
import "@unicom-cloud/utils/file/saveAs";
|
|
52
|
+
import "@unicom-cloud/utils/screenfull";
|
|
53
|
+
import "@unicom-cloud/utils/constant/ui.js";
|
|
54
|
+
import "@unicom-cloud/utils/tree";
|
|
55
|
+
import "@unicom-cloud/utils/is";
|
|
56
|
+
import "uuid";
|
|
57
|
+
import "../dist/validate/src/index.js";
|
|
58
|
+
import { Escape as ut, ArrowRight as gt, ArrowLeft as wt } from "@unicom-cloud/utils/constant/keyboardCode";
|
|
59
|
+
import vt from "../config-provider/context.js";
|
|
60
|
+
function Pe(L) {
|
|
61
|
+
const { getPrefixCls: X, componentConfig: Y, rtl: bt } = lt(vt);
|
|
62
|
+
let {
|
|
63
|
+
steps: n = [],
|
|
64
|
+
open: N = !1,
|
|
65
|
+
onClose: K,
|
|
66
|
+
mask: U = !0,
|
|
67
|
+
maskClosable: _ = !0,
|
|
68
|
+
type: u = "default",
|
|
69
|
+
placement: g = "bottom",
|
|
70
|
+
arrow: G = !0,
|
|
71
|
+
closable: J = !0,
|
|
72
|
+
zIndex: P = 1e3,
|
|
73
|
+
current: S = 0,
|
|
74
|
+
onFinish: Q,
|
|
75
|
+
onStepChange: O,
|
|
76
|
+
...yt
|
|
77
|
+
} = st({}, Y?.Tour, L);
|
|
78
|
+
const o = X?.("tour"), [r, H] = C(S), [e, j] = C(null), [W, V] = C(g), [f, I] = C(N), E = F(null), c = F(null), M = `0 0 0 ${Math.max(window.innerWidth, window.innerHeight)}px var(--pqb-mask-bg-color),0 0 15px 0 var(--pqb-mask-bg-color)`, l = typeof n[r]?.target == "string" ? document.querySelector(n[r].target) : n[r]?.target, w = () => {
|
|
79
|
+
let t;
|
|
80
|
+
if (l ? t = l.getBoundingClientRect() : t = new DOMRect(
|
|
81
|
+
window.innerWidth / 2 - (c.current?.offsetWidth ?? 0) / 2,
|
|
82
|
+
window.innerHeight / 2 - (c.current?.offsetHeight ?? 0) / 2,
|
|
83
|
+
c.current?.offsetWidth,
|
|
84
|
+
c.current?.offsetHeight
|
|
85
|
+
), j(t), l) {
|
|
86
|
+
const i = c.current;
|
|
87
|
+
if (!i) return g;
|
|
88
|
+
const m = i.offsetWidth, a = i.offsetHeight, v = 10, b = t.top - a - v > 0, y = t.bottom + a + v < window.innerHeight, $ = t.left - m - v > 0, x = t.right + m + v < window.innerWidth;
|
|
89
|
+
let p = n[r]?.placement || g;
|
|
90
|
+
return p === "top" && !b ? p = y ? "bottom" : $ ? "left" : x ? "right" : "bottom" : p === "bottom" && !y ? p = b ? "top" : $ ? "left" : x ? "right" : "top" : p === "left" && !$ ? p = x ? "right" : b ? "top" : y ? "bottom" : "right" : p === "right" && !x && (p = $ ? "left" : b ? "top" : y ? "bottom" : "left"), V(p), p;
|
|
91
|
+
}
|
|
92
|
+
return g;
|
|
93
|
+
}, R = () => {
|
|
94
|
+
I(!1), K?.();
|
|
95
|
+
}, T = () => {
|
|
96
|
+
if (r < n.length - 1) {
|
|
97
|
+
const t = r + 1;
|
|
98
|
+
H(t), O?.(t);
|
|
99
|
+
} else
|
|
100
|
+
Z();
|
|
101
|
+
}, q = () => {
|
|
102
|
+
if (r > 0) {
|
|
103
|
+
const t = r - 1;
|
|
104
|
+
H(t), O?.(t);
|
|
105
|
+
}
|
|
106
|
+
}, Z = () => {
|
|
107
|
+
I(!1), Q?.();
|
|
108
|
+
}, tt = (t) => {
|
|
109
|
+
_ && t.target === E.current && R();
|
|
110
|
+
}, et = () => {
|
|
111
|
+
if (!e || !c.current)
|
|
112
|
+
return { top: 0, left: 0 };
|
|
113
|
+
if (!l) return {
|
|
114
|
+
top: e.top,
|
|
115
|
+
left: e.left
|
|
116
|
+
};
|
|
117
|
+
const t = c.current, i = t.offsetWidth, m = t.offsetHeight, a = 10;
|
|
118
|
+
switch (W) {
|
|
119
|
+
case "top":
|
|
120
|
+
return {
|
|
121
|
+
top: e.top - m - a,
|
|
122
|
+
left: e.left + e.width / 2 - i / 2
|
|
123
|
+
};
|
|
124
|
+
case "bottom":
|
|
125
|
+
return {
|
|
126
|
+
top: e.bottom + a,
|
|
127
|
+
left: e.left + e.width / 2 - i / 2
|
|
128
|
+
};
|
|
129
|
+
case "left":
|
|
130
|
+
return {
|
|
131
|
+
top: e.top + e.height / 2 - m / 2,
|
|
132
|
+
left: e.left - i - a
|
|
133
|
+
};
|
|
134
|
+
case "right":
|
|
135
|
+
return {
|
|
136
|
+
top: e.top + e.height / 2 - m / 2,
|
|
137
|
+
left: e.right + a
|
|
138
|
+
};
|
|
139
|
+
default:
|
|
140
|
+
return {
|
|
141
|
+
top: e.bottom + a,
|
|
142
|
+
left: e.left + e.width / 2 - i / 2
|
|
143
|
+
};
|
|
144
|
+
}
|
|
145
|
+
};
|
|
146
|
+
if (h(() => {
|
|
147
|
+
I(N);
|
|
148
|
+
}, [N]), h(() => {
|
|
149
|
+
H(S);
|
|
150
|
+
}, [S]), h(() => {
|
|
151
|
+
if (!f || r >= n.length || !n[r]) {
|
|
152
|
+
j(null);
|
|
153
|
+
return;
|
|
154
|
+
}
|
|
155
|
+
w();
|
|
156
|
+
}, [f, r, n.length, l]), h(() => {
|
|
157
|
+
function t(i) {
|
|
158
|
+
f && (i.key === ut.key ? R() : i.key === gt.key ? T() : i.key === wt.key && q());
|
|
159
|
+
}
|
|
160
|
+
return mt(window, "keydown", t), () => {
|
|
161
|
+
at(window, "keydown", t);
|
|
162
|
+
};
|
|
163
|
+
}, [f, r, n.length]), h(() => {
|
|
164
|
+
const t = ht([document.body, l], () => {
|
|
165
|
+
w();
|
|
166
|
+
}), i = ft([l], () => {
|
|
167
|
+
w();
|
|
168
|
+
}), m = dt([l], () => {
|
|
169
|
+
w();
|
|
170
|
+
});
|
|
171
|
+
return () => {
|
|
172
|
+
t(), i(), m();
|
|
173
|
+
};
|
|
174
|
+
}, [l]), !f || !n.length || r >= n.length)
|
|
175
|
+
return null;
|
|
176
|
+
const A = n[r], ot = r > 0, rt = r < n.length - 1, B = et();
|
|
177
|
+
return pt(
|
|
178
|
+
/* @__PURE__ */ d(it, { children: [
|
|
179
|
+
/* @__PURE__ */ s(
|
|
180
|
+
"div",
|
|
181
|
+
{
|
|
182
|
+
ref: E,
|
|
183
|
+
className: `${o}-mask`,
|
|
184
|
+
style: { zIndex: P },
|
|
185
|
+
onClick: tt
|
|
186
|
+
}
|
|
187
|
+
),
|
|
188
|
+
e && /* @__PURE__ */ s(
|
|
189
|
+
"div",
|
|
190
|
+
{
|
|
191
|
+
className: `${o}-highlight`,
|
|
192
|
+
style: {
|
|
193
|
+
position: "absolute",
|
|
194
|
+
top: e.top + window.scrollY,
|
|
195
|
+
left: e.left + window.scrollX,
|
|
196
|
+
width: e.width,
|
|
197
|
+
height: e.height,
|
|
198
|
+
zIndex: P + 1,
|
|
199
|
+
pointerEvents: "none",
|
|
200
|
+
boxShadow: U ? M : void 0
|
|
201
|
+
}
|
|
202
|
+
}
|
|
203
|
+
),
|
|
204
|
+
/* @__PURE__ */ d(
|
|
205
|
+
"div",
|
|
206
|
+
{
|
|
207
|
+
ref: c,
|
|
208
|
+
className: k(
|
|
209
|
+
`${o}-popover`,
|
|
210
|
+
`${o}-popover-${u}`,
|
|
211
|
+
`${o}-popover-${W}`
|
|
212
|
+
),
|
|
213
|
+
style: {
|
|
214
|
+
position: "absolute",
|
|
215
|
+
top: `${B.top + window.scrollY}px`,
|
|
216
|
+
left: `${B.left + window.scrollX}px`,
|
|
217
|
+
zIndex: P + 2,
|
|
218
|
+
boxShadow: l ? void 0 : M
|
|
219
|
+
},
|
|
220
|
+
children: [
|
|
221
|
+
G && l && /* @__PURE__ */ s(
|
|
222
|
+
"div",
|
|
223
|
+
{
|
|
224
|
+
className: k(
|
|
225
|
+
`${o}-arrow`,
|
|
226
|
+
`${o}-arrow-${W}`
|
|
227
|
+
)
|
|
228
|
+
}
|
|
229
|
+
),
|
|
230
|
+
/* @__PURE__ */ d("div", { className: `${o}-content`, children: [
|
|
231
|
+
J && /* @__PURE__ */ s(ct, { className: `${o}-close`, onClick: R, children: /* @__PURE__ */ s(nt, {}) }),
|
|
232
|
+
/* @__PURE__ */ s("div", { className: `${o}-header`, children: /* @__PURE__ */ s("div", { className: `${o}-title`, children: A.title }) }),
|
|
233
|
+
/* @__PURE__ */ s("div", { className: `${o}-body`, children: /* @__PURE__ */ s("div", { className: `${o}-description`, children: A.description }) }),
|
|
234
|
+
/* @__PURE__ */ d(
|
|
235
|
+
z,
|
|
236
|
+
{
|
|
237
|
+
className: `${o}-footer`,
|
|
238
|
+
justifyContent: "space-between",
|
|
239
|
+
alignItems: "center",
|
|
240
|
+
children: [
|
|
241
|
+
/* @__PURE__ */ s(z, { className: `${o}-indicator`, children: n.map((t, i) => /* @__PURE__ */ s(
|
|
242
|
+
"div",
|
|
243
|
+
{
|
|
244
|
+
className: k(
|
|
245
|
+
`${o}-dot`,
|
|
246
|
+
i === r && `${o}-dot-active`
|
|
247
|
+
)
|
|
248
|
+
},
|
|
249
|
+
i
|
|
250
|
+
)) }),
|
|
251
|
+
/* @__PURE__ */ d(z, { children: [
|
|
252
|
+
ot && /* @__PURE__ */ s(
|
|
253
|
+
D,
|
|
254
|
+
{
|
|
255
|
+
className: `${o}-prev-btn`,
|
|
256
|
+
size: "mini",
|
|
257
|
+
type: u === "primary" ? "secondary" : "primary",
|
|
258
|
+
onClick: q,
|
|
259
|
+
children: "上一步"
|
|
260
|
+
}
|
|
261
|
+
),
|
|
262
|
+
/* @__PURE__ */ s(
|
|
263
|
+
D,
|
|
264
|
+
{
|
|
265
|
+
className: k(
|
|
266
|
+
`${o}-next-btn`,
|
|
267
|
+
`${o}-next-btn-${u}`
|
|
268
|
+
),
|
|
269
|
+
size: "mini",
|
|
270
|
+
type: u === "primary" ? "primary" : "secondary",
|
|
271
|
+
onClick: T,
|
|
272
|
+
children: rt ? "下一步" : "完成"
|
|
273
|
+
}
|
|
274
|
+
)
|
|
275
|
+
] })
|
|
276
|
+
]
|
|
277
|
+
}
|
|
278
|
+
)
|
|
279
|
+
] })
|
|
280
|
+
]
|
|
281
|
+
}
|
|
282
|
+
)
|
|
283
|
+
] }),
|
|
284
|
+
document.body
|
|
285
|
+
);
|
|
286
|
+
}
|
|
287
|
+
export {
|
|
288
|
+
Pe as default
|
|
289
|
+
};
|