@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.
Files changed (84) hide show
  1. package/App.js +7 -0
  2. package/BackTop.js +2 -4
  3. package/Calendar.js +2 -2
  4. package/Modal.js +4 -2
  5. package/app/App.js +26 -0
  6. package/app/context.js +9 -0
  7. package/app/index.js +9 -0
  8. package/app/interface.js +1 -0
  9. package/app/useApp.js +8 -0
  10. package/back-top/index.js +44 -56
  11. package/calendar/Lunar.js +71 -0
  12. package/calendar/index.js +11 -11
  13. package/color-picker/index.js +34 -34
  14. package/components/common/flex/index.js +4 -4
  15. package/components/common/icons/file/index.js +13 -11
  16. package/components/common/utils/dayjs.js +99 -124
  17. package/components/common/utils/is.js +98 -104
  18. package/components/common/utils/setDir.js +12 -0
  19. package/components/common/utils/setTheme.js +13 -13
  20. package/config-provider/ConfigProvider.js +32 -30
  21. package/descriptions/index.js +32 -32
  22. package/divider/index.js +28 -20
  23. package/empty/index.js +1 -1
  24. package/grid/Grid.js +55 -88
  25. package/grid/Item.js +40 -61
  26. package/grid/context.js +1 -4
  27. package/grid/hook/useResponsiveState.js +22 -25
  28. package/grid/util.js +6 -44
  29. package/index.js +462 -457
  30. package/input/Button.js +12 -12
  31. package/input/Group.js +11 -12
  32. package/input/Input.js +112 -102
  33. package/input/Search.js +24 -24
  34. package/modal/Confirm.js +17 -17
  35. package/modal/Modal.js +247 -237
  36. package/modal/index.js +4 -2
  37. package/modal/use-modal/index.js +2 -2
  38. package/package.json +1 -1
  39. package/select-view/Core.js +31 -28
  40. package/splitter/SplitBar.js +44 -46
  41. package/style.css +1 -1
  42. package/table/Table.js +198 -210
  43. package/table/th-resizable/index.js +9 -10
  44. package/time-picker/util.js +20 -30
  45. package/types/common/development/interface.d.ts +3 -3
  46. package/types/common/utils/is.d.ts +3 -4
  47. package/types/common/utils/setDir.d.ts +2 -0
  48. package/types/pc/app/App.d.ts +6 -0
  49. package/types/pc/app/context.d.ts +4 -0
  50. package/types/pc/app/index.d.ts +5 -0
  51. package/types/pc/app/interface.d.ts +17 -0
  52. package/types/pc/app/useApp.d.ts +3 -0
  53. package/types/pc/back-top/interface.d.ts +4 -17
  54. package/types/pc/calendar/Lunar.d.ts +17 -0
  55. package/types/pc/calendar/index.d.ts +1 -1
  56. package/types/pc/config-provider/interface.d.ts +1 -1
  57. package/types/pc/divider/interface.d.ts +1 -0
  58. package/types/pc/grid/Grid.d.ts +1 -2
  59. package/types/pc/grid/Item.d.ts +2 -5
  60. package/types/pc/grid/context.d.ts +4 -10
  61. package/types/pc/grid/hook/useResponsiveState.d.ts +2 -2
  62. package/types/pc/grid/interface.d.ts +9 -19
  63. package/types/pc/grid/util.d.ts +1 -10
  64. package/types/pc/index.d.ts +3 -1
  65. package/types/pc/input/Button.d.ts +2 -2
  66. package/types/pc/message/index.d.ts +1 -9
  67. package/types/pc/message/interface.d.ts +8 -0
  68. package/types/pc/message/useMessage.d.ts +1 -2
  69. package/types/pc/modal/Modal.d.ts +1 -0
  70. package/types/pc/modal/config.d.ts +1 -2
  71. package/types/pc/modal/index.d.ts +2 -1
  72. package/types/pc/modal/interface.d.ts +17 -5
  73. package/types/pc/notification/index.d.ts +2 -9
  74. package/types/pc/notification/interface.d.ts +7 -0
  75. package/types/pc/notification/useNotification.d.ts +1 -2
  76. package/types/pc/select-view/Core.d.ts +1 -8
  77. package/types/pc/select-view/index.d.ts +1 -8
  78. package/types/pc/select-view/interface.d.ts +9 -2
  79. package/types/pc/utils/is.d.ts +1 -1
  80. package/types/pc/utils/names.d.ts +303 -0
  81. package/utils/index.js +58 -59
  82. package/utils/is.js +65 -66
  83. package/utils/names.js +298 -144
  84. 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 n } from "./constant.js";
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 M, timezoneToOffset as P, toLocal as D, toTimezone as I } from "../components/common/utils/dayjs.js";
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 ne } from "lodash/kebabCase";
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 Me } from "lodash/upperFirst";
33
- import { div as De, default as Ie, minus as Oe, plus as ke, times as ve } from "@unicom-cloud/utils/math";
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 nt, responsiveMap as dt, responsiveObserve as xt } from "./responsiveObserve.js";
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 Pt, getStyle as Dt, setTransformStyle as It } from "../components/common/utils/style.js";
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 nr, isArray as dr, 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 Mr, isEqualWith as Pr, isError as Dr, isFile as Ir, 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, isDayjs as xo, isEmptyReactNode as uo, isExist as co, isForwardRefReact as yo, isNullOrUndefined as go, isReact18 as So, isReact19 as Ro, isReactComponent as Co, isSupportRef as ho, isWindow as To, supportRef as Eo } from "../components/common/utils/is.js";
69
- import { isAsyncMode as No, isConcurrentMode as Ao, isContextConsumer as Mo, isContextProvider as Po, isElement as Do, isForwardRef as Io, isFragment as Oo, isLazy as ko, isMemo as vo, isPortal as Bo, isProfiler as wo, isStrictMode as Vo, isSuspense as Fo, isValidElementType as jo } from "react-is";
70
- import { compute as Wo } from "../dist/scroll-into-view-if-needed/compute/index.js";
71
- import { default as zo } from "../dist/scroll-into-view-if-needed/src/index.js";
72
- import { default as Uo, default as qo } from "../dist/scroll-into-view-if-needed/smooth/index.js";
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
- Wo as compute,
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
- De as div,
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
- Pt as fixedWidth,
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
- Dt as getStyle,
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
- nr as isArguments,
128
- dr as isArray,
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
- xo as isDayjs,
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
- uo as isEmptyReactNode,
148
+ xo as isEmptyReactNode,
148
149
  Ar as isEmptyValue,
