@ix_waterford/lib 1.0.47 → 1.0.49

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 (41) hide show
  1. package/dist/components.html +1 -1
  2. package/dist/components.js +23370 -0
  3. package/dist/components.js.map +1 -0
  4. package/dist/hooks.html +1 -1
  5. package/dist/hooks.js +1378 -0
  6. package/dist/hooks.js.map +1 -0
  7. package/dist/index.html +1 -1
  8. package/dist/index.js +23554 -0
  9. package/dist/index.js.map +1 -0
  10. package/dist/static/css/components.css +651 -0
  11. package/dist/static/css/components.css.map +1 -0
  12. package/dist/static/css/index.css +651 -0
  13. package/dist/static/css/index.css.map +1 -0
  14. package/dist/types/assets/deleteIcon.d.ts +3 -0
  15. package/dist/types/assets/deleteIcon.d.ts.map +1 -0
  16. package/dist/types/assets/viewIcon.d.ts +3 -0
  17. package/dist/types/assets/viewIcon.d.ts.map +1 -0
  18. package/dist/types/components/dateRangePicker/dateRangePicker.d.ts.map +1 -1
  19. package/dist/types/components/dateRangePicker/style.d.ts +9 -0
  20. package/dist/types/components/dateRangePicker/style.d.ts.map +1 -1
  21. package/dist/types/components/index.d.ts +0 -2
  22. package/dist/types/components/index.d.ts.map +1 -1
  23. package/dist/types/components/select/select.d.ts +0 -1
  24. package/dist/types/components/select/select.d.ts.map +1 -1
  25. package/dist/types/components/table/body/tableActions.d.ts.map +1 -1
  26. package/dist/utils.html +1 -1
  27. package/dist/utils.js +1717 -0
  28. package/dist/utils.js.map +1 -0
  29. package/package.json +1 -1
  30. package/dist/components.22531efb.js +0 -10
  31. package/dist/hooks.2d503d40.js +0 -1
  32. package/dist/index.49dac4ce.js +0 -10
  33. package/dist/static/css/components.1d98581c.css +0 -1
  34. package/dist/static/css/index.1d98581c.css +0 -1
  35. package/dist/types/components/popper/index.d.ts +0 -3
  36. package/dist/types/components/popper/index.d.ts.map +0 -1
  37. package/dist/types/components/popper/popper.d.ts +0 -20
  38. package/dist/types/components/popper/popper.d.ts.map +0 -1
  39. package/dist/types/components/popper/style.d.ts +0 -15
  40. package/dist/types/components/popper/style.d.ts.map +0 -1
  41. package/dist/utils.735ee27a.js +0 -1
