prom-pal-ui 1.1.1 → 1.2.1

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 (45) hide show
  1. package/README.md +1 -0
  2. package/build/cjs/index.js +24085 -0
  3. package/build/esm/index.js +24036 -0
  4. package/build/function/cjs/index.js +6 -66
  5. package/build/function/esm/index.js +2 -62
  6. package/build/min/index.js +29 -0
  7. package/build/types/function/api/query.d.ts +2 -2
  8. package/build/types/index.d.ts +7 -1
  9. package/build/types/{components/ui → ui}/button.d.ts +2 -2
  10. package/build/types/{components/ui → ui}/fields/form.d.ts +6 -6
  11. package/build/types/ui/fields/switch.d.ts +9 -0
  12. package/build/types/ui/form.d.ts +35 -0
  13. package/build/types/{components → ui}/index.d.ts +3 -1
  14. package/build/types/ui/input.d.ts +8 -0
  15. package/build/types/ui/label.d.ts +4 -0
  16. package/build/types/ui/lib/form/rules/index.d.ts +2 -0
  17. package/build/types/ui/lib/form/rules/schema-msg.d.ts +5 -0
  18. package/build/types/ui/lib/form/rules/schema.d.ts +3 -0
  19. package/build/types/ui/lib/index.d.ts +2 -0
  20. package/build/types/ui/lib/utils.d.ts +2 -0
  21. package/build/types/ui/textarea.d.ts +8 -0
  22. package/build/types/ui/ui/button.d.ts +17 -0
  23. package/build/types/ui/ui/select.d.ts +15 -0
  24. package/build/types/ui/ui/skeleton.d.ts +2 -0
  25. package/build/types/ui/ui/switch.d.ts +4 -0
  26. package/build/types/ui/ui/test.d.ts +1 -0
  27. package/build/ui/cjs/index.js +1021 -1016
  28. package/build/ui/esm/index.js +965 -961
  29. package/package.json +2 -17
  30. /package/build/types/{components/lib → lib}/form/rules/index.d.ts +0 -0
  31. /package/build/types/{components/lib → lib}/form/rules/schema-msg.d.ts +0 -0
  32. /package/build/types/{components/lib → lib}/form/rules/schema.d.ts +0 -0
  33. /package/build/types/{components/lib → lib}/index.d.ts +0 -0
  34. /package/build/types/{components/lib → lib}/utils.d.ts +0 -0
  35. /package/build/types/{components/ui → ui}/fields/index.d.ts +0 -0
  36. /package/build/types/{components/ui → ui}/fields/input.d.ts +0 -0
  37. /package/build/types/{components/ui → ui}/fields/label.d.ts +0 -0
  38. /package/build/types/{components/ui → ui}/fields/select-field.d.ts +0 -0
  39. /package/build/types/{components/ui → ui}/fields/switch-field.d.ts +0 -0
  40. /package/build/types/{components/ui → ui}/fields/textarea.d.ts +0 -0
  41. /package/build/types/{components/ui → ui}/select.d.ts +0 -0
  42. /package/build/types/{components/ui → ui}/skeleton.d.ts +0 -0
  43. /package/build/types/{components/ui → ui}/switch.d.ts +0 -0
  44. /package/build/types/{components/ui → ui}/test.d.ts +0 -0
  45. /package/build/types/{components/ui → ui}/types.d.ts +0 -0
@@ -1,64 +1,10 @@
1
+ import { __rest, __assign, __spreadArray, __awaiter, __generator } from 'tslib';
1
2
  import * as React from 'react';
2
3
  import React__default, { forwardRef, createElement, useLayoutEffect, useState } from 'react';
3
4
  import * as ReactDOM from 'react-dom';
4
5
  import ReactDOM__default from 'react-dom';
5
6
  import { get, set as set$1, appendErrors, useForm, FormProvider, useFormContext, useFormState, Controller } from 'react-hook-form';
6
7
 
7
- /******************************************************************************
8
- Copyright (c) Microsoft Corporation.
9
-
10
- Permission to use, copy, modify, and/or distribute this software for any
11
- purpose with or without fee is hereby granted.
12
-
13
- THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
14
- REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
15
- AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
16
- INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
17
- LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
18
- OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
19
- PERFORMANCE OF THIS SOFTWARE.
20
- ***************************************************************************** */
21
- /* global Reflect, Promise, SuppressedError, Symbol, Iterator */
22
-
23
-
24
- var __assign = function() {
25
- __assign = Object.assign || function __assign(t) {
26
- for (var s, i = 1, n = arguments.length; i < n; i++) {
27
- s = arguments[i];
28
- for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
29
- }
30
- return t;
31
- };
32
- return __assign.apply(this, arguments);
33
- };
34
-
35
- function __rest(s, e) {
36
- var t = {};
37
- for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
38
- t[p] = s[p];
39
- if (s != null && typeof Object.getOwnPropertySymbols === "function")
40
- for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
41
- if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
42
- t[p[i]] = s[p[i]];
43
- }
44
- return t;
45
- }
46
-
47
- function __spreadArray(to, from, pack) {
48
- if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {
49
- if (ar || !(i in from)) {
50
- if (!ar) ar = Array.prototype.slice.call(from, 0, i);
51
- ar[i] = from[i];
52
- }
53
- }
54
- return to.concat(ar || Array.prototype.slice.call(from));
55
- }
56
-
57
- typeof SuppressedError === "function" ? SuppressedError : function (error, suppressed, message) {
58
- var e = new Error(message);
59
- return e.name = "SuppressedError", e.error = error, e.suppressed = suppressed, e;
60
- };
61
-
62
8
  var jsxRuntime = {exports: {}};
63
9
 
64
10
  var reactJsxRuntime_production = {};
@@ -4582,69 +4528,69 @@ class Class {
4582
4528
  }
4583
4529
 
4584
4530
  var util = /*#__PURE__*/Object.freeze({
4585
- __proto__: null,
4586
- BIGINT_FORMAT_RANGES: BIGINT_FORMAT_RANGES,
4587
- Class: Class,
4588
- NUMBER_FORMAT_RANGES: NUMBER_FORMAT_RANGES,
4589
- aborted: aborted,
4590
- allowsEval: allowsEval,
4591
- assert: assert,
4592
- assertEqual: assertEqual,
4593
- assertIs: assertIs,
4594
- assertNever: assertNever,
4595
- assertNotEqual: assertNotEqual,
4596
- assignProp: assignProp,
4597
- base64ToUint8Array: base64ToUint8Array,
4598
- base64urlToUint8Array: base64urlToUint8Array,
4599
- cached: cached,
4600
- captureStackTrace: captureStackTrace,
4601
- cleanEnum: cleanEnum,
4602
- cleanRegex: cleanRegex,
4603
- clone: clone,
4604
- cloneDef: cloneDef,
4605
- createTransparentProxy: createTransparentProxy,
4606
- defineLazy: defineLazy,
4607
- esc: esc,
4608
- escapeRegex: escapeRegex,
4609
- extend: extend,
4610
- finalizeIssue: finalizeIssue,
4611
- floatSafeRemainder: floatSafeRemainder,
4612
- getElementAtPath: getElementAtPath,
4613
- getEnumValues: getEnumValues,
4614
- getLengthableOrigin: getLengthableOrigin,
4615
- getParsedType: getParsedType,
4616
- getSizableOrigin: getSizableOrigin,
4617
- hexToUint8Array: hexToUint8Array,
4618
- isObject: isObject,
4619
- isPlainObject: isPlainObject,
4620
- issue: issue,
4621
- joinValues: joinValues,
4622
- jsonStringifyReplacer: jsonStringifyReplacer,
4623
- merge: merge,
4624
- mergeDefs: mergeDefs,
4625
- normalizeParams: normalizeParams,
4626
- nullish: nullish$1,
4627
- numKeys: numKeys,
4628
- objectClone: objectClone,
4629
- omit: omit,
4630
- optionalKeys: optionalKeys,
4631
- parsedType: parsedType,
4632
- partial: partial,
4633
- pick: pick,
4634
- prefixIssues: prefixIssues,
4635
- primitiveTypes: primitiveTypes,
4636
- promiseAllObject: promiseAllObject,
4637
- propertyKeyTypes: propertyKeyTypes,
4638
- randomString: randomString,
4639
- required: required,
4640
- safeExtend: safeExtend,
4641
- shallowClone: shallowClone,
4642
- slugify: slugify,
4643
- stringifyPrimitive: stringifyPrimitive,
4644
- uint8ArrayToBase64: uint8ArrayToBase64,
4645
- uint8ArrayToBase64url: uint8ArrayToBase64url,
4646
- uint8ArrayToHex: uint8ArrayToHex,
4647
- unwrapMessage: unwrapMessage
4531
+ __proto__: null,
4532
+ BIGINT_FORMAT_RANGES: BIGINT_FORMAT_RANGES,
4533
+ Class: Class,
4534
+ NUMBER_FORMAT_RANGES: NUMBER_FORMAT_RANGES,
4535
+ aborted: aborted,
4536
+ allowsEval: allowsEval,
4537
+ assert: assert,
4538
+ assertEqual: assertEqual,
4539
+ assertIs: assertIs,
4540
+ assertNever: assertNever,
4541
+ assertNotEqual: assertNotEqual,
4542
+ assignProp: assignProp,
4543
+ base64ToUint8Array: base64ToUint8Array,
4544
+ base64urlToUint8Array: base64urlToUint8Array,
4545
+ cached: cached,
4546
+ captureStackTrace: captureStackTrace,
4547
+ cleanEnum: cleanEnum,
4548
+ cleanRegex: cleanRegex,
4549
+ clone: clone,
4550
+ cloneDef: cloneDef,
4551
+ createTransparentProxy: createTransparentProxy,
4552
+ defineLazy: defineLazy,
4553
+ esc: esc,
4554
+ escapeRegex: escapeRegex,
4555
+ extend: extend,
4556
+ finalizeIssue: finalizeIssue,
4557
+ floatSafeRemainder: floatSafeRemainder,
4558
+ getElementAtPath: getElementAtPath,
4559
+ getEnumValues: getEnumValues,
4560
+ getLengthableOrigin: getLengthableOrigin,
4561
+ getParsedType: getParsedType,
4562
+ getSizableOrigin: getSizableOrigin,
4563
+ hexToUint8Array: hexToUint8Array,
4564
+ isObject: isObject,
4565
+ isPlainObject: isPlainObject,
4566
+ issue: issue,
4567
+ joinValues: joinValues,
4568
+ jsonStringifyReplacer: jsonStringifyReplacer,
4569
+ merge: merge,
4570
+ mergeDefs: mergeDefs,
4571
+ normalizeParams: normalizeParams,
4572
+ nullish: nullish$1,
4573
+ numKeys: numKeys,
4574
+ objectClone: objectClone,
4575
+ omit: omit,
4576
+ optionalKeys: optionalKeys,
4577
+ parsedType: parsedType,
4578
+ partial: partial,
4579
+ pick: pick,
4580
+ prefixIssues: prefixIssues,
4581
+ primitiveTypes: primitiveTypes,
4582
+ promiseAllObject: promiseAllObject,
4583
+ propertyKeyTypes: propertyKeyTypes,
4584
+ randomString: randomString,
4585
+ required: required,
4586
+ safeExtend: safeExtend,
4587
+ shallowClone: shallowClone,
4588
+ slugify: slugify,
4589
+ stringifyPrimitive: stringifyPrimitive,
4590
+ uint8ArrayToBase64: uint8ArrayToBase64,
4591
+ uint8ArrayToBase64url: uint8ArrayToBase64url,
4592
+ uint8ArrayToHex: uint8ArrayToHex,
4593
+ unwrapMessage: unwrapMessage
4648
4594
  });
4649
4595
 