149
- Mr as isEqual,
150
- Pr as isEqualWith,
151
- Dr as isError,
152
- co as isExist,
153
- Ir as isFile,
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
- yo as isForwardRefReact,
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
- go as isNullOrUndefined,
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
- So as isReact18,
174
- Ro as isReact19,
175
- No as isReactAsyncMode,
176
- Co as isReactComponent,
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
- Oo as isReactFragment,
183
- ko as isReactLazy,
184
- vo as isReactMemo,
185
- Bo as isReactPortal,
186
- wo as isReactProfiler,
187
- Vo as isReactStrictMode,
188
- Fo as isReactSuspense,
189
- jo as isReactValidElementType,
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
- ho as isSupportRef,
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
- To as isWindow,
210
- ne as kebabCase,
208
+ ho as isWindow,
209
+ de as kebabCase,
211
210
  r as keyboardCode,
212
- Ie as math,
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
- M as methods,
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
- n as pickTriggerPropsFromRest,
226
+ d as pickTriggerPropsFromRest,
228
227
  ke as plus,
229
228
  lt as reactTransitionGroup,
230
229
  ht as removeDarkTheme,
231
- nt as responsiveArray,
232
- dt as responsiveMap,
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
- zo as scrollIntoViewIfNeeded,
238
- Uo as scrollIntoViewIfNeededSmooth,
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
- It as setTransformStyle,
243
+ Mt as setTransformStyle,
245
244
  Re as setWith,
246
- qo as smoothScrollIntoViewIfNeeded,
245
+ Uo as smoothScrollIntoViewIfNeeded,
247
246
  he as snakeCase,
248
247
  Ee as startCase,
249
- Eo as supportRef,
248
+ To as supportRef,
250
249
  X as throttle,
251
250
  kt as throttleByRaf,
252
251
  ve as times,
253
- P as timezoneToOffset,
252
+ D as timezoneToOffset,
254
253
  Bt as toArray,
255
- D as toLocal,
256
- I as toTimezone,
254
+ I as toLocal,
255
+ M as toTimezone,
257
256
  Ut as tree,
258
257
  Ne as uniq,