package/dist/utils.js ADDED
@@ -0,0 +1,1717 @@
1
+ import * as __rspack_external_dayjs from "dayjs";
2
+ var __webpack_modules__ = ({
3
+ "./node_modules/react-refresh/cjs/react-refresh-runtime.development.js"(__unused_rspack_module, exports) {
4
+ /**
5
+ * @license React
6
+ * react-refresh-runtime.development.js
7
+ *
8
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
9
+ *
10
+ * This source code is licensed under the MIT license found in the
11
+ * LICENSE file in the root directory of this source tree.
12
+ */
13
+
14
+
15
+ true &&
16
+ (function () {
17
+ function computeFullKey(signature) {
18
+ if (null !== signature.fullKey) return signature.fullKey;
19
+ var fullKey = signature.ownKey;
20
+ try {
21
+ var hooks = signature.getCustomHooks();
22
+ } catch (err) {
23
+ return (signature.forceReset = !0), (signature.fullKey = fullKey);
24
+ }
25
+ for (var i = 0; i < hooks.length; i++) {
26
+ var hook = hooks[i];
27
+ if ("function" !== typeof hook)
28
+ return (signature.forceReset = !0), (signature.fullKey = fullKey);
29
+ hook = allSignaturesByType.get(hook);
30
+ if (void 0 !== hook) {
31
+ var nestedHookKey = computeFullKey(hook);
32
+ hook.forceReset && (signature.forceReset = !0);
33
+ fullKey += "\n---\n" + nestedHookKey;
34
+ }
35
+ }
36
+ return (signature.fullKey = fullKey);
37
+ }
38
+ function resolveFamily(type) {
39
+ return updatedFamiliesByType.get(type);
40
+ }
41
+ function cloneMap(map) {
42
+ var clone = new Map();
43
+ map.forEach(function (value, key) {
44
+ clone.set(key, value);
45
+ });
46
+ return clone;
47
+ }
48
+ function cloneSet(set) {
49
+ var clone = new Set();
50
+ set.forEach(function (value) {
51
+ clone.add(value);
52
+ });
53
+ return clone;
54
+ }
55
+ function getProperty(object, property) {
56
+ try {
57
+ return object[property];
58
+ } catch (err) {}
59
+ }
60
+ function register(type, id) {
61
+ if (
62
+ !(
63
+ null === type ||
64
+ ("function" !== typeof type && "object" !== typeof type) ||
65
+ allFamiliesByType.has(type)
66
+ )
67
+ ) {
68
+ var family = allFamiliesByID.get(id);
69
+ void 0 === family
70
+ ? ((family = { current: type }), allFamiliesByID.set(id, family))
71
+ : pendingUpdates.push([family, type]);
72
+ allFamiliesByType.set(type, family);
73
+ if ("object" === typeof type && null !== type)
74
+ switch (getProperty(type, "$$typeof")) {
75
+ case REACT_FORWARD_REF_TYPE:
76
+ register(type.render, id + "$render");
77
+ break;
78
+ case REACT_MEMO_TYPE:
79
+ register(type.type, id + "$type");
80
+ }
81
+ }
82
+ }
83
+ function setSignature(type, key) {
84
+ var forceReset =
85
+ 2 < arguments.length && void 0 !== arguments[2] ? arguments[2] : !1,
86
+ getCustomHooks = 3 < arguments.length ? arguments[3] : void 0;
87
+ allSignaturesByType.has(type) ||
88
+ allSignaturesByType.set(type, {
89
+ forceReset: forceReset,
90
+ ownKey: key,
91
+ fullKey: null,
92
+ getCustomHooks:
93
+ getCustomHooks ||
94
+ function () {
95
+ return [];
96
+ }
97
+ });
98
+ if ("object" === typeof type && null !== type)
99
+ switch (getProperty(type, "$$typeof")) {
100
+ case REACT_FORWARD_REF_TYPE:
101
+ setSignature(type.render, key, forceReset, getCustomHooks);
102
+ break;
103
+ case REACT_MEMO_TYPE:
104
+ setSignature(type.type, key, forceReset, getCustomHooks);
105
+ }
106
+ }
107
+ function collectCustomHooksForSignature(type) {
108
+ type = allSignaturesByType.get(type);
109
+ void 0 !== type && computeFullKey(type);
110
+ }
111
+ var REACT_FORWARD_REF_TYPE = Symbol.for("react.forward_ref"),
112
+ REACT_MEMO_TYPE = Symbol.for("react.memo"),
113
+ PossiblyWeakMap = "function" === typeof WeakMap ? WeakMap : Map,
114
+ allFamiliesByID = new Map(),
115
+ allFamiliesByType = new PossiblyWeakMap(),
116
+ allSignaturesByType = new PossiblyWeakMap(),
117
+ updatedFamiliesByType = new PossiblyWeakMap(),
118
+ pendingUpdates = [],
119
+ helpersByRendererID = new Map(),
120
+ helpersByRoot = new Map(),
121
+ mountedRoots = new Set(),
122
+ failedRoots = new Set(),
123
+ rootElements = "function" === typeof WeakMap ? new WeakMap() : null,
124
+ isPerformingRefresh = !1;
125
+ exports._getMountedRootCount = function () {
126
+ return mountedRoots.size;
127
+ };
128
+ exports.collectCustomHooksForSignature = collectCustomHooksForSignature;
129
+ exports.createSignatureFunctionForTransform = function () {
130
+ var savedType,
131
+ hasCustomHooks,
132
+ didCollectHooks = !1;
133
+ return function (type, key, forceReset, getCustomHooks) {
134
+ if ("string" === typeof key)
135
+ return (
136
+ savedType ||
137
+ ((savedType = type),
138
+ (hasCustomHooks = "function" === typeof getCustomHooks)),
139
+ null == type ||
140
+ ("function" !== typeof type && "object" !== typeof type) ||
141
+ setSignature(type, key, forceReset, getCustomHooks),
142
+ type
143
+ );
144
+ !didCollectHooks &&
145
+ hasCustomHooks &&
146
+ ((didCollectHooks = !0), collectCustomHooksForSignature(savedType));
147
+ };
148
+ };
149
+ exports.getFamilyByID = function (id) {
150
+ return allFamiliesByID.get(id);
151
+ };
152
+ exports.getFamilyByType = function (type) {
153
+ return allFamiliesByType.get(type);
154
+ };
155
+ exports.hasUnrecoverableErrors = function () {
156
+ return !1;
157
+ };
158
+ exports.injectIntoGlobalHook = function (globalObject) {
159
+ var hook = globalObject.__REACT_DEVTOOLS_GLOBAL_HOOK__;
160
+ if (void 0 === hook) {
161
+ var nextID = 0;
162
+ globalObject.__REACT_DEVTOOLS_GLOBAL_HOOK__ = hook = {
163
+ renderers: new Map(),
164
+ supportsFiber: !0,
165
+ inject: function () {
166
+ return nextID++;
167
+ },
168
+ onScheduleFiberRoot: function () {},
169
+ onCommitFiberRoot: function () {},
170
+ onCommitFiberUnmount: function () {}
171
+ };
172
+ }
173
+ if (hook.isDisabled)
174
+ console.warn(
175
+ "Something has shimmed the React DevTools global hook (__REACT_DEVTOOLS_GLOBAL_HOOK__). Fast Refresh is not compatible with this shim and will be disabled."
176
+ );
177
+ else {
178
+ var oldInject = hook.inject;
179
+ hook.inject = function (injected) {
180
+ var id = oldInject.apply(this, arguments);
181
+ "function" === typeof injected.scheduleRefresh &&
182
+ "function" === typeof injected.setRefreshHandler &&
183
+ helpersByRendererID.set(id, injected);
184
+ return id;
185
+ };
186
+ hook.renderers.forEach(function (injected, id) {
187
+ "function" === typeof injected.scheduleRefresh &&
188
+ "function" === typeof injected.setRefreshHandler &&
189
+ helpersByRendererID.set(id, injected);
190
+ });
191
+ var oldOnCommitFiberRoot = hook.onCommitFiberRoot,
192
+ oldOnScheduleFiberRoot = hook.onScheduleFiberRoot || function () {};
193
+ hook.onScheduleFiberRoot = function (id, root, children) {
194
+ isPerformingRefresh ||
195
+ (failedRoots.delete(root),
196
+ null !== rootElements && rootElements.set(root, children));
197
+ return oldOnScheduleFiberRoot.apply(this, arguments);
198
+ };
199
+ hook.onCommitFiberRoot = function (
200
+ id,
201
+ root,
202
+ maybePriorityLevel,
203
+ didError
204
+ ) {
205
+ var helpers = helpersByRendererID.get(id);
206
+ if (void 0 !== helpers) {
207
+ helpersByRoot.set(root, helpers);
208
+ helpers = root.current;
209
+ var alternate = helpers.alternate;
210
+ null !== alternate
211
+ ? ((alternate =
212
+ null != alternate.memoizedState &&
213
+ null != alternate.memoizedState.element &&
214
+ mountedRoots.has(root)),
215
+ (helpers =
216
+ null != helpers.memoizedState &&
217
+ null != helpers.memoizedState.element),
218
+ !alternate && helpers
219
+ ? (mountedRoots.add(root), failedRoots.delete(root))
220
+ : (alternate && helpers) ||
221
+ (alternate && !helpers
222
+ ? (mountedRoots.delete(root),
223
+ didError
224
+ ? failedRoots.add(root)
225
+ : helpersByRoot.delete(root))
226
+ : alternate ||
227
+ helpers ||
228
+ (didError && failedRoots.add(root))))
229
+ : mountedRoots.add(root);
230
+ }
231
+ return oldOnCommitFiberRoot.apply(this, arguments);
232
+ };
233
+ }
234
+ };
235
+ exports.isLikelyComponentType = function (type) {
236
+ switch (typeof type) {
237
+ case "function":
238
+ if (null != type.prototype) {
239
+ if (type.prototype.isReactComponent) return !0;
240
+ var ownNames = Object.getOwnPropertyNames(type.prototype);
241
+ if (
242
+ 1 < ownNames.length ||
243
+ "constructor" !== ownNames[0] ||
244
+ type.prototype.__proto__ !== Object.prototype
245
+ )
246
+ return !1;
247
+ }
248
+ type = type.name || type.displayName;
249
+ return "string" === typeof type && /^[A-Z]/.test(type);
250
+ case "object":
251
+ if (null != type)
252
+ switch (getProperty(type, "$$typeof")) {
253
+ case REACT_FORWARD_REF_TYPE:
254
+ case REACT_MEMO_TYPE:
255
+ return !0;
256
+ }
257
+ return !1;
258
+ default:
259
+ return !1;
260
+ }
261
+ };
262
+ exports.performReactRefresh = function () {
263
+ if (0 === pendingUpdates.length || isPerformingRefresh) return null;
264
+ isPerformingRefresh = !0;
265
+ try {
266
+ var staleFamilies = new Set(),
267
+ updatedFamilies = new Set(),
268
+ updates = pendingUpdates;
269
+ pendingUpdates = [];
270
+ updates.forEach(function (_ref) {
271
+ var family = _ref[0];
272
+ _ref = _ref[1];
273
+ var prevType = family.current;
274
+ updatedFamiliesByType.set(prevType, family);
275
+ updatedFamiliesByType.set(_ref, family);
276
+ family.current = _ref;
277
+ (prevType.prototype && prevType.prototype.isReactComponent) ||
278
+ (_ref.prototype && _ref.prototype.isReactComponent)
279
+ ? (_ref = !1)
280
+ : ((prevType = allSignaturesByType.get(prevType)),
281
+ (_ref = allSignaturesByType.get(_ref)),
282
+ (_ref =
283
+ (void 0 === prevType && void 0 === _ref) ||
284
+ (void 0 !== prevType &&
285
+ void 0 !== _ref &&
286
+ computeFullKey(prevType) === computeFullKey(_ref) &&
287
+ !_ref.forceReset)
288
+ ? !0
289
+ : !1));
290
+ _ref ? updatedFamilies.add(family) : staleFamilies.add(family);
291
+ });
292
+ var update = {
293
+ updatedFamilies: updatedFamilies,
294
+ staleFamilies: staleFamilies
295
+ };
296
+ helpersByRendererID.forEach(function (helpers) {
297
+ helpers.setRefreshHandler(resolveFamily);
298
+ });
299
+ var didError = !1,
300
+ firstError = null,
301
+ failedRootsSnapshot = cloneSet(failedRoots),
302
+ mountedRootsSnapshot = cloneSet(mountedRoots),
303
+ helpersByRootSnapshot = cloneMap(helpersByRoot);
304
+ failedRootsSnapshot.forEach(function (root) {
305
+ var helpers = helpersByRootSnapshot.get(root);
306
+ if (void 0 === helpers)
307
+ throw Error(
308
+ "Could not find helpers for a root. This is a bug in React Refresh."
309
+ );
310
+ failedRoots.has(root);
311
+ if (null !== rootElements && rootElements.has(root)) {
312
+ var element = rootElements.get(root);
313
+ try {
314
+ helpers.scheduleRoot(root, element);
315
+ } catch (err) {
316
+ didError || ((didError = !0), (firstError = err));
317
+ }
318
+ }
319
+ });
320
+ mountedRootsSnapshot.forEach(function (root) {
321
+ var helpers = helpersByRootSnapshot.get(root);
322
+ if (void 0 === helpers)
323
+ throw Error(
324
+ "Could not find helpers for a root. This is a bug in React Refresh."
325
+ );
326
+ mountedRoots.has(root);
327
+ try {
328
+ helpers.scheduleRefresh(root, update);
329
+ } catch (err) {
330
+ didError || ((didError = !0), (firstError = err));
331
+ }
332
+ });
333
+ if (didError) throw firstError;
334
+ return update;
335
+ } finally {
336
+ isPerformingRefresh = !1;
337
+ }
338
+ };
339
+ exports.register = register;
340
+ exports.setSignature = setSignature;
341
+ })();
342
+
343
+
344
+ },
345
+ "./node_modules/react-refresh/runtime.js"(module, __unused_rspack_exports, __webpack_require__) {
346
+
347
+
348
+ if (false) {} else {
349
+ module.exports = __webpack_require__("./node_modules/react-refresh/cjs/react-refresh-runtime.development.js");
350
+ }
351
+
352
+
353
+ },
354
+ "./src/constants/dateConstants.ts"(module, __webpack_exports__, __webpack_require__) {
355
+ __webpack_require__.r(__webpack_exports__);
356
+ __webpack_require__.d(__webpack_exports__, {
357
+ DEFAULT_DATE_FORMAT: () => (DEFAULT_DATE_FORMAT),
358
+ months: () => (months),
359
+ weekDays: () => (weekDays)
360
+ });
361
+ /* provided dependency */ var $ReactRefreshRuntime$ = __webpack_require__("./node_modules/@rspack/plugin-react-refresh/client/reactRefresh.js");
362
+ const months = [
363
+ 'Jan',
364
+ 'Feb',
365
+ 'Mar',
366
+ 'Apr',
367
+ 'May',
368
+ 'Jun',
369
+ 'Jul',
370
+ 'Aug',
371
+ 'Sep',
372
+ 'Oct',
373
+ 'Nov',
374
+ 'Dec'
375
+ ];
376
+ const weekDays = [
377
+ 'Su',
378
+ 'Mo',
379
+ 'Tu',
380
+ 'We',
381
+ 'Th',
382
+ 'Fr',
383
+ 'Sa'
384
+ ];
385
+ const DEFAULT_DATE_FORMAT = 'YYYY-MM-DD';
386
+
387
+ function $RefreshSig$() { return $ReactRefreshRuntime$.createSignatureFunctionForTransform() }
388
+ function $RefreshReg$(type, id) { $ReactRefreshRuntime$.register(type, module.id + "_" + id) }
389
+ Promise.resolve().then(() => { $ReactRefreshRuntime$.refresh(module.id, module.hot) });
390
+
391
+
392
+ },
393
+ "./src/utils/date.ts"(module, __webpack_exports__, __webpack_require__) {
394
+ __webpack_require__.r(__webpack_exports__);
395
+ __webpack_require__.d(__webpack_exports__, {
396
+ formatDate: () => (formatDate),
397
+ parseDate: () => (parseDate)
398
+ });
399
+ /* import */ var dayjs__rspack_import_0 = __webpack_require__("dayjs");
400
+ /* import */ var _constants_dateConstants__rspack_import_1 = __webpack_require__("./src/constants/dateConstants.ts");
401
+ /* provided dependency */ var $ReactRefreshRuntime$ = __webpack_require__("./node_modules/@rspack/plugin-react-refresh/client/reactRefresh.js");
402
+
403
+
404
+ const formatDate = function(date) {
405
+ let format = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : _constants_dateConstants__rspack_import_1.DEFAULT_DATE_FORMAT;
406
+ try {
407
+ return date ? (0,dayjs__rspack_import_0["default"])(date).format(format) : null;
408
+ } catch (_error) {
409
+ return null;
410
+ }
411
+ };
412
+ const parseDate = function(date) {
413
+ let format = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : null;
414
+ try {
415
+ if (!date) return null;
416
+ const d = format ? (0,dayjs__rspack_import_0["default"])(date, format, true) : (0,dayjs__rspack_import_0["default"])(date);
417
+ return d.isValid() ? d : null;
418
+ } catch (_error) {
419
+ return null;
420
+ }
421
+ };
422
+
423
+ function $RefreshSig$() { return $ReactRefreshRuntime$.createSignatureFunctionForTransform() }
424
+ function $RefreshReg$(type, id) { $ReactRefreshRuntime$.register(type, module.id + "_" + id) }
425
+ Promise.resolve().then(() => { $ReactRefreshRuntime$.refresh(module.id, module.hot) });
426
+
427
+
428
+ },
429
+ "./src/utils/email.ts"(module, __webpack_exports__, __webpack_require__) {
430
+ __webpack_require__.r(__webpack_exports__);
431
+ __webpack_require__.d(__webpack_exports__, {
432
+ isValidEmail: () => (isValidEmail)
433
+ });
434
+ /* provided dependency */ var $ReactRefreshRuntime$ = __webpack_require__("./node_modules/@rspack/plugin-react-refresh/client/reactRefresh.js");
435
+ /**
436
+ * Validates whether a given string is a valid email address
437
+ * @param email - The email string to validate
438
+ * @returns true if the email is valid, false otherwise
439
+ */ const isValidEmail = (email)=>{
440
+ if (!email || typeof email !== 'string') {
441
+ return false;
442
+ }
443
+ const emailRegex = RegExp("^(?!\\.)(?!.*\\.\\.)[A-Za-z0-9.!#$%&'*+/=?^_`{|}~-]+(?<!\\.)@[A-Za-z0-9-]+(?:\\.[A-Za-z0-9-]+)*\\.[A-Za-z]{2,}$");
444
+ return emailRegex.test(email.trim());
445
+ };
446
+
447
+ function $RefreshSig$() { return $ReactRefreshRuntime$.createSignatureFunctionForTransform() }
448
+ function $RefreshReg$(type, id) { $ReactRefreshRuntime$.register(type, module.id + "_" + id) }
449
+ Promise.resolve().then(() => { $ReactRefreshRuntime$.refresh(module.id, module.hot) });
450
+
451
+
452
+ },
453
+ "./src/utils/global.ts"(module, __webpack_exports__, __webpack_require__) {
454
+ __webpack_require__.r(__webpack_exports__);
455
+ __webpack_require__.d(__webpack_exports__, {
456
+ getColorFromId: () => (getColorFromId),
457
+ getFormattedName: () => (getFormattedName),
458
+ isEmpty: () => (isEmpty),
459
+ isEmptyArray: () => (isEmptyArray),
460
+ isEmptyObject: () => (isEmptyObject),
461
+ isEmptyString: () => (isEmptyString),
462
+ strEllipsis: () => (strEllipsis)
463
+ });
464
+ /* provided dependency */ var $ReactRefreshRuntime$ = __webpack_require__("./node_modules/@rspack/plugin-react-refresh/client/reactRefresh.js");
465
+ /**
466
+ * Helper function to check if a value is null or undefined
467
+ */ const isNullOrUndefined = (value)=>{
468
+ return value === null || value === undefined;
469
+ };
470
+ /**
471
+ * Checks if a string is empty (after trimming whitespace)
472
+ * @param value - The string to check
473
+ * @returns true if the string is empty or only whitespace, false otherwise
474
+ */ const isEmptyString = (value)=>{
475
+ if (isNullOrUndefined(value)) {
476
+ return true;
477
+ }
478
+ if (typeof value !== 'string') {
479
+ return false;
480
+ }
481
+ return value.trim().length === 0;
482
+ };
483
+ /**
484
+ * Checks if an array is empty
485
+ * @param value - The array to check
486
+ * @returns true if the array is empty, false otherwise
487
+ */ const isEmptyArray = (value)=>{
488
+ if (isNullOrUndefined(value)) {
489
+ return true;
490
+ }
491
+ if (!Array.isArray(value)) {
492
+ return false;
493
+ }
494
+ return value.length === 0;
495
+ };
496
+ /**
497
+ * Checks if an object is empty (has no keys)
498
+ * @param value - The object to check
499
+ * @returns true if the object is empty, false otherwise
500
+ */ const isEmptyObject = (value)=>{
501
+ if (isNullOrUndefined(value)) {
502
+ return true;
503
+ }
504
+ if (Array.isArray(value) || value.constructor !== Object) {
505
+ return false;
506
+ }
507
+ return Object.keys(value).length === 0;
508
+ };
509
+ /**
510
+ * Checks if a value is empty
511
+ * @param value - The value to check (string, array, or object)
512
+ * @returns true if the value is empty, false otherwise
513
+ */ const isEmpty = (value)=>{
514
+ if (isNullOrUndefined(value)) {
515
+ return true;
516
+ }
517
+ // Handle strings
518
+ if (typeof value === 'string') {
519
+ return isEmptyString(value);
520
+ }
521
+ // Handle arrays
522
+ if (Array.isArray(value)) {
523
+ return isEmptyArray(value);
524
+ }
525
+ // Handle objects
526
+ if (typeof value === 'object') {
527
+ return isEmptyObject(value);
528
+ }
529
+ // For other types, consider them as not empty
530
+ return false;
531
+ };
532
+ const colors = [
533
+ '#e57373',
534
+ '#f06292',
535
+ '#ba68c8',
536
+ '#9575cd',
537
+ '#c5cae9',
538
+ '#7986cb',
539
+ '#4fc3f7',
540
+ '#4dd0e1',
541
+ '#4db6ac',
542
+ '#81c784',
543
+ '#aed581',
544
+ '#dce775',
545
+ '#ffee58',
546
+ '#ffca28',
547
+ '#ff7043',
548
+ '#8d6e63',
549
+ '#bdbdbd'
550
+ ];
551
+ const getColorFromId = (id)=>{
552
+ if (!id && id !== 0) return colors[0];
553
+ const str = String(id);
554
+ const code = str.split('').reduce((acc, ch)=>acc + ch.charCodeAt(0), 0);
555
+ return colors[code % colors.length];
556
+ };
557
+ /**
558
+ * Extracts initials from a name string
559
+ * @param nameValue - The name string to extract initials from
560
+ * @returns A string containing up to 2 uppercase initials
561
+ */ const getFormattedName = (nameValue)=>{
562
+ if (!nameValue) return '';
563
+ return nameValue.slice().split(' ').map((word)=>word[0] || '').join('').slice(0, 2).toUpperCase();
564
+ };
565
+ /**
566
+ * Truncates a string to a specified length and adds ellipsis if needed
567
+ * @param str - The value to truncate (string, number, boolean, null, or undefined)
568
+ * @param length - Maximum length before truncation (default: 25)
569
+ * @returns Truncated string with ellipsis if needed, or the original string if shorter
570
+ */ const strEllipsis = function(str) {
571
+ let length = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : 25;
572
+ const stringValue = typeof str === 'string' ? str.trim() : String(str ?? '');
573
+ return stringValue.length > length ? `${stringValue.substring(0, length)}...` : stringValue;
574
+ };
575
+
576
+ function $RefreshSig$() { return $ReactRefreshRuntime$.createSignatureFunctionForTransform() }
577
+ function $RefreshReg$(type, id) { $ReactRefreshRuntime$.register(type, module.id + "_" + id) }
578
+ Promise.resolve().then(() => { $ReactRefreshRuntime$.refresh(module.id, module.hot) });
579
+
580
+
581
+ },
582
+ "./src/utils/index.ts"(module, __webpack_exports__, __webpack_require__) {
583
+ __webpack_require__.r(__webpack_exports__);
584
+ __webpack_require__.d(__webpack_exports__, {
585
+ formatDate: () => (/* reexport safe */ _date__rspack_import_0.formatDate),
586
+ getColorFromId: () => (/* reexport safe */ _global__rspack_import_2.getColorFromId),
587
+ getFormattedName: () => (/* reexport safe */ _global__rspack_import_2.getFormattedName),
588
+ getLocalStorageItem: () => (/* reexport safe */ _localStorage__rspack_import_3.getLocalStorageItem),
589
+ getSessionStorageItem: () => (/* reexport safe */ _sessionStorage__rspack_import_4.getSessionStorageItem),
590
+ isEmpty: () => (/* reexport safe */ _global__rspack_import_2.isEmpty),
591
+ isEmptyArray: () => (/* reexport safe */ _global__rspack_import_2.isEmptyArray),
592
+ isEmptyObject: () => (/* reexport safe */ _global__rspack_import_2.isEmptyObject),
593
+ isEmptyString: () => (/* reexport safe */ _global__rspack_import_2.isEmptyString),
594
+ isValidEmail: () => (/* reexport safe */ _email__rspack_import_1.isValidEmail),
595
+ parseDate: () => (/* reexport safe */ _date__rspack_import_0.parseDate),
596
+ removeLocalStorageItem: () => (/* reexport safe */ _localStorage__rspack_import_3.removeLocalStorageItem),
597
+ removeSessionStorageItem: () => (/* reexport safe */ _sessionStorage__rspack_import_4.removeSessionStorageItem),
598
+ setLocalStorageItem: () => (/* reexport safe */ _localStorage__rspack_import_3.setLocalStorageItem),
599
+ setSessionStorageItem: () => (/* reexport safe */ _sessionStorage__rspack_import_4.setSessionStorageItem),
600
+ strEllipsis: () => (/* reexport safe */ _global__rspack_import_2.strEllipsis)
601
+ });
602
+ /* import */ var _date__rspack_import_0 = __webpack_require__("./src/utils/date.ts");
603
+ /* import */ var _email__rspack_import_1 = __webpack_require__("./src/utils/email.ts");
604
+ /* import */ var _global__rspack_import_2 = __webpack_require__("./src/utils/global.ts");
605
+ /* import */ var _localStorage__rspack_import_3 = __webpack_require__("./src/utils/localStorage.ts");
606
+ /* import */ var _sessionStorage__rspack_import_4 = __webpack_require__("./src/utils/sessionStorage.ts");
607
+ /* provided dependency */ var $ReactRefreshRuntime$ = __webpack_require__("./node_modules/@rspack/plugin-react-refresh/client/reactRefresh.js");
608
+
609
+
610
+
611
+
612
+
613
+
614
+ function $RefreshSig$() { return $ReactRefreshRuntime$.createSignatureFunctionForTransform() }
615
+ function $RefreshReg$(type, id) { $ReactRefreshRuntime$.register(type, module.id + "_" + id) }
616
+ Promise.resolve().then(() => { $ReactRefreshRuntime$.refresh(module.id, module.hot) });
617
+
618
+
619
+ },
620
+ "./src/utils/localStorage.ts"(module, __webpack_exports__, __webpack_require__) {
621
+ __webpack_require__.r(__webpack_exports__);
622
+ __webpack_require__.d(__webpack_exports__, {
623
+ getLocalStorageItem: () => (getLocalStorageItem),
624
+ removeLocalStorageItem: () => (removeLocalStorageItem),
625
+ setLocalStorageItem: () => (setLocalStorageItem)
626
+ });
627
+ /* provided dependency */ var $ReactRefreshRuntime$ = __webpack_require__("./node_modules/@rspack/plugin-react-refresh/client/reactRefresh.js");
628
+ /**
629
+ * Retrieves an item from localStorage and parses it as JSON
630
+ * @param key - The localStorage key to retrieve
631
+ * @returns The parsed value if found and valid, null otherwise
632
+ */ const getLocalStorageItem = (key)=>{
633
+ try {
634
+ const item = window.localStorage.getItem(key);
635
+ return item ? JSON.parse(item) : null;
636
+ } catch (_error) {
637
+ return null;
638
+ }
639
+ };
640
+ /**
641
+ * Sets an item in localStorage with JSON stringification
642
+ * @param key - The localStorage key to set
643
+ * @param value - The value to store (will be stringified as JSON)
644
+ * @returns true if successful, false if an error occurred
645
+ */ const setLocalStorageItem = (key, value)=>{
646
+ try {
647
+ window.localStorage.setItem(key, JSON.stringify(value));
648
+ return true;
649
+ } catch (_error) {
650
+ return false;
651
+ }
652
+ };
653
+ /**
654
+ * Removes an item from localStorage
655
+ * @param key - The localStorage key to remove
656
+ * @returns true if successful, false if an error occurred
657
+ */ const removeLocalStorageItem = (key)=>{
658
+ try {
659
+ window.localStorage.removeItem(key);
660
+ return true;
661
+ } catch {
662
+ return false;
663
+ }
664
+ };
665
+
666
+ function $RefreshSig$() { return $ReactRefreshRuntime$.createSignatureFunctionForTransform() }
667
+ function $RefreshReg$(type, id) { $ReactRefreshRuntime$.register(type, module.id + "_" + id) }
668
+ Promise.resolve().then(() => { $ReactRefreshRuntime$.refresh(module.id, module.hot) });
669
+
670
+
671
+ },
672
+ "./src/utils/sessionStorage.ts"(module, __webpack_exports__, __webpack_require__) {
673
+ __webpack_require__.r(__webpack_exports__);
674
+ __webpack_require__.d(__webpack_exports__, {
675
+ getSessionStorageItem: () => (getSessionStorageItem),
676
+ removeSessionStorageItem: () => (removeSessionStorageItem),
677
+ setSessionStorageItem: () => (setSessionStorageItem)
678
+ });
679
+ /* provided dependency */ var $ReactRefreshRuntime$ = __webpack_require__("./node_modules/@rspack/plugin-react-refresh/client/reactRefresh.js");
680
+ /**
681
+ * Retrieves an item from sessionStorage and parses it as JSON
682
+ * @param key - The sessionStorage key to retrieve
683
+ * @returns The parsed value if found and valid, null otherwise
684
+ */ const getSessionStorageItem = (key)=>{
685
+ try {
686
+ const item = window.sessionStorage.getItem(key);
687
+ return item ? JSON.parse(item) : null;
688
+ } catch {
689
+ return null;
690
+ }
691
+ };
692
+ /**
693
+ * Sets an item in sessionStorage with JSON stringification
694
+ * @param key - The sessionStorage key to set
695
+ * @param value - The value to store (will be stringified as JSON)
696
+ * @returns true if successful, false if an error occurred
697
+ */ const setSessionStorageItem = (key, value)=>{
698
+ try {
699
+ window.sessionStorage.setItem(key, JSON.stringify(value));
700
+ return true;
701
+ } catch {
702
+ return false;
703
+ }
704
+ };
705
+ /**
706
+ * Removes an item from sessionStorage
707
+ * @param key - The sessionStorage key to remove
708
+ * @returns true if successful, false if an error occurred
709
+ */ const removeSessionStorageItem = (key)=>{
710
+ try {
711
+ window.sessionStorage.removeItem(key);
712
+ return true;
713
+ } catch {
714
+ return false;
715
+ }
716
+ };
717
+
718
+ function $RefreshSig$() { return $ReactRefreshRuntime$.createSignatureFunctionForTransform() }
719
+ function $RefreshReg$(type, id) { $ReactRefreshRuntime$.register(type, module.id + "_" + id) }
720
+ Promise.resolve().then(() => { $ReactRefreshRuntime$.refresh(module.id, module.hot) });
721
+
722
+
723
+ },
724
+ "dayjs"(module) {
725
+
726
+ module.exports = __rspack_external_dayjs;
727
+
728
+
729
+ },
730
+ "./node_modules/@rspack/plugin-react-refresh/client/reactRefresh.js"(module, __unused_rspack_exports, __webpack_require__) {
731
+ const RefreshUtils = __webpack_require__("./node_modules/@rspack/plugin-react-refresh/client/refreshUtils.js");
732
+ const RefreshRuntime = __webpack_require__("./node_modules/react-refresh/runtime.js");
733
+
734
+ function refresh(moduleId, webpackHot) {
735
+ const currentExports = RefreshUtils.getModuleExports(moduleId);
736
+ const fn = (exports) => {
737
+ var errorOverlay;
738
+ if (true) {
739
+ errorOverlay = false;
740
+ }
741
+ var testMode;
742
+ if (typeof __react_refresh_test__ !== 'undefined') {
743
+ testMode = __react_refresh_test__;
744
+ }
745
+ RefreshUtils.executeRuntime(
746
+ exports,
747
+ moduleId,
748
+ webpackHot,
749
+ errorOverlay,
750
+ testMode,
751
+ );
752
+ };
753
+ if (typeof Promise !== 'undefined' && currentExports instanceof Promise) {
754
+ currentExports.then(fn);
755
+ } else {
756
+ fn(currentExports);
757
+ }
758
+ }
759
+
760
+ module.exports = {
761
+ refresh,
762
+ register: RefreshRuntime.register,
763
+ createSignatureFunctionForTransform:
764
+ RefreshRuntime.createSignatureFunctionForTransform,
765
+ };
766
+
767
+
768
+ },
769
+ "./node_modules/@rspack/plugin-react-refresh/client/reactRefreshEntry.js"(__unused_rspack_module, __unused_rspack_exports, __webpack_require__) {
770
+ var RefreshRuntime = __webpack_require__("./node_modules/react-refresh/runtime.js");
771
+ var safeThis = (function () {
772
+ // copied from core-js-pure/features/global-this
773
+ 'use strict';
774
+
775
+ var check = function (it) {
776
+ return it && it.Math == Math && it;
777
+ };
778
+
779
+ // https://github.com/zloirock/core-js/issues/86#issuecomment-115759028
780
+ // eslint-disable-next-line es/no-global-this -- safe
781
+ return (
782
+ check(typeof globalThis == 'object' && globalThis) ||
783
+ check(typeof window == 'object' && window) ||
784
+ // eslint-disable-next-line no-restricted-globals -- safe
785
+ check(typeof self == 'object' && self) ||
786
+ check(typeof __webpack_require__.g == 'object' && __webpack_require__.g) ||
787
+ // eslint-disable-next-line no-new-func -- fallback
788
+ (function () {
789
+ return this;
790
+ })() ||
791
+ this ||
792
+ Function('return this')()
793
+ );
794
+ })();
795
+
796
+ if (true) {
797
+ if (typeof safeThis !== 'undefined') {
798
+ var $RefreshInjected$ = '__reactRefreshInjected';
799
+ // Namespace the injected flag (if necessary) for monorepo compatibility
800
+ if (
801
+ false
802
+ ) {}
803
+
804
+ // Only inject the runtime if it hasn't been injected
805
+ if (!safeThis[$RefreshInjected$]) {
806
+ RefreshRuntime.injectIntoGlobalHook(safeThis);
807
+
808
+ // Empty implementation to avoid "ReferenceError: variable is not defined" in module which didn't pass builtin:react-refresh-loader
809
+ safeThis.$RefreshSig$ = () => (type) => type;
810
+ safeThis.$RefreshReg$ = () => {};
811
+
812
+ // Mark the runtime as injected to prevent double-injection
813
+ safeThis[$RefreshInjected$] = true;
814
+ }
815
+ }
816
+ }
817
+
818
+
819
+ },
820
+ "./node_modules/@rspack/plugin-react-refresh/client/refreshUtils.js"(module, __unused_rspack_exports, __webpack_require__) {
821
+ /* global __webpack_require__ */
822
+ var Refresh = __webpack_require__("./node_modules/react-refresh/runtime.js");
823
+
824
+ /**
825
+ * Extracts exports from a webpack module object.
826
+ * @param {string} moduleId A Webpack module ID.
827
+ * @returns {*} An exports object from the module.
828
+ */
829
+ function getModuleExports(moduleId) {
830
+ if (typeof moduleId === 'undefined') {
831
+ // `moduleId` is unavailable, which indicates that this module is not in the cache,
832
+ // which means we won't be able to capture any exports,
833
+ // and thus they cannot be refreshed safely.
834
+ // These are likely runtime or dynamically generated modules.
835
+ return {};
836
+ }
837
+
838
+ var maybeModule = __webpack_require__.c[moduleId];
839
+ if (typeof maybeModule === 'undefined') {
840
+ // `moduleId` is available but the module in cache is unavailable,
841
+ // which indicates the module is somehow corrupted (e.g. broken Webpacak `module` globals).
842
+ // We will warn the user (as this is likely a mistake) and assume they cannot be refreshed.
843
+ console.warn(
844
+ '[React Refresh] Failed to get exports for module: ' + moduleId + '.',
845
+ );
846
+ return {};
847
+ }
848
+
849
+ var exportsOrPromise = maybeModule.exports;
850
+ if (typeof Promise !== 'undefined' && exportsOrPromise instanceof Promise) {
851
+ return exportsOrPromise.then(function (exports) {
852
+ return exports;
853
+ });
854
+ }
855
+ return exportsOrPromise;
856
+ }
857
+
858
+ /**
859
+ * Calculates the signature of a React refresh boundary.
860
+ * If this signature changes, it's unsafe to accept the boundary.
861
+ *
862
+ * This implementation is based on the one in [Metro](https://github.com/facebook/metro/blob/907d6af22ac6ebe58572be418e9253a90665ecbd/packages/metro/src/lib/polyfills/require.js#L795-L816).
863
+ * @param {*} moduleExports A Webpack module exports object.
864
+ * @returns {string[]} A React refresh boundary signature array.
865
+ */
866
+ function getReactRefreshBoundarySignature(moduleExports) {
867
+ var signature = [];
868
+ signature.push(Refresh.getFamilyByType(moduleExports));
869
+
870
+ if (moduleExports == null || typeof moduleExports !== 'object') {
871
+ // Exit if we can't iterate over exports.
872
+ return signature;
873
+ }
874
+
875
+ for (var key in moduleExports) {
876
+ if (key === '__esModule') {
877
+ continue;
878
+ }
879
+
880
+ signature.push(key);
881
+ signature.push(Refresh.getFamilyByType(moduleExports[key]));
882
+ }
883
+
884
+ return signature;
885
+ }
886
+
887
+ /**
888
+ * Creates a helper that performs a delayed React refresh.
889
+ * @returns {function(function(): void): void} A debounced React refresh function.
890
+ */
891
+ function createDebounceUpdate() {
892
+ /**
893
+ * A cached setTimeout handler.
894
+ * @type {number | undefined}
895
+ */
896
+ var refreshTimeout;
897
+
898
+ /**
899
+ * Performs react refresh on a delay and clears the error overlay.
900
+ * @param {function(): void} callback
901
+ * @returns {void}
902
+ */
903
+ function enqueueUpdate(callback) {
904
+ if (typeof refreshTimeout === 'undefined') {
905
+ refreshTimeout = setTimeout(function () {
906
+ refreshTimeout = undefined;
907
+ Refresh.performReactRefresh();
908
+ callback();
909
+ }, 30);
910
+ }
911
+ }
912
+
913
+ return enqueueUpdate;
914
+ }
915
+
916
+ /**
917
+ * Checks if all exports are likely a React component.
918
+ *
919
+ * This implementation is based on the one in [Metro](https://github.com/facebook/metro/blob/febdba2383113c88296c61e28e4ef6a7f4939fda/packages/metro/src/lib/polyfills/require.js#L748-L774).
920
+ * @param {*} moduleExports A Webpack module exports object.
921
+ * @returns {boolean} Whether the exports are React component like.
922
+ */
923
+ function isReactRefreshBoundary(moduleExports) {
924
+ if (Refresh.isLikelyComponentType(moduleExports)) {
925
+ return true;
926
+ }
927
+ if (
928
+ moduleExports === undefined ||
929
+ moduleExports === null ||
930
+ typeof moduleExports !== 'object'
931
+ ) {
932
+ // Exit if we can't iterate over exports.
933
+ return false;
934
+ }
935
+
936
+ var hasExports = false;
937
+ var areAllExportsComponents = true;
938
+ for (var key in moduleExports) {
939
+ hasExports = true;
940
+
941
+ // This is the ES Module indicator flag
942
+ if (key === '__esModule') {
943
+ continue;
944
+ }
945
+
946
+ // We can (and have to) safely execute getters here,
947
+ // as Webpack manually assigns harmony exports to getters,
948
+ // without any side-effects attached.
949
+ // Ref: https://github.com/webpack/webpack/blob/b93048643fe74de2a6931755911da1212df55897/lib/MainTemplate.js#L281
950
+ var exportValue = moduleExports[key];
951
+ if (!Refresh.isLikelyComponentType(exportValue)) {
952
+ areAllExportsComponents = false;
953
+ }
954
+ }
955
+
956
+ return hasExports && areAllExportsComponents;
957
+ }
958
+
959
+ /**
960
+ * Checks if exports are likely a React component and registers them.
961
+ *
962
+ * This implementation is based on the one in [Metro](https://github.com/facebook/metro/blob/febdba2383113c88296c61e28e4ef6a7f4939fda/packages/metro/src/lib/polyfills/require.js#L818-L835).
963
+ * @param {*} moduleExports A Webpack module exports object.
964
+ * @param {string} moduleId A Webpack module ID.
965
+ * @returns {void}
966
+ */
967
+ function registerExportsForReactRefresh(moduleExports, moduleId) {
968
+ if (Refresh.isLikelyComponentType(moduleExports)) {
969
+ // Register module.exports if it is likely a component
970
+ Refresh.register(moduleExports, moduleId + ' %exports%');
971
+ }
972
+
973
+ if (
974
+ moduleExports === undefined ||
975
+ moduleExports === null ||
976
+ typeof moduleExports !== 'object'
977
+ ) {
978
+ // Exit if we can't iterate over the exports.
979
+ return;
980
+ }
981
+
982
+ for (var key in moduleExports) {
983
+ // Skip registering the ES Module indicator
984
+ if (key === '__esModule') {
985
+ continue;
986
+ }
987
+
988
+ var exportValue = moduleExports[key];
989
+ if (Refresh.isLikelyComponentType(exportValue)) {
990
+ var typeID = moduleId + ' %exports% ' + key;
991
+ Refresh.register(exportValue, typeID);
992
+ }
993
+ }
994
+ }
995
+
996
+ /**
997
+ * Compares previous and next module objects to check for mutated boundaries.
998
+ *
999
+ * This implementation is based on the one in [Metro](https://github.com/facebook/metro/blob/907d6af22ac6ebe58572be418e9253a90665ecbd/packages/metro/src/lib/polyfills/require.js#L776-L792).
1000
+ * @param {*} prevExports The current Webpack module exports object.
1001
+ * @param {*} nextExports The next Webpack module exports object.
1002
+ * @returns {boolean} Whether the React refresh boundary should be invalidated.
1003
+ */
1004
+ function shouldInvalidateReactRefreshBoundary(prevExports, nextExports) {
1005
+ var prevSignature = getReactRefreshBoundarySignature(prevExports);
1006
+ var nextSignature = getReactRefreshBoundarySignature(nextExports);
1007
+
1008
+ if (prevSignature.length !== nextSignature.length) {
1009
+ return true;
1010
+ }
1011
+
1012
+ for (var i = 0; i < nextSignature.length; i += 1) {
1013
+ if (prevSignature[i] !== nextSignature[i]) {
1014
+ return true;
1015
+ }
1016
+ }
1017
+
1018
+ return false;
1019
+ }
1020
+
1021
+ var enqueueUpdate = createDebounceUpdate();
1022
+
1023
+ function executeRuntime(
1024
+ moduleExports,
1025
+ moduleId,
1026
+ webpackHot,
1027
+ refreshOverlay,
1028
+ isTest,
1029
+ ) {
1030
+ registerExportsForReactRefresh(moduleExports, moduleId);
1031
+
1032
+ if (webpackHot) {
1033
+ var isHotUpdate = !!webpackHot.data;
1034
+ var prevExports;
1035
+ if (isHotUpdate) {
1036
+ prevExports = webpackHot.data.prevExports;
1037
+ }
1038
+
1039
+ if (isReactRefreshBoundary(moduleExports)) {
1040
+ webpackHot.dispose(
1041
+ /**
1042
+ * A callback to performs a full refresh if React has unrecoverable errors,
1043
+ * and also caches the to-be-disposed module.
1044
+ * @param {*} data A hot module data object from Webpack HMR.
1045
+ * @returns {void}
1046
+ */
1047
+ function hotDisposeCallback(data) {
1048
+ // We have to mutate the data object to get data registered and cached
1049
+ data.prevExports = moduleExports;
1050
+ },
1051
+ );
1052
+ webpackHot.accept(
1053
+ /**
1054
+ * An error handler to allow self-recovering behaviours.
1055
+ * @param {Error} error An error occurred during evaluation of a module.
1056
+ * @returns {void}
1057
+ */
1058
+ function hotErrorHandler(error) {
1059
+ console.error(error);
1060
+ if (
1061
+ false
1062
+ ) {}
1063
+
1064
+ if (typeof refreshOverlay !== 'undefined' && refreshOverlay) {
1065
+ refreshOverlay.handleRuntimeError(error);
1066
+ }
1067
+
1068
+ if (typeof isTest !== 'undefined' && isTest) {
1069
+ if (window.onHotAcceptError) {
1070
+ window.onHotAcceptError(error.message);
1071
+ }
1072
+ }
1073
+
1074
+ __webpack_require__.c[moduleId].hot.accept(hotErrorHandler);
1075
+ },
1076
+ );
1077
+
1078
+ if (isHotUpdate) {
1079
+ if (
1080
+ isReactRefreshBoundary(prevExports) &&
1081
+ shouldInvalidateReactRefreshBoundary(prevExports, moduleExports)
1082
+ ) {
1083
+ webpackHot.invalidate();
1084
+ } else {
1085
+ enqueueUpdate(
1086
+ /**
1087
+ * A function to dismiss the error overlay after performing React refresh.
1088
+ * @returns {void}
1089
+ */
1090
+ function updateCallback() {
1091
+ if (typeof refreshOverlay !== 'undefined' && refreshOverlay) {
1092
+ refreshOverlay.clearRuntimeErrors();
1093
+ }
1094
+ },
1095
+ );
1096
+ }
1097
+ }
1098
+ } else {
1099
+ if (isHotUpdate && typeof prevExports !== 'undefined') {
1100
+ webpackHot.invalidate();
1101
+ }
1102
+ }
1103
+ }
1104
+ }
1105
+
1106
+ function isUnrecoverableRuntimeError(error) {
1107
+ return error.message.startsWith('RuntimeError: factory is undefined');
1108
+ }
1109
+
1110
+ module.exports = Object.freeze({
1111
+ enqueueUpdate: enqueueUpdate,
1112
+ executeRuntime: executeRuntime,
1113
+ getModuleExports: getModuleExports,
1114
+ isReactRefreshBoundary: isReactRefreshBoundary,
1115
+ shouldInvalidateReactRefreshBoundary: shouldInvalidateReactRefreshBoundary,
1116
+ registerExportsForReactRefresh: registerExportsForReactRefresh,
1117
+ });
1118
+
1119
+
1120
+ },
1121
+
1122
+ });
1123
+ // The module cache
1124
+ var __webpack_module_cache__ = {};
1125
+
1126
+ // The require function
1127
+ function __webpack_require__(moduleId) {
1128
+
1129
+ // Check if module is in cache
1130
+ var cachedModule = __webpack_module_cache__[moduleId];
1131
+ if (cachedModule !== undefined) {
1132
+ if (cachedModule.error !== undefined) throw cachedModule.error;
1133
+ return cachedModule.exports;
1134
+ }
1135
+ // Create a new module (and put it into the cache)
1136
+ var module = (__webpack_module_cache__[moduleId] = {
1137
+ id: moduleId,
1138
+ exports: {}
1139
+ });
1140
+ // Execute the module function
1141
+ try {
1142
+
1143
+
1144
+ var execOptions = { id: moduleId, module: module, factory: __webpack_modules__[moduleId], require: __webpack_require__ };
1145
+ __webpack_require__.i.forEach(function(handler) { handler(execOptions); });
1146
+ module = execOptions.module;
1147
+ if (!execOptions.factory) {
1148
+ console.error("undefined factory", moduleId);
1149
+ throw Error("RuntimeError: factory is undefined (" + moduleId + ")");
1150
+ }
1151
+ execOptions.factory.call(module.exports, module, module.exports, execOptions.require);
1152
+
1153
+ } catch (e) {
1154
+ module.error = e;
1155
+ throw e;
1156
+ }
1157
+ // Return the exports of the module
1158
+ return module.exports;
1159
+
1160
+ }
1161
+
1162
+ // expose the module cache
1163
+ __webpack_require__.c = __webpack_module_cache__;
1164
+
1165
+ // expose the module execution interceptor
1166
+ __webpack_require__.i = [];
1167
+
1168
+ // webpack/runtime/define_property_getters
1169
+ (() => {
1170
+ __webpack_require__.d = (exports, definition) => {
1171
+ for(var key in definition) {
1172
+ if(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {
1173
+ Object.defineProperty(exports, key, { enumerable: true, get: definition[key] });
1174
+ }
1175
+ }
1176
+ };
1177
+ })();
1178
+ // webpack/runtime/get mini-css chunk filename
1179
+ (() => {
1180
+ // This function allow to reference chunks
1181
+ __webpack_require__.miniCssF = (chunkId) => {
1182
+ // return url for filenames not based on template
1183
+
1184
+ // return url for filenames based on template
1185
+ return "" + chunkId + ".css"
1186
+ }
1187
+ })();
1188
+ // webpack/runtime/has_own_property
1189
+ (() => {
1190
+ __webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))
1191
+ })();
1192
+ // webpack/runtime/hot_module_replacement
1193
+ (() => {
1194
+ var currentModuleData = {};
1195
+ var installedModules = __webpack_require__.c;
1196
+
1197
+ // module and require creation
1198
+ var currentChildModule;
1199
+ var currentParents = [];
1200
+
1201
+ // status
1202
+ var registeredStatusHandlers = [];
1203
+ var currentStatus = "idle";
1204
+
1205
+ // while downloading
1206
+ var blockingPromises = 0;
1207
+ var blockingPromisesWaiting = [];
1208
+
1209
+ // The update info
1210
+ var currentUpdateApplyHandlers;
1211
+ var queuedInvalidatedModules;
1212
+
1213
+ __webpack_require__.hmrD = currentModuleData;
1214
+ __webpack_require__.i.push(function (options) {
1215
+ var module = options.module;
1216
+ var require = createRequire(options.require, options.id);
1217
+ module.hot = createModuleHotObject(options.id, module);
1218
+ module.parents = currentParents;
1219
+ module.children = [];
1220
+ currentParents = [];
1221
+ options.require = require;
1222
+ });
1223
+
1224
+ __webpack_require__.hmrC = {};
1225
+ __webpack_require__.hmrI = {};
1226
+
1227
+ function createRequire(require, moduleId) {
1228
+ var me = installedModules[moduleId];
1229
+ if (!me) return require;
1230
+ var fn = function (request) {
1231
+ if (me.hot.active) {
1232
+ if (installedModules[request]) {
1233
+ var parents = installedModules[request].parents;
1234
+ if (parents.indexOf(moduleId) === -1) {
1235
+ parents.push(moduleId);
1236
+ }
1237
+ } else {
1238
+ currentParents = [moduleId];
1239
+ currentChildModule = request;
1240
+ }
1241
+ if (me.children.indexOf(request) === -1) {
1242
+ me.children.push(request);
1243
+ }
1244
+ } else {
1245
+ console.warn(
1246
+ "[HMR] unexpected require(" +
1247
+ request +
1248
+ ") from disposed module " +
1249
+ moduleId
1250
+ );
1251
+ currentParents = [];
1252
+ }
1253
+ return require(request);
1254
+ };
1255
+ var createPropertyDescriptor = function (name) {
1256
+ return {
1257
+ configurable: true,
1258
+ enumerable: true,
1259
+ get: function () {
1260
+ return require[name];
1261
+ },
1262
+ set: function (value) {
1263
+ require[name] = value;
1264
+ }
1265
+ };
1266
+ };
1267
+ for (var name in require) {
1268
+ if (Object.prototype.hasOwnProperty.call(require, name) && name !== "e") {
1269
+ Object.defineProperty(fn, name, createPropertyDescriptor(name));
1270
+ }
1271
+ }
1272
+
1273
+ fn.e = function (chunkId, fetchPriority) {
1274
+ return trackBlockingPromise(require.e(chunkId, fetchPriority));
1275
+ };
1276
+
1277
+ return fn;
1278
+ }
1279
+
1280
+ function createModuleHotObject(moduleId, me) {
1281
+ var _main = currentChildModule !== moduleId;
1282
+ var hot = {
1283
+ _acceptedDependencies: {},
1284
+ _acceptedErrorHandlers: {},
1285
+ _declinedDependencies: {},
1286
+ _selfAccepted: false,
1287
+ _selfDeclined: false,
1288
+ _selfInvalidated: false,
1289
+ _disposeHandlers: [],
1290
+ _main: _main,
1291
+ _requireSelf: function () {
1292
+ currentParents = me.parents.slice();
1293
+ currentChildModule = _main ? undefined : moduleId;
1294
+ __webpack_require__(moduleId);
1295
+ },
1296
+ active: true,
1297
+ accept: function (dep, callback, errorHandler) {
1298
+ if (dep === undefined) hot._selfAccepted = true;
1299
+ else if (typeof dep === "function") hot._selfAccepted = dep;
1300
+ else if (typeof dep === "object" && dep !== null) {
1301
+ for (var i = 0; i < dep.length; i++) {
1302
+ hot._acceptedDependencies[dep[i]] = callback || function () { };
1303
+ hot._acceptedErrorHandlers[dep[i]] = errorHandler;
1304
+ }
1305
+ } else {
1306
+ hot._acceptedDependencies[dep] = callback || function () { };
1307
+ hot._acceptedErrorHandlers[dep] = errorHandler;
1308
+ }
1309
+ },
1310
+ decline: function (dep) {
1311
+ if (dep === undefined) hot._selfDeclined = true;
1312
+ else if (typeof dep === "object" && dep !== null)
1313
+ for (var i = 0; i < dep.length; i++)
1314
+ hot._declinedDependencies[dep[i]] = true;
1315
+ else hot._declinedDependencies[dep] = true;
1316
+ },
1317
+ dispose: function (callback) {
1318
+ hot._disposeHandlers.push(callback);
1319
+ },
1320
+ addDisposeHandler: function (callback) {
1321
+ hot._disposeHandlers.push(callback);
1322
+ },
1323
+ removeDisposeHandler: function (callback) {
1324
+ var idx = hot._disposeHandlers.indexOf(callback);
1325
+ if (idx >= 0) hot._disposeHandlers.splice(idx, 1);
1326
+ },
1327
+ invalidate: function () {
1328
+ this._selfInvalidated = true;
1329
+ switch (currentStatus) {
1330
+ case "idle":
1331
+ currentUpdateApplyHandlers = [];
1332
+ Object.keys(__webpack_require__.hmrI).forEach(function (key) {
1333
+ __webpack_require__.hmrI[key](moduleId, currentUpdateApplyHandlers);
1334
+ });
1335
+ setStatus("ready");
1336
+ break;
1337
+ case "ready":
1338
+ Object.keys(__webpack_require__.hmrI).forEach(function (key) {
1339
+ __webpack_require__.hmrI[key](moduleId, currentUpdateApplyHandlers);
1340
+ });
1341
+ break;
1342
+ case "prepare":
1343
+ case "check":
1344
+ case "dispose":
1345
+ case "apply":
1346
+ (queuedInvalidatedModules = queuedInvalidatedModules || []).push(
1347
+ moduleId
1348
+ );
1349
+ break;
1350
+ default:
1351
+ break;
1352
+ }
1353
+ },
1354
+ check: hotCheck,
1355
+ apply: hotApply,
1356
+ status: function (l) {
1357
+ if (!l) return currentStatus;
1358
+ registeredStatusHandlers.push(l);
1359
+ },
1360
+ addStatusHandler: function (l) {
1361
+ registeredStatusHandlers.push(l);
1362
+ },
1363
+ removeStatusHandler: function (l) {
1364
+ var idx = registeredStatusHandlers.indexOf(l);
1365
+ if (idx >= 0) registeredStatusHandlers.splice(idx, 1);
1366
+ },
1367
+ data: currentModuleData[moduleId]
1368
+ };
1369
+ currentChildModule = undefined;
1370
+ return hot;
1371
+ }
1372
+
1373
+ function setStatus(newStatus) {
1374
+ currentStatus = newStatus;
1375
+
1376
+ var results = [];
1377
+ for (var i = 0; i < registeredStatusHandlers.length; i++)
1378
+ results[i] = registeredStatusHandlers[i].call(null, newStatus);
1379
+
1380
+ return Promise.all(results).then(function () { });
1381
+ }
1382
+
1383
+ function unblock() {
1384
+ if (--blockingPromises === 0) {
1385
+ setStatus("ready").then(function () {
1386
+ if (blockingPromises === 0) {
1387
+ var list = blockingPromisesWaiting;
1388
+ blockingPromisesWaiting = [];
1389
+ for (var i = 0; i < list.length; i++) {
1390
+ list[i]();
1391
+ }
1392
+ }
1393
+ });
1394
+ }
1395
+ }
1396
+
1397
+ function trackBlockingPromise(promise) {
1398
+ switch (currentStatus) {
1399
+ case "ready":
1400
+ setStatus("prepare");
1401
+ case "prepare":
1402
+ blockingPromises++;
1403
+ promise.then(unblock, unblock);
1404
+ return promise;
1405
+ default:
1406
+ return promise;
1407
+ }
1408
+ }
1409
+
1410
+ function waitForBlockingPromises(fn) {
1411
+ if (blockingPromises === 0) return fn();
1412
+ return new Promise(function (resolve) {
1413
+ blockingPromisesWaiting.push(function () {
1414
+ resolve(fn());
1415
+ });
1416
+ });
1417
+ }
1418
+
1419
+ function hotCheck(applyOnUpdate) {
1420
+ if (currentStatus !== "idle") {
1421
+ throw new Error("check() is only allowed in idle status");
1422
+ }
1423
+
1424
+ return setStatus("check")
1425
+ .then(__webpack_require__.hmrM)
1426
+ .then(function (update) {
1427
+ if (!update) {
1428
+ return setStatus(applyInvalidatedModules() ? "ready" : "idle").then(
1429
+ function () {
1430
+ return null;
1431
+ }
1432
+ );
1433
+ }
1434
+
1435
+ return setStatus("prepare").then(function () {
1436
+ var updatedModules = [];
1437
+ currentUpdateApplyHandlers = [];
1438
+
1439
+ return Promise.all(
1440
+ Object.keys(__webpack_require__.hmrC).reduce(function (
1441
+ promises,
1442
+ key
1443
+ ) {
1444
+ __webpack_require__.hmrC[key](
1445
+ update.c,
1446
+ update.r,
1447
+ update.m,
1448
+ promises,
1449
+ currentUpdateApplyHandlers,
1450
+ updatedModules
1451
+ );
1452
+ return promises;
1453
+ },
1454
+ [])
1455
+ ).then(function () {
1456
+ return waitForBlockingPromises(function () {
1457
+ if (applyOnUpdate) {
1458
+ return internalApply(applyOnUpdate);
1459
+ }
1460
+ return setStatus("ready").then(function () {
1461
+ return updatedModules;
1462
+ });
1463
+ });
1464
+ });
1465
+ });
1466
+ });
1467
+ }
1468
+
1469
+ function hotApply(options) {
1470
+ if (currentStatus !== "ready") {
1471
+ return Promise.resolve().then(function () {
1472
+ throw new Error(
1473
+ "apply() is only allowed in ready status (state: " + currentStatus + ")"
1474
+ );
1475
+ });
1476
+ }
1477
+ return internalApply(options);
1478
+ }
1479
+
1480
+ function internalApply(options) {
1481
+ options = options || {};
1482
+ applyInvalidatedModules();
1483
+ var results = currentUpdateApplyHandlers.map(function (handler) {
1484
+ return handler(options);
1485
+ });
1486
+ currentUpdateApplyHandlers = undefined;
1487
+ var errors = results
1488
+ .map(function (r) {
1489
+ return r.error;
1490
+ })
1491
+ .filter(Boolean);
1492
+
1493
+ if (errors.length > 0) {
1494
+ return setStatus("abort").then(function () {
1495
+ throw errors[0];
1496
+ });
1497
+ }
1498
+
1499
+ var disposePromise = setStatus("dispose");
1500
+
1501
+ results.forEach(function (result) {
1502
+ if (result.dispose) result.dispose();
1503
+ });
1504
+
1505
+ var applyPromise = setStatus("apply");
1506
+
1507
+ var error;
1508
+ var reportError = function (err) {
1509
+ if (!error) error = err;
1510
+ };
1511
+
1512
+ var outdatedModules = [];
1513
+ results.forEach(function (result) {
1514
+ if (result.apply) {
1515
+ var modules = result.apply(reportError);
1516
+ if (modules) {
1517
+ for (var i = 0; i < modules.length; i++) {
1518
+ outdatedModules.push(modules[i]);
1519
+ }
1520
+ }
1521
+ }
1522
+ });
1523
+
1524
+ return Promise.all([disposePromise, applyPromise]).then(function () {
1525
+ if (error) {
1526
+ return setStatus("fail").then(function () {
1527
+ throw error;
1528
+ });
1529
+ }
1530
+
1531
+ if (queuedInvalidatedModules) {
1532
+ return internalApply(options).then(function (list) {
1533
+ outdatedModules.forEach(function (moduleId) {
1534
+ if (list.indexOf(moduleId) < 0) list.push(moduleId);
1535
+ });
1536
+ return list;
1537
+ });
1538
+ }
1539
+
1540
+ return setStatus("idle").then(function () {
1541
+ return outdatedModules;
1542
+ });
1543
+ });
1544
+ }
1545
+
1546
+ function applyInvalidatedModules() {
1547
+ if (queuedInvalidatedModules) {
1548
+ if (!currentUpdateApplyHandlers) currentUpdateApplyHandlers = [];
1549
+ Object.keys(__webpack_require__.hmrI).forEach(function (key) {
1550
+ queuedInvalidatedModules.forEach(function (moduleId) {
1551
+ __webpack_require__.hmrI[key](moduleId, currentUpdateApplyHandlers);
1552
+ });
1553
+ });
1554
+ queuedInvalidatedModules = undefined;
1555
+ return true;
1556
+ }
1557
+ }
1558
+
1559
+ })();
1560
+ // webpack/runtime/make_namespace_object
1561
+ (() => {
1562
+ // define __esModule on exports
1563
+ __webpack_require__.r = (exports) => {
1564
+ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
1565
+ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
1566
+ }
1567
+ Object.defineProperty(exports, '__esModule', { value: true });
1568
+ };
1569
+ })();
1570
+ // webpack/runtime/public_path
1571
+ (() => {
1572
+ __webpack_require__.p = "/";
1573
+ })();
1574
+ // webpack/runtime/css loading
1575
+ (() => {
1576
+ if (typeof document === "undefined") return;
1577
+ var createStylesheet = function (
1578
+ chunkId, fullhref, oldTag, resolve, reject
1579
+ ) {
1580
+ var linkTag = document.createElement("link");
1581
+
1582
+ linkTag.rel = "stylesheet";
1583
+
1584
+ linkTag.type = "text/css";
1585
+
1586
+ if (__webpack_require__.nc) {
1587
+ linkTag.nonce = __webpack_require__.nc;
1588
+ }
1589
+ linkTag.href = fullhref;
1590
+
1591
+ var onLinkComplete = function (event) {
1592
+ // avoid mem leaks.
1593
+ linkTag.onerror = linkTag.onload = null;
1594
+ if (event.type === 'load') {
1595
+ resolve();
1596
+ } else {
1597
+ var errorType = event && (event.type === 'load' ? 'missing' : event.type);
1598
+ var realHref = event && event.target && event.target.href || fullhref;
1599
+ var err = new Error("Loading CSS chunk " + chunkId + " failed.\\n(" + realHref + ")");
1600
+ err.code = "CSS_CHUNK_LOAD_FAILED";
1601
+ err.type = errorType;
1602
+ err.request = realHref;
1603
+ if (linkTag.parentNode) linkTag.parentNode.removeChild(linkTag)
1604
+ reject(err);
1605
+ }
1606
+ }
1607
+ linkTag.onerror = linkTag.onload = onLinkComplete;
1608
+ if (oldTag) {
1609
+ oldTag.parentNode.insertBefore(linkTag, oldTag.nextSibling);
1610
+ } else {
1611
+ document.head.appendChild(linkTag);
1612
+ }
1613
+ return linkTag;
1614
+ }
1615
+ var findStylesheet = function (href, fullhref) {
1616
+ var existingLinkTags = document.getElementsByTagName("link");
1617
+ for (var i = 0; i < existingLinkTags.length; i++) {
1618
+ var tag = existingLinkTags[i];
1619
+ var dataHref = tag.getAttribute("data-href") || tag.getAttribute("href");
1620
+ if (dataHref) {
1621
+ dataHref = dataHref.split('?')[0]
1622
+ }
1623
+ if (tag.rel === "stylesheet" && (dataHref === href || dataHref === fullhref)) return tag;
1624
+ }
1625
+
1626
+ var existingStyleTags = document.getElementsByTagName("style");
1627
+ for (var i = 0; i < existingStyleTags.length; i++) {
1628
+ var tag = existingStyleTags[i];
1629
+ var dataHref = tag.getAttribute("data-href");
1630
+ if (dataHref === href || dataHref === fullhref) return tag;
1631
+ }
1632
+ }
1633
+
1634
+ var loadStylesheet = function (chunkId) {
1635
+ return new Promise(function (resolve, reject) {
1636
+ var href = __webpack_require__.miniCssF(chunkId);
1637
+ var fullhref = __webpack_require__.p + href;
1638
+ if (findStylesheet(href, fullhref)) return resolve();
1639
+ createStylesheet(chunkId, fullhref, null, resolve, reject);
1640
+ })
1641
+ }
1642
+
1643
+ // no chunk loading
1644
+ var oldTags = [];
1645
+ var newTags = [];
1646
+ var applyHandler = function (options) {
1647
+ return {
1648
+ dispose: function () {
1649
+ for (var i = 0; i < oldTags.length; i++) {
1650
+ var oldTag = oldTags[i];
1651
+ if (oldTag.parentNode) oldTag.parentNode.removeChild(oldTag);
1652
+ }
1653
+ oldTags.length = 0;
1654
+ },
1655
+ apply: function () {
1656
+ for (var i = 0; i < newTags.length; i++) newTags[i].rel = "stylesheet";
1657
+ newTags.length = 0;
1658
+ }
1659
+ }
1660
+ }
1661
+ __webpack_require__.hmrC.miniCss = function (chunkIds, removedChunks, removedModules, promises, applyHandlers, updatedModulesList) {
1662
+ applyHandlers.push(applyHandler);
1663
+ chunkIds.forEach(function (chunkId) {
1664
+ var href = __webpack_require__.miniCssF(chunkId);
1665
+ var fullhref = __webpack_require__.p + href;
1666
+ var oldTag = findStylesheet(href, fullhref);
1667
+ if (!oldTag) return;
1668
+ promises.push(new Promise(function (resolve, reject) {
1669
+ var tag = createStylesheet(
1670
+ chunkId,
1671
+
1672
+ /**
1673
+ If dynamically add link tag through dom API and there is already a loaded style link, browsers sometimes treats the new link tag as the same link, and won't fetch the new style.
1674
+ Use query to avoid browser cache the link tag, force to re-fetch new style, this is the same strategy as updateCss API, this can happen during lazy compilation
1675
+ */
1676
+ `${fullhref}?${Date.now()}`,
1677
+ oldTag,
1678
+ function () {
1679
+ tag.as = "style";
1680
+ tag.rel = "preload";
1681
+ resolve();
1682
+ },
1683
+ reject
1684
+ );
1685
+ oldTags.push(oldTag);
1686
+ newTags.push(tag);
1687
+ }))
1688
+ });
1689
+ }
1690
+
1691
+ // no prefetch
1692
+ // no preload
1693
+ })();
1694
+ // module cache are used so entry inlining is disabled
1695
+ // startup
1696
+ // Load entry module and return exports
1697
+ __webpack_require__("./node_modules/@rspack/plugin-react-refresh/client/reactRefreshEntry.js");
1698
+ var __webpack_exports__ = __webpack_require__("./src/utils/index.ts");
1699
+ var __webpack_exports__formatDate = __webpack_exports__.formatDate;
1700
+ var __webpack_exports__getColorFromId = __webpack_exports__.getColorFromId;
1701
+ var __webpack_exports__getFormattedName = __webpack_exports__.getFormattedName;
1702
+ var __webpack_exports__getLocalStorageItem = __webpack_exports__.getLocalStorageItem;
1703
+ var __webpack_exports__getSessionStorageItem = __webpack_exports__.getSessionStorageItem;
1704
+ var __webpack_exports__isEmpty = __webpack_exports__.isEmpty;
1705
+ var __webpack_exports__isEmptyArray = __webpack_exports__.isEmptyArray;
1706
+ var __webpack_exports__isEmptyObject = __webpack_exports__.isEmptyObject;
1707
+ var __webpack_exports__isEmptyString = __webpack_exports__.isEmptyString;
1708
+ var __webpack_exports__isValidEmail = __webpack_exports__.isValidEmail;
1709
+ var __webpack_exports__parseDate = __webpack_exports__.parseDate;
1710
+ var __webpack_exports__removeLocalStorageItem = __webpack_exports__.removeLocalStorageItem;
1711
+ var __webpack_exports__removeSessionStorageItem = __webpack_exports__.removeSessionStorageItem;
1712
+ var __webpack_exports__setLocalStorageItem = __webpack_exports__.setLocalStorageItem;
1713
+ var __webpack_exports__setSessionStorageItem = __webpack_exports__.setSessionStorageItem;
1714
+ var __webpack_exports__strEllipsis = __webpack_exports__.strEllipsis;
1715
+ export { __webpack_exports__formatDate as formatDate, __webpack_exports__getColorFromId as getColorFromId, __webpack_exports__getFormattedName as getFormattedName, __webpack_exports__getLocalStorageItem as getLocalStorageItem, __webpack_exports__getSessionStorageItem as getSessionStorageItem, __webpack_exports__isEmpty as isEmpty, __webpack_exports__isEmptyArray as isEmptyArray, __webpack_exports__isEmptyObject as isEmptyObject, __webpack_exports__isEmptyString as isEmptyString, __webpack_exports__isValidEmail as isValidEmail, __webpack_exports__parseDate as parseDate, __webpack_exports__removeLocalStorageItem as removeLocalStorageItem, __webpack_exports__removeSessionStorageItem as removeSessionStorageItem, __webpack_exports__setLocalStorageItem as setLocalStorageItem, __webpack_exports__setSessionStorageItem as setSessionStorageItem, __webpack_exports__strEllipsis as strEllipsis };
1716
+
1717
+ //# sourceMappingURL=utils.js.map