@unicom-cloud/ui 0.8.106 → 0.8.107
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/App.js +7 -0
- package/BackTop.js +2 -4
- package/Calendar.js +2 -2
- package/Modal.js +4 -2
- package/app/App.js +26 -0
- package/app/context.js +9 -0
- package/app/index.js +9 -0
- package/app/interface.js +1 -0
- package/app/useApp.js +8 -0
- package/back-top/index.js +44 -56
- package/calendar/Lunar.js +71 -0
- package/calendar/index.js +11 -11
- package/color-picker/index.js +34 -34
- package/components/common/flex/index.js +4 -4
- package/components/common/icons/file/index.js +13 -11
- package/components/common/utils/dayjs.js +99 -124
- package/components/common/utils/is.js +98 -104
- package/components/common/utils/setDir.js +12 -0
- package/components/common/utils/setTheme.js +13 -13
- package/config-provider/ConfigProvider.js +32 -30
- package/descriptions/index.js +32 -32
- package/divider/index.js +28 -20
- package/empty/index.js +1 -1
- package/grid/Grid.js +55 -88
- package/grid/Item.js +40 -61
- package/grid/context.js +1 -4
- package/grid/hook/useResponsiveState.js +22 -25
- package/grid/util.js +6 -44
- package/index.js +462 -457
- package/input/Button.js +12 -12
- package/input/Group.js +11 -12
- package/input/Input.js +112 -102
- package/input/Search.js +24 -24
- package/modal/Confirm.js +17 -17
- package/modal/Modal.js +247 -237
- package/modal/index.js +4 -2
- package/modal/use-modal/index.js +2 -2
- package/package.json +1 -1
- package/select-view/Core.js +31 -28
- package/splitter/SplitBar.js +44 -46
- package/style.css +1 -1
- package/table/Table.js +198 -210
- package/table/th-resizable/index.js +9 -10
- package/time-picker/util.js +20 -30
- package/types/common/development/interface.d.ts +3 -3
- package/types/common/utils/is.d.ts +3 -4
- package/types/common/utils/setDir.d.ts +2 -0
- package/types/pc/app/App.d.ts +6 -0
- package/types/pc/app/context.d.ts +4 -0
- package/types/pc/app/index.d.ts +5 -0
- package/types/pc/app/interface.d.ts +17 -0
- package/types/pc/app/useApp.d.ts +3 -0
- package/types/pc/back-top/interface.d.ts +4 -17
- package/types/pc/calendar/Lunar.d.ts +17 -0
- package/types/pc/calendar/index.d.ts +1 -1
- package/types/pc/config-provider/interface.d.ts +1 -1
- package/types/pc/divider/interface.d.ts +1 -0
- package/types/pc/grid/Grid.d.ts +1 -2
- package/types/pc/grid/Item.d.ts +2 -5
- package/types/pc/grid/context.d.ts +4 -10
- package/types/pc/grid/hook/useResponsiveState.d.ts +2 -2
- package/types/pc/grid/interface.d.ts +9 -19
- package/types/pc/grid/util.d.ts +1 -10
- package/types/pc/index.d.ts +3 -1
- package/types/pc/input/Button.d.ts +2 -2
- package/types/pc/message/index.d.ts +1 -9
- package/types/pc/message/interface.d.ts +8 -0
- package/types/pc/message/useMessage.d.ts +1 -2
- package/types/pc/modal/Modal.d.ts +1 -0
- package/types/pc/modal/config.d.ts +1 -2
- package/types/pc/modal/index.d.ts +2 -1
- package/types/pc/modal/interface.d.ts +17 -5
- package/types/pc/notification/index.d.ts +2 -9
- package/types/pc/notification/interface.d.ts +7 -0
- package/types/pc/notification/useNotification.d.ts +1 -2
- package/types/pc/select-view/Core.d.ts +1 -8
- package/types/pc/select-view/index.d.ts +1 -8
- package/types/pc/select-view/interface.d.ts +9 -2
- package/types/pc/utils/is.d.ts +1 -1
- package/types/pc/utils/names.d.ts +303 -0
- package/utils/index.js +58 -59
- package/utils/is.js +65 -66
- package/utils/names.js +298 -144
- package/version/index.js +1 -1
package/utils/index.js
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
export * from "@unicom-cloud/utils/date";
|
|
2
2
|
import { default as i } from "@unicom-cloud/utils/case-name";
|
|
3
3
|
import { default as f } from "@unicom-cloud/utils/class-name";
|
|
4
|
-
import { newArray as p, pickTriggerPropsFromRest as
|
|
4
|
+
import { newArray as p, pickTriggerPropsFromRest as d } from "./constant.js";
|
|
5
5
|
import { ContextHolderElement as x } from "./contextHolder.js";
|
|
6
6
|
import { default as c, default as y } from "@unicom-cloud/utils/clipboard-copy";
|
|
7
|
-
import { dayjs as S, getDayjsValue as R, getNow as C, getSortedDayjsArray as h, getTimeFormat as T, getValueWithTime as E, isDayjsArrayChange as b, isDayjsChange as N, isValidTimeString as A, methods as
|
|
7
|
+
import { dayjs as S, getDayjsValue as R, getNow as C, getSortedDayjsArray as h, getTimeFormat as T, getValueWithTime as E, isDayjsArrayChange as b, isDayjsChange as N, isValidTimeString as A, methods as P, timezoneToOffset as D, toLocal as I, toTimezone as M } from "../components/common/utils/dayjs.js";
|
|
8
8
|
import { contains as k, getScrollElements as v, isScrollElement as B, isServerRendering as w, off as V, on as F } from "../components/common/utils/dom.js";
|
|
9
9
|
import { default as L } from "@unicom-cloud/utils/file/fileToURL";
|
|
10
10
|
import { fillNBSP as _ } from "../components/common/utils/fillNBSP.js";
|
|
@@ -21,7 +21,7 @@ import { default as oe } from "lodash/cloneDeep";
|
|
|
21
21
|
import { default as se } from "lodash/debounce";
|
|
22
22
|
import { default as me } from "lodash/get";
|
|
23
23
|
import { default as le } from "lodash/has";
|
|
24
|
-
import { default as
|
|
24
|
+
import { default as de } from "lodash/kebabCase";
|
|
25
25
|
import { default as xe } from "lodash/merge";
|
|
26
26
|
import { default as ce } from "lodash/mergeWith";
|
|
27
27
|
import { default as ge } from "lodash/set";
|
|
@@ -29,8 +29,8 @@ import { default as Re } from "lodash/setWith";
|
|
|
29
29
|
import { default as he } from "lodash/snakeCase";
|
|
30
30
|
import { default as Ee } from "lodash/startCase";
|
|
31
31
|
import { default as Ne } from "lodash/uniq";
|
|
32
|
-
import { default as
|
|
33
|
-
import { div as
|
|
32
|
+
import { default as Pe } from "lodash/upperFirst";
|
|
33
|
+
import { div as Ie, default as Me, minus as Oe, plus as ke, times as ve } from "@unicom-cloud/utils/math";
|
|
34
34
|
import { mergedToString as we } from "../components/common/utils/mergedToString.js";
|
|
35
35
|
import { mergeProps as Fe } from "../components/common/utils/mergeProps.js";
|
|
36
36
|
import { COMPONENT_NAMES as Le } from "./names.js";
|
|
@@ -44,14 +44,14 @@ import { default as rt } from "../dist/react-transition-group/src/ReplaceTransit
|
|
|
44
44
|
import { default as at } from "../dist/react-transition-group/src/SwitchTransition.js";
|
|
45
45
|
import { T as it } from "../dist/react-transition-group/chunk/CPfP7aNL.js";
|
|
46
46
|
import { default as ft, default as lt } from "../dist/react-transition-group/src/TransitionGroup.js";
|
|
47
|
-
import { responsiveArray as
|
|
47
|
+
import { responsiveArray as dt, responsiveMap as nt, responsiveObserve as xt } from "./responsiveObserve.js";
|
|
48
48
|
import { default as ct } from "@unicom-cloud/utils/file/saveAs";
|
|
49
49
|
import { default as gt } from "@unicom-cloud/utils/screenfull";
|
|
50
50
|
import { scrollIntoView as Rt } from "../components/common/utils/scrollIntoViewIfNeeded.js";
|
|
51
51
|
import { removeDarkTheme as ht, setDarkTheme as Tt } from "./setDarkTheme.js";
|
|
52
52
|
import { setPrimaryColor as bt } from "./setPrimaryColor.js";
|
|
53
53
|
import { setTheme as At } from "./setTheme.js";
|
|
54
|
-
import { fixedWidth as
|
|
54
|
+
import { fixedWidth as Dt, getStyle as It, setTransformStyle as Mt } from "../components/common/utils/style.js";
|
|
55
55
|
import { throttleByRaf as kt } from "../components/common/utils/throttleByRaf.js";
|
|
56
56
|
import { toArray as Bt } from "../components/common/utils/toArray.js";
|
|
57
57
|
import { findNodeBy as Vt, getChildWithParentBy as Ft, getItemBy as jt, getItemBy2 as Lt, getItemBy3 as Wt, getItemByID as _t, getLabelFromDictionaryByValue as zt, searchTree as Ht, default as Ut } from "@unicom-cloud/utils/tree";
|
|
@@ -64,12 +64,13 @@ import { warning as ar } from "../components/common/utils/warning.js";
|
|
|
64
64
|
import * as r from "@unicom-cloud/utils/constant/keyboardCode";
|
|
65
65
|
import { NOOP as ir } from "../components/common/utils/constant.js";
|
|
66
66
|
import { UI_PC_KEY as fr, UI_PC_THEME_DARK_CLASS_NAME as lr } from "@unicom-cloud/utils/constant/ui";
|
|
67
|
-
import { isArguments as
|
|
68
|
-
import { isClassComponent as po, isDOMElement as no,
|
|
69
|
-
import {
|
|
70
|
-
import {
|
|
71
|
-
import {
|
|
72
|
-
import { default as
|
|
67
|
+
import { isArguments as dr, isArray as nr, isArrayBuffer as xr, isArrayLike as ur, isArrayLikeObject as cr, isBlob as yr, isBoolean as gr, isBuffer as Sr, isColor as Rr, isColor2 as Cr, isDate as hr, isElement as Tr, isEmpty as Er, isEmptyArray as br, isEmptyObject as Nr, isEmptyValue as Ar, isEqual as Pr, isEqualWith as Dr, isError as Ir, isFile as Mr, isFinite as Or, isFunction as kr, isInteger as vr, isJSON as Br, isLength as wr, isMap as Vr, isMatch as Fr, isMatchWith as jr, isNaN as Lr, isNative as Wr, isNil as _r, isNull as zr, isNumber as Hr, isObject as Ur, isObjectLike as qr, isPlainObject as Gr, isPromise as Kr, isReadableByteStreamControllerSupported as Jr, isReadableStream as Yr, isReadableStreamDefaultControllerSupported as Qr, isReadableStreamSupported as Xr, isReadableStreamSymbolAsyncIteratorSupported as Zr, isRegExp as $r, isSafeInteger as eo, isSet as to, isString as ro, isSymbol as oo, isTypedArray as ao, isUndefined as so, isValidColor as io, isWeakMap as mo, isWeakSet as fo } from "@unicom-cloud/utils/is";
|
|
68
|
+
import { isClassComponent as po, isDOMElement as no, isEmptyReactNode as xo, isExist as uo, isForwardRefReact as co, isNullOrUndefined as yo, isReact18 as go, isReact19 as So, isReactComponent as Ro, isSupportRef as Co, isWindow as ho, supportRef as To } from "../components/common/utils/is.js";
|
|
69
|
+
import { isDayjs as bo } from "dayjs";
|
|
70
|
+
import { isContextConsumer as Ao, isContextProvider as Po, isElement as Do, isForwardRef as Io, isFragment as Mo, isLazy as Oo, isMemo as ko, isPortal as vo, isProfiler as Bo, isStrictMode as wo, isSuspense as Vo, isValidElementType as Fo } from "react-is";
|
|
71
|
+
import { compute as Lo } from "../dist/scroll-into-view-if-needed/compute/index.js";
|
|
72
|
+
import { default as _o } from "../dist/scroll-into-view-if-needed/src/index.js";
|
|
73
|
+
import { default as Ho, default as Uo } from "../dist/scroll-into-view-if-needed/smooth/index.js";
|
|
73
74
|
export {
|
|
74
75
|
Le as COMPONENT_NAMES,
|
|
75
76
|
et as CSSTransition,
|
|
@@ -92,18 +93,18 @@ export {
|
|
|
92
93
|
f as className,
|
|
93
94
|
c as clipboardCopy,
|
|
94
95
|
oe as cloneDeep,
|
|
95
|
-
|
|
96
|
+
Lo as compute,
|
|
96
97
|
k as contains,
|
|
97
98
|
y as copy,
|
|
98
99
|
S as dayjs,
|
|
99
100
|
se as debounce,
|
|
100
|
-
|
|
101
|
+
Ie as div,
|
|
101
102
|
Jt as easing,
|
|
102
103
|
L as fileToURL,
|
|
103
104
|
_ as fillNBSP,
|
|
104
105
|
Ze as findDOMNode_,
|
|
105
106
|
Vt as findNodeBy,
|
|
106
|
-
|
|
107
|
+
Dt as fixedWidth,
|
|
107
108
|
me as get,
|
|
108
109
|
Ft as getChildWithParentBy,
|
|
109
110
|
R as getDayjsValue,
|
|
@@ -118,14 +119,14 @@ export {
|
|
|
118
119
|
v as getScrollElements,
|
|
119
120
|
h as getSortedDayjsArray,
|
|
120
121
|
K as getStringLength,
|
|
121
|
-
|
|
122
|
+
It as getStyle,
|
|
122
123
|
T as getTimeFormat,
|
|
123
124
|
E as getValueWithTime,
|
|
124
125
|
le as has,
|
|
125
126
|
Y as include,
|
|
126
127
|
t as is,
|
|
127
|
-
|
|
128
|
-
|
|
128
|
+
dr as isArguments,
|
|
129
|
+
nr as isArray,
|
|
129
130
|
xr as isArrayBuffer,
|
|
130
131
|
ur as isArrayLike,
|
|
131
132
|
cr as isArrayLikeObject,
|
|
@@ -137,22 +138,22 @@ export {
|
|
|
137
138
|
Cr as isColor2,
|
|
138
139
|
no as isDOMElement,
|
|
139
140
|
hr as isDate,
|
|
140
|
-
|
|
141
|
+
bo as isDayjs,
|
|
141
142
|
b as isDayjsArrayChange,
|
|
142
143
|
N as isDayjsChange,
|
|
143
144
|
Tr as isElement,
|
|
144
145
|
Er as isEmpty,
|
|
145
146
|
br as isEmptyArray,
|
|
146
147
|
Nr as isEmptyObject,
|
|
147
|
-
|
|
148
|
+
xo as isEmptyReactNode,
|
|
148
149
|
Ar as isEmptyValue,
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
150
|
+
Pr as isEqual,
|
|
151
|
+
Dr as isEqualWith,
|
|
152
|
+
Ir as isError,
|
|
153
|
+
uo as isExist,
|
|
154
|
+
Mr as isFile,
|
|
154
155
|
Or as isFinite,
|
|
155
|
-
|
|
156
|
+
co as isForwardRefReact,
|
|
156
157
|
kr as isFunction,
|
|
157
158
|
vr as isInteger,
|
|
158
159
|
Br as isJSON,
|
|
@@ -164,29 +165,27 @@ export {
|
|
|
164
165
|
Wr as isNative,
|
|
165
166
|
_r as isNil,
|
|
166
167
|
zr as isNull,
|
|
167
|
-
|
|
168
|
+
yo as isNullOrUndefined,
|
|
168
169
|
Hr as isNumber,
|
|
169
170
|
Ur as isObject,
|
|
170
171
|
qr as isObjectLike,
|
|
171
172
|
Gr as isPlainObject,
|
|
172
173
|
Kr as isPromise,
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
Ao as isReactConcurrentMode,
|
|
178
|
-
Mo as isReactContextConsumer,
|
|
174
|
+
go as isReact18,
|
|
175
|
+
So as isReact19,
|
|
176
|
+
Ro as isReactComponent,
|
|
177
|
+
Ao as isReactContextConsumer,
|
|
179
178
|
Po as isReactContextProvider,
|
|
180
179
|
Do as isReactElement,
|
|
181
180
|
Io as isReactForwardRef,
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
181
|
+
Mo as isReactFragment,
|
|
182
|
+
Oo as isReactLazy,
|
|
183
|
+
ko as isReactMemo,
|
|
184
|
+
vo as isReactPortal,
|
|
185
|
+
Bo as isReactProfiler,
|
|
186
|
+
wo as isReactStrictMode,
|
|
187
|
+
Vo as isReactSuspense,
|
|
188
|
+
Fo as isReactValidElementType,
|
|
190
189
|
Jr as isReadableByteStreamControllerSupported,
|
|
191
190
|
Yr as isReadableStream,
|
|
192
191
|
Qr as isReadableStreamDefaultControllerSupported,
|
|
@@ -198,7 +197,7 @@ export {
|
|
|
198
197
|
w as isServerRendering,
|
|
199
198
|
to as isSet,
|
|
200
199
|
ro as isString,
|
|
201
|
-
|
|
200
|
+
Co as isSupportRef,
|
|
202
201
|
oo as isSymbol,
|
|
203
202
|
ao as isTypedArray,
|
|
204
203
|
so as isUndefined,
|
|
@@ -206,15 +205,15 @@ export {
|
|
|
206
205
|
A as isValidTimeString,
|
|
207
206
|
mo as isWeakMap,
|
|
208
207
|
fo as isWeakSet,
|
|
209
|
-
|
|
210
|
-
|
|
208
|
+
ho as isWindow,
|
|
209
|
+
de as kebabCase,
|
|
211
210
|
r as keyboardCode,
|
|
212
|
-
|
|
211
|
+
Me as math,
|
|
213
212
|
xe as merge,
|
|
214
213
|
Fe as mergeProps,
|
|
215
214
|
ce as mergeWith,
|
|
216
215
|
we as mergedToString,
|
|
217
|
-
|
|
216
|
+
P as methods,
|
|
218
217
|
Oe as minus,
|
|
219
218
|
p as newArray,
|
|
220
219
|
V as off,
|
|
@@ -224,39 +223,39 @@ export {
|
|
|
224
223
|
Ue as padStart,
|
|
225
224
|
Ge as pick,
|
|
226
225
|
Ke as pickDataAttributes,
|
|
227
|
-
|
|
226
|
+
d as pickTriggerPropsFromRest,
|
|
228
227
|
ke as plus,
|
|
229
228
|
lt as reactTransitionGroup,
|
|
230
229
|
ht as removeDarkTheme,
|
|
231
|
-
|
|
232
|
-
|
|
230
|
+
dt as responsiveArray,
|
|
231
|
+
nt as responsiveMap,
|
|
233
232
|
xt as responsiveObserve,
|
|
234
233
|
ct as saveAs,
|
|
235
234
|
gt as screenfull,
|
|
236
235
|
Rt as scrollIntoView,
|
|
237
|
-
|
|
238
|
-
|
|
236
|
+
_o as scrollIntoViewIfNeeded,
|
|
237
|
+
Ho as scrollIntoViewIfNeededSmooth,
|
|
239
238
|
Ht as searchTree,
|
|
240
239
|
ge as set,
|
|
241
240
|
Tt as setDarkTheme,
|
|
242
241
|
bt as setPrimaryColor,
|
|
243
242
|
At as setTheme,
|
|
244
|
-
|
|
243
|
+
Mt as setTransformStyle,
|
|
245
244
|
Re as setWith,
|
|
246
|
-
|
|
245
|
+
Uo as smoothScrollIntoViewIfNeeded,
|
|
247
246
|
he as snakeCase,
|
|
248
247
|
Ee as startCase,
|
|
249
|
-
|
|
248
|
+
To as supportRef,
|
|
250
249
|
X as throttle,
|
|
251
250
|
kt as throttleByRaf,
|
|
252
251
|
ve as times,
|
|
253
|
-
|
|
252
|
+
D as timezoneToOffset,
|
|
254
253
|
Bt as toArray,
|
|
255
|
-
|
|
256
|
-
|
|
254
|
+
I as toLocal,
|
|
255
|
+
M as toTimezone,
|
|
257
256
|
Ut as tree,
|
|
258
257
|
Ne as uniq,
|
|
259
|
-
|
|
258
|
+
Pe as upperFirst,
|
|
260
259
|
Qt as uuid,
|
|
261
260
|
Xt as uuidv4,
|
|
262
261
|
er as validate,
|
package/utils/is.js
CHANGED
|
@@ -1,84 +1,83 @@
|
|
|
1
|
-
import { isClassComponent as
|
|
2
|
-
import { isArguments as
|
|
3
|
-
import {
|
|
1
|
+
import { isClassComponent as s, isDOMElement as t, isEmptyReactNode as a, isExist as r, isForwardRefReact as o, isNullOrUndefined as l, isReact18 as n, isReact19 as m, isReactComponent as p, isSupportRef as c, isWindow as R, supportRef as d } from "../components/common/utils/is.js";
|
|
2
|
+
import { isArguments as y, isArray as S, isArrayBuffer as f, isArrayLike as E, isArrayLikeObject as b, isBlob as C, isBoolean as x, isBuffer as M, isColor as N, isColor2 as g, isDate as A, isElement as F, isEmpty as O, isEmptyArray as P, isEmptyObject as j, isEmptyValue as L, isEqual as h, isEqualWith as k, isError as B, isFile as W, isFinite as w, isFunction as D, isInteger as V, isJSON as v, isLength as I, isMap as T, isMatch as q, isMatchWith as z, isNaN as U, isNative as J, isNil as G, isNull as H, isNumber as K, isObject as Q, isObjectLike as X, isPlainObject as Y, isPromise as Z, isReadableByteStreamControllerSupported as _, isReadableStream as $, isReadableStreamDefaultControllerSupported as ee, isReadableStreamSupported as ie, isReadableStreamSymbolAsyncIteratorSupported as se, isRegExp as te, isSafeInteger as ae, isSet as re, isString as oe, isSymbol as le, isTypedArray as ne, isUndefined as me, isValidColor as pe, isWeakMap as ce, isWeakSet as Re } from "@unicom-cloud/utils/is";
|
|
3
|
+
import { isDayjs as ue } from "dayjs";
|
|
4
|
+
import { isContextConsumer as Se, isContextProvider as fe, isElement as Ee, isForwardRef as be, isFragment as Ce, isLazy as xe, isMemo as Me, isPortal as Ne, isProfiler as ge, isStrictMode as Ae, isSuspense as Fe, isValidElementType as Oe } from "react-is";
|
|
4
5
|
export {
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
6
|
+
y as isArguments,
|
|
7
|
+
S as isArray,
|
|
8
|
+
f as isArrayBuffer,
|
|
8
9
|
E as isArrayLike,
|
|
9
10
|
b as isArrayLikeObject,
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
11
|
+
C as isBlob,
|
|
12
|
+
x as isBoolean,
|
|
13
|
+
M as isBuffer,
|
|
14
|
+
s as isClassComponent,
|
|
14
15
|
N as isColor,
|
|
15
16
|
g as isColor2,
|
|
16
17
|
t as isDOMElement,
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
18
|
+
A as isDate,
|
|
19
|
+
ue as isDayjs,
|
|
20
|
+
F as isElement,
|
|
21
|
+
O as isEmpty,
|
|
22
|
+
P as isEmptyArray,
|
|
23
|
+
j as isEmptyObject,
|
|
24
|
+
a as isEmptyReactNode,
|
|
25
|
+
L as isEmptyValue,
|
|
26
|
+
h as isEqual,
|
|
27
|
+
k as isEqualWith,
|
|
28
|
+
B as isError,
|
|
29
|
+
r as isExist,
|
|
30
|
+
W as isFile,
|
|
31
|
+
w as isFinite,
|
|
32
|
+
o as isForwardRefReact,
|
|
33
|
+
D as isFunction,
|
|
34
|
+
V as isInteger,
|
|
35
|
+
v as isJSON,
|
|
36
|
+
I as isLength,
|
|
37
|
+
T as isMap,
|
|
38
|
+
q as isMatch,
|
|
39
|
+
z as isMatchWith,
|
|
40
|
+
U as isNaN,
|
|
41
|
+
J as isNative,
|
|
42
|
+
G as isNil,
|
|
43
|
+
H as isNull,
|
|
43
44
|
l as isNullOrUndefined,
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
45
|
+
K as isNumber,
|
|
46
|
+
Q as isObject,
|
|
47
|
+
X as isObjectLike,
|
|
48
|
+
Y as isPlainObject,
|
|
49
|
+
Z as isPromise,
|
|
50
|
+
n as isReact18,
|
|
50
51
|
m as isReact19,
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
fe as isReactContextConsumer,
|
|
55
|
-
Ce as isReactContextProvider,
|
|
52
|
+
p as isReactComponent,
|
|
53
|
+
Se as isReactContextConsumer,
|
|
54
|
+
fe as isReactContextProvider,
|
|
56
55
|
Ee as isReactElement,
|
|
57
56
|
be as isReactForwardRef,
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
57
|
+
Ce as isReactFragment,
|
|
58
|
+
xe as isReactLazy,
|
|
59
|
+
Me as isReactMemo,
|
|
61
60
|
Ne as isReactPortal,
|
|
62
61
|
ge as isReactProfiler,
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
62
|
+
Ae as isReactStrictMode,
|
|
63
|
+
Fe as isReactSuspense,
|
|
64
|
+
Oe as isReactValidElementType,
|
|
65
|
+
_ as isReadableByteStreamControllerSupported,
|
|
66
|
+
$ as isReadableStream,
|
|
67
|
+
ee as isReadableStreamDefaultControllerSupported,
|
|
69
68
|
ie as isReadableStreamSupported,
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
69
|
+
se as isReadableStreamSymbolAsyncIteratorSupported,
|
|
70
|
+
te as isRegExp,
|
|
71
|
+
ae as isSafeInteger,
|
|
72
|
+
re as isSet,
|
|
73
|
+
oe as isString,
|
|
74
|
+
c as isSupportRef,
|
|
76
75
|
le as isSymbol,
|
|
77
|
-
|
|
76
|
+
ne as isTypedArray,
|
|
78
77
|
me as isUndefined,
|
|
79
|
-
|
|
80
|
-
|
|
78
|
+
pe as isValidColor,
|
|
79
|
+
ce as isWeakMap,
|
|
81
80
|
Re as isWeakSet,
|
|
82
81
|
R as isWindow,
|
|
83
|
-
|
|
82
|
+
d as supportRef
|
|
84
83
|
};
|