@clerk/ui 0.1.10 → 0.1.11-canary.vf875463

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.
@@ -1048,8 +1048,8 @@ var makeLocalizeable = (resource) => {
1048
1048
  const base = readObjectPath(resource, key);
1049
1049
  return applyTokensToString(base || "", params || {});
1050
1050
  };
1051
- const translateError = ({ message, code, name }) => {
1052
- return t(`unstable__errors.${code}__${name}`) || t(`unstable__errors.${code}`) || message;
1051
+ const translateError = ({ message: message2, code, name }) => {
1052
+ return t(`unstable__errors.${code}__${name}`) || t(`unstable__errors.${code}`) || message2;
1053
1053
  };
1054
1054
  return {
1055
1055
  t,
@@ -1069,13 +1069,13 @@ function canUseListFormat(locale) {
1069
1069
  var addFullStop = (string) => {
1070
1070
  return !string ? "" : string.endsWith(".") ? string : `${string}.`;
1071
1071
  };
1072
- var createListFormat = (message, locale) => {
1072
+ var createListFormat = (message2, locale) => {
1073
1073
  let messageWithPrefix;
1074
1074
  if (canUseListFormat(locale)) {
1075
1075
  const formatter = new Intl.ListFormat(locale, { style: "long", type: "conjunction" });
1076
- messageWithPrefix = formatter.format(message);
1076
+ messageWithPrefix = formatter.format(message2);
1077
1077
  } else {
1078
- messageWithPrefix = message.join(", ");
1078
+ messageWithPrefix = message2.join(", ");
1079
1079
  }
1080
1080
  return messageWithPrefix;
1081
1081
  };
@@ -1157,7 +1157,7 @@ var clsx_default = clsx;
1157
1157
  // src/utils/dva.ts
1158
1158
  var falsyToString = (value) => typeof value === "boolean" ? `${value}` : value === 0 ? "0" : value;
1159
1159
  var defineConfig = (options) => {
1160
- const cx4 = (...inputs) => {
1160
+ const cx5 = (...inputs) => {
1161
1161
  var _a, _b;
1162
1162
  if (typeof ((_a = void 0 ) == null ? void 0 : _a["cx:done"]) !== "undefined") {
1163
1163
  return void 0 ;
@@ -1170,7 +1170,7 @@ var defineConfig = (options) => {
1170
1170
  const dva2 = (config) => (props) => {
1171
1171
  var _a;
1172
1172
  if ((config == null ? void 0 : config.variants) == null) {
1173
- return cx4(config == null ? void 0 : config.base, props == null ? void 0 : props.descriptor);
1173
+ return cx5(config == null ? void 0 : config.base, props == null ? void 0 : props.descriptor);
1174
1174
  }
1175
1175
  const { variants, defaultVariants } = config;
1176
1176
  const getVariantClassNames = Object.keys(variants).map((variant) => {
@@ -1194,18 +1194,18 @@ var defineConfig = (options) => {
1194
1194
  }) ? [...acc, descriptor] : acc,
1195
1195
  []
1196
1196
  );
1197
- return cx4(config == null ? void 0 : config.base, getVariantClassNames, getCompoundVariantClassNames, props == null ? void 0 : props.descriptor);
1197
+ return cx5(config == null ? void 0 : config.base, getVariantClassNames, getCompoundVariantClassNames, props == null ? void 0 : props.descriptor);
1198
1198
  };
1199
1199
  const compose2 = (...components) => (props) => {
1200
1200
  const propsWithoutDescriptor = Object.fromEntries(
1201
1201
  Object.entries(props || {}).filter(([key]) => !["descriptor"].includes(key))
1202
1202
  );
1203
- return cx4(components.map((component) => component(propsWithoutDescriptor)), props == null ? void 0 : props.descriptor);
1203
+ return cx5(components.map((component) => component(propsWithoutDescriptor)), props == null ? void 0 : props.descriptor);
1204
1204
  };
1205
1205
  return {
1206
1206
  compose: compose2,
1207
1207
  dva: dva2,
1208
- cx: cx4
1208
+ cx: cx5
1209
1209
  };
1210
1210
  };
1211
1211
  var { compose, dva, cx } = defineConfig();
@@ -1493,10 +1493,10 @@ var Button = React5.forwardRef(function Button2({
1493
1493
  "button",
1494
1494
  {
1495
1495
  ref: forwardedRef,
1496
- ...applyDescriptors(elements, button({ busy, disabled, intent, descriptor })),
1497
1496
  disabled: busy || disabled,
1498
1497
  type,
1499
1498
  ...props,
1499
+ ...applyDescriptors(elements, button({ busy, disabled, intent, descriptor })),
1500
1500
  children: busy && intent === "primary" ? spinner2 : /* @__PURE__ */ jsxs(Fragment, { children: [
1501
1501
  iconStart ? busy && intent === "connection" ? spinner2 : /* @__PURE__ */ jsx("span", { ...applyDescriptors(elements, "buttonIcon buttonIconStart"), children: iconStart }) : null,
1502
1502
  children ? /* @__PURE__ */ jsx("span", { ...mergeDescriptors(elements.buttonText, !!textVisuallyHidden && elements.buttonTextVisuallyHidden), children }) : null,
@@ -2991,10 +2991,10 @@ var visualStyle4 = {
2991
2991
  alert: {
2992
2992
  className: "cl-15c02a47"
2993
2993
  },
2994
- alert__warning: {
2994
+ alertWarning: {
2995
2995
  className: "cl-a992fcfc"
2996
2996
  },
2997
- alert__error: {
2997
+ alertError: {
2998
2998
  className: "cl-66ef3405"
2999
2999
  }
3000
3000
  };
@@ -3007,8 +3007,8 @@ var Alert = React5.forwardRef(function Alert2({ children, descriptors, intent =
3007
3007
  ...props,
3008
3008
  ...mergeDescriptors(
3009
3009
  elements.alert,
3010
- intent === "error" && elements.alert__error,
3011
- intent === "warning" && elements.alert__warning,
3010
+ intent === "error" && elements.alertError,
3011
+ intent === "warning" && elements.alertWarning,
3012
3012
  ...descriptors != null ? descriptors : []
3013
3013
  ),
3014
3014
  children: [
@@ -3536,12 +3536,395 @@ var visualStyle5 = {
3536
3536
  ...cardFooterVisualStyle,
3537
3537
  ...cardLogoVisualStyle
3538
3538
  };
3539
+ function CheckmarkCircleSm(props) {
3540
+ return /* @__PURE__ */ jsx(Icon, { ...props, children: /* @__PURE__ */ jsxs("svg", { viewBox: "0 0 16 16", children: [
3541
+ /* @__PURE__ */ jsx(
3542
+ "circle",
3543
+ {
3544
+ cx: "8",
3545
+ cy: "8",
3546
+ r: "5.25",
3547
+ stroke: "currentColor",
3548
+ strokeWidth: "1.5",
3549
+ strokeLinecap: "round",
3550
+ strokeLinejoin: "round"
3551
+ }
3552
+ ),
3553
+ /* @__PURE__ */ jsx(
3554
+ "path",
3555
+ {
3556
+ d: "M6.25 8.35L7.65 9.75L9.75 6.25",
3557
+ stroke: "currentColor",
3558
+ strokeWidth: "1.5",
3559
+ strokeLinecap: "round",
3560
+ strokeLinejoin: "round"
3561
+ }
3562
+ )
3563
+ ] }) });
3564
+ }
3565
+ function InformationCircleSm(props) {
3566
+ return /* @__PURE__ */ jsx(Icon, { ...props, children: /* @__PURE__ */ jsxs("svg", { viewBox: "0 0 16 16", children: [
3567
+ /* @__PURE__ */ jsx(
3568
+ "circle",
3569
+ {
3570
+ cx: "8",
3571
+ cy: "8",
3572
+ r: "5.25",
3573
+ stroke: "currentColor",
3574
+ strokeWidth: "1.5",
3575
+ strokeLinecap: "round",
3576
+ strokeLinejoin: "round"
3577
+ }
3578
+ ),
3579
+ /* @__PURE__ */ jsx(
3580
+ "path",
3581
+ {
3582
+ d: "M8 8.75V10.25",
3583
+ stroke: "currentColor",
3584
+ strokeWidth: "1.5",
3585
+ strokeLinecap: "round",
3586
+ strokeLinejoin: "round"
3587
+ }
3588
+ ),
3589
+ /* @__PURE__ */ jsx(
3590
+ "path",
3591
+ {
3592
+ d: "M8 6.25024V6.26024",
3593
+ stroke: "currentColor",
3594
+ strokeWidth: "1.5",
3595
+ strokeLinecap: "round",
3596
+ strokeLinejoin: "round"
3597
+ }
3598
+ )
3599
+ ] }) });
3600
+ }
3601
+ var fieldRootLayoutStyle = {
3602
+ fieldRoot: {
3603
+ className: [
3604
+ "cl-dcb655e4",
3605
+ "cl-03811a40",
3606
+ "cl-81d1ec5b",
3607
+ "cl-3a46e0d4",
3608
+ "cl-7c5144aa"
3609
+ ].join(" ")
3610
+ }
3611
+ };
3612
+ var fieldRootVisualStyle = {
3613
+ fieldRoot: {
3614
+ className: [
3615
+ "cl-4636b1d3",
3616
+ "cl-3da4a9c6"
3617
+ ].join(" ")
3618
+ }
3619
+ };
3620
+ var Root2 = React5.forwardRef(function FieldRoot({ children, className, ...props }, forwardedRef) {
3621
+ const { elements } = useAppearance().parsedAppearance;
3622
+ return /* @__PURE__ */ jsx(
3623
+ "div",
3624
+ {
3625
+ ref: forwardedRef,
3626
+ ...props,
3627
+ ...mergeDescriptors(elements.fieldRoot),
3628
+ children
3629
+ }
3630
+ );
3631
+ });
3632
+ var fieldLabelLayoutStyle = {
3633
+ fieldLabel: {
3634
+ className: "cl-8c391822"
3635
+ }
3636
+ };
3637
+ var fieldLabelVisualStyle = {
3638
+ fieldLabel: {
3639
+ className: "cl-f75d1b2a"
3640
+ }
3641
+ };
3642
+ var Label = React5.forwardRef(function FieldLabel({
3643
+ className,
3644
+ children,
3645
+ visuallyHidden,
3646
+ ...props
3647
+ }, forwardedRef) {
3648
+ const { elements } = useAppearance().parsedAppearance;
3649
+ const fieldLabelDescriptors = applyDescriptors(elements, "fieldLabel");
3650
+ return /* @__PURE__ */ jsx(
3651
+ "label",
3652
+ {
3653
+ ref: forwardedRef,
3654
+ ...props,
3655
+ className: cx$1(visuallyHidden ? "cl-32fb0905" : fieldLabelDescriptors.className),
3656
+ children
3657
+ }
3658
+ );
3659
+ });
3660
+ var fieldLabelEndLayoutStyle = {
3661
+ fieldLabelEnd: {
3662
+ className: "cl-43770a6e"
3663
+ }
3664
+ };
3665
+ var LabelEnd = React5.forwardRef(function FieldLabelEnd({ className, children, ...props }, forwardedRef) {
3666
+ const { elements } = useAppearance().parsedAppearance;
3667
+ return /* @__PURE__ */ jsx(
3668
+ "span",
3669
+ {
3670
+ ref: forwardedRef,
3671
+ ...props,
3672
+ ...mergeDescriptors(elements.fieldLabelEnd),
3673
+ children
3674
+ }
3675
+ );
3676
+ });
3677
+ var fieldHintVisualStyle = {
3678
+ fieldLabelEnd: {
3679
+ className: "cl-275d380b"
3680
+ }
3681
+ };
3682
+ var Hint = React5.forwardRef(function FieldHint({ className, children, ...props }, forwardedRef) {
3683
+ const { elements } = useAppearance().parsedAppearance;
3684
+ return /* @__PURE__ */ jsx(
3685
+ LabelEnd,
3686
+ {
3687
+ ref: forwardedRef,
3688
+ ...props,
3689
+ ...mergeDescriptors(elements.fieldHint),
3690
+ children
3691
+ }
3692
+ );
3693
+ });
3694
+ var fieldCheckboxLayoutStyle = {
3695
+ fieldCheckbox: {
3696
+ className: "cl-13e816a3"
3697
+ }
3698
+ };
3699
+ var fieldCheckboxVisualStyle = {
3700
+ fieldCheckbox: {
3701
+ className: "cl-12b86d4e"
3702
+ }
3703
+ };
3704
+ var Checkbox = React5.forwardRef(function FieldCheckbox(props, forwardedRef) {
3705
+ const { elements } = useAppearance().parsedAppearance;
3706
+ return /* @__PURE__ */ jsx(
3707
+ "input",
3708
+ {
3709
+ ref: forwardedRef,
3710
+ type: "checkbox",
3711
+ ...props,
3712
+ ...mergeDescriptors(elements.fieldCheckbox)
3713
+ }
3714
+ );
3715
+ });
3716
+ var fieldInputGroupLayoutStyle = {
3717
+ fieldInputGroup: {
3718
+ className: "cl-6a6227fc"
3719
+ }
3720
+ };
3721
+ var InputGroup = React5.forwardRef(function FieldInputGroup({ className, ...props }, ref) {
3722
+ const { elements } = useAppearance().parsedAppearance;
3723
+ return /* @__PURE__ */ jsx(
3724
+ "div",
3725
+ {
3726
+ ref,
3727
+ ...props,
3728
+ ...mergeDescriptors(elements.fieldInputGroup)
3729
+ }
3730
+ );
3731
+ });
3732
+ var fieldInputGroupEndLayoutStyle = {
3733
+ fieldInputGroupEnd: {
3734
+ className: "cl-4e1b09eb"
3735
+ }
3736
+ };
3737
+ var InputGroupEnd = React5.forwardRef(function FieldInputGroupEnd({ className, ...props }, ref) {
3738
+ const { elements } = useAppearance().parsedAppearance;
3739
+ return /* @__PURE__ */ jsx(
3740
+ "div",
3741
+ {
3742
+ "data-field-input-group-end": "",
3743
+ ref,
3744
+ ...props,
3745
+ ...mergeDescriptors(elements.fieldInputGroupEnd)
3746
+ }
3747
+ );
3748
+ });
3749
+ var fieldInputLayoutStyle = {
3750
+ fieldInput: {
3751
+ className: [
3752
+ "cl-58d0413d",
3753
+ "cl-43ccb14c",
3754
+ "cl-f18c4e82",
3755
+ // If an `InputGroup` exists, use the `pe` value, or fallback to the
3756
+ // standard input `px` value
3757
+ "cl-983f1668",
3758
+ "cl-d3e031f6",
3759
+ "cl-ed4ed5cf"
3760
+ ].join(" ")
3761
+ }
3762
+ };
3763
+ var fieldInputVisualStyle = {
3764
+ fieldInput: {
3765
+ className: [
3766
+ "cl-ac0ebc23",
3767
+ "cl-2aeea0c3",
3768
+ "cl-0290fbc4",
3769
+ "cl-d4e2e313"
3770
+ ].join(" ")
3771
+ },
3772
+ fieldInputIdle: {
3773
+ className: [
3774
+ "cl-cac18779",
3775
+ "cl-03c582dd"
3776
+ ].join(" ")
3777
+ },
3778
+ fieldInputInfo: {
3779
+ className: [
3780
+ "cl-fa487ffe",
3781
+ "cl-03c582dd"
3782
+ ].join(" ")
3783
+ },
3784
+ fieldInputError: {
3785
+ className: [
3786
+ "cl-cffb481b",
3787
+ "cl-776840f6",
3788
+ "cl-1e334ea3"
3789
+ ].join(" ")
3790
+ },
3791
+ fieldInputSuccess: {
3792
+ className: [
3793
+ "cl-90c7848a",
3794
+ "cl-204cd4cf",
3795
+ "cl-0810e01c"
3796
+ ].join(" ")
3797
+ },
3798
+ fieldInputWarning: {
3799
+ className: [
3800
+ "cl-d250e2b7",
3801
+ "cl-8cae7b37",
3802
+ "cl-43888e8c"
3803
+ ].join(" ")
3804
+ }
3805
+ };
3806
+ var input = dva({
3807
+ base: "fieldInput",
3808
+ variants: {
3809
+ intent: {
3810
+ idle: "fieldInputIdle",
3811
+ info: "fieldInputInfo",
3812
+ error: "fieldInputError",
3813
+ success: "fieldInputSuccess",
3814
+ warning: "fieldInputWarning"
3815
+ }
3816
+ }
3817
+ });
3818
+ var Input = React5.forwardRef(function FieldInput({ descriptor, intent = "idle", ...props }, forwardedRef) {
3819
+ const { elements } = useAppearance().parsedAppearance;
3820
+ return /* @__PURE__ */ jsx(
3821
+ "input",
3822
+ {
3823
+ ref: forwardedRef,
3824
+ ...props,
3825
+ ...applyDescriptors(elements, input({ intent, descriptor }))
3826
+ }
3827
+ );
3828
+ });
3829
+ var fieldMessageLayoutStyle = {
3830
+ fieldMessage: {
3831
+ className: "cl-b86c33af"
3832
+ },
3833
+ fieldMessageStart: {
3834
+ className: "cl-c62ec162"
3835
+ },
3836
+ fieldMessageCenter: {
3837
+ className: "cl-a503dd37"
3838
+ },
3839
+ fieldMessageEnd: {
3840
+ className: "cl-307644c3"
3841
+ }
3842
+ };
3843
+ var fieldMessageVisualStyle = {
3844
+ fieldMessage: {
3845
+ className: "cl-757071a1"
3846
+ },
3847
+ fieldMessageIdle: {
3848
+ className: "cl-de621653"
3849
+ },
3850
+ fieldMessageInfo: {
3851
+ className: "cl-de621653"
3852
+ },
3853
+ fieldMessageError: {
3854
+ className: "cl-e5cd1f02"
3855
+ },
3856
+ fieldMessageSuccess: {
3857
+ className: "cl-e8e05e0c"
3858
+ },
3859
+ fieldMessageWarning: {
3860
+ className: "cl-d794f084"
3861
+ }
3862
+ };
3863
+ var message = dva({
3864
+ base: "fieldMessage",
3865
+ variants: {
3866
+ justify: {
3867
+ start: "fieldMessageStart",
3868
+ center: "fieldMessageCenter",
3869
+ end: "fieldMessageEnd"
3870
+ },
3871
+ intent: {
3872
+ idle: "fieldMessageIdle",
3873
+ info: "fieldMessageInfo",
3874
+ error: "fieldMessageError",
3875
+ success: "fieldMessageSuccess",
3876
+ warning: "fieldMessageWarning"
3877
+ }
3878
+ }
3879
+ });
3880
+ var Message = React5.forwardRef(function FieldMessage({ descriptor, children, justify = "start", intent = "idle", ...props }, forwardedRef) {
3881
+ const { elements } = useAppearance().parsedAppearance;
3882
+ return /* @__PURE__ */ jsxs(
3883
+ "p",
3884
+ {
3885
+ ref: forwardedRef,
3886
+ ...props,
3887
+ ...applyDescriptors(elements, message({ justify, intent, descriptor })),
3888
+ children: [
3889
+ intent !== "idle" && /* @__PURE__ */ jsx("span", { className: "cl-eb8de575", children: {
3890
+ error: /* @__PURE__ */ jsx(ExclamationOctagonSm, {}),
3891
+ info: /* @__PURE__ */ jsx(InformationCircleSm, {}),
3892
+ success: /* @__PURE__ */ jsx(CheckmarkCircleSm, {}),
3893
+ warning: /* @__PURE__ */ jsx(ExclamationTriangleSm, {})
3894
+ }[intent] }),
3895
+ children
3896
+ ]
3897
+ }
3898
+ );
3899
+ });
3539
3900
  var layoutStyle6 = {
3901
+ ...fieldRootLayoutStyle,
3902
+ ...fieldLabelLayoutStyle,
3903
+ ...fieldLabelEndLayoutStyle,
3904
+ // ...fieldHintLayoutStyle,
3905
+ ...fieldCheckboxLayoutStyle,
3906
+ ...fieldInputGroupLayoutStyle,
3907
+ ...fieldInputGroupEndLayoutStyle,
3908
+ ...fieldInputLayoutStyle,
3909
+ ...fieldMessageLayoutStyle
3910
+ };
3911
+ var visualStyle6 = {
3912
+ ...fieldRootVisualStyle,
3913
+ ...fieldLabelVisualStyle,
3914
+ // ...fieldLabelEndLayoutStyle,
3915
+ ...fieldHintVisualStyle,
3916
+ ...fieldCheckboxVisualStyle,
3917
+ // ...fieldInputGroupVisualStyle,
3918
+ // ...fieldInputGroupEndVisualStyle,
3919
+ ...fieldInputVisualStyle,
3920
+ ...fieldMessageVisualStyle
3921
+ };
3922
+ var layoutStyle7 = {
3540
3923
  separator: {
3541
3924
  className: "cl-c53048bf"
3542
3925
  }
3543
3926
  };
3544
- var visualStyle6 = {
3927
+ var visualStyle7 = {
3545
3928
  separator: {
3546
3929
  className: "cl-77b14b2e"
3547
3930
  }
@@ -3561,8 +3944,8 @@ var Separator = React5.forwardRef(function Separator2({ children, descriptors, .
3561
3944
  var DESCRIPTORS = [
3562
3945
  // Alert
3563
3946
  "alert",
3564
- "alert__error",
3565
- "alert__warning",
3947
+ "alertError",
3948
+ "alertWarning",
3566
3949
  "alertIcon",
3567
3950
  // Button
3568
3951
  "button",
@@ -3584,6 +3967,31 @@ var DESCRIPTORS = [
3584
3967
  // Connection
3585
3968
  "connectionList",
3586
3969
  "connectionListItem",
3970
+ // Field
3971
+ "fieldRoot",
3972
+ "fieldLabel",
3973
+ "fieldLabelEnd",
3974
+ "fieldHint",
3975
+ "fieldCheckbox",
3976
+ "fieldInputGroup",
3977
+ "fieldInputGroupEnd",
3978
+ "fieldInput",
3979
+ "fieldInputDefault",
3980
+ "fieldInputOtp",
3981
+ "fieldInputIdle",
3982
+ "fieldInputInfo",
3983
+ "fieldInputError",
3984
+ "fieldInputSuccess",
3985
+ "fieldInputWarning",
3986
+ "fieldMessageStart",
3987
+ "fieldMessageCenter",
3988
+ "fieldMessageEnd",
3989
+ "fieldMessage",
3990
+ "fieldMessageIdle",
3991
+ "fieldMessageInfo",
3992
+ "fieldMessageError",
3993
+ "fieldMessageSuccess",
3994
+ "fieldMessageWarning",
3587
3995
  // Separator
3588
3996
  "separator",
3589
3997
  // Spinner
@@ -3654,6 +4062,7 @@ var layoutTheme = buildTheme({
3654
4062
  ...layoutStyle5,
3655
4063
  ...layoutStyle3,
3656
4064
  ...layoutStyle6,
4065
+ ...layoutStyle7,
3657
4066
  ...layoutStyle
3658
4067
  });
3659
4068
 
@@ -3664,6 +4073,7 @@ var visualTheme = buildTheme({
3664
4073
  ...visualStyle5,
3665
4074
  ...visualStyle3,
3666
4075
  ...visualStyle6,
4076
+ ...visualStyle7,
3667
4077
  ...visualStyle
3668
4078
  });
3669
4079
  var fullTheme = mergeTheme(layoutTheme, visualTheme);
@@ -3797,6 +4207,6 @@ var AppearanceProvider = (props) => {
3797
4207
  return /* @__PURE__ */ jsx(AppearanceContext.Provider, { value: ctxValue, children: props.children });
3798
4208
  };
3799
4209
 
3800
- export { Actions, Alert, AppearanceProvider, Body, Button, Connections, Content, Description, ExclamationOctagonSm, ExclamationTriangleSm, Footer, FooterAction, FooterActionButton, FooterActionLink, FooterActionText, Header, Icon, Logo, Root, Separator, Title, mergeDescriptors, translatePasswordError, useAppearance, useEnabledConnections, useLocalizations, useOptions };
4210
+ export { Actions, Alert, AppearanceProvider, Body, Button, Checkbox, Connections, Content, Description, Footer, FooterAction, FooterActionButton, FooterActionLink, FooterActionText, Header, Hint, Icon, Input, InputGroup, InputGroupEnd, Label, LabelEnd, Logo, Message, Root, Root2, Separator, Title, cx, mergeDescriptors, translatePasswordError, useAppearance, useEnabledConnections, useLocalizations, useOptions };
3801
4211
  //# sourceMappingURL=out.js.map
3802
- //# sourceMappingURL=chunk-LLOUIL3Z.mjs.map
4212
+ //# sourceMappingURL=chunk-G52OCWYE.mjs.map