259
- Me as upperFirst,
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 i, isDOMElement as t, isDayjs as a, isEmptyReactNode as r, isExist as o, isForwardRefReact as n, isNullOrUndefined as l, isReact18 as c, isReact19 as m, isReactComponent as d, isSupportRef as p, isWindow as R, supportRef as u } from "../components/common/utils/is.js";
2
- import { isArguments as S, isArray as f, isArrayBuffer as C, isArrayLike as E, isArrayLikeObject as b, isBlob as M, isBoolean as A, isBuffer as x, isColor as N, isColor2 as g, isDate as F, isElement as O, isEmpty as P, isEmptyArray as j, isEmptyObject as L, isEmptyValue as h, isEqual as k, isEqualWith as B, isError as W, isFile as w, isFinite as D, isFunction as V, isInteger as v, isJSON as I, isLength as T, isMap as q, isMatch as z, isMatchWith as U, isNaN as J, isNative as G, isNil as H, isNull as K, isNumber as Q, isObject as X, isObjectLike as Y, isPlainObject as Z, isPromise as _, isReadableByteStreamControllerSupported as $, isReadableStream as ee, isReadableStreamDefaultControllerSupported as se, isReadableStreamSupported as ie, isReadableStreamSymbolAsyncIteratorSupported as te, isRegExp as ae, isSafeInteger as re, isSet as oe, isString as ne, isSymbol as le, isTypedArray as ce, isUndefined as me, isValidColor as de, isWeakMap as pe, isWeakSet as Re } from "@unicom-cloud/utils/is";
3
- import { isAsyncMode as ye, isConcurrentMode as Se, isContextConsumer as fe, isContextProvider as Ce, isElement as Ee, isForwardRef as be, isFragment as Me, isLazy as Ae, isMemo as xe, isPortal as Ne, isProfiler as ge, isStrictMode as Fe, isSuspense as Oe, isValidElementType as Pe } from "react-is";
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
- S as isArguments,
6
- f as isArray,
7
- C as isArrayBuffer,
6
+ y as isArguments,
7
+ S as isArray,
8
+ f as isArrayBuffer,
8
9
  E as isArrayLike,
9
10
  b as isArrayLikeObject,
10
- M as isBlob,
11
- A as isBoolean,
12
- x as isBuffer,
13
- i as isClassComponent,
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
- F as isDate,
18
- a as isDayjs,
19
- O as isElement,
20
- P as isEmpty,
21
- j as isEmptyArray,
22
- L as isEmptyObject,
23
- r as isEmptyReactNode,
24
- h as isEmptyValue,
25
- k as isEqual,
26
- B as isEqualWith,
27
- W as isError,
28
- o as isExist,
29
- w as isFile,
30
- D as isFinite,
31
- n as isForwardRefReact,
32
- V as isFunction,
33
- v as isInteger,
34
- I as isJSON,
35
- T as isLength,
36
- q as isMap,
37
- z as isMatch,
38
- U as isMatchWith,
39
- J as isNaN,
40
- G as isNative,
41
- H as isNil,
42
- K as isNull,
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
- Q as isNumber,
45
- X as isObject,
46
- Y as isObjectLike,
47
- Z as isPlainObject,
48
- _ as isPromise,
49
- c as isReact18,
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
- ye as isReactAsyncMode,
52
- d as isReactComponent,
53
- Se as isReactConcurrentMode,
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
- Me as isReactFragment,
59
- Ae as isReactLazy,
60
- xe as isReactMemo,
57
+ Ce as isReactFragment,
58
+ xe as isReactLazy,
59
+ Me as isReactMemo,
61
60
  Ne as isReactPortal,
62
61
  ge as isReactProfiler,
63
- Fe as isReactStrictMode,
64
- Oe as isReactSuspense,
65
- Pe as isReactValidElementType,
66
- $ as isReadableByteStreamControllerSupported,
67
- ee as isReadableStream,
68
- se as isReadableStreamDefaultControllerSupported,
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
- te as isReadableStreamSymbolAsyncIteratorSupported,
71
- ae as isRegExp,
72
- re as isSafeInteger,
73
- oe as isSet,
74
- ne as isString,
75
- p as isSupportRef,
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
- ce as isTypedArray,
76
+ ne as isTypedArray,
78
77
  me as isUndefined,
79
- de as isValidColor,
80
- pe as isWeakMap,
78
+ pe as isValidColor,
79
+ ce as isWeakMap,
81
80
  Re as isWeakSet,
82
81
  R as isWindow,
83
- u as supportRef
82
+ d as supportRef
84
83
  };