4650
4596
  const initializer$1 = (inst, def) => {
@@ -5051,65 +4997,65 @@ const sha512_base64 = /*@__PURE__*/ fixedBase64(86, "==");
5051
4997
  const sha512_base64url = /*@__PURE__*/ fixedBase64url(86);
5052
4998
 
5053
4999
  var regexes = /*#__PURE__*/Object.freeze({
5054
- __proto__: null,
5055
- base64: base64$1,
5056
- base64url: base64url$1,
5057
- bigint: bigint$2,
5058
- boolean: boolean$2,
5059
- browserEmail: browserEmail,
5060
- cidrv4: cidrv4$1,
5061
- cidrv6: cidrv6$1,
5062
- cuid: cuid$1,
5063
- cuid2: cuid2$1,
5064
- date: date$3,
5065
- datetime: datetime$1,
5066
- domain: domain,
5067
- duration: duration$1,
5068
- e164: e164$1,
5069
- email: email$1,
5070
- emoji: emoji$1,
5071
- extendedDuration: extendedDuration,
5072
- guid: guid$1,
5073
- hex: hex$1,
5074
- hostname: hostname$1,
5075
- html5Email: html5Email,
5076
- idnEmail: idnEmail,
5077
- integer: integer,
5078
- ipv4: ipv4$1,
5079
- ipv6: ipv6$1,
5080
- ksuid: ksuid$1,
5081
- lowercase: lowercase,
5082
- mac: mac$1,
5083
- md5_base64: md5_base64,
5084
- md5_base64url: md5_base64url,
5085
- md5_hex: md5_hex,
5086
- nanoid: nanoid$1,
5087
- null: _null$2,
5088
- number: number$2,
5089
- rfc5322Email: rfc5322Email,
5090
- sha1_base64: sha1_base64,
5091
- sha1_base64url: sha1_base64url,
5092
- sha1_hex: sha1_hex,
5093
- sha256_base64: sha256_base64,
5094
- sha256_base64url: sha256_base64url,
5095
- sha256_hex: sha256_hex,
5096
- sha384_base64: sha384_base64,
5097
- sha384_base64url: sha384_base64url,
5098
- sha384_hex: sha384_hex,
5099
- sha512_base64: sha512_base64,
5100
- sha512_base64url: sha512_base64url,
5101
- sha512_hex: sha512_hex,
5102
- string: string$2,
5103
- time: time$1,
5104
- ulid: ulid$1,
5105
- undefined: _undefined$2,
5106
- unicodeEmail: unicodeEmail,
5107
- uppercase: uppercase,
5108
- uuid: uuid$1,
5109
- uuid4: uuid4,
5110
- uuid6: uuid6,
5111
- uuid7: uuid7,
5112
- xid: xid$1
5000
+ __proto__: null,
5001
+ base64: base64$1,
5002
+ base64url: base64url$1,
5003
+ bigint: bigint$2,
5004
+ boolean: boolean$2,
5005
+ browserEmail: browserEmail,
5006
+ cidrv4: cidrv4$1,
5007
+ cidrv6: cidrv6$1,
5008
+ cuid: cuid$1,
5009
+ cuid2: cuid2$1,
5010
+ date: date$3,
5011
+ datetime: datetime$1,
5012
+ domain: domain,
5013
+ duration: duration$1,
5014
+ e164: e164$1,
5015
+ email: email$1,
5016
+ emoji: emoji$1,
5017
+ extendedDuration: extendedDuration,
5018
+ guid: guid$1,
5019
+ hex: hex$1,
5020
+ hostname: hostname$1,
5021
+ html5Email: html5Email,
5022
+ idnEmail: idnEmail,
5023
+ integer: integer,
5024
+ ipv4: ipv4$1,
5025
+ ipv6: ipv6$1,
5026
+ ksuid: ksuid$1,
5027
+ lowercase: lowercase,
5028
+ mac: mac$1,
5029
+ md5_base64: md5_base64,
5030
+ md5_base64url: md5_base64url,
5031
+ md5_hex: md5_hex,
5032
+ nanoid: nanoid$1,
5033
+ null: _null$2,
5034
+ number: number$2,
5035
+ rfc5322Email: rfc5322Email,
5036
+ sha1_base64: sha1_base64,
5037
+ sha1_base64url: sha1_base64url,
5038
+ sha1_hex: sha1_hex,
5039
+ sha256_base64: sha256_base64,
5040
+ sha256_base64url: sha256_base64url,
5041
+ sha256_hex: sha256_hex,
5042
+ sha384_base64: sha384_base64,
5043
+ sha384_base64url: sha384_base64url,
5044
+ sha384_hex: sha384_hex,
5045
+ sha512_base64: sha512_base64,
5046
+ sha512_base64url: sha512_base64url,
5047
+ sha512_hex: sha512_hex,
5048
+ string: string$2,
5049
+ time: time$1,
5050
+ ulid: ulid$1,
5051
+ undefined: _undefined$2,
5052
+ unicodeEmail: unicodeEmail,
5053
+ uppercase: uppercase,
5054
+ uuid: uuid$1,
5055
+ uuid4: uuid4,
5056
+ uuid6: uuid6,
5057
+ uuid7: uuid7,
5058
+ xid: xid$1
5113
5059
  });
5114
5060
 
5115
5061
  // import { $ZodType } from "./schemas.js";
@@ -5724,7 +5670,7 @@ class Doc {
5724
5670
  const version = {
5725
5671
  major: 4,
5726
5672
  minor: 3,
5727
- patch: 5,
5673
+ patch: 4,
5728
5674
  };
5729
5675
 
5730
5676
  const $ZodType = /*@__PURE__*/ $constructor("$ZodType", (inst, def) => {
@@ -13312,56 +13258,56 @@ function yo () {
13312
13258
  }
13313
13259
 
13314
13260
  var index$2 = /*#__PURE__*/Object.freeze({
13315
- __proto__: null,
13316
- ar: ar,
13317
- az: az,
13318
- be: be,
13319
- bg: bg,
13320
- ca: ca,
13321
- cs: cs,
13322
- da: da,
13323
- de: de,
13324
- en: en,
13325
- eo: eo,
13326
- es: es,
13327
- fa: fa,
13328
- fi: fi,
13329
- fr: fr,
13330
- frCA: frCA,
13331
- he: he,
13332
- hu: hu,
13333
- hy: hy,
13334
- id: id,
13335
- is: is,
13336
- it: it,
13337
- ja: ja,
13338
- ka: ka,
13339
- kh: kh,
13340
- km: km,
13341
- ko: ko,
13342
- lt: lt,
13343
- mk: mk,
13344
- ms: ms,
13345
- nl: nl,
13346
- no: no,
13347
- ota: ota,
13348
- pl: pl,
13349
- ps: ps,
13350
- pt: pt,
13351
- ru: ru,
13352
- sl: sl,
13353
- sv: sv,
13354
- ta: ta,
13355
- th: th,
13356
- tr: tr,
13357
- ua: ua,
13358
- uk: uk,
13359
- ur: ur,
13360
- uz: uz,
13361
- vi: vi,
13362
- yo: yo,
13363
- zhCN: zhCN,
13364
- zhTW: zhTW
13261
+ __proto__: null,
13262
+ ar: ar,
13263
+ az: az,
13264
+ be: be,
13265
+ bg: bg,
13266
+ ca: ca,
13267
+ cs: cs,
13268
+ da: da,
13269
+ de: de,
13270
+ en: en,
13271
+ eo: eo,
13272
+ es: es,
13273
+ fa: fa,
13274
+ fi: fi,
13275
+ fr: fr,
13276
+ frCA: frCA,
13277
+ he: he,
13278
+ hu: hu,
13279
+ hy: hy,
13280
+ id: id,
13281
+ is: is,
13282
+ it: it,
13283
+ ja: ja,
13284
+ ka: ka,
13285
+ kh: kh,
13286
+ km: km,
13287
+ ko: ko,
13288
+ lt: lt,
13289
+ mk: mk,
13290
+ ms: ms,
13291
+ nl: nl,
13292
+ no: no,
13293
+ ota: ota,
13294
+ pl: pl,
13295
+ ps: ps,
13296
+ pt: pt,
13297
+ ru: ru,
13298
+ sl: sl,
13299
+ sv: sv,
13300
+ ta: ta,
13301
+ th: th,
13302
+ tr: tr,
13303
+ ua: ua,
13304
+ uk: uk,
13305
+ ur: ur,
13306
+ uz: uz,
13307
+ vi: vi,
13308
+ yo: yo,
13309
+ zhCN: zhCN,
13310
+ zhTW: zhTW
13365
13311
  });
13366
13312
 
13367
13313
  var _a;
@@ -15615,317 +15561,317 @@ class JSONSchemaGenerator {
15615
15561
  }
15616
15562
 
15617
15563
  var jsonSchema = /*#__PURE__*/Object.freeze({
15618
- __proto__: null
15564
+ __proto__: null
15619
15565
  });
15620
15566
 
15621
15567
  var index$1 = /*#__PURE__*/Object.freeze({
15622
- __proto__: null,
15623
- $ZodAny: $ZodAny,
15624
- $ZodArray: $ZodArray,
15625
- $ZodAsyncError: $ZodAsyncError,
15626
- $ZodBase64: $ZodBase64,
15627
- $ZodBase64URL: $ZodBase64URL,
15628
- $ZodBigInt: $ZodBigInt,
15629
- $ZodBigIntFormat: $ZodBigIntFormat,
15630
- $ZodBoolean: $ZodBoolean,
15631
- $ZodCIDRv4: $ZodCIDRv4,
15632
- $ZodCIDRv6: $ZodCIDRv6,
15633
- $ZodCUID: $ZodCUID,
15634
- $ZodCUID2: $ZodCUID2,
15635
- $ZodCatch: $ZodCatch,
15636
- $ZodCheck: $ZodCheck,
15637
- $ZodCheckBigIntFormat: $ZodCheckBigIntFormat,
15638
- $ZodCheckEndsWith: $ZodCheckEndsWith,
15639
- $ZodCheckGreaterThan: $ZodCheckGreaterThan,
15640
- $ZodCheckIncludes: $ZodCheckIncludes,
15641
- $ZodCheckLengthEquals: $ZodCheckLengthEquals,
15642
- $ZodCheckLessThan: $ZodCheckLessThan,
15643
- $ZodCheckLowerCase: $ZodCheckLowerCase,
15644
- $ZodCheckMaxLength: $ZodCheckMaxLength,
15645
- $ZodCheckMaxSize: $ZodCheckMaxSize,
15646
- $ZodCheckMimeType: $ZodCheckMimeType,
15647
- $ZodCheckMinLength: $ZodCheckMinLength,
15648
- $ZodCheckMinSize: $ZodCheckMinSize,
15649
- $ZodCheckMultipleOf: $ZodCheckMultipleOf,
15650
- $ZodCheckNumberFormat: $ZodCheckNumberFormat,
15651
- $ZodCheckOverwrite: $ZodCheckOverwrite,
15652
- $ZodCheckProperty: $ZodCheckProperty,
15653
- $ZodCheckRegex: $ZodCheckRegex,
15654
- $ZodCheckSizeEquals: $ZodCheckSizeEquals,
15655
- $ZodCheckStartsWith: $ZodCheckStartsWith,
15656
- $ZodCheckStringFormat: $ZodCheckStringFormat,
15657
- $ZodCheckUpperCase: $ZodCheckUpperCase,
15658
- $ZodCodec: $ZodCodec,
15659
- $ZodCustom: $ZodCustom,
15660
- $ZodCustomStringFormat: $ZodCustomStringFormat,
15661
- $ZodDate: $ZodDate,
15662
- $ZodDefault: $ZodDefault,
15663
- $ZodDiscriminatedUnion: $ZodDiscriminatedUnion,
15664
- $ZodE164: $ZodE164,
15665
- $ZodEmail: $ZodEmail,
15666
- $ZodEmoji: $ZodEmoji,
15667
- $ZodEncodeError: $ZodEncodeError,
15668
- $ZodEnum: $ZodEnum,
15669
- $ZodError: $ZodError,
15670
- $ZodExactOptional: $ZodExactOptional,
15671
- $ZodFile: $ZodFile,
15672
- $ZodFunction: $ZodFunction,
15673
- $ZodGUID: $ZodGUID,
15674
- $ZodIPv4: $ZodIPv4,
15675
- $ZodIPv6: $ZodIPv6,
15676
- $ZodISODate: $ZodISODate,
15677
- $ZodISODateTime: $ZodISODateTime,
15678
- $ZodISODuration: $ZodISODuration,
15679
- $ZodISOTime: $ZodISOTime,
15680
- $ZodIntersection: $ZodIntersection,
15681
- $ZodJWT: $ZodJWT,
15682
- $ZodKSUID: $ZodKSUID,
15683
- $ZodLazy: $ZodLazy,
15684
- $ZodLiteral: $ZodLiteral,
15685
- $ZodMAC: $ZodMAC,
15686
- $ZodMap: $ZodMap,
15687
- $ZodNaN: $ZodNaN,
15688
- $ZodNanoID: $ZodNanoID,
15689
- $ZodNever: $ZodNever,
15690
- $ZodNonOptional: $ZodNonOptional,
15691
- $ZodNull: $ZodNull,
15692
- $ZodNullable: $ZodNullable,
15693
- $ZodNumber: $ZodNumber,
15694
- $ZodNumberFormat: $ZodNumberFormat,
15695
- $ZodObject: $ZodObject,
15696
- $ZodObjectJIT: $ZodObjectJIT,
15697
- $ZodOptional: $ZodOptional,
15698
- $ZodPipe: $ZodPipe,
15699
- $ZodPrefault: $ZodPrefault,
15700
- $ZodPromise: $ZodPromise,
15701
- $ZodReadonly: $ZodReadonly,
15702
- $ZodRealError: $ZodRealError,
15703
- $ZodRecord: $ZodRecord,
15704
- $ZodRegistry: $ZodRegistry,
15705
- $ZodSet: $ZodSet,
15706
- $ZodString: $ZodString,
15707
- $ZodStringFormat: $ZodStringFormat,
15708
- $ZodSuccess: $ZodSuccess,
15709
- $ZodSymbol: $ZodSymbol,
15710
- $ZodTemplateLiteral: $ZodTemplateLiteral,
15711
- $ZodTransform: $ZodTransform,
15712
- $ZodTuple: $ZodTuple,
15713
- $ZodType: $ZodType,
15714
- $ZodULID: $ZodULID,
15715
- $ZodURL: $ZodURL,
15716
- $ZodUUID: $ZodUUID,
15717
- $ZodUndefined: $ZodUndefined,
15718
- $ZodUnion: $ZodUnion,
15719
- $ZodUnknown: $ZodUnknown,
15720
- $ZodVoid: $ZodVoid,
15721
- $ZodXID: $ZodXID,
15722
- $ZodXor: $ZodXor,
15723
- $brand: $brand,
15724
- $constructor: $constructor,
15725
- $input: $input,
15726
- $output: $output,
15727
- Doc: Doc,
15728
- JSONSchema: jsonSchema,
15729
- JSONSchemaGenerator: JSONSchemaGenerator,
15730
- NEVER: NEVER,
15731
- TimePrecision: TimePrecision,
15732
- _any: _any,
15733
- _array: _array,
15734
- _base64: _base64,
15735
- _base64url: _base64url,
15736
- _bigint: _bigint,
15737
- _boolean: _boolean,
15738
- _catch: _catch$1,
15739
- _check: _check,
15740
- _cidrv4: _cidrv4,
15741
- _cidrv6: _cidrv6,
15742
- _coercedBigint: _coercedBigint,
15743
- _coercedBoolean: _coercedBoolean,
15744
- _coercedDate: _coercedDate,
15745
- _coercedNumber: _coercedNumber,
15746
- _coercedString: _coercedString,
15747
- _cuid: _cuid,
15748
- _cuid2: _cuid2,
15749
- _custom: _custom,
15750
- _date: _date,
15751
- _decode: _decode,
15752
- _decodeAsync: _decodeAsync,
15753
- _default: _default$1,
15754
- _discriminatedUnion: _discriminatedUnion,
15755
- _e164: _e164,
15756
- _email: _email,
15757
- _emoji: _emoji,
15758
- _encode: _encode,
15759
- _encodeAsync: _encodeAsync,
15760
- _endsWith: _endsWith,
15761
- _enum: _enum$1,
15762
- _file: _file,
15763
- _float32: _float32,
15764
- _float64: _float64,
15765
- _gt: _gt,
15766
- _gte: _gte,
15767
- _guid: _guid,
15768
- _includes: _includes,
15769
- _int: _int,
15770
- _int32: _int32,
15771
- _int64: _int64,
15772
- _intersection: _intersection,
15773
- _ipv4: _ipv4,
15774
- _ipv6: _ipv6,
15775
- _isoDate: _isoDate,
15776
- _isoDateTime: _isoDateTime,
15777
- _isoDuration: _isoDuration,
15778
- _isoTime: _isoTime,
15779
- _jwt: _jwt,
15780
- _ksuid: _ksuid,
15781
- _lazy: _lazy,
15782
- _length: _length,
15783
- _literal: _literal,
15784
- _lowercase: _lowercase,
15785
- _lt: _lt,
15786
- _lte: _lte,
15787
- _mac: _mac,
15788
- _map: _map,
15789
- _max: _lte,
15790
- _maxLength: _maxLength,
15791
- _maxSize: _maxSize,
15792
- _mime: _mime,
15793
- _min: _gte,
15794
- _minLength: _minLength,
15795
- _minSize: _minSize,
15796
- _multipleOf: _multipleOf,
15797
- _nan: _nan,
15798
- _nanoid: _nanoid,
15799
- _nativeEnum: _nativeEnum,
15800
- _negative: _negative,
15801
- _never: _never,
15802
- _nonnegative: _nonnegative,
15803
- _nonoptional: _nonoptional,
15804
- _nonpositive: _nonpositive,
15805
- _normalize: _normalize,
15806
- _null: _null$1,
15807
- _nullable: _nullable,
15808
- _number: _number,
15809
- _optional: _optional,
15810
- _overwrite: _overwrite,
15811
- _parse: _parse,
15812
- _parseAsync: _parseAsync,
15813
- _pipe: _pipe,
15814
- _positive: _positive,
15815
- _promise: _promise,
15816
- _property: _property,
15817
- _readonly: _readonly,
15818
- _record: _record,
15819
- _refine: _refine,
15820
- _regex: _regex,
15821
- _safeDecode: _safeDecode,
15822
- _safeDecodeAsync: _safeDecodeAsync,
15823
- _safeEncode: _safeEncode,
15824
- _safeEncodeAsync: _safeEncodeAsync,
15825
- _safeParse: _safeParse,
15826
- _safeParseAsync: _safeParseAsync,
15827
- _set: _set,
15828
- _size: _size,
15829
- _slugify: _slugify,
15830
- _startsWith: _startsWith,
15831
- _string: _string,
15832
- _stringFormat: _stringFormat,
15833
- _stringbool: _stringbool,
15834
- _success: _success,
15835
- _superRefine: _superRefine,
15836
- _symbol: _symbol,
15837
- _templateLiteral: _templateLiteral,
15838
- _toLowerCase: _toLowerCase,
15839
- _toUpperCase: _toUpperCase,
15840
- _transform: _transform,
15841
- _trim: _trim,
15842
- _tuple: _tuple,
15843
- _uint32: _uint32,
15844
- _uint64: _uint64,
15845
- _ulid: _ulid,
15846
- _undefined: _undefined$1,
15847
- _union: _union,
15848
- _unknown: _unknown,
15849
- _uppercase: _uppercase,
15850
- _url: _url,
15851
- _uuid: _uuid,
15852
- _uuidv4: _uuidv4,
15853
- _uuidv6: _uuidv6,
15854
- _uuidv7: _uuidv7,
15855
- _void: _void$1,
15856
- _xid: _xid,
15857
- _xor: _xor,
15858
- clone: clone,
15859
- config: config,
15860
- createStandardJSONSchemaMethod: createStandardJSONSchemaMethod,
15861
- createToJSONSchemaMethod: createToJSONSchemaMethod,
15862
- decode: decode$1,
15863
- decodeAsync: decodeAsync$1,
15864
- describe: describe$1,
15865
- encode: encode$1,
15866
- encodeAsync: encodeAsync$1,
15867
- extractDefs: extractDefs,
15868
- finalize: finalize,
15869
- flattenError: flattenError,
15870
- formatError: formatError,
15871
- globalConfig: globalConfig,
15872
- globalRegistry: globalRegistry,
15873
- initializeContext: initializeContext,
15874
- isValidBase64: isValidBase64,
15875
- isValidBase64URL: isValidBase64URL,
15876
- isValidJWT: isValidJWT,
15877
- locales: index$2,
15878
- meta: meta$1,
15879
- parse: parse$2,
15880
- parseAsync: parseAsync$1,
15881
- prettifyError: prettifyError,
15882
- process: process$1,
15883
- regexes: regexes,
15884
- registry: registry,
15885
- safeDecode: safeDecode$1,
15886
- safeDecodeAsync: safeDecodeAsync$1,
15887
- safeEncode: safeEncode$1,
15888
- safeEncodeAsync: safeEncodeAsync$1,
15889
- safeParse: safeParse$1,
15890
- safeParseAsync: safeParseAsync$1,
15891
- toDotPath: toDotPath,
15892
- toJSONSchema: toJSONSchema,
15893
- treeifyError: treeifyError,
15894
- util: util,
15895
- version: version
15568
+ __proto__: null,
15569
+ $ZodAny: $ZodAny,
15570
+ $ZodArray: $ZodArray,
15571
+ $ZodAsyncError: $ZodAsyncError,
15572
+ $ZodBase64: $ZodBase64,
15573
+ $ZodBase64URL: $ZodBase64URL,
15574
+ $ZodBigInt: $ZodBigInt,
15575
+ $ZodBigIntFormat: $ZodBigIntFormat,
15576
+ $ZodBoolean: $ZodBoolean,
15577
+ $ZodCIDRv4: $ZodCIDRv4,
15578
+ $ZodCIDRv6: $ZodCIDRv6,
15579
+ $ZodCUID: $ZodCUID,
15580
+ $ZodCUID2: $ZodCUID2,
15581
+ $ZodCatch: $ZodCatch,
15582
+ $ZodCheck: $ZodCheck,
15583
+ $ZodCheckBigIntFormat: $ZodCheckBigIntFormat,
15584
+ $ZodCheckEndsWith: $ZodCheckEndsWith,
15585
+ $ZodCheckGreaterThan: $ZodCheckGreaterThan,
15586
+ $ZodCheckIncludes: $ZodCheckIncludes,
15587
+ $ZodCheckLengthEquals: $ZodCheckLengthEquals,
15588
+ $ZodCheckLessThan: $ZodCheckLessThan,
15589
+ $ZodCheckLowerCase: $ZodCheckLowerCase,
15590
+ $ZodCheckMaxLength: $ZodCheckMaxLength,
15591
+ $ZodCheckMaxSize: $ZodCheckMaxSize,
15592
+ $ZodCheckMimeType: $ZodCheckMimeType,
15593
+ $ZodCheckMinLength: $ZodCheckMinLength,
15594
+ $ZodCheckMinSize: $ZodCheckMinSize,
15595
+ $ZodCheckMultipleOf: $ZodCheckMultipleOf,
15596
+ $ZodCheckNumberFormat: $ZodCheckNumberFormat,
15597
+ $ZodCheckOverwrite: $ZodCheckOverwrite,
15598
+ $ZodCheckProperty: $ZodCheckProperty,
15599
+ $ZodCheckRegex: $ZodCheckRegex,
15600
+ $ZodCheckSizeEquals: $ZodCheckSizeEquals,
15601
+ $ZodCheckStartsWith: $ZodCheckStartsWith,
15602
+ $ZodCheckStringFormat: $ZodCheckStringFormat,
15603
+ $ZodCheckUpperCase: $ZodCheckUpperCase,
15604
+ $ZodCodec: $ZodCodec,
15605
+ $ZodCustom: $ZodCustom,
15606
+ $ZodCustomStringFormat: $ZodCustomStringFormat,
15607
+ $ZodDate: $ZodDate,
15608
+ $ZodDefault: $ZodDefault,
15609
+ $ZodDiscriminatedUnion: $ZodDiscriminatedUnion,
15610
+ $ZodE164: $ZodE164,
15611
+ $ZodEmail: $ZodEmail,
15612
+ $ZodEmoji: $ZodEmoji,
15613
+ $ZodEncodeError: $ZodEncodeError,
15614
+ $ZodEnum: $ZodEnum,
15615
+ $ZodError: $ZodError,
15616
+ $ZodExactOptional: $ZodExactOptional,
15617
+ $ZodFile: $ZodFile,
15618
+ $ZodFunction: $ZodFunction,
15619
+ $ZodGUID: $ZodGUID,
15620
+ $ZodIPv4: $ZodIPv4,
15621
+ $ZodIPv6: $ZodIPv6,
15622
+ $ZodISODate: $ZodISODate,
15623
+ $ZodISODateTime: $ZodISODateTime,
15624
+ $ZodISODuration: $ZodISODuration,
15625
+ $ZodISOTime: $ZodISOTime,
15626
+ $ZodIntersection: $ZodIntersection,
15627
+ $ZodJWT: $ZodJWT,
15628
+ $ZodKSUID: $ZodKSUID,
15629
+ $ZodLazy: $ZodLazy,
15630
+ $ZodLiteral: $ZodLiteral,
15631
+ $ZodMAC: $ZodMAC,
15632
+ $ZodMap: $ZodMap,
15633
+ $ZodNaN: $ZodNaN,
15634
+ $ZodNanoID: $ZodNanoID,
15635
+ $ZodNever: $ZodNever,
15636
+ $ZodNonOptional: $ZodNonOptional,
15637
+ $ZodNull: $ZodNull,
15638
+ $ZodNullable: $ZodNullable,
15639
+ $ZodNumber: $ZodNumber,
15640
+ $ZodNumberFormat: $ZodNumberFormat,
15641
+ $ZodObject: $ZodObject,
15642
+ $ZodObjectJIT: $ZodObjectJIT,
15643
+ $ZodOptional: $ZodOptional,
15644
+ $ZodPipe: $ZodPipe,
15645
+ $ZodPrefault: $ZodPrefault,
15646
+ $ZodPromise: $ZodPromise,
15647
+ $ZodReadonly: $ZodReadonly,
15648
+ $ZodRealError: $ZodRealError,
15649
+ $ZodRecord: $ZodRecord,
15650
+ $ZodRegistry: $ZodRegistry,
15651
+ $ZodSet: $ZodSet,
15652
+ $ZodString: $ZodString,
15653
+ $ZodStringFormat: $ZodStringFormat,
15654
+ $ZodSuccess: $ZodSuccess,
15655
+ $ZodSymbol: $ZodSymbol,
15656
+ $ZodTemplateLiteral: $ZodTemplateLiteral,
15657
+ $ZodTransform: $ZodTransform,
15658
+ $ZodTuple: $ZodTuple,
15659
+ $ZodType: $ZodType,
15660
+ $ZodULID: $ZodULID,
15661
+ $ZodURL: $ZodURL,
15662
+ $ZodUUID: $ZodUUID,
15663
+ $ZodUndefined: $ZodUndefined,
15664
+ $ZodUnion: $ZodUnion,
15665
+ $ZodUnknown: $ZodUnknown,
15666
+ $ZodVoid: $ZodVoid,
15667
+ $ZodXID: $ZodXID,
15668
+ $ZodXor: $ZodXor,
15669
+ $brand: $brand,
15670
+ $constructor: $constructor,
15671
+ $input: $input,
15672
+ $output: $output,
15673
+ Doc: Doc,
15674
+ JSONSchema: jsonSchema,
15675
+ JSONSchemaGenerator: JSONSchemaGenerator,
15676
+ NEVER: NEVER,
15677
+ TimePrecision: TimePrecision,
15678
+ _any: _any,
15679
+ _array: _array,
15680
+ _base64: _base64,
15681
+ _base64url: _base64url,
15682
+ _bigint: _bigint,
15683
+ _boolean: _boolean,
15684
+ _catch: _catch$1,
15685
+ _check: _check,
15686
+ _cidrv4: _cidrv4,
15687
+ _cidrv6: _cidrv6,
15688
+ _coercedBigint: _coercedBigint,
15689
+ _coercedBoolean: _coercedBoolean,
15690
+ _coercedDate: _coercedDate,
15691
+ _coercedNumber: _coercedNumber,
15692
+ _coercedString: _coercedString,
15693
+ _cuid: _cuid,
15694
+ _cuid2: _cuid2,
15695
+ _custom: _custom,
15696
+ _date: _date,
15697
+ _decode: _decode,
15698
+ _decodeAsync: _decodeAsync,
15699
+ _default: _default$1,
15700
+ _discriminatedUnion: _discriminatedUnion,
15701
+ _e164: _e164,
15702
+ _email: _email,
15703
+ _emoji: _emoji,
15704
+ _encode: _encode,
15705
+ _encodeAsync: _encodeAsync,
15706
+ _endsWith: _endsWith,
15707
+ _enum: _enum$1,
15708
+ _file: _file,
15709
+ _float32: _float32,
15710
+ _float64: _float64,
15711
+ _gt: _gt,
15712
+ _gte: _gte,
15713
+ _guid: _guid,
15714
+ _includes: _includes,
15715
+ _int: _int,
15716
+ _int32: _int32,
15717
+ _int64: _int64,
15718
+ _intersection: _intersection,
15719
+ _ipv4: _ipv4,
15720
+ _ipv6: _ipv6,
15721
+ _isoDate: _isoDate,
15722
+ _isoDateTime: _isoDateTime,
15723
+ _isoDuration: _isoDuration,
15724
+ _isoTime: _isoTime,
15725
+ _jwt: _jwt,
15726
+ _ksuid: _ksuid,
15727
+ _lazy: _lazy,
15728
+ _length: _length,
15729
+ _literal: _literal,
15730
+ _lowercase: _lowercase,
15731
+ _lt: _lt,
15732
+ _lte: _lte,
15733
+ _mac: _mac,
15734
+ _map: _map,
15735
+ _max: _lte,
15736
+ _maxLength: _maxLength,
15737
+ _maxSize: _maxSize,
15738
+ _mime: _mime,
15739
+ _min: _gte,
15740
+ _minLength: _minLength,
15741
+ _minSize: _minSize,
15742
+ _multipleOf: _multipleOf,
15743
+ _nan: _nan,
15744
+ _nanoid: _nanoid,
15745
+ _nativeEnum: _nativeEnum,
15746
+ _negative: _negative,
15747
+ _never: _never,
15748
+ _nonnegative: _nonnegative,
15749
+ _nonoptional: _nonoptional,
15750
+ _nonpositive: _nonpositive,
15751
+ _normalize: _normalize,
15752
+ _null: _null$1,
15753
+ _nullable: _nullable,
15754
+ _number: _number,
15755
+ _optional: _optional,
15756
+ _overwrite: _overwrite,
15757
+ _parse: _parse,
15758
+ _parseAsync: _parseAsync,
15759
+ _pipe: _pipe,
15760
+ _positive: _positive,
15761
+ _promise: _promise,
15762
+ _property: _property,
15763
+ _readonly: _readonly,
15764
+ _record: _record,
15765
+ _refine: _refine,
15766
+ _regex: _regex,
15767
+ _safeDecode: _safeDecode,
15768
+ _safeDecodeAsync: _safeDecodeAsync,
15769
+ _safeEncode: _safeEncode,
15770
+ _safeEncodeAsync: _safeEncodeAsync,
15771
+ _safeParse: _safeParse,
15772
+ _safeParseAsync: _safeParseAsync,
15773
+ _set: _set,
15774
+ _size: _size,
15775
+ _slugify: _slugify,
15776
+ _startsWith: _startsWith,
15777
+ _string: _string,
15778
+ _stringFormat: _stringFormat,
15779
+ _stringbool: _stringbool,
15780
+ _success: _success,
15781
+ _superRefine: _superRefine,
15782
+ _symbol: _symbol,
15783
+ _templateLiteral: _templateLiteral,
15784
+ _toLowerCase: _toLowerCase,
15785
+ _toUpperCase: _toUpperCase,
15786
+ _transform: _transform,
15787
+ _trim: _trim,
15788
+ _tuple: _tuple,
15789
+ _uint32: _uint32,
15790
+ _uint64: _uint64,
15791
+ _ulid: _ulid,
15792
+ _undefined: _undefined$1,
15793
+ _union: _union,
15794
+ _unknown: _unknown,
15795
+ _uppercase: _uppercase,
15796
+ _url: _url,
15797
+ _uuid: _uuid,
15798
+ _uuidv4: _uuidv4,
15799
+ _uuidv6: _uuidv6,
15800
+ _uuidv7: _uuidv7,
15801
+ _void: _void$1,
15802
+ _xid: _xid,
15803
+ _xor: _xor,
15804
+ clone: clone,
15805
+ config: config,
15806
+ createStandardJSONSchemaMethod: createStandardJSONSchemaMethod,
15807
+ createToJSONSchemaMethod: createToJSONSchemaMethod,
15808
+ decode: decode$1,
15809
+ decodeAsync: decodeAsync$1,
15810
+ describe: describe$1,
15811
+ encode: encode$1,
15812
+ encodeAsync: encodeAsync$1,
15813
+ extractDefs: extractDefs,
15814
+ finalize: finalize,
15815
+ flattenError: flattenError,
15816
+ formatError: formatError,
15817
+ globalConfig: globalConfig,
15818
+ globalRegistry: globalRegistry,
15819
+ initializeContext: initializeContext,
15820
+ isValidBase64: isValidBase64,
15821
+ isValidBase64URL: isValidBase64URL,
15822
+ isValidJWT: isValidJWT,
15823
+ locales: index$2,
15824
+ meta: meta$1,
15825
+ parse: parse$2,
15826
+ parseAsync: parseAsync$1,
15827
+ prettifyError: prettifyError,
15828
+ process: process$1,
15829
+ regexes: regexes,
15830
+ registry: registry,
15831
+ safeDecode: safeDecode$1,
15832
+ safeDecodeAsync: safeDecodeAsync$1,
15833
+ safeEncode: safeEncode$1,
15834
+ safeEncodeAsync: safeEncodeAsync$1,
15835
+ safeParse: safeParse$1,
15836
+ safeParseAsync: safeParseAsync$1,
15837
+ toDotPath: toDotPath,
15838
+ toJSONSchema: toJSONSchema,
15839
+ treeifyError: treeifyError,
15840
+ util: util,
15841
+ version: version
15896
15842
  });
15897
15843
 
15898
15844
  var _checks = /*#__PURE__*/Object.freeze({
15899
- __proto__: null,
15900
- endsWith: _endsWith,
15901
- gt: _gt,
15902
- gte: _gte,
15903
- includes: _includes,
15904
- length: _length,
15905
- lowercase: _lowercase,
15906
- lt: _lt,
15907
- lte: _lte,
15908
- maxLength: _maxLength,
15909
- maxSize: _maxSize,
15910
- mime: _mime,
15911
- minLength: _minLength,
15912
- minSize: _minSize,
15913
- multipleOf: _multipleOf,
15914
- negative: _negative,
15915
- nonnegative: _nonnegative,
15916
- nonpositive: _nonpositive,
15917
- normalize: _normalize,
15918
- overwrite: _overwrite,
15919
- positive: _positive,
15920
- property: _property,
15921
- regex: _regex,
15922
- size: _size,
15923
- slugify: _slugify,
15924
- startsWith: _startsWith,
15925
- toLowerCase: _toLowerCase,
15926
- toUpperCase: _toUpperCase,
15927
- trim: _trim,
15928
- uppercase: _uppercase
15845
+ __proto__: null,
15846
+ endsWith: _endsWith,
15847
+ gt: _gt,
15848
+ gte: _gte,
15849
+ includes: _includes,
15850
+ length: _length,
15851
+ lowercase: _lowercase,
15852
+ lt: _lt,
15853
+ lte: _lte,
15854
+ maxLength: _maxLength,
15855
+ maxSize: _maxSize,
15856
+ mime: _mime,
15857
+ minLength: _minLength,
15858
+ minSize: _minSize,
15859
+ multipleOf: _multipleOf,
15860
+ negative: _negative,
15861
+ nonnegative: _nonnegative,
15862
+ nonpositive: _nonpositive,
15863
+ normalize: _normalize,
15864
+ overwrite: _overwrite,
15865
+ positive: _positive,
15866
+ property: _property,
15867
+ regex: _regex,
15868
+ size: _size,
15869
+ slugify: _slugify,
15870
+ startsWith: _startsWith,
15871
+ toLowerCase: _toLowerCase,
15872
+ toUpperCase: _toUpperCase,
15873
+ trim: _trim,
15874
+ uppercase: _uppercase
15929
15875
  });
15930
15876
 
15931
15877
  const ZodISODateTime = /*@__PURE__*/ $constructor("ZodISODateTime", (inst, def) => {
@@ -15958,15 +15904,15 @@ function duration(params) {
15958
15904
  }
15959
15905
 
15960
15906
  var _iso = /*#__PURE__*/Object.freeze({
15961
- __proto__: null,
15962
- ZodISODate: ZodISODate,
15963
- ZodISODateTime: ZodISODateTime,
15964
- ZodISODuration: ZodISODuration,
15965
- ZodISOTime: ZodISOTime,
15966
- date: date$2,
15967
- datetime: datetime,
15968
- duration: duration,
15969
- time: time
15907
+ __proto__: null,
15908
+ ZodISODate: ZodISODate,
15909
+ ZodISODateTime: ZodISODateTime,
15910
+ ZodISODuration: ZodISODuration,
15911
+ ZodISOTime: ZodISOTime,
15912
+ date: date$2,
15913
+ datetime: datetime,
15914
+ duration: duration,
15915
+ time: time
15970
15916
  });
15971
15917
 
15972
15918
  const initializer = (inst, issues) => {
@@ -17174,171 +17120,171 @@ function preprocess(fn, schema) {
17174
17120
  }
17175
17121
 
17176
17122
  var _schemas = /*#__PURE__*/Object.freeze({
17177
- __proto__: null,
17178
- ZodAny: ZodAny,
17179
- ZodArray: ZodArray,
17180
- ZodBase64: ZodBase64,
17181
- ZodBase64URL: ZodBase64URL,
17182
- ZodBigInt: ZodBigInt,
17183
- ZodBigIntFormat: ZodBigIntFormat,
17184
- ZodBoolean: ZodBoolean,
17185
- ZodCIDRv4: ZodCIDRv4,
17186
- ZodCIDRv6: ZodCIDRv6,
17187
- ZodCUID: ZodCUID,
17188
- ZodCUID2: ZodCUID2,
17189
- ZodCatch: ZodCatch,
17190
- ZodCodec: ZodCodec,
17191
- ZodCustom: ZodCustom,
17192
- ZodCustomStringFormat: ZodCustomStringFormat,
17193
- ZodDate: ZodDate,
17194
- ZodDefault: ZodDefault,
17195
- ZodDiscriminatedUnion: ZodDiscriminatedUnion,
17196
- ZodE164: ZodE164,
17197
- ZodEmail: ZodEmail,
17198
- ZodEmoji: ZodEmoji,
17199
- ZodEnum: ZodEnum,
17200
- ZodExactOptional: ZodExactOptional,
17201
- ZodFile: ZodFile,
17202
- ZodFunction: ZodFunction,
17203
- ZodGUID: ZodGUID,
17204
- ZodIPv4: ZodIPv4,
17205
- ZodIPv6: ZodIPv6,
17206
- ZodIntersection: ZodIntersection,
17207
- ZodJWT: ZodJWT,
17208
- ZodKSUID: ZodKSUID,
17209
- ZodLazy: ZodLazy,
17210
- ZodLiteral: ZodLiteral,
17211
- ZodMAC: ZodMAC,
17212
- ZodMap: ZodMap,
17213
- ZodNaN: ZodNaN,
17214
- ZodNanoID: ZodNanoID,
17215
- ZodNever: ZodNever,
17216
- ZodNonOptional: ZodNonOptional,
17217
- ZodNull: ZodNull,
17218
- ZodNullable: ZodNullable,
17219
- ZodNumber: ZodNumber,
17220
- ZodNumberFormat: ZodNumberFormat,
17221
- ZodObject: ZodObject,
17222
- ZodOptional: ZodOptional,
17223
- ZodPipe: ZodPipe,
17224
- ZodPrefault: ZodPrefault,
17225
- ZodPromise: ZodPromise,
17226
- ZodReadonly: ZodReadonly,
17227
- ZodRecord: ZodRecord,
17228
- ZodSet: ZodSet,
17229
- ZodString: ZodString,
17230
- ZodStringFormat: ZodStringFormat,
17231
- ZodSuccess: ZodSuccess,
17232
- ZodSymbol: ZodSymbol,
17233
- ZodTemplateLiteral: ZodTemplateLiteral,
17234
- ZodTransform: ZodTransform,
17235
- ZodTuple: ZodTuple,
17236
- ZodType: ZodType,
17237
- ZodULID: ZodULID,
17238
- ZodURL: ZodURL,
17239
- ZodUUID: ZodUUID,
17240
- ZodUndefined: ZodUndefined,
17241
- ZodUnion: ZodUnion,
17242
- ZodUnknown: ZodUnknown,
17243
- ZodVoid: ZodVoid,
17244
- ZodXID: ZodXID,
17245
- ZodXor: ZodXor,
17246
- _ZodString: _ZodString,
17247
- _default: _default,
17248
- _function: _function,
17249
- any: any,
17250
- array: array,
17251
- base64: base64,
17252
- base64url: base64url,
17253
- bigint: bigint$1,
17254
- boolean: boolean$1,
17255
- catch: _catch,
17256
- check: check,
17257
- cidrv4: cidrv4,
17258
- cidrv6: cidrv6,
17259
- codec: codec,
17260
- cuid: cuid,
17261
- cuid2: cuid2,
17262
- custom: custom,
17263
- date: date$1,
17264
- describe: describe,
17265
- discriminatedUnion: discriminatedUnion,
17266
- e164: e164,
17267
- email: email,
17268
- emoji: emoji,
17269
- enum: _enum,
17270
- exactOptional: exactOptional,
17271
- file: file,
17272
- float32: float32,
17273
- float64: float64,
17274
- function: _function,
17275
- guid: guid,
17276
- hash: hash,
17277
- hex: hex,
17278
- hostname: hostname,
17279
- httpUrl: httpUrl,
17280
- instanceof: _instanceof,
17281
- int: int,
17282
- int32: int32,
17283
- int64: int64,
17284
- intersection: intersection,
17285
- ipv4: ipv4,
17286
- ipv6: ipv6,
17287
- json: json,
17288
- jwt: jwt,
17289
- keyof: keyof,
17290
- ksuid: ksuid,
17291
- lazy: lazy,
17292
- literal: literal,
17293
- looseObject: looseObject,
17294
- looseRecord: looseRecord,
17295
- mac: mac,
17296
- map: map,
17297
- meta: meta,
17298
- nan: nan,
17299
- nanoid: nanoid,
17300
- nativeEnum: nativeEnum,
17301
- never: never,
17302
- nonoptional: nonoptional,
17303
- null: _null,
17304
- nullable: nullable,
17305
- nullish: nullish,
17306
- number: number$1,
17307
- object: object,
17308
- optional: optional,
17309
- partialRecord: partialRecord,
17310
- pipe: pipe,
17311
- prefault: prefault,
17312
- preprocess: preprocess,
17313
- promise: promise,
17314
- readonly: readonly,
17315
- record: record,
17316
- refine: refine,
17317
- set: set,
17318
- strictObject: strictObject,
17319
- string: string$1,
17320
- stringFormat: stringFormat,
17321
- stringbool: stringbool,
17322
- success: success,
17323
- superRefine: superRefine,
17324
- symbol: symbol,
17325
- templateLiteral: templateLiteral,
17326
- transform: transform,
17327
- tuple: tuple,
17328
- uint32: uint32,
17329
- uint64: uint64,
17330
- ulid: ulid,
17331
- undefined: _undefined,
17332
- union: union,
17333
- unknown: unknown,
17334
- url: url,
17335
- uuid: uuid,
17336
- uuidv4: uuidv4,
17337
- uuidv6: uuidv6,
17338
- uuidv7: uuidv7,
17339
- void: _void,
17340
- xid: xid,
17341
- xor: xor
17123
+ __proto__: null,
17124
+ ZodAny: ZodAny,
17125
+ ZodArray: ZodArray,
17126
+ ZodBase64: ZodBase64,
17127
+ ZodBase64URL: ZodBase64URL,
17128
+ ZodBigInt: ZodBigInt,
17129
+ ZodBigIntFormat: ZodBigIntFormat,
17130
+ ZodBoolean: ZodBoolean,
17131
+ ZodCIDRv4: ZodCIDRv4,
17132
+ ZodCIDRv6: ZodCIDRv6,
17133
+ ZodCUID: ZodCUID,
17134
+ ZodCUID2: ZodCUID2,
17135
+ ZodCatch: ZodCatch,
17136
+ ZodCodec: ZodCodec,
17137
+ ZodCustom: ZodCustom,
17138
+ ZodCustomStringFormat: ZodCustomStringFormat,
17139
+ ZodDate: ZodDate,
17140
+ ZodDefault: ZodDefault,
17141
+ ZodDiscriminatedUnion: ZodDiscriminatedUnion,
17142
+ ZodE164: ZodE164,
17143
+ ZodEmail: ZodEmail,
17144
+ ZodEmoji: ZodEmoji,
17145
+ ZodEnum: ZodEnum,
17146
+ ZodExactOptional: ZodExactOptional,
17147
+ ZodFile: ZodFile,
17148
+ ZodFunction: ZodFunction,
17149
+ ZodGUID: ZodGUID,
17150
+ ZodIPv4: ZodIPv4,
17151
+ ZodIPv6: ZodIPv6,
17152
+ ZodIntersection: ZodIntersection,
17153
+ ZodJWT: ZodJWT,
17154
+ ZodKSUID: ZodKSUID,
17155
+ ZodLazy: ZodLazy,
17156
+ ZodLiteral: ZodLiteral,
17157
+ ZodMAC: ZodMAC,
17158
+ ZodMap: ZodMap,
17159
+ ZodNaN: ZodNaN,
17160
+ ZodNanoID: ZodNanoID,
17161
+ ZodNever: ZodNever,
17162
+ ZodNonOptional: ZodNonOptional,
17163
+ ZodNull: ZodNull,
17164
+ ZodNullable: ZodNullable,
17165
+ ZodNumber: ZodNumber,
17166
+ ZodNumberFormat: ZodNumberFormat,
17167
+ ZodObject: ZodObject,
17168
+ ZodOptional: ZodOptional,
17169
+ ZodPipe: ZodPipe,
17170
+ ZodPrefault: ZodPrefault,
17171
+ ZodPromise: ZodPromise,
17172
+ ZodReadonly: ZodReadonly,
17173
+ ZodRecord: ZodRecord,
17174
+ ZodSet: ZodSet,
17175
+ ZodString: ZodString,
17176
+ ZodStringFormat: ZodStringFormat,
17177
+ ZodSuccess: ZodSuccess,
17178
+ ZodSymbol: ZodSymbol,
17179
+ ZodTemplateLiteral: ZodTemplateLiteral,
17180
+ ZodTransform: ZodTransform,
17181
+ ZodTuple: ZodTuple,
17182
+ ZodType: ZodType,
17183
+ ZodULID: ZodULID,
17184
+ ZodURL: ZodURL,
17185
+ ZodUUID: ZodUUID,
17186
+ ZodUndefined: ZodUndefined,
17187
+ ZodUnion: ZodUnion,
17188
+ ZodUnknown: ZodUnknown,
17189
+ ZodVoid: ZodVoid,
17190
+ ZodXID: ZodXID,
17191
+ ZodXor: ZodXor,
17192
+ _ZodString: _ZodString,
17193
+ _default: _default,
17194
+ _function: _function,
17195
+ any: any,
17196
+ array: array,
17197
+ base64: base64,
17198
+ base64url: base64url,
17199
+ bigint: bigint$1,
17200
+ boolean: boolean$1,
17201
+ catch: _catch,
17202
+ check: check,
17203
+ cidrv4: cidrv4,
17204
+ cidrv6: cidrv6,
17205
+ codec: codec,
17206
+ cuid: cuid,
17207
+ cuid2: cuid2,
17208
+ custom: custom,
17209
+ date: date$1,
17210
+ describe: describe,
17211
+ discriminatedUnion: discriminatedUnion,
17212
+ e164: e164,
17213
+ email: email,
17214
+ emoji: emoji,
17215
+ enum: _enum,
17216
+ exactOptional: exactOptional,
17217
+ file: file,
17218
+ float32: float32,
17219
+ float64: float64,
17220
+ function: _function,
17221
+ guid: guid,
17222
+ hash: hash,
17223
+ hex: hex,
17224
+ hostname: hostname,
17225
+ httpUrl: httpUrl,
17226
+ instanceof: _instanceof,
17227
+ int: int,
17228
+ int32: int32,
17229
+ int64: int64,
17230
+ intersection: intersection,
17231
+ ipv4: ipv4,
17232
+ ipv6: ipv6,
17233
+ json: json,
17234
+ jwt: jwt,
17235
+ keyof: keyof,
17236
+ ksuid: ksuid,
17237
+ lazy: lazy,
17238
+ literal: literal,
17239
+ looseObject: looseObject,
17240
+ looseRecord: looseRecord,
17241
+ mac: mac,
17242
+ map: map,
17243
+ meta: meta,
17244
+ nan: nan,
17245
+ nanoid: nanoid,
17246
+ nativeEnum: nativeEnum,
17247
+ never: never,
17248
+ nonoptional: nonoptional,
17249
+ null: _null,
17250
+ nullable: nullable,
17251
+ nullish: nullish,
17252
+ number: number$1,
17253
+ object: object,
17254
+ optional: optional,
17255
+ partialRecord: partialRecord,
17256
+ pipe: pipe,
17257
+ prefault: prefault,
17258
+ preprocess: preprocess,
17259
+ promise: promise,
17260
+ readonly: readonly,
17261
+ record: record,
17262
+ refine: refine,
17263
+ set: set,
17264
+ strictObject: strictObject,
17265
+ string: string$1,
17266
+ stringFormat: stringFormat,
17267
+ stringbool: stringbool,
17268
+ success: success,
17269
+ superRefine: superRefine,
17270
+ symbol: symbol,
17271
+ templateLiteral: templateLiteral,
17272
+ transform: transform,
17273
+ tuple: tuple,
17274
+ uint32: uint32,
17275
+ uint64: uint64,
17276
+ ulid: ulid,
17277
+ undefined: _undefined,
17278
+ union: union,
17279
+ unknown: unknown,
17280
+ url: url,
17281
+ uuid: uuid,
17282
+ uuidv4: uuidv4,
17283
+ uuidv6: uuidv6,
17284
+ uuidv7: uuidv7,
17285
+ void: _void,
17286
+ xid: xid,
17287
+ xor: xor
17342
17288
  });
17343
17289
 
17344
17290
  // Zod 3 compat layer
@@ -17969,254 +17915,254 @@ function date(params) {
17969
17915
  }
17970
17916
 
17971
17917
  var coerce = /*#__PURE__*/Object.freeze({
17972
- __proto__: null,
17973
- bigint: bigint,
17974
- boolean: boolean,
17975
- date: date,
17976
- number: number,
17977
- string: string
17918
+ __proto__: null,
17919
+ bigint: bigint,
17920
+ boolean: boolean,
17921
+ date: date,
17922
+ number: number,
17923
+ string: string
17978
17924
  });
17979
17925
 
17980
17926
  config(en());
17981
17927
 
17982
17928
  var z = /*#__PURE__*/Object.freeze({
17983
- __proto__: null,
17984
- $brand: $brand,
17985
- $input: $input,
17986
- $output: $output,
17987
- NEVER: NEVER,
17988
- TimePrecision: TimePrecision,
17989
- ZodAny: ZodAny,
17990
- ZodArray: ZodArray,
17991
- ZodBase64: ZodBase64,
17992
- ZodBase64URL: ZodBase64URL,
17993
- ZodBigInt: ZodBigInt,
17994
- ZodBigIntFormat: ZodBigIntFormat,
17995
- ZodBoolean: ZodBoolean,
17996
- ZodCIDRv4: ZodCIDRv4,
17997
- ZodCIDRv6: ZodCIDRv6,
17998
- ZodCUID: ZodCUID,
17999
- ZodCUID2: ZodCUID2,
18000
- ZodCatch: ZodCatch,
18001
- ZodCodec: ZodCodec,
18002
- ZodCustom: ZodCustom,
18003
- ZodCustomStringFormat: ZodCustomStringFormat,
18004
- ZodDate: ZodDate,
18005
- ZodDefault: ZodDefault,
18006
- ZodDiscriminatedUnion: ZodDiscriminatedUnion,
18007
- ZodE164: ZodE164,
18008
- ZodEmail: ZodEmail,
18009
- ZodEmoji: ZodEmoji,
18010
- ZodEnum: ZodEnum,
18011
- ZodError: ZodError,
18012
- ZodExactOptional: ZodExactOptional,
18013
- ZodFile: ZodFile,
18014
- get ZodFirstPartyTypeKind () { return ZodFirstPartyTypeKind; },
18015
- ZodFunction: ZodFunction,
18016
- ZodGUID: ZodGUID,
18017
- ZodIPv4: ZodIPv4,
18018
- ZodIPv6: ZodIPv6,
18019
- ZodISODate: ZodISODate,
18020
- ZodISODateTime: ZodISODateTime,
18021
- ZodISODuration: ZodISODuration,
18022
- ZodISOTime: ZodISOTime,
18023
- ZodIntersection: ZodIntersection,
18024
- ZodIssueCode: ZodIssueCode,
18025
- ZodJWT: ZodJWT,
18026
- ZodKSUID: ZodKSUID,
18027
- ZodLazy: ZodLazy,
18028
- ZodLiteral: ZodLiteral,
18029
- ZodMAC: ZodMAC,
18030
- ZodMap: ZodMap,
18031
- ZodNaN: ZodNaN,
18032
- ZodNanoID: ZodNanoID,
18033
- ZodNever: ZodNever,
18034
- ZodNonOptional: ZodNonOptional,
18035
- ZodNull: ZodNull,
18036
- ZodNullable: ZodNullable,
18037
- ZodNumber: ZodNumber,
18038
- ZodNumberFormat: ZodNumberFormat,
18039
- ZodObject: ZodObject,
18040
- ZodOptional: ZodOptional,
18041
- ZodPipe: ZodPipe,
18042
- ZodPrefault: ZodPrefault,
18043
- ZodPromise: ZodPromise,
18044
- ZodReadonly: ZodReadonly,
18045
- ZodRealError: ZodRealError,
18046
- ZodRecord: ZodRecord,
18047
- ZodSet: ZodSet,
18048
- ZodString: ZodString,
18049
- ZodStringFormat: ZodStringFormat,
18050
- ZodSuccess: ZodSuccess,
18051
- ZodSymbol: ZodSymbol,
18052
- ZodTemplateLiteral: ZodTemplateLiteral,
18053
- ZodTransform: ZodTransform,
18054
- ZodTuple: ZodTuple,
18055
- ZodType: ZodType,
18056
- ZodULID: ZodULID,
18057
- ZodURL: ZodURL,
18058
- ZodUUID: ZodUUID,
18059
- ZodUndefined: ZodUndefined,
18060
- ZodUnion: ZodUnion,
18061
- ZodUnknown: ZodUnknown,
18062
- ZodVoid: ZodVoid,
18063
- ZodXID: ZodXID,
18064
- ZodXor: ZodXor,
18065
- _ZodString: _ZodString,
18066
- _default: _default,
18067
- _function: _function,
18068
- any: any,
18069
- array: array,
18070
- base64: base64,
18071
- base64url: base64url,
18072
- bigint: bigint$1,
18073
- boolean: boolean$1,
18074
- catch: _catch,
18075
- check: check,
18076
- cidrv4: cidrv4,
18077
- cidrv6: cidrv6,
18078
- clone: clone,
18079
- codec: codec,
18080
- coerce: coerce,
18081
- config: config,
18082
- core: index$1,
18083
- cuid: cuid,
18084
- cuid2: cuid2,
18085
- custom: custom,
18086
- date: date$1,
18087
- decode: decode,
18088
- decodeAsync: decodeAsync,
18089
- describe: describe,
18090
- discriminatedUnion: discriminatedUnion,
18091
- e164: e164,
18092
- email: email,
18093
- emoji: emoji,
18094
- encode: encode,
18095
- encodeAsync: encodeAsync,
18096
- endsWith: _endsWith,
18097
- enum: _enum,
18098
- exactOptional: exactOptional,
18099
- file: file,
18100
- flattenError: flattenError,
18101
- float32: float32,
18102
- float64: float64,
18103
- formatError: formatError,
18104
- fromJSONSchema: fromJSONSchema,
18105
- function: _function,
18106
- getErrorMap: getErrorMap,
18107
- globalRegistry: globalRegistry,
18108
- gt: _gt,
18109
- gte: _gte,
18110
- guid: guid,
18111
- hash: hash,
18112
- hex: hex,
18113
- hostname: hostname,
18114
- httpUrl: httpUrl,
18115
- includes: _includes,
18116
- instanceof: _instanceof,
18117
- int: int,
18118
- int32: int32,
18119
- int64: int64,
18120
- intersection: intersection,
18121
- ipv4: ipv4,
18122
- ipv6: ipv6,
18123
- iso: _iso,
18124
- json: json,
18125
- jwt: jwt,
18126
- keyof: keyof,
18127
- ksuid: ksuid,
18128
- lazy: lazy,
18129
- length: _length,
18130
- literal: literal,
18131
- locales: index$2,
18132
- looseObject: looseObject,
18133
- looseRecord: looseRecord,
18134
- lowercase: _lowercase,
18135
- lt: _lt,
18136
- lte: _lte,
18137
- mac: mac,
18138
- map: map,
18139
- maxLength: _maxLength,
18140
- maxSize: _maxSize,
18141
- meta: meta,
18142
- mime: _mime,
18143
- minLength: _minLength,
18144
- minSize: _minSize,
18145
- multipleOf: _multipleOf,
18146
- nan: nan,
18147
- nanoid: nanoid,
18148
- nativeEnum: nativeEnum,
18149
- negative: _negative,
18150
- never: never,
18151
- nonnegative: _nonnegative,
18152
- nonoptional: nonoptional,
18153
- nonpositive: _nonpositive,
18154
- normalize: _normalize,
18155
- null: _null,
18156
- nullable: nullable,
18157
- nullish: nullish,
18158
- number: number$1,
18159
- object: object,
18160
- optional: optional,
18161
- overwrite: _overwrite,
18162
- parse: parse$1,
18163
- parseAsync: parseAsync,
18164
- partialRecord: partialRecord,
18165
- pipe: pipe,
18166
- positive: _positive,
18167
- prefault: prefault,
18168
- preprocess: preprocess,
18169
- prettifyError: prettifyError,
18170
- promise: promise,
18171
- property: _property,
18172
- readonly: readonly,
18173
- record: record,
18174
- refine: refine,
18175
- regex: _regex,
18176
- regexes: regexes,
18177
- registry: registry,
18178
- safeDecode: safeDecode,
18179
- safeDecodeAsync: safeDecodeAsync,
18180
- safeEncode: safeEncode,
18181
- safeEncodeAsync: safeEncodeAsync,
18182
- safeParse: safeParse,
18183
- safeParseAsync: safeParseAsync,
18184
- set: set,
18185
- setErrorMap: setErrorMap,
18186
- size: _size,
18187
- slugify: _slugify,
18188
- startsWith: _startsWith,
18189
- strictObject: strictObject,
18190
- string: string$1,
18191
- stringFormat: stringFormat,
18192
- stringbool: stringbool,
18193
- success: success,
18194
- superRefine: superRefine,
18195
- symbol: symbol,
18196
- templateLiteral: templateLiteral,
18197
- toJSONSchema: toJSONSchema,
18198
- toLowerCase: _toLowerCase,
18199
- toUpperCase: _toUpperCase,
18200
- transform: transform,
18201
- treeifyError: treeifyError,
18202
- trim: _trim,
18203
- tuple: tuple,
18204
- uint32: uint32,
18205
- uint64: uint64,
18206
- ulid: ulid,
18207
- undefined: _undefined,
18208
- union: union,
18209
- unknown: unknown,
18210
- uppercase: _uppercase,
18211
- url: url,
18212
- util: util,
18213
- uuid: uuid,
18214
- uuidv4: uuidv4,
18215
- uuidv6: uuidv6,
18216
- uuidv7: uuidv7,
18217
- void: _void,
18218
- xid: xid,
18219
- xor: xor
17929
+ __proto__: null,
17930
+ $brand: $brand,
17931
+ $input: $input,
17932
+ $output: $output,
17933
+ NEVER: NEVER,
17934
+ TimePrecision: TimePrecision,
17935
+ ZodAny: ZodAny,
17936
+ ZodArray: ZodArray,
17937
+ ZodBase64: ZodBase64,
17938
+ ZodBase64URL: ZodBase64URL,
17939
+ ZodBigInt: ZodBigInt,
17940
+ ZodBigIntFormat: ZodBigIntFormat,
17941
+ ZodBoolean: ZodBoolean,
17942
+ ZodCIDRv4: ZodCIDRv4,
17943
+ ZodCIDRv6: ZodCIDRv6,
17944
+ ZodCUID: ZodCUID,
17945
+ ZodCUID2: ZodCUID2,
17946
+ ZodCatch: ZodCatch,
17947
+ ZodCodec: ZodCodec,
17948
+ ZodCustom: ZodCustom,
17949
+ ZodCustomStringFormat: ZodCustomStringFormat,
17950
+ ZodDate: ZodDate,
17951
+ ZodDefault: ZodDefault,
17952
+ ZodDiscriminatedUnion: ZodDiscriminatedUnion,
17953
+ ZodE164: ZodE164,
17954
+ ZodEmail: ZodEmail,
17955
+ ZodEmoji: ZodEmoji,
17956
+ ZodEnum: ZodEnum,
17957
+ ZodError: ZodError,
17958
+ ZodExactOptional: ZodExactOptional,
17959
+ ZodFile: ZodFile,
17960
+ get ZodFirstPartyTypeKind () { return ZodFirstPartyTypeKind; },
17961
+ ZodFunction: ZodFunction,
17962
+ ZodGUID: ZodGUID,
17963
+ ZodIPv4: ZodIPv4,
17964
+ ZodIPv6: ZodIPv6,
17965
+ ZodISODate: ZodISODate,
17966
+ ZodISODateTime: ZodISODateTime,
17967
+ ZodISODuration: ZodISODuration,
17968
+ ZodISOTime: ZodISOTime,
17969
+ ZodIntersection: ZodIntersection,
17970
+ ZodIssueCode: ZodIssueCode,
17971
+ ZodJWT: ZodJWT,
17972
+ ZodKSUID: ZodKSUID,
17973
+ ZodLazy: ZodLazy,
17974
+ ZodLiteral: ZodLiteral,
17975
+ ZodMAC: ZodMAC,
17976
+ ZodMap: ZodMap,
17977
+ ZodNaN: ZodNaN,
17978
+ ZodNanoID: ZodNanoID,
17979
+ ZodNever: ZodNever,
17980
+ ZodNonOptional: ZodNonOptional,
17981
+ ZodNull: ZodNull,
17982
+ ZodNullable: ZodNullable,
17983
+ ZodNumber: ZodNumber,
17984
+ ZodNumberFormat: ZodNumberFormat,
17985
+ ZodObject: ZodObject,
17986
+ ZodOptional: ZodOptional,
17987
+ ZodPipe: ZodPipe,
17988
+ ZodPrefault: ZodPrefault,
17989
+ ZodPromise: ZodPromise,
17990
+ ZodReadonly: ZodReadonly,
17991
+ ZodRealError: ZodRealError,
17992
+ ZodRecord: ZodRecord,
17993
+ ZodSet: ZodSet,
17994
+ ZodString: ZodString,
17995
+ ZodStringFormat: ZodStringFormat,
17996
+ ZodSuccess: ZodSuccess,
17997
+ ZodSymbol: ZodSymbol,
17998
+ ZodTemplateLiteral: ZodTemplateLiteral,
17999
+ ZodTransform: ZodTransform,
18000
+ ZodTuple: ZodTuple,
18001
+ ZodType: ZodType,
18002
+ ZodULID: ZodULID,
18003
+ ZodURL: ZodURL,
18004
+ ZodUUID: ZodUUID,
18005
+ ZodUndefined: ZodUndefined,
18006
+ ZodUnion: ZodUnion,
18007
+ ZodUnknown: ZodUnknown,
18008
+ ZodVoid: ZodVoid,
18009
+ ZodXID: ZodXID,
18010
+ ZodXor: ZodXor,
18011
+ _ZodString: _ZodString,
18012
+ _default: _default,
18013
+ _function: _function,
18014
+ any: any,
18015
+ array: array,
18016
+ base64: base64,
18017
+ base64url: base64url,
18018
+ bigint: bigint$1,
18019
+ boolean: boolean$1,
18020
+ catch: _catch,
18021
+ check: check,
18022
+ cidrv4: cidrv4,
18023
+ cidrv6: cidrv6,
18024
+ clone: clone,
18025
+ codec: codec,
18026
+ coerce: coerce,
18027
+ config: config,
18028
+ core: index$1,
18029
+ cuid: cuid,
18030
+ cuid2: cuid2,
18031
+ custom: custom,
18032
+ date: date$1,
18033
+ decode: decode,
18034
+ decodeAsync: decodeAsync,
18035
+ describe: describe,
18036
+ discriminatedUnion: discriminatedUnion,
18037
+ e164: e164,
18038
+ email: email,
18039
+ emoji: emoji,
18040
+ encode: encode,
18041
+ encodeAsync: encodeAsync,
18042
+ endsWith: _endsWith,
18043
+ enum: _enum,
18044
+ exactOptional: exactOptional,
18045
+ file: file,
18046
+ flattenError: flattenError,
18047
+ float32: float32,
18048
+ float64: float64,
18049
+ formatError: formatError,
18050
+ fromJSONSchema: fromJSONSchema,
18051
+ function: _function,
18052
+ getErrorMap: getErrorMap,
18053
+ globalRegistry: globalRegistry,
18054
+ gt: _gt,
18055
+ gte: _gte,
18056
+ guid: guid,
18057
+ hash: hash,
18058
+ hex: hex,
18059
+ hostname: hostname,
18060
+ httpUrl: httpUrl,
18061
+ includes: _includes,
18062
+ instanceof: _instanceof,
18063
+ int: int,
18064
+ int32: int32,
18065
+ int64: int64,
18066
+ intersection: intersection,
18067
+ ipv4: ipv4,
18068
+ ipv6: ipv6,
18069
+ iso: _iso,
18070
+ json: json,
18071
+ jwt: jwt,
18072
+ keyof: keyof,
18073
+ ksuid: ksuid,
18074
+ lazy: lazy,
18075
+ length: _length,
18076
+ literal: literal,
18077
+ locales: index$2,
18078
+ looseObject: looseObject,
18079
+ looseRecord: looseRecord,
18080
+ lowercase: _lowercase,
18081
+ lt: _lt,
18082
+ lte: _lte,
18083
+ mac: mac,
18084
+ map: map,
18085
+ maxLength: _maxLength,
18086
+ maxSize: _maxSize,
18087
+ meta: meta,
18088
+ mime: _mime,
18089
+ minLength: _minLength,
18090
+ minSize: _minSize,
18091
+ multipleOf: _multipleOf,
18092
+ nan: nan,
18093
+ nanoid: nanoid,
18094
+ nativeEnum: nativeEnum,
18095
+ negative: _negative,
18096
+ never: never,
18097
+ nonnegative: _nonnegative,
18098
+ nonoptional: nonoptional,
18099
+ nonpositive: _nonpositive,
18100
+ normalize: _normalize,
18101
+ null: _null,
18102
+ nullable: nullable,
18103
+ nullish: nullish,
18104
+ number: number$1,
18105
+ object: object,
18106
+ optional: optional,
18107
+ overwrite: _overwrite,
18108
+ parse: parse$1,
18109
+ parseAsync: parseAsync,
18110
+ partialRecord: partialRecord,
18111
+ pipe: pipe,
18112
+ positive: _positive,
18113
+ prefault: prefault,
18114
+ preprocess: preprocess,
18115
+ prettifyError: prettifyError,
18116
+ promise: promise,
18117
+ property: _property,
18118
+ readonly: readonly,
18119
+ record: record,
18120
+ refine: refine,
18121
+ regex: _regex,
18122
+ regexes: regexes,
18123
+ registry: registry,
18124
+ safeDecode: safeDecode,
18125
+ safeDecodeAsync: safeDecodeAsync,
18126
+ safeEncode: safeEncode,
18127
+ safeEncodeAsync: safeEncodeAsync,
18128
+ safeParse: safeParse,
18129
+ safeParseAsync: safeParseAsync,
18130
+ set: set,
18131
+ setErrorMap: setErrorMap,
18132
+ size: _size,
18133
+ slugify: _slugify,
18134
+ startsWith: _startsWith,
18135
+ strictObject: strictObject,
18136
+ string: string$1,
18137
+ stringFormat: stringFormat,
18138
+ stringbool: stringbool,
18139
+ success: success,
18140
+ superRefine: superRefine,
18141
+ symbol: symbol,
18142
+ templateLiteral: templateLiteral,
18143
+ toJSONSchema: toJSONSchema,
18144
+ toLowerCase: _toLowerCase,
18145
+ toUpperCase: _toUpperCase,
18146
+ transform: transform,
18147
+ treeifyError: treeifyError,
18148
+ trim: _trim,
18149
+ tuple: tuple,
18150
+ uint32: uint32,
18151
+ uint64: uint64,
18152
+ ulid: ulid,
18153
+ undefined: _undefined,
18154
+ union: union,
18155
+ unknown: unknown,
18156
+ uppercase: _uppercase,
18157
+ url: url,
18158
+ util: util,
18159
+ uuid: uuid,
18160
+ uuidv4: uuidv4,
18161
+ uuidv6: uuidv6,
18162
+ uuidv7: uuidv7,
18163
+ void: _void,
18164
+ xid: xid,
18165
+ xor: xor
18220
18166
  });
18221
18167
 
18222
18168
  var promSchemaPhone = z.string().regex(/^\+7\d{10}$/, {
@@ -23679,12 +23625,36 @@ var PromFrom = function (_a) {
23679
23625
  });
23680
23626
  var form = externalForm || internalForm;
23681
23627
  var _c = form.formState, errors = _c.errors, isSubmitting = _c.isSubmitting, isValid = _c.isValid;
23682
- var handleSubmit = onSubmit ? form.handleSubmit(onSubmit) : undefined;
23628
+ var _d = useState(""), serverError = _d[0], setServerError = _d[1];
23629
+ var handleOnSubmit = function (data) { return __awaiter(void 0, void 0, void 0, function () {
23630
+ var error_1, errorMessage;
23631
+ return __generator(this, function (_a) {
23632
+ switch (_a.label) {
23633
+ case 0:
23634
+ _a.trys.push([0, 2, , 3]);
23635
+ return [4 /*yield*/, onSubmit(data)];
23636
+ case 1:
23637
+ _a.sent();
23638
+ return [3 /*break*/, 3];
23639
+ case 2:
23640
+ error_1 = _a.sent();
23641
+ errorMessage = "Произошла ошибка при отправке формы";
23642
+ setServerError(error_1 || errorMessage);
23643
+ throw error_1;
23644
+ case 3: return [2 /*return*/];
23645
+ }
23646
+ });
23647
+ }); };
23648
+ var handleSubmit = handleOnSubmit
23649
+ ? form.handleSubmit(handleOnSubmit)
23650
+ : undefined;
23683
23651
  return (jsxRuntimeExports.jsx(FormProvider, __assign({}, form, { children: jsxRuntimeExports.jsx("form", { onSubmit: handleSubmit, className: "space-y-4", onKeyDown: function (e) {
23684
23652
  if (e.key === "Enter" && !onSubmit) {
23685
23653
  e.preventDefault();
23686
23654
  }
23687
- }, children: render ? render({ form: form, errors: errors, isSubmitting: isSubmitting, isValid: isValid }) : children }) })));
23655
+ }, children: render
23656
+ ? render({ form: form, errors: errors, isSubmitting: isSubmitting, isValid: isValid, serverError: serverError })
23657
+ : children }) })));
23688
23658
  };
23689
23659
  var usePromForm = function () {
23690
23660
  var form = useFormContext();
@@ -23697,11 +23667,11 @@ var usePromForm = function () {
23697
23667
  reset: form.reset,
23698
23668
  watch: form.watch,
23699
23669
  control: form.control,
23700
- setValue: form.setValue,
23670
+ trigger: form.trigger,
23701
23671
  register: form.register,
23702
- handleSubmit: form.handleSubmit,
23672
+ setValue: form.setValue,
23703
23673
  getValues: form.getValues,
23704
- trigger: form.trigger,
23674
+ handleSubmit: form.handleSubmit,
23705
23675
  };
23706
23676
  };
23707
23677
  var PromFormFiled = function (_a) {
@@ -23800,11 +23770,6 @@ var PromTextarea = function (_a) {
23800
23770
  } }));
23801
23771
  };
23802
23772
 
23803
- function PromSkeleton(_a) {
23804
- var className = _a.className, props = __rest(_a, ["className"]);
23805
- return (jsxRuntimeExports.jsx("div", __assign({ "data-slot": "skeleton", className: cn("bg-accent animate-pulse rounded-md", className) }, props)));
23806
- }
23807
-
23808
23773
  var SWITCH_NAME = "Switch";
23809
23774
  var [createSwitchContext] = createContextScope(SWITCH_NAME);
23810
23775
  var [SwitchProvider, useSwitchContext] = createSwitchContext(SWITCH_NAME);
@@ -23952,6 +23917,11 @@ var PromSwitch = React.forwardRef(function (_a, ref) {
23952
23917
  });
23953
23918
  PromSwitch.displayName = Root.displayName;
23954
23919
 
23920
+ function PromSkeleton(_a) {
23921
+ var className = _a.className, props = __rest(_a, ["className"]);
23922
+ return (jsxRuntimeExports.jsx("div", __assign({ "data-slot": "skeleton", className: cn("bg-accent animate-pulse rounded-md", className) }, props)));
23923
+ }
23924
+
23955
23925
  var PromSwitchField = function (_a) {
23956
23926
  var name = _a.name, label = _a.label; _a.className; var _b = _a.isLoad, isLoad = _b === void 0 ? false : _b, _c = _a.isDisable, isDisable = _c === void 0 ? false : _c, props = __rest(_a, ["name", "label", "className", "isLoad", "isDisable"]);
23957
23927
  var control = useFormContext().control;
@@ -23987,4 +23957,38 @@ function promSelectFilterOptions(obj, allowedKeys) {
23987
23957
  });
23988
23958
  }
23989
23959
 
23990
- export { PROM_MSG_ERROR, PromButton, PromFormFiled, PromFrom, PromInput, PromLabel, PromMessage, PromSelect, PromSelectContent, PromSelectField, PromSelectGroup, PromSelectItem, PromSelectLabel, PromSelectScrollDownButton, PromSelectScrollUpButton, PromSelectSeparator, PromSelectTrigger, PromSelectValue, PromSkeleton, PromSwitchField, PromTextarea, buttonVariants, cn, promSchemaPhone, promSelectFilterOptions, skeletonVariants, useCreatePromForm, usePromForm };
23960
+ function styleInject(css, ref) {
23961
+ if ( ref === void 0 ) ref = {};
23962
+ var insertAt = ref.insertAt;
23963
+
23964
+ if (typeof document === 'undefined') { return; }
23965
+
23966
+ var head = document.head || document.getElementsByTagName('head')[0];
23967
+ var style = document.createElement('style');
23968
+ style.type = 'text/css';
23969
+
23970
+ if (insertAt === 'top') {
23971
+ if (head.firstChild) {
23972
+ head.insertBefore(style, head.firstChild);
23973
+ } else {
23974
+ head.appendChild(style);
23975
+ }
23976
+ } else {
23977
+ head.appendChild(style);
23978
+ }
23979
+
23980
+ if (style.styleSheet) {
23981
+ style.styleSheet.cssText = css;
23982
+ } else {
23983
+ style.appendChild(document.createTextNode(css));
23984
+ }
23985
+ }
23986
+
23987
+ var css_248z = "/*! tailwindcss v4.1.18 | MIT License | https://tailwindcss.com */\n@layer properties;\n@layer theme, base, components, utilities;\n@layer theme {\n :root, :host {\n --font-sans: ui-sans-serif, system-ui, sans-serif, \"Apple Color Emoji\",\n \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, \"Liberation Mono\",\n \"Courier New\", monospace;\n --color-red-500: oklch(63.7% 0.237 25.331);\n --color-gray-100: oklch(96.7% 0.003 264.542);\n --color-white: #fff;\n --spacing: 0.25rem;\n --text-xs: 0.75rem;\n --text-xs--line-height: calc(1 / 0.75);\n --text-sm: 0.875rem;\n --text-sm--line-height: calc(1.25 / 0.875);\n --text-base: 1rem;\n --text-base--line-height: calc(1.5 / 1);\n --text-lg: 1.125rem;\n --text-lg--line-height: calc(1.75 / 1.125);\n --font-weight-medium: 500;\n --radius-sm: 0.25rem;\n --radius-md: 0.375rem;\n --radius-lg: 0.5rem;\n --animate-spin: spin 1s linear infinite;\n --animate-pulse: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;\n --default-transition-duration: 150ms;\n --default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);\n --default-font-family: var(--font-sans);\n --default-mono-font-family: var(--font-mono);\n }\n}\n@layer base {\n *, ::after, ::before, ::backdrop, ::file-selector-button {\n box-sizing: border-box;\n margin: 0;\n padding: 0;\n border: 0 solid;\n }\n html, :host {\n line-height: 1.5;\n -webkit-text-size-adjust: 100%;\n tab-size: 4;\n font-family: var(--default-font-family, ui-sans-serif, system-ui, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\");\n font-feature-settings: var(--default-font-feature-settings, normal);\n font-variation-settings: var(--default-font-variation-settings, normal);\n -webkit-tap-highlight-color: transparent;\n }\n hr {\n height: 0;\n color: inherit;\n border-top-width: 1px;\n }\n abbr:where([title]) {\n -webkit-text-decoration: underline dotted;\n text-decoration: underline dotted;\n }\n h1, h2, h3, h4, h5, h6 {\n font-size: inherit;\n font-weight: inherit;\n }\n a {\n color: inherit;\n -webkit-text-decoration: inherit;\n text-decoration: inherit;\n }\n b, strong {\n font-weight: bolder;\n }\n code, kbd, samp, pre {\n font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, \"Liberation Mono\", \"Courier New\", monospace);\n font-feature-settings: var(--default-mono-font-feature-settings, normal);\n font-variation-settings: var(--default-mono-font-variation-settings, normal);\n font-size: 1em;\n }\n small {\n font-size: 80%;\n }\n sub, sup {\n font-size: 75%;\n line-height: 0;\n position: relative;\n vertical-align: baseline;\n }\n sub {\n bottom: -0.25em;\n }\n sup {\n top: -0.5em;\n }\n table {\n text-indent: 0;\n border-color: inherit;\n border-collapse: collapse;\n }\n :-moz-focusring {\n outline: auto;\n }\n progress {\n vertical-align: baseline;\n }\n summary {\n display: list-item;\n }\n ol, ul, menu {\n list-style: none;\n }\n img, svg, video, canvas, audio, iframe, embed, object {\n display: block;\n vertical-align: middle;\n }\n img, video {\n max-width: 100%;\n height: auto;\n }\n button, input, select, optgroup, textarea, ::file-selector-button {\n font: inherit;\n font-feature-settings: inherit;\n font-variation-settings: inherit;\n letter-spacing: inherit;\n color: inherit;\n border-radius: 0;\n background-color: transparent;\n opacity: 1;\n }\n :where(select:is([multiple], [size])) optgroup {\n font-weight: bolder;\n }\n :where(select:is([multiple], [size])) optgroup option {\n padding-inline-start: 20px;\n }\n ::file-selector-button {\n margin-inline-end: 4px;\n }\n ::placeholder {\n opacity: 1;\n }\n @supports (not (-webkit-appearance: -apple-pay-button)) or (contain-intrinsic-size: 1px) {\n ::placeholder {\n color: currentcolor;\n @supports (color: color-mix(in lab, red, red)) {\n color: color-mix(in oklab, currentcolor 50%, transparent);\n }\n }\n }\n textarea {\n resize: vertical;\n }\n ::-webkit-search-decoration {\n -webkit-appearance: none;\n }\n ::-webkit-date-and-time-value {\n min-height: 1lh;\n text-align: inherit;\n }\n ::-webkit-datetime-edit {\n display: inline-flex;\n }\n ::-webkit-datetime-edit-fields-wrapper {\n padding: 0;\n }\n ::-webkit-datetime-edit, ::-webkit-datetime-edit-year-field, ::-webkit-datetime-edit-month-field, ::-webkit-datetime-edit-day-field, ::-webkit-datetime-edit-hour-field, ::-webkit-datetime-edit-minute-field, ::-webkit-datetime-edit-second-field, ::-webkit-datetime-edit-millisecond-field, ::-webkit-datetime-edit-meridiem-field {\n padding-block: 0;\n }\n ::-webkit-calendar-picker-indicator {\n line-height: 1;\n }\n :-moz-ui-invalid {\n box-shadow: none;\n }\n button, input:where([type=\"button\"], [type=\"reset\"], [type=\"submit\"]), ::file-selector-button {\n appearance: button;\n }\n ::-webkit-inner-spin-button, ::-webkit-outer-spin-button {\n height: auto;\n }\n [hidden]:where(:not([hidden=\"until-found\"])) {\n display: none !important;\n }\n}\n@layer utilities {\n .pointer-events-none {\n pointer-events: none;\n }\n .collapse {\n visibility: collapse;\n }\n .invisible {\n visibility: hidden;\n }\n .visible {\n visibility: visible;\n }\n .sr-only {\n position: absolute;\n width: 1px;\n height: 1px;\n padding: 0;\n margin: -1px;\n overflow: hidden;\n clip-path: inset(50%);\n white-space: nowrap;\n border-width: 0;\n }\n .not-sr-only {\n position: static;\n width: auto;\n height: auto;\n padding: 0;\n margin: 0;\n overflow: visible;\n clip-path: none;\n white-space: normal;\n }\n .absolute {\n position: absolute;\n }\n .fixed {\n position: fixed;\n }\n .relative {\n position: relative;\n }\n .static {\n position: static;\n }\n .sticky {\n position: sticky;\n }\n .-inset-1 {\n inset: calc(var(--spacing) * -1);\n }\n .right-2 {\n right: calc(var(--spacing) * 2);\n }\n .isolate {\n isolation: isolate;\n }\n .isolation-auto {\n isolation: auto;\n }\n .z-50 {\n z-index: 50;\n }\n .container {\n width: 100%;\n @media (width >= 40rem) {\n max-width: 40rem;\n }\n @media (width >= 48rem) {\n max-width: 48rem;\n }\n @media (width >= 64rem) {\n max-width: 64rem;\n }\n @media (width >= 80rem) {\n max-width: 80rem;\n }\n @media (width >= 96rem) {\n max-width: 96rem;\n }\n }\n .-mx-1 {\n margin-inline: calc(var(--spacing) * -1);\n }\n .my-1 {\n margin-block: calc(var(--spacing) * 1);\n }\n .mt-1 {\n margin-top: calc(var(--spacing) * 1);\n }\n .block {\n display: block;\n }\n .contents {\n display: contents;\n }\n .flex {\n display: flex;\n }\n .flow-root {\n display: flow-root;\n }\n .grid {\n display: grid;\n }\n .hidden {\n display: none;\n }\n .inline {\n display: inline;\n }\n .inline-block {\n display: inline-block;\n }\n .inline-flex {\n display: inline-flex;\n }\n .inline-grid {\n display: inline-grid;\n }\n .inline-table {\n display: inline-table;\n }\n .list-item {\n display: list-item;\n }\n .table {\n display: table;\n }\n .table-caption {\n display: table-caption;\n }\n .table-cell {\n display: table-cell;\n }\n .table-column {\n display: table-column;\n }\n .table-column-group {\n display: table-column-group;\n }\n .table-footer-group {\n display: table-footer-group;\n }\n .table-header-group {\n display: table-header-group;\n }\n .table-row {\n display: table-row;\n }\n .table-row-group {\n display: table-row-group;\n }\n .field-sizing-content {\n field-sizing: content;\n }\n .size-3 {\n width: calc(var(--spacing) * 3);\n height: calc(var(--spacing) * 3);\n }\n .size-3\\.5 {\n width: calc(var(--spacing) * 3.5);\n height: calc(var(--spacing) * 3.5);\n }\n .size-4 {\n width: calc(var(--spacing) * 4);\n height: calc(var(--spacing) * 4);\n }\n .size-8 {\n width: calc(var(--spacing) * 8);\n height: calc(var(--spacing) * 8);\n }\n .size-9 {\n width: calc(var(--spacing) * 9);\n height: calc(var(--spacing) * 9);\n }\n .size-10 {\n width: calc(var(--spacing) * 10);\n height: calc(var(--spacing) * 10);\n }\n .h-2 {\n height: calc(var(--spacing) * 2);\n }\n .h-4 {\n height: calc(var(--spacing) * 4);\n }\n .h-5 {\n height: calc(var(--spacing) * 5);\n }\n .h-8 {\n height: calc(var(--spacing) * 8);\n }\n .h-9 {\n height: calc(var(--spacing) * 9);\n }\n .h-10 {\n height: calc(var(--spacing) * 10);\n }\n .h-\\[var\\(--radix-select-trigger-height\\)\\] {\n height: var(--radix-select-trigger-height);\n }\n .h-px {\n height: 1px;\n }\n .max-h-\\(--radix-select-content-available-height\\) {\n max-height: var(--radix-select-content-available-height);\n }\n .max-h-50 {\n max-height: calc(var(--spacing) * 50);\n }\n .min-h-16 {\n min-height: calc(var(--spacing) * 16);\n }\n .w-4 {\n width: calc(var(--spacing) * 4);\n }\n .w-9 {\n width: calc(var(--spacing) * 9);\n }\n .w-10 {\n width: calc(var(--spacing) * 10);\n }\n .w-fit {\n width: fit-content;\n }\n .w-full {\n width: 100%;\n }\n .min-w-0 {\n min-width: calc(var(--spacing) * 0);\n }\n .min-w-\\[8rem\\] {\n min-width: 8rem;\n }\n .min-w-\\[var\\(--radix-select-trigger-width\\)\\] {\n min-width: var(--radix-select-trigger-width);\n }\n .flex-shrink {\n flex-shrink: 1;\n }\n .shrink {\n flex-shrink: 1;\n }\n .shrink-0 {\n flex-shrink: 0;\n }\n .flex-grow {\n flex-grow: 1;\n }\n .grow {\n flex-grow: 1;\n }\n .border-collapse {\n border-collapse: collapse;\n }\n .origin-\\(--radix-select-content-transform-origin\\) {\n transform-origin: var(--radix-select-content-transform-origin);\n }\n .translate-none {\n translate: none;\n }\n .scale-3d {\n scale: var(--tw-scale-x) var(--tw-scale-y) var(--tw-scale-z);\n }\n .transform {\n transform: var(--tw-rotate-x,) var(--tw-rotate-y,) var(--tw-rotate-z,) var(--tw-skew-x,) var(--tw-skew-y,);\n }\n .animate-pulse {\n animation: var(--animate-pulse);\n }\n .animate-spin {\n animation: var(--animate-spin);\n }\n .cursor-default {\n cursor: default;\n }\n .cursor-pointer {\n cursor: pointer;\n }\n .touch-pinch-zoom {\n --tw-pinch-zoom: pinch-zoom;\n touch-action: var(--tw-pan-x,) var(--tw-pan-y,) var(--tw-pinch-zoom,);\n }\n .resize {\n resize: both;\n }\n .scroll-my-1 {\n scroll-margin-block: calc(var(--spacing) * 1);\n }\n .flex-wrap {\n flex-wrap: wrap;\n }\n .items-center {\n align-items: center;\n }\n .justify-between {\n justify-content: space-between;\n }\n .justify-center {\n justify-content: center;\n }\n .gap-1 {\n gap: calc(var(--spacing) * 1);\n }\n .gap-1\\.5 {\n gap: calc(var(--spacing) * 1.5);\n }\n .gap-2 {\n gap: calc(var(--spacing) * 2);\n }\n .space-y-2 {\n :where(& > :not(:last-child)) {\n --tw-space-y-reverse: 0;\n margin-block-start: calc(calc(var(--spacing) * 2) * var(--tw-space-y-reverse));\n margin-block-end: calc(calc(var(--spacing) * 2) * calc(1 - var(--tw-space-y-reverse)));\n }\n }\n .space-y-4 {\n :where(& > :not(:last-child)) {\n --tw-space-y-reverse: 0;\n margin-block-start: calc(calc(var(--spacing) * 4) * var(--tw-space-y-reverse));\n margin-block-end: calc(calc(var(--spacing) * 4) * calc(1 - var(--tw-space-y-reverse)));\n }\n }\n .space-y-reverse {\n :where(& > :not(:last-child)) {\n --tw-space-y-reverse: 1;\n }\n }\n .space-x-reverse {\n :where(& > :not(:last-child)) {\n --tw-space-x-reverse: 1;\n }\n }\n .divide-x {\n :where(& > :not(:last-child)) {\n --tw-divide-x-reverse: 0;\n border-inline-style: var(--tw-border-style);\n border-inline-start-width: calc(1px * var(--tw-divide-x-reverse));\n border-inline-end-width: calc(1px * calc(1 - var(--tw-divide-x-reverse)));\n }\n }\n .divide-y {\n :where(& > :not(:last-child)) {\n --tw-divide-y-reverse: 0;\n border-bottom-style: var(--tw-border-style);\n border-top-style: var(--tw-border-style);\n border-top-width: calc(1px * var(--tw-divide-y-reverse));\n border-bottom-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));\n }\n }\n .divide-y-reverse {\n :where(& > :not(:last-child)) {\n --tw-divide-y-reverse: 1;\n }\n }\n .truncate {\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n }\n .overflow-x-hidden {\n overflow-x: hidden;\n }\n .overflow-y-auto {\n overflow-y: auto;\n }\n .rounded {\n border-radius: 0.25rem;\n }\n .rounded-full {\n border-radius: calc(infinity * 1px);\n }\n .rounded-lg {\n border-radius: var(--radius-lg);\n }\n .rounded-md {\n border-radius: var(--radius-md);\n }\n .rounded-sm {\n border-radius: var(--radius-sm);\n }\n .rounded-s {\n border-start-start-radius: 0.25rem;\n border-end-start-radius: 0.25rem;\n }\n .rounded-ss {\n border-start-start-radius: 0.25rem;\n }\n .rounded-e {\n border-start-end-radius: 0.25rem;\n border-end-end-radius: 0.25rem;\n }\n .rounded-se {\n border-start-end-radius: 0.25rem;\n }\n .rounded-ee {\n border-end-end-radius: 0.25rem;\n }\n .rounded-es {\n border-end-start-radius: 0.25rem;\n }\n .rounded-t {\n border-top-left-radius: 0.25rem;\n border-top-right-radius: 0.25rem;\n }\n .rounded-l {\n border-top-left-radius: 0.25rem;\n border-bottom-left-radius: 0.25rem;\n }\n .rounded-tl {\n border-top-left-radius: 0.25rem;\n }\n .rounded-r {\n border-top-right-radius: 0.25rem;\n border-bottom-right-radius: 0.25rem;\n }\n .rounded-tr {\n border-top-right-radius: 0.25rem;\n }\n .rounded-b {\n border-bottom-right-radius: 0.25rem;\n border-bottom-left-radius: 0.25rem;\n }\n .rounded-br {\n border-bottom-right-radius: 0.25rem;\n }\n .rounded-bl {\n border-bottom-left-radius: 0.25rem;\n }\n .border {\n border-style: var(--tw-border-style);\n border-width: 1px;\n }\n .border-2 {\n border-style: var(--tw-border-style);\n border-width: 2px;\n }\n .border-x {\n border-inline-style: var(--tw-border-style);\n border-inline-width: 1px;\n }\n .border-y {\n border-block-style: var(--tw-border-style);\n border-block-width: 1px;\n }\n .border-s {\n border-inline-start-style: var(--tw-border-style);\n border-inline-start-width: 1px;\n }\n .border-e {\n border-inline-end-style: var(--tw-border-style);\n border-inline-end-width: 1px;\n }\n .border-t {\n border-top-style: var(--tw-border-style);\n border-top-width: 1px;\n }\n .border-r {\n border-right-style: var(--tw-border-style);\n border-right-width: 1px;\n }\n .border-b {\n border-bottom-style: var(--tw-border-style);\n border-bottom-width: 1px;\n }\n .border-l {\n border-left-style: var(--tw-border-style);\n border-left-width: 1px;\n }\n .border-transparent {\n border-color: transparent;\n }\n .bg-gray-100 {\n background-color: var(--color-gray-100);\n }\n .bg-transparent {\n background-color: transparent;\n }\n .bg-repeat {\n background-repeat: repeat;\n }\n .mask-no-clip {\n mask-clip: no-clip;\n }\n .mask-repeat {\n mask-repeat: repeat;\n }\n .p-1 {\n padding: calc(var(--spacing) * 1);\n }\n .p-4 {\n padding: calc(var(--spacing) * 4);\n }\n .px-2 {\n padding-inline: calc(var(--spacing) * 2);\n }\n .px-3 {\n padding-inline: calc(var(--spacing) * 3);\n }\n .px-4 {\n padding-inline: calc(var(--spacing) * 4);\n }\n .px-6 {\n padding-inline: calc(var(--spacing) * 6);\n }\n .py-1 {\n padding-block: calc(var(--spacing) * 1);\n }\n .py-1\\.5 {\n padding-block: calc(var(--spacing) * 1.5);\n }\n .py-2 {\n padding-block: calc(var(--spacing) * 2);\n }\n .pr-8 {\n padding-right: calc(var(--spacing) * 8);\n }\n .pl-2 {\n padding-left: calc(var(--spacing) * 2);\n }\n .text-base {\n font-size: var(--text-base);\n line-height: var(--tw-leading, var(--text-base--line-height));\n }\n .text-lg {\n font-size: var(--text-lg);\n line-height: var(--tw-leading, var(--text-lg--line-height));\n }\n .text-sm {\n font-size: var(--text-sm);\n line-height: var(--tw-leading, var(--text-sm--line-height));\n }\n .text-xs {\n font-size: var(--text-xs);\n line-height: var(--tw-leading, var(--text-xs--line-height));\n }\n .leading-none {\n --tw-leading: 1;\n line-height: 1;\n }\n .font-medium {\n --tw-font-weight: var(--font-weight-medium);\n font-weight: var(--font-weight-medium);\n }\n .text-wrap {\n text-wrap: wrap;\n }\n .text-clip {\n text-overflow: clip;\n }\n .text-ellipsis {\n text-overflow: ellipsis;\n }\n .whitespace-nowrap {\n white-space: nowrap;\n }\n .text-red-500 {\n color: var(--color-red-500);\n }\n .text-white {\n color: var(--color-white);\n }\n .capitalize {\n text-transform: capitalize;\n }\n .lowercase {\n text-transform: lowercase;\n }\n .normal-case {\n text-transform: none;\n }\n .uppercase {\n text-transform: uppercase;\n }\n .italic {\n font-style: italic;\n }\n .not-italic {\n font-style: normal;\n }\n .diagonal-fractions {\n --tw-numeric-fraction: diagonal-fractions;\n font-variant-numeric: var(--tw-ordinal,) var(--tw-slashed-zero,) var(--tw-numeric-figure,) var(--tw-numeric-spacing,) var(--tw-numeric-fraction,);\n }\n .lining-nums {\n --tw-numeric-figure: lining-nums;\n font-variant-numeric: var(--tw-ordinal,) var(--tw-slashed-zero,) var(--tw-numeric-figure,) var(--tw-numeric-spacing,) var(--tw-numeric-fraction,);\n }\n .oldstyle-nums {\n --tw-numeric-figure: oldstyle-nums;\n font-variant-numeric: var(--tw-ordinal,) var(--tw-slashed-zero,) var(--tw-numeric-figure,) var(--tw-numeric-spacing,) var(--tw-numeric-fraction,);\n }\n .ordinal {\n --tw-ordinal: ordinal;\n font-variant-numeric: var(--tw-ordinal,) var(--tw-slashed-zero,) var(--tw-numeric-figure,) var(--tw-numeric-spacing,) var(--tw-numeric-fraction,);\n }\n .proportional-nums {\n --tw-numeric-spacing: proportional-nums;\n font-variant-numeric: var(--tw-ordinal,) var(--tw-slashed-zero,) var(--tw-numeric-figure,) var(--tw-numeric-spacing,) var(--tw-numeric-fraction,);\n }\n .slashed-zero {\n --tw-slashed-zero: slashed-zero;\n font-variant-numeric: var(--tw-ordinal,) var(--tw-slashed-zero,) var(--tw-numeric-figure,) var(--tw-numeric-spacing,) var(--tw-numeric-fraction,);\n }\n .stacked-fractions {\n --tw-numeric-fraction: stacked-fractions;\n font-variant-numeric: var(--tw-ordinal,) var(--tw-slashed-zero,) var(--tw-numeric-figure,) var(--tw-numeric-spacing,) var(--tw-numeric-fraction,);\n }\n .tabular-nums {\n --tw-numeric-spacing: tabular-nums;\n font-variant-numeric: var(--tw-ordinal,) var(--tw-slashed-zero,) var(--tw-numeric-figure,) var(--tw-numeric-spacing,) var(--tw-numeric-fraction,);\n }\n .normal-nums {\n font-variant-numeric: normal;\n }\n .line-through {\n text-decoration-line: line-through;\n }\n .no-underline {\n text-decoration-line: none;\n }\n .overline {\n text-decoration-line: overline;\n }\n .underline {\n text-decoration-line: underline;\n }\n .underline-offset-4 {\n text-underline-offset: 4px;\n }\n .antialiased {\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n }\n .subpixel-antialiased {\n -webkit-font-smoothing: auto;\n -moz-osx-font-smoothing: auto;\n }\n .opacity-0 {\n opacity: 0%;\n }\n .opacity-50 {\n opacity: 50%;\n }\n .shadow {\n --tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 1px 2px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1));\n box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);\n }\n .shadow-lg {\n --tw-shadow: 0 10px 15px -3px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 4px 6px -4px var(--tw-shadow-color, rgb(0 0 0 / 0.1));\n box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);\n }\n .shadow-md {\n --tw-shadow: 0 4px 6px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 2px 4px -2px var(--tw-shadow-color, rgb(0 0 0 / 0.1));\n box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);\n }\n .shadow-sm {\n --tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 1px 2px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1));\n box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);\n }\n .shadow-xs {\n --tw-shadow: 0 1px 2px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.05));\n box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);\n }\n .ring {\n --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);\n box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);\n }\n .ring-0 {\n --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);\n box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);\n }\n .inset-ring {\n --tw-inset-ring-shadow: inset 0 0 0 1px var(--tw-inset-ring-color, currentcolor);\n box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);\n }\n .outline-hidden {\n --tw-outline-style: none;\n outline-style: none;\n @media (forced-colors: active) {\n outline: 2px solid transparent;\n outline-offset: 2px;\n }\n }\n .outline {\n outline-style: var(--tw-outline-style);\n outline-width: 1px;\n }\n .blur {\n --tw-blur: blur(8px);\n filter: var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,);\n }\n .drop-shadow {\n --tw-drop-shadow-size: drop-shadow(0 1px 2px var(--tw-drop-shadow-color, rgb(0 0 0 / 0.1))) drop-shadow(0 1px 1px var(--tw-drop-shadow-color, rgb(0 0 0 / 0.06)));\n --tw-drop-shadow: drop-shadow(0 1px 2px rgb(0 0 0 / 0.1)) drop-shadow( 0 1px 1px rgb(0 0 0 / 0.06));\n filter: var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,);\n }\n .grayscale {\n --tw-grayscale: grayscale(100%);\n filter: var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,);\n }\n .invert {\n --tw-invert: invert(100%);\n filter: var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,);\n }\n .sepia {\n --tw-sepia: sepia(100%);\n filter: var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,);\n }\n .filter {\n filter: var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,);\n }\n .backdrop-blur {\n --tw-backdrop-blur: blur(8px);\n -webkit-backdrop-filter: var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,) var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,) var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,) var(--tw-backdrop-sepia,);\n backdrop-filter: var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,) var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,) var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,) var(--tw-backdrop-sepia,);\n }\n .backdrop-grayscale {\n --tw-backdrop-grayscale: grayscale(100%);\n -webkit-backdrop-filter: var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,) var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,) var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,) var(--tw-backdrop-sepia,);\n backdrop-filter: var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,) var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,) var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,) var(--tw-backdrop-sepia,);\n }\n .backdrop-invert {\n --tw-backdrop-invert: invert(100%);\n -webkit-backdrop-filter: var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,) var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,) var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,) var(--tw-backdrop-sepia,);\n backdrop-filter: var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,) var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,) var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,) var(--tw-backdrop-sepia,);\n }\n .backdrop-sepia {\n --tw-backdrop-sepia: sepia(100%);\n -webkit-backdrop-filter: var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,) var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,) var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,) var(--tw-backdrop-sepia,);\n backdrop-filter: var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,) var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,) var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,) var(--tw-backdrop-sepia,);\n }\n .backdrop-filter {\n -webkit-backdrop-filter: var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,) var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,) var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,) var(--tw-backdrop-sepia,);\n backdrop-filter: var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,) var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,) var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,) var(--tw-backdrop-sepia,);\n }\n .transition {\n transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to, opacity, box-shadow, transform, translate, scale, rotate, filter, -webkit-backdrop-filter, backdrop-filter, display, content-visibility, overlay, pointer-events;\n transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));\n transition-duration: var(--tw-duration, var(--default-transition-duration));\n }\n .transition-\\[color\\,box-shadow\\] {\n transition-property: color,box-shadow;\n transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));\n transition-duration: var(--tw-duration, var(--default-transition-duration));\n }\n .transition-all {\n transition-property: all;\n transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));\n transition-duration: var(--tw-duration, var(--default-transition-duration));\n }\n .transition-colors {\n transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to;\n transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));\n transition-duration: var(--tw-duration, var(--default-transition-duration));\n }\n .transition-transform {\n transition-property: transform, translate, scale, rotate;\n transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));\n transition-duration: var(--tw-duration, var(--default-transition-duration));\n }\n .outline-none {\n --tw-outline-style: none;\n outline-style: none;\n }\n .select-none {\n -webkit-user-select: none;\n user-select: none;\n }\n .divide-x-reverse {\n :where(& > :not(:last-child)) {\n --tw-divide-x-reverse: 1;\n }\n }\n .ring-inset {\n --tw-ring-inset: inset;\n }\n .group-data-\\[disabled\\=true\\]\\:pointer-events-none {\n &:is(:where(.group)[data-disabled=\"true\"] *) {\n pointer-events: none;\n }\n }\n .group-data-\\[disabled\\=true\\]\\:opacity-50 {\n &:is(:where(.group)[data-disabled=\"true\"] *) {\n opacity: 50%;\n }\n }\n .peer-disabled\\:cursor-not-allowed {\n &:is(:where(.peer):disabled ~ *) {\n cursor: not-allowed;\n }\n }\n .peer-disabled\\:opacity-50 {\n &:is(:where(.peer):disabled ~ *) {\n opacity: 50%;\n }\n }\n .file\\:inline-flex {\n &::file-selector-button {\n display: inline-flex;\n }\n }\n .file\\:h-7 {\n &::file-selector-button {\n height: calc(var(--spacing) * 7);\n }\n }\n .file\\:border-0 {\n &::file-selector-button {\n border-style: var(--tw-border-style);\n border-width: 0px;\n }\n }\n .file\\:bg-transparent {\n &::file-selector-button {\n background-color: transparent;\n }\n }\n .file\\:text-sm {\n &::file-selector-button {\n font-size: var(--text-sm);\n line-height: var(--tw-leading, var(--text-sm--line-height));\n }\n }\n .file\\:font-medium {\n &::file-selector-button {\n --tw-font-weight: var(--font-weight-medium);\n font-weight: var(--font-weight-medium);\n }\n }\n .hover\\:underline {\n &:hover {\n @media (hover: hover) {\n text-decoration-line: underline;\n }\n }\n }\n .focus-visible\\:ring-2 {\n &:focus-visible {\n --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);\n box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);\n }\n }\n .focus-visible\\:ring-\\[3px\\] {\n &:focus-visible {\n --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);\n box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);\n }\n }\n .focus-visible\\:ring-offset-2 {\n &:focus-visible {\n --tw-ring-offset-width: 2px;\n --tw-ring-offset-shadow: var(--tw-ring-inset,) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);\n }\n }\n .focus-visible\\:outline-none {\n &:focus-visible {\n --tw-outline-style: none;\n outline-style: none;\n }\n }\n .disabled\\:pointer-events-none {\n &:disabled {\n pointer-events: none;\n }\n }\n .disabled\\:cursor-not-allowed {\n &:disabled {\n cursor: not-allowed;\n }\n }\n .disabled\\:opacity-50 {\n &:disabled {\n opacity: 50%;\n }\n }\n .has-\\[\\>svg\\]\\:px-2\\.5 {\n &:has(>svg) {\n padding-inline: calc(var(--spacing) * 2.5);\n }\n }\n .has-\\[\\>svg\\]\\:px-3 {\n &:has(>svg) {\n padding-inline: calc(var(--spacing) * 3);\n }\n }\n .has-\\[\\>svg\\]\\:px-4 {\n &:has(>svg) {\n padding-inline: calc(var(--spacing) * 4);\n }\n }\n .data-\\[disabled\\]\\:pointer-events-none {\n &[data-disabled] {\n pointer-events: none;\n }\n }\n .data-\\[disabled\\]\\:opacity-50 {\n &[data-disabled] {\n opacity: 50%;\n }\n }\n .data-\\[side\\=bottom\\]\\:translate-y-1 {\n &[data-side=\"bottom\"] {\n --tw-translate-y: calc(var(--spacing) * 1);\n translate: var(--tw-translate-x) var(--tw-translate-y);\n }\n }\n .data-\\[side\\=left\\]\\:-translate-x-1 {\n &[data-side=\"left\"] {\n --tw-translate-x: calc(var(--spacing) * -1);\n translate: var(--tw-translate-x) var(--tw-translate-y);\n }\n }\n .data-\\[side\\=right\\]\\:translate-x-1 {\n &[data-side=\"right\"] {\n --tw-translate-x: calc(var(--spacing) * 1);\n translate: var(--tw-translate-x) var(--tw-translate-y);\n }\n }\n .data-\\[side\\=top\\]\\:-translate-y-1 {\n &[data-side=\"top\"] {\n --tw-translate-y: calc(var(--spacing) * -1);\n translate: var(--tw-translate-x) var(--tw-translate-y);\n }\n }\n .data-\\[size\\=default\\]\\:h-9 {\n &[data-size=\"default\"] {\n height: calc(var(--spacing) * 9);\n }\n }\n .data-\\[size\\=sm\\]\\:h-8 {\n &[data-size=\"sm\"] {\n height: calc(var(--spacing) * 8);\n }\n }\n .\\*\\:data-\\[slot\\=select-value\\]\\:line-clamp-1 {\n :is(& > *) {\n &[data-slot=\"select-value\"] {\n overflow: hidden;\n display: -webkit-box;\n -webkit-box-orient: vertical;\n -webkit-line-clamp: 1;\n }\n }\n }\n .\\*\\:data-\\[slot\\=select-value\\]\\:flex {\n :is(& > *) {\n &[data-slot=\"select-value\"] {\n display: flex;\n }\n }\n }\n .\\*\\:data-\\[slot\\=select-value\\]\\:items-center {\n :is(& > *) {\n &[data-slot=\"select-value\"] {\n align-items: center;\n }\n }\n }\n .\\*\\:data-\\[slot\\=select-value\\]\\:gap-2 {\n :is(& > *) {\n &[data-slot=\"select-value\"] {\n gap: calc(var(--spacing) * 2);\n }\n }\n }\n .data-\\[state\\=checked\\]\\:translate-x-4 {\n &[data-state=\"checked\"] {\n --tw-translate-x: calc(var(--spacing) * 4);\n translate: var(--tw-translate-x) var(--tw-translate-y);\n }\n }\n .data-\\[state\\=unchecked\\]\\:translate-x-0 {\n &[data-state=\"unchecked\"] {\n --tw-translate-x: calc(var(--spacing) * 0);\n translate: var(--tw-translate-x) var(--tw-translate-y);\n }\n }\n .md\\:text-sm {\n @media (width >= 48rem) {\n font-size: var(--text-sm);\n line-height: var(--tw-leading, var(--text-sm--line-height));\n }\n }\n .\\[\\&_svg\\]\\:pointer-events-none {\n & svg {\n pointer-events: none;\n }\n }\n .\\[\\&_svg\\]\\:shrink-0 {\n & svg {\n flex-shrink: 0;\n }\n }\n .\\[\\&_svg\\:not\\(\\[class\\*\\=\\'size-\\'\\]\\)\\]\\:size-4 {\n & svg:not([class*='size-']) {\n width: calc(var(--spacing) * 4);\n height: calc(var(--spacing) * 4);\n }\n }\n .\\*\\:\\[span\\]\\:last\\:flex {\n :is(& > *) {\n &:is(span) {\n &:last-child {\n display: flex;\n }\n }\n }\n }\n .\\*\\:\\[span\\]\\:last\\:items-center {\n :is(& > *) {\n &:is(span) {\n &:last-child {\n align-items: center;\n }\n }\n }\n }\n .\\*\\:\\[span\\]\\:last\\:gap-2 {\n :is(& > *) {\n &:is(span) {\n &:last-child {\n gap: calc(var(--spacing) * 2);\n }\n }\n }\n }\n}\n@property --tw-scale-x {\n syntax: \"*\";\n inherits: false;\n initial-value: 1;\n}\n@property --tw-scale-y {\n syntax: \"*\";\n inherits: false;\n initial-value: 1;\n}\n@property --tw-scale-z {\n syntax: \"*\";\n inherits: false;\n initial-value: 1;\n}\n@property --tw-rotate-x {\n syntax: \"*\";\n inherits: false;\n}\n@property --tw-rotate-y {\n syntax: \"*\";\n inherits: false;\n}\n@property --tw-rotate-z {\n syntax: \"*\";\n inherits: false;\n}\n@property --tw-skew-x {\n syntax: \"*\";\n inherits: false;\n}\n@property --tw-skew-y {\n syntax: \"*\";\n inherits: false;\n}\n@property --tw-pan-x {\n syntax: \"*\";\n inherits: false;\n}\n@property --tw-pan-y {\n syntax: \"*\";\n inherits: false;\n}\n@property --tw-pinch-zoom {\n syntax: \"*\";\n inherits: false;\n}\n@property --tw-space-y-reverse {\n syntax: \"*\";\n inherits: false;\n initial-value: 0;\n}\n@property --tw-space-x-reverse {\n syntax: \"*\";\n inherits: false;\n initial-value: 0;\n}\n@property --tw-divide-x-reverse {\n syntax: \"*\";\n inherits: false;\n initial-value: 0;\n}\n@property --tw-border-style {\n syntax: \"*\";\n inherits: false;\n initial-value: solid;\n}\n@property --tw-divide-y-reverse {\n syntax: \"*\";\n inherits: false;\n initial-value: 0;\n}\n@property --tw-leading {\n syntax: \"*\";\n inherits: false;\n}\n@property --tw-font-weight {\n syntax: \"*\";\n inherits: false;\n}\n@property --tw-ordinal {\n syntax: \"*\";\n inherits: false;\n}\n@property --tw-slashed-zero {\n syntax: \"*\";\n inherits: false;\n}\n@property --tw-numeric-figure {\n syntax: \"*\";\n inherits: false;\n}\n@property --tw-numeric-spacing {\n syntax: \"*\";\n inherits: false;\n}\n@property --tw-numeric-fraction {\n syntax: \"*\";\n inherits: false;\n}\n@property --tw-shadow {\n syntax: \"*\";\n inherits: false;\n initial-value: 0 0 #0000;\n}\n@property --tw-shadow-color {\n syntax: \"*\";\n inherits: false;\n}\n@property --tw-shadow-alpha {\n syntax: \"<percentage>\";\n inherits: false;\n initial-value: 100%;\n}\n@property --tw-inset-shadow {\n syntax: \"*\";\n inherits: false;\n initial-value: 0 0 #0000;\n}\n@property --tw-inset-shadow-color {\n syntax: \"*\";\n inherits: false;\n}\n@property --tw-inset-shadow-alpha {\n syntax: \"<percentage>\";\n inherits: false;\n initial-value: 100%;\n}\n@property --tw-ring-color {\n syntax: \"*\";\n inherits: false;\n}\n@property --tw-ring-shadow {\n syntax: \"*\";\n inherits: false;\n initial-value: 0 0 #0000;\n}\n@property --tw-inset-ring-color {\n syntax: \"*\";\n inherits: false;\n}\n@property --tw-inset-ring-shadow {\n syntax: \"*\";\n inherits: false;\n initial-value: 0 0 #0000;\n}\n@property --tw-ring-inset {\n syntax: \"*\";\n inherits: false;\n}\n@property --tw-ring-offset-width {\n syntax: \"<length>\";\n inherits: false;\n initial-value: 0px;\n}\n@property --tw-ring-offset-color {\n syntax: \"*\";\n inherits: false;\n initial-value: #fff;\n}\n@property --tw-ring-offset-shadow {\n syntax: \"*\";\n inherits: false;\n initial-value: 0 0 #0000;\n}\n@property --tw-outline-style {\n syntax: \"*\";\n inherits: false;\n initial-value: solid;\n}\n@property --tw-blur {\n syntax: \"*\";\n inherits: false;\n}\n@property --tw-brightness {\n syntax: \"*\";\n inherits: false;\n}\n@property --tw-contrast {\n syntax: \"*\";\n inherits: false;\n}\n@property --tw-grayscale {\n syntax: \"*\";\n inherits: false;\n}\n@property --tw-hue-rotate {\n syntax: \"*\";\n inherits: false;\n}\n@property --tw-invert {\n syntax: \"*\";\n inherits: false;\n}\n@property --tw-opacity {\n syntax: \"*\";\n inherits: false;\n}\n@property --tw-saturate {\n syntax: \"*\";\n inherits: false;\n}\n@property --tw-sepia {\n syntax: \"*\";\n inherits: false;\n}\n@property --tw-drop-shadow {\n syntax: \"*\";\n inherits: false;\n}\n@property --tw-drop-shadow-color {\n syntax: \"*\";\n inherits: false;\n}\n@property --tw-drop-shadow-alpha {\n syntax: \"<percentage>\";\n inherits: false;\n initial-value: 100%;\n}\n@property --tw-drop-shadow-size {\n syntax: \"*\";\n inherits: false;\n}\n@property --tw-backdrop-blur {\n syntax: \"*\";\n inherits: false;\n}\n@property --tw-backdrop-brightness {\n syntax: \"*\";\n inherits: false;\n}\n@property --tw-backdrop-contrast {\n syntax: \"*\";\n inherits: false;\n}\n@property --tw-backdrop-grayscale {\n syntax: \"*\";\n inherits: false;\n}\n@property --tw-backdrop-hue-rotate {\n syntax: \"*\";\n inherits: false;\n}\n@property --tw-backdrop-invert {\n syntax: \"*\";\n inherits: false;\n}\n@property --tw-backdrop-opacity {\n syntax: \"*\";\n inherits: false;\n}\n@property --tw-backdrop-saturate {\n syntax: \"*\";\n inherits: false;\n}\n@property --tw-backdrop-sepia {\n syntax: \"*\";\n inherits: false;\n}\n@property --tw-translate-x {\n syntax: \"*\";\n inherits: false;\n initial-value: 0;\n}\n@property --tw-translate-y {\n syntax: \"*\";\n inherits: false;\n initial-value: 0;\n}\n@property --tw-translate-z {\n syntax: \"*\";\n inherits: false;\n initial-value: 0;\n}\n@keyframes spin {\n to {\n transform: rotate(360deg);\n }\n}\n@keyframes pulse {\n 50% {\n opacity: 0.5;\n }\n}\n@layer properties {\n @supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {\n *, ::before, ::after, ::backdrop {\n --tw-scale-x: 1;\n --tw-scale-y: 1;\n --tw-scale-z: 1;\n --tw-rotate-x: initial;\n --tw-rotate-y: initial;\n --tw-rotate-z: initial;\n --tw-skew-x: initial;\n --tw-skew-y: initial;\n --tw-pan-x: initial;\n --tw-pan-y: initial;\n --tw-pinch-zoom: initial;\n --tw-space-y-reverse: 0;\n --tw-space-x-reverse: 0;\n --tw-divide-x-reverse: 0;\n --tw-border-style: solid;\n --tw-divide-y-reverse: 0;\n --tw-leading: initial;\n --tw-font-weight: initial;\n --tw-ordinal: initial;\n --tw-slashed-zero: initial;\n --tw-numeric-figure: initial;\n --tw-numeric-spacing: initial;\n --tw-numeric-fraction: initial;\n --tw-shadow: 0 0 #0000;\n --tw-shadow-color: initial;\n --tw-shadow-alpha: 100%;\n --tw-inset-shadow: 0 0 #0000;\n --tw-inset-shadow-color: initial;\n --tw-inset-shadow-alpha: 100%;\n --tw-ring-color: initial;\n --tw-ring-shadow: 0 0 #0000;\n --tw-inset-ring-color: initial;\n --tw-inset-ring-shadow: 0 0 #0000;\n --tw-ring-inset: initial;\n --tw-ring-offset-width: 0px;\n --tw-ring-offset-color: #fff;\n --tw-ring-offset-shadow: 0 0 #0000;\n --tw-outline-style: solid;\n --tw-blur: initial;\n --tw-brightness: initial;\n --tw-contrast: initial;\n --tw-grayscale: initial;\n --tw-hue-rotate: initial;\n --tw-invert: initial;\n --tw-opacity: initial;\n --tw-saturate: initial;\n --tw-sepia: initial;\n --tw-drop-shadow: initial;\n --tw-drop-shadow-color: initial;\n --tw-drop-shadow-alpha: 100%;\n --tw-drop-shadow-size: initial;\n --tw-backdrop-blur: initial;\n --tw-backdrop-brightness: initial;\n --tw-backdrop-contrast: initial;\n --tw-backdrop-grayscale: initial;\n --tw-backdrop-hue-rotate: initial;\n --tw-backdrop-invert: initial;\n --tw-backdrop-opacity: initial;\n --tw-backdrop-saturate: initial;\n --tw-backdrop-sepia: initial;\n --tw-translate-x: 0;\n --tw-translate-y: 0;\n --tw-translate-z: 0;\n }\n }\n}\n";
23988
+ styleInject(css_248z);
23989
+
23990
+ function PromTest() {
23991
+ return (jsxRuntimeExports.jsx("div", { className: "text-primary test-text text-lg font-medium p-4 bg-gray-100 rounded-lg", children: "test \u0446\u0432\u0435\u0442\u0430 \u043E\u0430\u043B\u0434\u044B\u0432\u043E\u0430\u043B\u043E\u0432\u0430\u043B" }));
23992
+ }
23993
+
23994
+ export { PROM_MSG_ERROR, PromButton, PromFormFiled, PromFrom, PromInput, PromLabel, PromMessage, PromSelect, PromSelectContent, PromSelectField, PromSelectGroup, PromSelectItem, PromSelectLabel, PromSelectScrollDownButton, PromSelectScrollUpButton, PromSelectSeparator, PromSelectTrigger, PromSelectValue, PromSkeleton, PromSwitchField, PromTest, PromTextarea, buttonVariants, cn, promSchemaPhone, promSelectFilterOptions, skeletonVariants, useCreatePromForm, usePromForm };