@ceed/ads 1.16.0 → 1.17.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/FilterMenu/components/FilterableCheckboxGroup.d.ts +11 -0
- package/dist/components/FilterMenu/types.d.ts +10 -2
- package/dist/components/inputs/FilterMenu.md +20 -0
- package/dist/index.cjs +412 -380
- package/dist/index.js +188 -156
- package/framer/index.js +39 -39
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -4633,8 +4633,8 @@ function FilterableCheckboxGroup(props) {
|
|
|
4633
4633
|
FilterableCheckboxGroup.displayName = "FilterableCheckboxGroup";
|
|
4634
4634
|
|
|
4635
4635
|
// src/components/FilterMenu/FilterMenu.tsx
|
|
4636
|
-
import
|
|
4637
|
-
import { Button as Button2, Stack as
|
|
4636
|
+
import React41, { useCallback as useCallback23 } from "react";
|
|
4637
|
+
import { Button as Button2, Stack as Stack11 } from "@mui/joy";
|
|
4638
4638
|
|
|
4639
4639
|
// src/components/FilterMenu/components/CheckboxGroup.tsx
|
|
4640
4640
|
import React31, { useCallback as useCallback14 } from "react";
|
|
@@ -4670,8 +4670,37 @@ function CheckboxGroup(props) {
|
|
|
4670
4670
|
}
|
|
4671
4671
|
CheckboxGroup.displayName = "CheckboxGroup";
|
|
4672
4672
|
|
|
4673
|
-
// src/components/FilterMenu/components/
|
|
4673
|
+
// src/components/FilterMenu/components/FilterableCheckboxGroup.tsx
|
|
4674
4674
|
import React32, { useCallback as useCallback15 } from "react";
|
|
4675
|
+
import { Stack as Stack3 } from "@mui/joy";
|
|
4676
|
+
function FilterableCheckboxGroup2(props) {
|
|
4677
|
+
const { id, label, options, value, onChange, hidden, placeholder, maxHeight } = props;
|
|
4678
|
+
const [internalValue, setInternalValue] = useControlledState(value, [], onChange);
|
|
4679
|
+
const handleChange = useCallback15(
|
|
4680
|
+
(newValue) => {
|
|
4681
|
+
setInternalValue(newValue);
|
|
4682
|
+
},
|
|
4683
|
+
[setInternalValue]
|
|
4684
|
+
);
|
|
4685
|
+
if (hidden) {
|
|
4686
|
+
return null;
|
|
4687
|
+
}
|
|
4688
|
+
return /* @__PURE__ */ React32.createElement(Stack3, { spacing: 3, role: "group", "aria-labelledby": id }, !!label && /* @__PURE__ */ React32.createElement(Typography_default, { id, level: "title-sm", component: "label", textColor: "text.tertiary" }, label), /* @__PURE__ */ React32.createElement(
|
|
4689
|
+
FilterableCheckboxGroup,
|
|
4690
|
+
{
|
|
4691
|
+
value: internalValue ?? [],
|
|
4692
|
+
onChange: handleChange,
|
|
4693
|
+
options,
|
|
4694
|
+
placeholder,
|
|
4695
|
+
maxHeight,
|
|
4696
|
+
size: "sm"
|
|
4697
|
+
}
|
|
4698
|
+
));
|
|
4699
|
+
}
|
|
4700
|
+
FilterableCheckboxGroup2.displayName = "FilterableCheckboxGroup";
|
|
4701
|
+
|
|
4702
|
+
// src/components/FilterMenu/components/RadioGroup.tsx
|
|
4703
|
+
import React33, { useCallback as useCallback16 } from "react";
|
|
4675
4704
|
|
|
4676
4705
|
// src/components/Radio/Radio.tsx
|
|
4677
4706
|
import { Radio as JoyRadio, RadioGroup as JoyRadioGroup } from "@mui/joy";
|
|
@@ -4684,11 +4713,11 @@ var RadioGroup = MotionRadioGroup;
|
|
|
4684
4713
|
RadioGroup.displayName = "RadioGroup";
|
|
4685
4714
|
|
|
4686
4715
|
// src/components/FilterMenu/components/RadioGroup.tsx
|
|
4687
|
-
import { Stack as
|
|
4716
|
+
import { Stack as Stack4 } from "@mui/joy";
|
|
4688
4717
|
function RadioGroup2(props) {
|
|
4689
4718
|
const { id, label, options, value, onChange, hidden } = props;
|
|
4690
4719
|
const [internalValue, setInternalValue] = useControlledState(value, value ?? "", onChange);
|
|
4691
|
-
const handleRadioChange =
|
|
4720
|
+
const handleRadioChange = useCallback16(
|
|
4692
4721
|
(event) => {
|
|
4693
4722
|
const newValue = event.target.value;
|
|
4694
4723
|
const option = options.find((opt) => opt.value.toString() === newValue);
|
|
@@ -4700,13 +4729,13 @@ function RadioGroup2(props) {
|
|
|
4700
4729
|
if (hidden) {
|
|
4701
4730
|
return null;
|
|
4702
4731
|
}
|
|
4703
|
-
return /* @__PURE__ */
|
|
4732
|
+
return /* @__PURE__ */ React33.createElement(Stack4, { spacing: 3, role: "group", "aria-labelledby": id }, !!label && /* @__PURE__ */ React33.createElement(Stack4, { spacing: 1 }, /* @__PURE__ */ React33.createElement(Typography_default, { id, level: "title-sm", component: "label", textColor: "text.tertiary" }, label)), /* @__PURE__ */ React33.createElement(RadioGroup, { name: id, value: internalValue?.toString(), onChange: handleRadioChange }, options.map((option) => /* @__PURE__ */ React33.createElement(Radio, { key: `${id}-${option.value}`, value: option.value.toString(), label: option.label }))));
|
|
4704
4733
|
}
|
|
4705
4734
|
RadioGroup2.displayName = "RadioGroup";
|
|
4706
4735
|
|
|
4707
4736
|
// src/components/FilterMenu/components/DateRange.tsx
|
|
4708
|
-
import
|
|
4709
|
-
import { Stack as
|
|
4737
|
+
import React34, { useCallback as useCallback17, useMemo as useMemo13, useState as useState11, useEffect as useEffect9 } from "react";
|
|
4738
|
+
import { Stack as Stack5 } from "@mui/joy";
|
|
4710
4739
|
function DateRange(props) {
|
|
4711
4740
|
const {
|
|
4712
4741
|
id,
|
|
@@ -4718,7 +4747,6 @@ function DateRange(props) {
|
|
|
4718
4747
|
maxDate,
|
|
4719
4748
|
disableFuture,
|
|
4720
4749
|
disablePast,
|
|
4721
|
-
format = "YYYY/MM/DD",
|
|
4722
4750
|
displayFormat,
|
|
4723
4751
|
inputReadOnly,
|
|
4724
4752
|
hideClearButton
|
|
@@ -4735,7 +4763,7 @@ function DateRange(props) {
|
|
|
4735
4763
|
],
|
|
4736
4764
|
[]
|
|
4737
4765
|
);
|
|
4738
|
-
const getDateRangeForOption =
|
|
4766
|
+
const getDateRangeForOption = useCallback17(
|
|
4739
4767
|
(option) => {
|
|
4740
4768
|
const now = /* @__PURE__ */ new Date();
|
|
4741
4769
|
const currentYear = now.getFullYear();
|
|
@@ -4774,7 +4802,7 @@ function DateRange(props) {
|
|
|
4774
4802
|
},
|
|
4775
4803
|
[internalValue]
|
|
4776
4804
|
);
|
|
4777
|
-
const determineOptionFromValue =
|
|
4805
|
+
const determineOptionFromValue = useCallback17(
|
|
4778
4806
|
(value2) => {
|
|
4779
4807
|
if (!value2) {
|
|
4780
4808
|
return "all-time";
|
|
@@ -4800,7 +4828,7 @@ function DateRange(props) {
|
|
|
4800
4828
|
const newOption = determineOptionFromValue(internalValue);
|
|
4801
4829
|
setSelectedOption(newOption);
|
|
4802
4830
|
}, [internalValue, determineOptionFromValue]);
|
|
4803
|
-
const handleOptionChange =
|
|
4831
|
+
const handleOptionChange = useCallback17(
|
|
4804
4832
|
(event) => {
|
|
4805
4833
|
const newOption = event.target.value;
|
|
4806
4834
|
setSelectedOption(newOption);
|
|
@@ -4809,25 +4837,28 @@ function DateRange(props) {
|
|
|
4809
4837
|
},
|
|
4810
4838
|
[getDateRangeForOption, setInternalValue]
|
|
4811
4839
|
);
|
|
4812
|
-
const handleCustomDateChange =
|
|
4840
|
+
const handleCustomDateChange = useCallback17(
|
|
4813
4841
|
(event) => {
|
|
4814
4842
|
const dateRangeString = event.target.value;
|
|
4815
4843
|
if (dateRangeString && dateRangeString.includes(" - ")) {
|
|
4816
4844
|
const [startDate, endDate] = dateRangeString.split(" - ");
|
|
4817
4845
|
if (startDate && endDate) {
|
|
4818
4846
|
const newValue = [startDate, endDate];
|
|
4819
|
-
|
|
4847
|
+
const hasChanged = !internalValue || internalValue[0] !== startDate || internalValue[1] !== endDate;
|
|
4848
|
+
if (hasChanged) {
|
|
4849
|
+
setInternalValue(newValue);
|
|
4850
|
+
}
|
|
4820
4851
|
}
|
|
4821
4852
|
} else if (!dateRangeString) {
|
|
4822
4853
|
setInternalValue(null);
|
|
4823
4854
|
}
|
|
4824
4855
|
},
|
|
4825
|
-
[setInternalValue]
|
|
4856
|
+
[setInternalValue, internalValue]
|
|
4826
4857
|
);
|
|
4827
4858
|
if (hidden) {
|
|
4828
4859
|
return null;
|
|
4829
4860
|
}
|
|
4830
|
-
return /* @__PURE__ */
|
|
4861
|
+
return /* @__PURE__ */ React34.createElement(Stack5, { spacing: 3, role: "group", "aria-labelledby": id }, !!label && /* @__PURE__ */ React34.createElement(Typography_default, { id, level: "title-sm", component: "label", textColor: "text.tertiary" }, label), /* @__PURE__ */ React34.createElement(RadioGroup, { name: `${id}-options`, value: selectedOption, onChange: handleOptionChange }, dateRangeOptions.map((option) => /* @__PURE__ */ React34.createElement(Radio, { key: `${id}-${option.value}`, value: option.value, label: option.label }))), selectedOption === "custom" && /* @__PURE__ */ React34.createElement(
|
|
4831
4862
|
DateRangePicker,
|
|
4832
4863
|
{
|
|
4833
4864
|
value: customDateRangeValue,
|
|
@@ -4836,7 +4867,7 @@ function DateRange(props) {
|
|
|
4836
4867
|
maxDate,
|
|
4837
4868
|
disableFuture,
|
|
4838
4869
|
disablePast,
|
|
4839
|
-
format,
|
|
4870
|
+
format: "YYYY-MM-DD",
|
|
4840
4871
|
displayFormat,
|
|
4841
4872
|
inputReadOnly,
|
|
4842
4873
|
hideClearButton
|
|
@@ -4846,12 +4877,12 @@ function DateRange(props) {
|
|
|
4846
4877
|
DateRange.displayName = "DateRange";
|
|
4847
4878
|
|
|
4848
4879
|
// src/components/FilterMenu/components/CurrencyInput.tsx
|
|
4849
|
-
import
|
|
4850
|
-
import { Stack as
|
|
4880
|
+
import React35, { useCallback as useCallback18 } from "react";
|
|
4881
|
+
import { Stack as Stack6 } from "@mui/joy";
|
|
4851
4882
|
function CurrencyInput3(props) {
|
|
4852
4883
|
const { id, label, value, onChange, hidden, max, placeholder, useMinorUnit, currency = "USD" } = props;
|
|
4853
4884
|
const [internalValue, setInternalValue] = useControlledState(value, value, onChange);
|
|
4854
|
-
const handleCurrencyChange =
|
|
4885
|
+
const handleCurrencyChange = useCallback18(
|
|
4855
4886
|
(event) => {
|
|
4856
4887
|
const newValue = event.target.value;
|
|
4857
4888
|
setInternalValue(newValue);
|
|
@@ -4861,7 +4892,7 @@ function CurrencyInput3(props) {
|
|
|
4861
4892
|
if (hidden) {
|
|
4862
4893
|
return null;
|
|
4863
4894
|
}
|
|
4864
|
-
return /* @__PURE__ */
|
|
4895
|
+
return /* @__PURE__ */ React35.createElement(Stack6, { spacing: 3, role: "group", "aria-labelledby": id }, !!label && /* @__PURE__ */ React35.createElement(Typography_default, { id, level: "title-sm", component: "label", textColor: "text.tertiary" }, label), /* @__PURE__ */ React35.createElement(
|
|
4865
4896
|
CurrencyInput,
|
|
4866
4897
|
{
|
|
4867
4898
|
value: internalValue,
|
|
@@ -4877,14 +4908,14 @@ function CurrencyInput3(props) {
|
|
|
4877
4908
|
CurrencyInput3.displayName = "CurrencyInput";
|
|
4878
4909
|
|
|
4879
4910
|
// src/components/FilterMenu/components/CurrencyRange.tsx
|
|
4880
|
-
import
|
|
4881
|
-
import { Stack as
|
|
4911
|
+
import React36, { useCallback as useCallback19 } from "react";
|
|
4912
|
+
import { Stack as Stack7 } from "@mui/joy";
|
|
4882
4913
|
function CurrencyRange(props) {
|
|
4883
4914
|
const { id, label, value, onChange, hidden, max, placeholder, useMinorUnit, currency = "USD" } = props;
|
|
4884
4915
|
const [internalValue, setInternalValue] = useControlledState(value, null, onChange);
|
|
4885
4916
|
const minValue = internalValue?.[0];
|
|
4886
4917
|
const maxValue = internalValue?.[1];
|
|
4887
|
-
const handleMinChange =
|
|
4918
|
+
const handleMinChange = useCallback19(
|
|
4888
4919
|
(event) => {
|
|
4889
4920
|
const newMinValue = event.target.value;
|
|
4890
4921
|
const currentMaxValue = maxValue;
|
|
@@ -4898,7 +4929,7 @@ function CurrencyRange(props) {
|
|
|
4898
4929
|
},
|
|
4899
4930
|
[maxValue, setInternalValue]
|
|
4900
4931
|
);
|
|
4901
|
-
const handleMaxChange =
|
|
4932
|
+
const handleMaxChange = useCallback19(
|
|
4902
4933
|
(event) => {
|
|
4903
4934
|
const newMaxValue = event.target.value;
|
|
4904
4935
|
const currentMinValue = minValue;
|
|
@@ -4915,7 +4946,7 @@ function CurrencyRange(props) {
|
|
|
4915
4946
|
if (hidden) {
|
|
4916
4947
|
return null;
|
|
4917
4948
|
}
|
|
4918
|
-
return /* @__PURE__ */
|
|
4949
|
+
return /* @__PURE__ */ React36.createElement(Stack7, { spacing: 3, role: "group", "aria-labelledby": id }, !!label && /* @__PURE__ */ React36.createElement(Typography_default, { id, level: "title-sm", component: "label", textColor: "text.tertiary" }, label), /* @__PURE__ */ React36.createElement(Stack7, { direction: "row", spacing: 2, alignItems: "flex-end" }, /* @__PURE__ */ React36.createElement(
|
|
4919
4950
|
CurrencyInput,
|
|
4920
4951
|
{
|
|
4921
4952
|
label: "Minimum",
|
|
@@ -4928,7 +4959,7 @@ function CurrencyRange(props) {
|
|
|
4928
4959
|
"aria-labelledby": label ? id : void 0,
|
|
4929
4960
|
"aria-label": "Minimum amount"
|
|
4930
4961
|
}
|
|
4931
|
-
), /* @__PURE__ */
|
|
4962
|
+
), /* @__PURE__ */ React36.createElement(
|
|
4932
4963
|
CurrencyInput,
|
|
4933
4964
|
{
|
|
4934
4965
|
label: "Maximum",
|
|
@@ -4946,20 +4977,20 @@ function CurrencyRange(props) {
|
|
|
4946
4977
|
CurrencyRange.displayName = "CurrencyRange";
|
|
4947
4978
|
|
|
4948
4979
|
// src/components/FilterMenu/components/PercentageInput.tsx
|
|
4949
|
-
import
|
|
4950
|
-
import { Stack as
|
|
4980
|
+
import React38 from "react";
|
|
4981
|
+
import { Stack as Stack8, Typography as Typography2 } from "@mui/joy";
|
|
4951
4982
|
|
|
4952
4983
|
// src/components/PercentageInput/PercentageInput.tsx
|
|
4953
|
-
import
|
|
4984
|
+
import React37, { useCallback as useCallback20, useMemo as useMemo14, useState as useState12 } from "react";
|
|
4954
4985
|
import { NumericFormat as NumericFormat2 } from "react-number-format";
|
|
4955
4986
|
import { styled as styled20, useThemeProps as useThemeProps6 } from "@mui/joy";
|
|
4956
4987
|
var padDecimal = (value, decimalScale) => {
|
|
4957
4988
|
const [integer, decimal = ""] = `${value}`.split(".");
|
|
4958
4989
|
return Number(`${integer}${decimal.padEnd(decimalScale, "0")}`);
|
|
4959
4990
|
};
|
|
4960
|
-
var TextMaskAdapter7 =
|
|
4991
|
+
var TextMaskAdapter7 = React37.forwardRef(function TextMaskAdapter8(props, ref) {
|
|
4961
4992
|
const { onChange, min, max, ...innerProps } = props;
|
|
4962
|
-
return /* @__PURE__ */
|
|
4993
|
+
return /* @__PURE__ */ React37.createElement(
|
|
4963
4994
|
NumericFormat2,
|
|
4964
4995
|
{
|
|
4965
4996
|
...innerProps,
|
|
@@ -4984,7 +5015,7 @@ var PercentageInputRoot = styled20(Input_default, {
|
|
|
4984
5015
|
slot: "Root",
|
|
4985
5016
|
overridesResolver: (props, styles) => styles.root
|
|
4986
5017
|
})({});
|
|
4987
|
-
var PercentageInput =
|
|
5018
|
+
var PercentageInput = React37.forwardRef(
|
|
4988
5019
|
function PercentageInput2(inProps, ref) {
|
|
4989
5020
|
const props = useThemeProps6({ props: inProps, name: "PercentageInput" });
|
|
4990
5021
|
const {
|
|
@@ -5007,7 +5038,7 @@ var PercentageInput = React36.forwardRef(
|
|
|
5007
5038
|
const [_value, setValue] = useControlledState(
|
|
5008
5039
|
props.value,
|
|
5009
5040
|
props.defaultValue,
|
|
5010
|
-
|
|
5041
|
+
useCallback20((value2) => onChange?.({ target: { name, value: value2 } }), [onChange, name])
|
|
5011
5042
|
);
|
|
5012
5043
|
const [internalError, setInternalError] = useState12(
|
|
5013
5044
|
max && _value && _value > max || min && _value && _value < min
|
|
@@ -5018,7 +5049,7 @@ var PercentageInput = React36.forwardRef(
|
|
|
5018
5049
|
}
|
|
5019
5050
|
return _value;
|
|
5020
5051
|
}, [_value, useMinorUnit, maxDecimalScale]);
|
|
5021
|
-
const handleChange =
|
|
5052
|
+
const handleChange = useCallback20(
|
|
5022
5053
|
(event) => {
|
|
5023
5054
|
if (event.target.value === "") {
|
|
5024
5055
|
setValue(void 0);
|
|
@@ -5035,7 +5066,7 @@ var PercentageInput = React36.forwardRef(
|
|
|
5035
5066
|
},
|
|
5036
5067
|
[setValue, useMinorUnit, maxDecimalScale, min, max]
|
|
5037
5068
|
);
|
|
5038
|
-
return /* @__PURE__ */
|
|
5069
|
+
return /* @__PURE__ */ React37.createElement(
|
|
5039
5070
|
PercentageInputRoot,
|
|
5040
5071
|
{
|
|
5041
5072
|
...innerProps,
|
|
@@ -5082,7 +5113,7 @@ var PercentageInput3 = ({
|
|
|
5082
5113
|
if (hidden) {
|
|
5083
5114
|
return null;
|
|
5084
5115
|
}
|
|
5085
|
-
return /* @__PURE__ */
|
|
5116
|
+
return /* @__PURE__ */ React38.createElement(Stack8, { spacing: 3, role: "group", "aria-labelledby": id }, !!label && /* @__PURE__ */ React38.createElement(Typography2, { id, level: "title-sm", component: "label", textColor: "text.tertiary" }, label), /* @__PURE__ */ React38.createElement(
|
|
5086
5117
|
PercentageInput,
|
|
5087
5118
|
{
|
|
5088
5119
|
value: _value,
|
|
@@ -5097,8 +5128,8 @@ var PercentageInput3 = ({
|
|
|
5097
5128
|
};
|
|
5098
5129
|
|
|
5099
5130
|
// src/components/FilterMenu/components/PercentageRange.tsx
|
|
5100
|
-
import
|
|
5101
|
-
import { Stack as
|
|
5131
|
+
import React39, { useCallback as useCallback21 } from "react";
|
|
5132
|
+
import { Stack as Stack9 } from "@mui/joy";
|
|
5102
5133
|
function PercentageRange(props) {
|
|
5103
5134
|
const { id, label, value, onChange, hidden, useMinorUnit, maxDecimalScale, min, max } = props;
|
|
5104
5135
|
const [internalValue, setInternalValue] = useControlledState(
|
|
@@ -5108,7 +5139,7 @@ function PercentageRange(props) {
|
|
|
5108
5139
|
);
|
|
5109
5140
|
const minValue = internalValue?.[0];
|
|
5110
5141
|
const maxValue = internalValue?.[1];
|
|
5111
|
-
const handleMinChange =
|
|
5142
|
+
const handleMinChange = useCallback21(
|
|
5112
5143
|
(event) => {
|
|
5113
5144
|
const newMinValue = event.target.value;
|
|
5114
5145
|
const currentMaxValue = maxValue;
|
|
@@ -5120,7 +5151,7 @@ function PercentageRange(props) {
|
|
|
5120
5151
|
},
|
|
5121
5152
|
[maxValue, setInternalValue]
|
|
5122
5153
|
);
|
|
5123
|
-
const handleMaxChange =
|
|
5154
|
+
const handleMaxChange = useCallback21(
|
|
5124
5155
|
(event) => {
|
|
5125
5156
|
const newMaxValue = event.target.value;
|
|
5126
5157
|
const currentMinValue = minValue;
|
|
@@ -5135,7 +5166,7 @@ function PercentageRange(props) {
|
|
|
5135
5166
|
if (hidden) {
|
|
5136
5167
|
return null;
|
|
5137
5168
|
}
|
|
5138
|
-
return /* @__PURE__ */
|
|
5169
|
+
return /* @__PURE__ */ React39.createElement(Stack9, { spacing: 3, role: "group", "aria-labelledby": id }, !!label && /* @__PURE__ */ React39.createElement(Typography_default, { id, level: "title-sm", component: "label", textColor: "text.tertiary" }, label), /* @__PURE__ */ React39.createElement(Stack9, { direction: "row", spacing: 2, alignItems: "flex-end" }, /* @__PURE__ */ React39.createElement(
|
|
5139
5170
|
PercentageInput,
|
|
5140
5171
|
{
|
|
5141
5172
|
label: "Minimum",
|
|
@@ -5149,7 +5180,7 @@ function PercentageRange(props) {
|
|
|
5149
5180
|
"aria-label": "Minimum percentage",
|
|
5150
5181
|
placeholder: "0%"
|
|
5151
5182
|
}
|
|
5152
|
-
), /* @__PURE__ */
|
|
5183
|
+
), /* @__PURE__ */ React39.createElement(
|
|
5153
5184
|
PercentageInput,
|
|
5154
5185
|
{
|
|
5155
5186
|
label: "Maximum",
|
|
@@ -5168,13 +5199,13 @@ function PercentageRange(props) {
|
|
|
5168
5199
|
PercentageRange.displayName = "PercentageRange";
|
|
5169
5200
|
|
|
5170
5201
|
// src/components/FilterMenu/components/Autocomplete.tsx
|
|
5171
|
-
import
|
|
5172
|
-
import { Stack as
|
|
5202
|
+
import React40, { useCallback as useCallback22 } from "react";
|
|
5203
|
+
import { Stack as Stack10 } from "@mui/joy";
|
|
5173
5204
|
function Autocomplete2(props) {
|
|
5174
5205
|
const { id, label, value, onChange, options, multiple, hidden, placeholder } = props;
|
|
5175
5206
|
const [internalValue, setInternalValue] = useControlledState(value, void 0, onChange);
|
|
5176
5207
|
const autocompleteValue = typeof internalValue === "string" || typeof internalValue === "number" ? String(internalValue) : void 0;
|
|
5177
|
-
const handleChange =
|
|
5208
|
+
const handleChange = useCallback22(
|
|
5178
5209
|
(event) => {
|
|
5179
5210
|
const val = event.target.value;
|
|
5180
5211
|
if (val) {
|
|
@@ -5189,7 +5220,7 @@ function Autocomplete2(props) {
|
|
|
5189
5220
|
if (hidden) {
|
|
5190
5221
|
return null;
|
|
5191
5222
|
}
|
|
5192
|
-
return /* @__PURE__ */
|
|
5223
|
+
return /* @__PURE__ */ React40.createElement(Stack10, { spacing: 3, role: "group", "aria-labelledby": id }, !!label && /* @__PURE__ */ React40.createElement(Typography_default, { id, level: "title-sm", component: "label", textColor: "text.tertiary" }, label), /* @__PURE__ */ React40.createElement(
|
|
5193
5224
|
Autocomplete,
|
|
5194
5225
|
{
|
|
5195
5226
|
value: autocompleteValue,
|
|
@@ -5206,6 +5237,7 @@ Autocomplete2.displayName = "Autocomplete";
|
|
|
5206
5237
|
// src/components/FilterMenu/FilterMenu.tsx
|
|
5207
5238
|
var componentMap = {
|
|
5208
5239
|
"checkbox-group": CheckboxGroup,
|
|
5240
|
+
"filterable-checkbox-group": FilterableCheckboxGroup2,
|
|
5209
5241
|
"radio-group": RadioGroup2,
|
|
5210
5242
|
"date-range": DateRange,
|
|
5211
5243
|
"currency-input": CurrencyInput3,
|
|
@@ -5222,7 +5254,7 @@ function FilterMenu(props) {
|
|
|
5222
5254
|
void 0
|
|
5223
5255
|
// onChange는 Apply 버튼에서만 호출
|
|
5224
5256
|
);
|
|
5225
|
-
const handleFilterChange =
|
|
5257
|
+
const handleFilterChange = useCallback23(
|
|
5226
5258
|
(filterId, value) => {
|
|
5227
5259
|
setInternalValues((prev) => ({
|
|
5228
5260
|
...prev,
|
|
@@ -5231,17 +5263,17 @@ function FilterMenu(props) {
|
|
|
5231
5263
|
},
|
|
5232
5264
|
[setInternalValues]
|
|
5233
5265
|
);
|
|
5234
|
-
const handleApply =
|
|
5266
|
+
const handleApply = useCallback23(() => {
|
|
5235
5267
|
onChange?.(internalValues);
|
|
5236
5268
|
onClose?.();
|
|
5237
5269
|
}, [onChange, onClose, internalValues]);
|
|
5238
|
-
const handleClear =
|
|
5270
|
+
const handleClear = useCallback23(() => {
|
|
5239
5271
|
const clearedValues = resetValues || {};
|
|
5240
5272
|
setInternalValues(clearedValues);
|
|
5241
5273
|
onChange?.(clearedValues);
|
|
5242
5274
|
onClose?.();
|
|
5243
5275
|
}, [resetValues, setInternalValues, onChange, onClose]);
|
|
5244
|
-
return /* @__PURE__ */
|
|
5276
|
+
return /* @__PURE__ */ React41.createElement(
|
|
5245
5277
|
ModalDialog,
|
|
5246
5278
|
{
|
|
5247
5279
|
sx: {
|
|
@@ -5251,9 +5283,9 @@ function FilterMenu(props) {
|
|
|
5251
5283
|
top: "initial"
|
|
5252
5284
|
}
|
|
5253
5285
|
},
|
|
5254
|
-
/* @__PURE__ */
|
|
5286
|
+
/* @__PURE__ */ React41.createElement(DialogContent, { sx: { paddingTop: 5 } }, /* @__PURE__ */ React41.createElement(Stack11, { spacing: 6 }, filters?.map((filter) => {
|
|
5255
5287
|
const FilterComponent = componentMap[filter.type];
|
|
5256
|
-
return FilterComponent ? /* @__PURE__ */
|
|
5288
|
+
return FilterComponent ? /* @__PURE__ */ React41.createElement(
|
|
5257
5289
|
FilterComponent,
|
|
5258
5290
|
{
|
|
5259
5291
|
key: filter.id,
|
|
@@ -5265,13 +5297,13 @@ function FilterMenu(props) {
|
|
|
5265
5297
|
}
|
|
5266
5298
|
) : null;
|
|
5267
5299
|
}))),
|
|
5268
|
-
/* @__PURE__ */
|
|
5300
|
+
/* @__PURE__ */ React41.createElement(DialogActions, { sx: { justifyContent: "space-between" } }, useClear && filters?.length === 1 && /* @__PURE__ */ React41.createElement(Button2, { variant: "plain", color: "neutral", size: "md", onClick: handleClear }, "Clear"), useReset && !useClear && /* @__PURE__ */ React41.createElement(Button2, { variant: "plain", color: "neutral", size: "md", onClick: handleClear }, "Reset"), /* @__PURE__ */ React41.createElement(Button2, { variant: "solid", color: "primary", size: "md", onClick: handleApply }, "Apply"))
|
|
5269
5301
|
);
|
|
5270
5302
|
}
|
|
5271
5303
|
FilterMenu.displayName = "FilterMenu";
|
|
5272
5304
|
|
|
5273
5305
|
// src/components/Uploader/Uploader.tsx
|
|
5274
|
-
import
|
|
5306
|
+
import React42, { useCallback as useCallback24, useEffect as useEffect10, useMemo as useMemo15, useRef as useRef9, useState as useState13 } from "react";
|
|
5275
5307
|
import { styled as styled21, Input as Input2 } from "@mui/joy";
|
|
5276
5308
|
import MuiFileUploadIcon from "@mui/icons-material/CloudUploadRounded";
|
|
5277
5309
|
import MuiUploadFileIcon from "@mui/icons-material/UploadFileRounded";
|
|
@@ -5348,7 +5380,7 @@ var getFileSize = (n) => {
|
|
|
5348
5380
|
};
|
|
5349
5381
|
var Preview = (props) => {
|
|
5350
5382
|
const { files, uploaded, onDelete } = props;
|
|
5351
|
-
return /* @__PURE__ */
|
|
5383
|
+
return /* @__PURE__ */ React42.createElement(PreviewRoot, { gap: 1 }, [...uploaded, ...files].map((file) => /* @__PURE__ */ React42.createElement(UploadCard, { key: file.name, size: "sm", color: "neutral" }, /* @__PURE__ */ React42.createElement(Stack_default, { direction: "row", alignItems: "center", gap: 2 }, /* @__PURE__ */ React42.createElement(UploadFileIcon, null), /* @__PURE__ */ React42.createElement(Stack_default, { flex: "1", sx: { overflow: "hidden" } }, /* @__PURE__ */ React42.createElement(
|
|
5352
5384
|
Typography_default,
|
|
5353
5385
|
{
|
|
5354
5386
|
level: "body-sm",
|
|
@@ -5360,7 +5392,7 @@ var Preview = (props) => {
|
|
|
5360
5392
|
}
|
|
5361
5393
|
},
|
|
5362
5394
|
file.name
|
|
5363
|
-
), !!file.size && /* @__PURE__ */
|
|
5395
|
+
), !!file.size && /* @__PURE__ */ React42.createElement(Typography_default, { level: "body-xs", fontWeight: "300", lineHeight: "1.33", textColor: "text.tertiary" }, getFileSize(file.size))), /* @__PURE__ */ React42.createElement(IconButton_default, { onClick: () => onDelete?.(file) }, /* @__PURE__ */ React42.createElement(ClearIcon2, null))))));
|
|
5364
5396
|
};
|
|
5365
5397
|
var UploaderRoot = styled21(Stack_default, {
|
|
5366
5398
|
name: "Uploader",
|
|
@@ -5403,7 +5435,7 @@ var UploaderIcon = styled21(MuiFileUploadIcon, {
|
|
|
5403
5435
|
}
|
|
5404
5436
|
})
|
|
5405
5437
|
);
|
|
5406
|
-
var Uploader =
|
|
5438
|
+
var Uploader = React42.memo(
|
|
5407
5439
|
(props) => {
|
|
5408
5440
|
const {
|
|
5409
5441
|
accept,
|
|
@@ -5471,7 +5503,7 @@ var Uploader = React41.memo(
|
|
|
5471
5503
|
() => !maxCount || maxCount && [...uploaded, ...files].length !== maxCount,
|
|
5472
5504
|
[files, maxCount, uploaded]
|
|
5473
5505
|
);
|
|
5474
|
-
const addFiles =
|
|
5506
|
+
const addFiles = useCallback24(
|
|
5475
5507
|
(uploads) => {
|
|
5476
5508
|
try {
|
|
5477
5509
|
const types = parsedAccepts.map((type) => type.replace(".", "")) || [];
|
|
@@ -5563,14 +5595,14 @@ var Uploader = React41.memo(
|
|
|
5563
5595
|
}
|
|
5564
5596
|
}
|
|
5565
5597
|
}, [inputRef, files, minCount]);
|
|
5566
|
-
const handleFileChanged =
|
|
5598
|
+
const handleFileChanged = useCallback24(
|
|
5567
5599
|
(event) => {
|
|
5568
5600
|
const files2 = Array.from(event.target.files || []);
|
|
5569
5601
|
addFiles(files2);
|
|
5570
5602
|
},
|
|
5571
5603
|
[addFiles]
|
|
5572
5604
|
);
|
|
5573
|
-
const handleDeleteFile =
|
|
5605
|
+
const handleDeleteFile = useCallback24(
|
|
5574
5606
|
(deletedFile) => {
|
|
5575
5607
|
if (deletedFile instanceof File) {
|
|
5576
5608
|
setFiles((current) => {
|
|
@@ -5590,10 +5622,10 @@ var Uploader = React41.memo(
|
|
|
5590
5622
|
},
|
|
5591
5623
|
[name, onChange, onDelete]
|
|
5592
5624
|
);
|
|
5593
|
-
const handleUploaderButtonClick =
|
|
5625
|
+
const handleUploaderButtonClick = useCallback24(() => {
|
|
5594
5626
|
inputRef.current?.click();
|
|
5595
5627
|
}, []);
|
|
5596
|
-
const uploader = /* @__PURE__ */
|
|
5628
|
+
const uploader = /* @__PURE__ */ React42.createElement(
|
|
5597
5629
|
FileDropZone,
|
|
5598
5630
|
{
|
|
5599
5631
|
state: previewState,
|
|
@@ -5602,8 +5634,8 @@ var Uploader = React41.memo(
|
|
|
5602
5634
|
ref: dropZoneRef,
|
|
5603
5635
|
onClick: handleUploaderButtonClick
|
|
5604
5636
|
},
|
|
5605
|
-
/* @__PURE__ */
|
|
5606
|
-
/* @__PURE__ */
|
|
5637
|
+
/* @__PURE__ */ React42.createElement(Stack_default, { alignItems: "center", gap: 1 }, /* @__PURE__ */ React42.createElement(UploaderIcon, { state: previewState, error: !!(error || errorText), disabled })),
|
|
5638
|
+
/* @__PURE__ */ React42.createElement(
|
|
5607
5639
|
VisuallyHiddenInput,
|
|
5608
5640
|
{
|
|
5609
5641
|
disabled,
|
|
@@ -5626,7 +5658,7 @@ var Uploader = React41.memo(
|
|
|
5626
5658
|
}
|
|
5627
5659
|
)
|
|
5628
5660
|
);
|
|
5629
|
-
return /* @__PURE__ */
|
|
5661
|
+
return /* @__PURE__ */ React42.createElement(UploaderRoot, null, showDropZone && /* @__PURE__ */ React42.createElement(FormControl_default, { size, error: !!(error || errorText), disabled, required: !!minCount }, label && /* @__PURE__ */ React42.createElement(FormLabel_default, null, label), uploader, /* @__PURE__ */ React42.createElement(FormHelperText_default, null, /* @__PURE__ */ React42.createElement(Stack_default, null, errorText && /* @__PURE__ */ React42.createElement("div", null, errorText), /* @__PURE__ */ React42.createElement("div", null, helperText)))), [...uploaded, ...files].length > 0 && /* @__PURE__ */ React42.createElement(Preview, { files, uploaded, onDelete: handleDeleteFile }));
|
|
5630
5662
|
}
|
|
5631
5663
|
);
|
|
5632
5664
|
Uploader.displayName = "Uploader";
|
|
@@ -5635,7 +5667,7 @@ Uploader.displayName = "Uploader";
|
|
|
5635
5667
|
import { Grid } from "@mui/joy";
|
|
5636
5668
|
|
|
5637
5669
|
// src/components/IconMenuButton/IconMenuButton.tsx
|
|
5638
|
-
import
|
|
5670
|
+
import React43 from "react";
|
|
5639
5671
|
import { MenuButton as JoyMenuButton2, IconButton as JoyIconButton2 } from "@mui/joy";
|
|
5640
5672
|
function IconMenuButton(props) {
|
|
5641
5673
|
const {
|
|
@@ -5649,7 +5681,7 @@ function IconMenuButton(props) {
|
|
|
5649
5681
|
placement = "bottom"
|
|
5650
5682
|
} = props;
|
|
5651
5683
|
if (!items.length) {
|
|
5652
|
-
return /* @__PURE__ */
|
|
5684
|
+
return /* @__PURE__ */ React43.createElement(
|
|
5653
5685
|
JoyIconButton2,
|
|
5654
5686
|
{
|
|
5655
5687
|
component: props.buttonComponent ?? "button",
|
|
@@ -5663,7 +5695,7 @@ function IconMenuButton(props) {
|
|
|
5663
5695
|
icon
|
|
5664
5696
|
);
|
|
5665
5697
|
}
|
|
5666
|
-
return /* @__PURE__ */
|
|
5698
|
+
return /* @__PURE__ */ React43.createElement(Dropdown_default, null, /* @__PURE__ */ React43.createElement(
|
|
5667
5699
|
JoyMenuButton2,
|
|
5668
5700
|
{
|
|
5669
5701
|
slots: { root: JoyIconButton2 },
|
|
@@ -5680,12 +5712,12 @@ function IconMenuButton(props) {
|
|
|
5680
5712
|
}
|
|
5681
5713
|
},
|
|
5682
5714
|
icon
|
|
5683
|
-
), /* @__PURE__ */
|
|
5715
|
+
), /* @__PURE__ */ React43.createElement(Menu, { placement, size }, items.map((i) => /* @__PURE__ */ React43.createElement(MenuItem, { key: i.text, component: i.component, ...i.componentProps ?? {} }, i.text))));
|
|
5684
5716
|
}
|
|
5685
5717
|
IconMenuButton.displayName = "IconMenuButton";
|
|
5686
5718
|
|
|
5687
5719
|
// src/components/Markdown/Markdown.tsx
|
|
5688
|
-
import
|
|
5720
|
+
import React44, { lazy, Suspense, useEffect as useEffect11, useState as useState14 } from "react";
|
|
5689
5721
|
import { Skeleton } from "@mui/joy";
|
|
5690
5722
|
import { Link as Link2 } from "@mui/joy";
|
|
5691
5723
|
import remarkGfm from "remark-gfm";
|
|
@@ -5714,12 +5746,12 @@ var Markdown = (props) => {
|
|
|
5714
5746
|
if (!rehypeAccent2) {
|
|
5715
5747
|
return null;
|
|
5716
5748
|
}
|
|
5717
|
-
return /* @__PURE__ */
|
|
5749
|
+
return /* @__PURE__ */ React44.createElement(Typography, { component: "div", color, textColor, level: defaultLevel, ...innerProps }, /* @__PURE__ */ React44.createElement(
|
|
5718
5750
|
Suspense,
|
|
5719
5751
|
{
|
|
5720
|
-
fallback: fallback || /* @__PURE__ */
|
|
5752
|
+
fallback: fallback || /* @__PURE__ */ React44.createElement(Typography, null, /* @__PURE__ */ React44.createElement(Skeleton, null, content || ""))
|
|
5721
5753
|
},
|
|
5722
|
-
/* @__PURE__ */
|
|
5754
|
+
/* @__PURE__ */ React44.createElement(
|
|
5723
5755
|
LazyReactMarkdown,
|
|
5724
5756
|
{
|
|
5725
5757
|
...markdownOptions,
|
|
@@ -5727,15 +5759,15 @@ var Markdown = (props) => {
|
|
|
5727
5759
|
rehypePlugins: [[rehypeAccent2, { accentColor }]],
|
|
5728
5760
|
remarkPlugins: [remarkGfm],
|
|
5729
5761
|
components: {
|
|
5730
|
-
h1: ({ children }) => /* @__PURE__ */
|
|
5731
|
-
h2: ({ children }) => /* @__PURE__ */
|
|
5732
|
-
h3: ({ children }) => /* @__PURE__ */
|
|
5733
|
-
h4: ({ children }) => /* @__PURE__ */
|
|
5734
|
-
p: ({ children, node }) => /* @__PURE__ */
|
|
5735
|
-
a: ({ children, href }) => /* @__PURE__ */
|
|
5736
|
-
hr: () => /* @__PURE__ */
|
|
5737
|
-
b: ({ children }) => /* @__PURE__ */
|
|
5738
|
-
strong: ({ children }) => /* @__PURE__ */
|
|
5762
|
+
h1: ({ children }) => /* @__PURE__ */ React44.createElement(Typography, { color, textColor, level: "h1" }, children),
|
|
5763
|
+
h2: ({ children }) => /* @__PURE__ */ React44.createElement(Typography, { color, textColor, level: "h2" }, children),
|
|
5764
|
+
h3: ({ children }) => /* @__PURE__ */ React44.createElement(Typography, { color, textColor, level: "h3" }, children),
|
|
5765
|
+
h4: ({ children }) => /* @__PURE__ */ React44.createElement(Typography, { color, textColor, level: "h4" }, children),
|
|
5766
|
+
p: ({ children, node }) => /* @__PURE__ */ React44.createElement(Typography, { color, textColor, level: defaultLevel, ...node?.properties }, children),
|
|
5767
|
+
a: ({ children, href }) => /* @__PURE__ */ React44.createElement(Link2, { href, target: defaultLinkAction }, children),
|
|
5768
|
+
hr: () => /* @__PURE__ */ React44.createElement(Divider, null),
|
|
5769
|
+
b: ({ children }) => /* @__PURE__ */ React44.createElement(Typography, { fontWeight: boldFontWeight }, children),
|
|
5770
|
+
strong: ({ children }) => /* @__PURE__ */ React44.createElement(Typography, { fontWeight: boldFontWeight }, children),
|
|
5739
5771
|
...markdownOptions?.components
|
|
5740
5772
|
}
|
|
5741
5773
|
}
|
|
@@ -5745,7 +5777,7 @@ var Markdown = (props) => {
|
|
|
5745
5777
|
Markdown.displayName = "Markdown";
|
|
5746
5778
|
|
|
5747
5779
|
// src/components/MenuButton/MenuButton.tsx
|
|
5748
|
-
import
|
|
5780
|
+
import React45 from "react";
|
|
5749
5781
|
import { MenuButton as JoyMenuButton3, Button as JoyButton2 } from "@mui/joy";
|
|
5750
5782
|
import ExpandMoreIcon from "@mui/icons-material/ExpandMore";
|
|
5751
5783
|
function MenuButton(props) {
|
|
@@ -5763,7 +5795,7 @@ function MenuButton(props) {
|
|
|
5763
5795
|
placement = "bottom"
|
|
5764
5796
|
} = props;
|
|
5765
5797
|
if (!items.length) {
|
|
5766
|
-
return /* @__PURE__ */
|
|
5798
|
+
return /* @__PURE__ */ React45.createElement(
|
|
5767
5799
|
JoyButton2,
|
|
5768
5800
|
{
|
|
5769
5801
|
component: props.buttonComponent ?? "button",
|
|
@@ -5774,12 +5806,12 @@ function MenuButton(props) {
|
|
|
5774
5806
|
loading,
|
|
5775
5807
|
startDecorator,
|
|
5776
5808
|
...props.buttonComponentProps ?? {},
|
|
5777
|
-
endDecorator: showIcon ? /* @__PURE__ */
|
|
5809
|
+
endDecorator: showIcon ? /* @__PURE__ */ React45.createElement(React45.Fragment, null, endDecorator, /* @__PURE__ */ React45.createElement(ExpandMoreIcon, null)) : /* @__PURE__ */ React45.createElement(React45.Fragment, null, endDecorator)
|
|
5778
5810
|
},
|
|
5779
5811
|
buttonText
|
|
5780
5812
|
);
|
|
5781
5813
|
}
|
|
5782
|
-
return /* @__PURE__ */
|
|
5814
|
+
return /* @__PURE__ */ React45.createElement(Dropdown_default, null, /* @__PURE__ */ React45.createElement(
|
|
5783
5815
|
JoyMenuButton3,
|
|
5784
5816
|
{
|
|
5785
5817
|
component: props.buttonComponent ?? "button",
|
|
@@ -5790,15 +5822,15 @@ function MenuButton(props) {
|
|
|
5790
5822
|
loading,
|
|
5791
5823
|
startDecorator,
|
|
5792
5824
|
...props.buttonComponentProps ?? {},
|
|
5793
|
-
endDecorator: showIcon ? /* @__PURE__ */
|
|
5825
|
+
endDecorator: showIcon ? /* @__PURE__ */ React45.createElement(React45.Fragment, null, endDecorator, /* @__PURE__ */ React45.createElement(ExpandMoreIcon, null)) : /* @__PURE__ */ React45.createElement(React45.Fragment, null, endDecorator)
|
|
5794
5826
|
},
|
|
5795
5827
|
buttonText
|
|
5796
|
-
), /* @__PURE__ */
|
|
5828
|
+
), /* @__PURE__ */ React45.createElement(Menu, { placement, size }, items.map((i) => /* @__PURE__ */ React45.createElement(MenuItem, { key: i.text, component: i.component, ...i.componentProps ?? {} }, i.text))));
|
|
5797
5829
|
}
|
|
5798
5830
|
MenuButton.displayName = "MenuButton";
|
|
5799
5831
|
|
|
5800
5832
|
// src/components/MonthPicker/MonthPicker.tsx
|
|
5801
|
-
import
|
|
5833
|
+
import React46, { forwardRef as forwardRef9, useCallback as useCallback25, useEffect as useEffect12, useImperativeHandle as useImperativeHandle4, useRef as useRef10, useState as useState15 } from "react";
|
|
5802
5834
|
import CalendarTodayIcon3 from "@mui/icons-material/CalendarToday";
|
|
5803
5835
|
import { styled as styled22, useThemeProps as useThemeProps7 } from "@mui/joy";
|
|
5804
5836
|
import { FocusTrap as FocusTrap3, ClickAwayListener as ClickAwayListener3, Popper as Popper4 } from "@mui/base";
|
|
@@ -5885,9 +5917,9 @@ var MonthPicker = forwardRef9((inProps, ref) => {
|
|
|
5885
5917
|
const [value, setValue, isControlled] = useControlledState(
|
|
5886
5918
|
props.value,
|
|
5887
5919
|
props.defaultValue || "",
|
|
5888
|
-
|
|
5920
|
+
useCallback25((value2) => onChange?.({ target: { name: props.name, value: value2 } }), [props.name, onChange])
|
|
5889
5921
|
);
|
|
5890
|
-
const getFormattedDisplayValue =
|
|
5922
|
+
const getFormattedDisplayValue = useCallback25(
|
|
5891
5923
|
(inputValue) => {
|
|
5892
5924
|
if (!inputValue) return "";
|
|
5893
5925
|
try {
|
|
@@ -5910,7 +5942,7 @@ var MonthPicker = forwardRef9((inProps, ref) => {
|
|
|
5910
5942
|
useEffect12(() => {
|
|
5911
5943
|
setDisplayValue(getFormattedDisplayValue(value));
|
|
5912
5944
|
}, [value, getFormattedDisplayValue]);
|
|
5913
|
-
const handleChange =
|
|
5945
|
+
const handleChange = useCallback25(
|
|
5914
5946
|
(event) => {
|
|
5915
5947
|
const newValue = event.target.value;
|
|
5916
5948
|
setValue(newValue);
|
|
@@ -5920,21 +5952,21 @@ var MonthPicker = forwardRef9((inProps, ref) => {
|
|
|
5920
5952
|
},
|
|
5921
5953
|
[setValue, getFormattedDisplayValue, isControlled]
|
|
5922
5954
|
);
|
|
5923
|
-
const handleCalendarToggle =
|
|
5955
|
+
const handleCalendarToggle = useCallback25(
|
|
5924
5956
|
(event) => {
|
|
5925
5957
|
setAnchorEl(anchorEl ? null : event.currentTarget);
|
|
5926
5958
|
innerRef.current?.focus();
|
|
5927
5959
|
},
|
|
5928
5960
|
[anchorEl, setAnchorEl, innerRef]
|
|
5929
5961
|
);
|
|
5930
|
-
const handleInputMouseDown =
|
|
5962
|
+
const handleInputMouseDown = useCallback25(
|
|
5931
5963
|
(event) => {
|
|
5932
5964
|
event.preventDefault();
|
|
5933
5965
|
buttonRef.current?.focus();
|
|
5934
5966
|
},
|
|
5935
5967
|
[buttonRef]
|
|
5936
5968
|
);
|
|
5937
|
-
return /* @__PURE__ */
|
|
5969
|
+
return /* @__PURE__ */ React46.createElement(MonthPickerRoot, null, /* @__PURE__ */ React46.createElement(FocusTrap3, { open: true }, /* @__PURE__ */ React46.createElement(React46.Fragment, null, /* @__PURE__ */ React46.createElement(
|
|
5938
5970
|
Input_default,
|
|
5939
5971
|
{
|
|
5940
5972
|
...innerProps,
|
|
@@ -5964,7 +5996,7 @@ var MonthPicker = forwardRef9((inProps, ref) => {
|
|
|
5964
5996
|
// NOTE: placeholder char 를 텍스트로 표시하므로 동일한 너비를 가지는 mono font 를 사용해야 이질감이 없다.
|
|
5965
5997
|
fontFamily: "monospace"
|
|
5966
5998
|
},
|
|
5967
|
-
endDecorator: /* @__PURE__ */
|
|
5999
|
+
endDecorator: /* @__PURE__ */ React46.createElement(
|
|
5968
6000
|
IconButton_default,
|
|
5969
6001
|
{
|
|
5970
6002
|
ref: buttonRef,
|
|
@@ -5976,12 +6008,12 @@ var MonthPicker = forwardRef9((inProps, ref) => {
|
|
|
5976
6008
|
"aria-expanded": open,
|
|
5977
6009
|
disabled
|
|
5978
6010
|
},
|
|
5979
|
-
/* @__PURE__ */
|
|
6011
|
+
/* @__PURE__ */ React46.createElement(CalendarTodayIcon3, null)
|
|
5980
6012
|
),
|
|
5981
6013
|
label,
|
|
5982
6014
|
helperText
|
|
5983
6015
|
}
|
|
5984
|
-
), open && /* @__PURE__ */
|
|
6016
|
+
), open && /* @__PURE__ */ React46.createElement(ClickAwayListener3, { onClickAway: () => setAnchorEl(null) }, /* @__PURE__ */ React46.createElement(
|
|
5985
6017
|
StyledPopper3,
|
|
5986
6018
|
{
|
|
5987
6019
|
id: "month-picker-popper",
|
|
@@ -6000,7 +6032,7 @@ var MonthPicker = forwardRef9((inProps, ref) => {
|
|
|
6000
6032
|
"aria-label": "Calendar Tooltip",
|
|
6001
6033
|
"aria-expanded": open
|
|
6002
6034
|
},
|
|
6003
|
-
/* @__PURE__ */
|
|
6035
|
+
/* @__PURE__ */ React46.createElement(CalendarSheet3, { tabIndex: -1, role: "presentation" }, /* @__PURE__ */ React46.createElement(
|
|
6004
6036
|
Calendar_default,
|
|
6005
6037
|
{
|
|
6006
6038
|
view: "month",
|
|
@@ -6021,14 +6053,14 @@ var MonthPicker = forwardRef9((inProps, ref) => {
|
|
|
6021
6053
|
disablePast,
|
|
6022
6054
|
locale
|
|
6023
6055
|
}
|
|
6024
|
-
), /* @__PURE__ */
|
|
6056
|
+
), /* @__PURE__ */ React46.createElement(
|
|
6025
6057
|
DialogActions_default,
|
|
6026
6058
|
{
|
|
6027
6059
|
sx: {
|
|
6028
6060
|
p: 1
|
|
6029
6061
|
}
|
|
6030
6062
|
},
|
|
6031
|
-
/* @__PURE__ */
|
|
6063
|
+
/* @__PURE__ */ React46.createElement(
|
|
6032
6064
|
Button_default,
|
|
6033
6065
|
{
|
|
6034
6066
|
size,
|
|
@@ -6051,7 +6083,7 @@ var MonthPicker = forwardRef9((inProps, ref) => {
|
|
|
6051
6083
|
});
|
|
6052
6084
|
|
|
6053
6085
|
// src/components/MonthRangePicker/MonthRangePicker.tsx
|
|
6054
|
-
import
|
|
6086
|
+
import React47, { forwardRef as forwardRef10, useCallback as useCallback26, useEffect as useEffect13, useImperativeHandle as useImperativeHandle5, useMemo as useMemo16, useRef as useRef11, useState as useState16 } from "react";
|
|
6055
6087
|
import { IMaskInput as IMaskInput3, IMask as IMask3 } from "react-imask";
|
|
6056
6088
|
import CalendarTodayIcon4 from "@mui/icons-material/CalendarToday";
|
|
6057
6089
|
import { styled as styled23, useThemeProps as useThemeProps8 } from "@mui/joy";
|
|
@@ -6109,9 +6141,9 @@ var parseDates2 = (str) => {
|
|
|
6109
6141
|
var formatToPattern3 = (format) => {
|
|
6110
6142
|
return `${format} - ${format}`.replace(/YYYY/g, "Y").replace(/MM/g, "m").replace(/[^YMm\s]/g, (match) => `${match}\``);
|
|
6111
6143
|
};
|
|
6112
|
-
var TextMaskAdapter9 =
|
|
6144
|
+
var TextMaskAdapter9 = React47.forwardRef(function TextMaskAdapter10(props, ref) {
|
|
6113
6145
|
const { onChange, format, ...other } = props;
|
|
6114
|
-
return /* @__PURE__ */
|
|
6146
|
+
return /* @__PURE__ */ React47.createElement(
|
|
6115
6147
|
IMaskInput3,
|
|
6116
6148
|
{
|
|
6117
6149
|
...other,
|
|
@@ -6163,7 +6195,7 @@ var MonthRangePicker = forwardRef10((inProps, ref) => {
|
|
|
6163
6195
|
const [value, setValue] = useControlledState(
|
|
6164
6196
|
props.value,
|
|
6165
6197
|
props.defaultValue || "",
|
|
6166
|
-
|
|
6198
|
+
useCallback26((value2) => onChange?.({ target: { name: props.name, value: value2 } }), [props.name, onChange])
|
|
6167
6199
|
);
|
|
6168
6200
|
const [anchorEl, setAnchorEl] = useState16(null);
|
|
6169
6201
|
const open = Boolean(anchorEl);
|
|
@@ -6174,20 +6206,20 @@ var MonthRangePicker = forwardRef10((inProps, ref) => {
|
|
|
6174
6206
|
}
|
|
6175
6207
|
}, [anchorEl, innerRef]);
|
|
6176
6208
|
useImperativeHandle5(ref, () => innerRef.current, [innerRef]);
|
|
6177
|
-
const handleChange =
|
|
6209
|
+
const handleChange = useCallback26(
|
|
6178
6210
|
(event) => {
|
|
6179
6211
|
setValue(event.target.value);
|
|
6180
6212
|
},
|
|
6181
6213
|
[setValue]
|
|
6182
6214
|
);
|
|
6183
|
-
const handleCalendarToggle =
|
|
6215
|
+
const handleCalendarToggle = useCallback26(
|
|
6184
6216
|
(event) => {
|
|
6185
6217
|
setAnchorEl(anchorEl ? null : event.currentTarget);
|
|
6186
6218
|
innerRef.current?.focus();
|
|
6187
6219
|
},
|
|
6188
6220
|
[anchorEl, setAnchorEl, innerRef]
|
|
6189
6221
|
);
|
|
6190
|
-
const handleCalendarChange =
|
|
6222
|
+
const handleCalendarChange = useCallback26(
|
|
6191
6223
|
([date1, date2]) => {
|
|
6192
6224
|
if (!date1 || !date2) return;
|
|
6193
6225
|
setValue(formatValueString4([date1, date2], format));
|
|
@@ -6195,7 +6227,7 @@ var MonthRangePicker = forwardRef10((inProps, ref) => {
|
|
|
6195
6227
|
},
|
|
6196
6228
|
[setValue, setAnchorEl, format]
|
|
6197
6229
|
);
|
|
6198
|
-
return /* @__PURE__ */
|
|
6230
|
+
return /* @__PURE__ */ React47.createElement(MonthRangePickerRoot, null, /* @__PURE__ */ React47.createElement(FocusTrap4, { open: true }, /* @__PURE__ */ React47.createElement(React47.Fragment, null, /* @__PURE__ */ React47.createElement(
|
|
6199
6231
|
Input_default,
|
|
6200
6232
|
{
|
|
6201
6233
|
...innerProps,
|
|
@@ -6217,7 +6249,7 @@ var MonthRangePicker = forwardRef10((inProps, ref) => {
|
|
|
6217
6249
|
// NOTE: placeholder char 를 텍스트로 표시하므로 동일한 너비를 가지는 mono font 를 사용해야 이질감이 없다.
|
|
6218
6250
|
fontFamily: "monospace"
|
|
6219
6251
|
},
|
|
6220
|
-
endDecorator: /* @__PURE__ */
|
|
6252
|
+
endDecorator: /* @__PURE__ */ React47.createElement(
|
|
6221
6253
|
IconButton_default,
|
|
6222
6254
|
{
|
|
6223
6255
|
variant: "plain",
|
|
@@ -6227,12 +6259,12 @@ var MonthRangePicker = forwardRef10((inProps, ref) => {
|
|
|
6227
6259
|
"aria-haspopup": "dialog",
|
|
6228
6260
|
"aria-expanded": open
|
|
6229
6261
|
},
|
|
6230
|
-
/* @__PURE__ */
|
|
6262
|
+
/* @__PURE__ */ React47.createElement(CalendarTodayIcon4, null)
|
|
6231
6263
|
),
|
|
6232
6264
|
label,
|
|
6233
6265
|
helperText
|
|
6234
6266
|
}
|
|
6235
|
-
), open && /* @__PURE__ */
|
|
6267
|
+
), open && /* @__PURE__ */ React47.createElement(ClickAwayListener4, { onClickAway: () => setAnchorEl(null) }, /* @__PURE__ */ React47.createElement(
|
|
6236
6268
|
StyledPopper4,
|
|
6237
6269
|
{
|
|
6238
6270
|
id: "month-range-picker-popper",
|
|
@@ -6251,7 +6283,7 @@ var MonthRangePicker = forwardRef10((inProps, ref) => {
|
|
|
6251
6283
|
"aria-label": "Calendar Tooltip",
|
|
6252
6284
|
"aria-expanded": open
|
|
6253
6285
|
},
|
|
6254
|
-
/* @__PURE__ */
|
|
6286
|
+
/* @__PURE__ */ React47.createElement(CalendarSheet4, { tabIndex: -1, role: "presentation" }, /* @__PURE__ */ React47.createElement(
|
|
6255
6287
|
Calendar_default,
|
|
6256
6288
|
{
|
|
6257
6289
|
view: "month",
|
|
@@ -6264,14 +6296,14 @@ var MonthRangePicker = forwardRef10((inProps, ref) => {
|
|
|
6264
6296
|
disableFuture,
|
|
6265
6297
|
disablePast
|
|
6266
6298
|
}
|
|
6267
|
-
), /* @__PURE__ */
|
|
6299
|
+
), /* @__PURE__ */ React47.createElement(
|
|
6268
6300
|
DialogActions_default,
|
|
6269
6301
|
{
|
|
6270
6302
|
sx: {
|
|
6271
6303
|
p: 1
|
|
6272
6304
|
}
|
|
6273
6305
|
},
|
|
6274
|
-
/* @__PURE__ */
|
|
6306
|
+
/* @__PURE__ */ React47.createElement(
|
|
6275
6307
|
Button_default,
|
|
6276
6308
|
{
|
|
6277
6309
|
size,
|
|
@@ -6290,14 +6322,14 @@ var MonthRangePicker = forwardRef10((inProps, ref) => {
|
|
|
6290
6322
|
MonthRangePicker.displayName = "MonthRangePicker";
|
|
6291
6323
|
|
|
6292
6324
|
// src/components/NavigationGroup/NavigationGroup.tsx
|
|
6293
|
-
import
|
|
6325
|
+
import React48 from "react";
|
|
6294
6326
|
import {
|
|
6295
6327
|
Accordion as JoyAccordion2,
|
|
6296
6328
|
AccordionSummary as JoyAccordionSummary2,
|
|
6297
6329
|
AccordionDetails as JoyAccordionDetails2,
|
|
6298
6330
|
styled as styled24,
|
|
6299
6331
|
accordionSummaryClasses,
|
|
6300
|
-
Stack as
|
|
6332
|
+
Stack as Stack12
|
|
6301
6333
|
} from "@mui/joy";
|
|
6302
6334
|
var AccordionSummary2 = styled24(JoyAccordionSummary2, {
|
|
6303
6335
|
name: "NavigationGroup",
|
|
@@ -6321,11 +6353,11 @@ var AccordionDetails2 = styled24(JoyAccordionDetails2, {
|
|
|
6321
6353
|
}));
|
|
6322
6354
|
function NavigationGroup(props) {
|
|
6323
6355
|
const { title, children, startDecorator, level, ...rest } = props;
|
|
6324
|
-
return /* @__PURE__ */
|
|
6356
|
+
return /* @__PURE__ */ React48.createElement(JoyAccordion2, { ...rest }, /* @__PURE__ */ React48.createElement(AccordionSummary2, { useIcon: !!startDecorator, level }, /* @__PURE__ */ React48.createElement(Stack12, { direction: "row", gap: 4 }, startDecorator, title)), /* @__PURE__ */ React48.createElement(AccordionDetails2, null, children));
|
|
6325
6357
|
}
|
|
6326
6358
|
|
|
6327
6359
|
// src/components/NavigationItem/NavigationItem.tsx
|
|
6328
|
-
import
|
|
6360
|
+
import React49 from "react";
|
|
6329
6361
|
import {
|
|
6330
6362
|
ListItem as JoyListItem,
|
|
6331
6363
|
ListItemButton as JoyListItemButton,
|
|
@@ -6360,7 +6392,7 @@ function NavigationItem(props) {
|
|
|
6360
6392
|
const handleClick = () => {
|
|
6361
6393
|
onClick?.(id);
|
|
6362
6394
|
};
|
|
6363
|
-
return /* @__PURE__ */
|
|
6395
|
+
return /* @__PURE__ */ React49.createElement(JoyListItem, { ...rest }, /* @__PURE__ */ React49.createElement(
|
|
6364
6396
|
ListItemButton,
|
|
6365
6397
|
{
|
|
6366
6398
|
level,
|
|
@@ -6369,21 +6401,21 @@ function NavigationItem(props) {
|
|
|
6369
6401
|
"aria-current": selected,
|
|
6370
6402
|
onClick: handleClick
|
|
6371
6403
|
},
|
|
6372
|
-
startDecorator && /* @__PURE__ */
|
|
6404
|
+
startDecorator && /* @__PURE__ */ React49.createElement(JoyListItemDecorator, null, startDecorator),
|
|
6373
6405
|
children
|
|
6374
6406
|
));
|
|
6375
6407
|
}
|
|
6376
6408
|
|
|
6377
6409
|
// src/components/Navigator/Navigator.tsx
|
|
6378
|
-
import
|
|
6410
|
+
import React50 from "react";
|
|
6379
6411
|
function Navigator(props) {
|
|
6380
6412
|
const { items, level = 0, onSelect } = props;
|
|
6381
6413
|
const handleItemClick = (id) => {
|
|
6382
6414
|
onSelect?.(id);
|
|
6383
6415
|
};
|
|
6384
|
-
return /* @__PURE__ */
|
|
6416
|
+
return /* @__PURE__ */ React50.createElement("div", null, items.map((item, index) => {
|
|
6385
6417
|
if (item.type === "item") {
|
|
6386
|
-
return /* @__PURE__ */
|
|
6418
|
+
return /* @__PURE__ */ React50.createElement(
|
|
6387
6419
|
NavigationItem,
|
|
6388
6420
|
{
|
|
6389
6421
|
key: item.id,
|
|
@@ -6396,7 +6428,7 @@ function Navigator(props) {
|
|
|
6396
6428
|
item.title
|
|
6397
6429
|
);
|
|
6398
6430
|
} else if (item.type === "group") {
|
|
6399
|
-
return /* @__PURE__ */
|
|
6431
|
+
return /* @__PURE__ */ React50.createElement(
|
|
6400
6432
|
NavigationGroup,
|
|
6401
6433
|
{
|
|
6402
6434
|
key: `${item.title}-${index}`,
|
|
@@ -6414,7 +6446,7 @@ function Navigator(props) {
|
|
|
6414
6446
|
Navigator.displayName = "Navigator";
|
|
6415
6447
|
|
|
6416
6448
|
// src/components/ProfileMenu/ProfileMenu.tsx
|
|
6417
|
-
import
|
|
6449
|
+
import React51, { useCallback as useCallback27, useMemo as useMemo17 } from "react";
|
|
6418
6450
|
import { Dropdown as Dropdown2, ListDivider, menuItemClasses, styled as styled26, MenuButton as MenuButton2 } from "@mui/joy";
|
|
6419
6451
|
import { ClickAwayListener as ClickAwayListener5 } from "@mui/base";
|
|
6420
6452
|
import DropdownIcon from "@mui/icons-material/ArrowDropDown";
|
|
@@ -6426,7 +6458,7 @@ function ProfileCard(props) {
|
|
|
6426
6458
|
const { children, chip, caption, size } = props;
|
|
6427
6459
|
const captionLevel = useMemo17(() => size === "sm" ? "body-xs" : "body-sm", [size]);
|
|
6428
6460
|
const nameLevel = useMemo17(() => size === "sm" ? "body-sm" : "body-md", [size]);
|
|
6429
|
-
return /* @__PURE__ */
|
|
6461
|
+
return /* @__PURE__ */ React51.createElement(StyledProfileCard, { px: 4, py: 2 }, /* @__PURE__ */ React51.createElement(Stack, { direction: "row", gap: 2 }, /* @__PURE__ */ React51.createElement(Typography, { level: nameLevel, fontWeight: "bold", textColor: "text.primary" }, children), chip && /* @__PURE__ */ React51.createElement(Chip, { size, color: "neutral", variant: "outlined" }, chip)), caption && /* @__PURE__ */ React51.createElement(Typography, { level: captionLevel, textColor: "text.tertiary" }, caption));
|
|
6430
6462
|
}
|
|
6431
6463
|
ProfileCard.displayName = "ProfileCard";
|
|
6432
6464
|
var StyledProfileMenuButton = styled26(MenuButton2, {
|
|
@@ -6438,16 +6470,16 @@ var StyledProfileMenuButton = styled26(MenuButton2, {
|
|
|
6438
6470
|
}));
|
|
6439
6471
|
function ProfileMenuButton(props) {
|
|
6440
6472
|
const { size = "md", src, alt, children, getInitial, ...innerProps } = props;
|
|
6441
|
-
return /* @__PURE__ */
|
|
6473
|
+
return /* @__PURE__ */ React51.createElement(
|
|
6442
6474
|
StyledProfileMenuButton,
|
|
6443
6475
|
{
|
|
6444
6476
|
variant: "plain",
|
|
6445
6477
|
color: "neutral",
|
|
6446
6478
|
size,
|
|
6447
|
-
endDecorator: /* @__PURE__ */
|
|
6479
|
+
endDecorator: /* @__PURE__ */ React51.createElement(DropdownIcon, null),
|
|
6448
6480
|
...innerProps
|
|
6449
6481
|
},
|
|
6450
|
-
/* @__PURE__ */
|
|
6482
|
+
/* @__PURE__ */ React51.createElement(Avatar, { variant: "soft", color: "primary", size, src, alt, getInitial }, children)
|
|
6451
6483
|
);
|
|
6452
6484
|
}
|
|
6453
6485
|
ProfileMenuButton.displayName = "ProfileMenuButton";
|
|
@@ -6466,9 +6498,9 @@ function ProfileMenu(props) {
|
|
|
6466
6498
|
const [open, setOpen] = useControlledState(
|
|
6467
6499
|
_open,
|
|
6468
6500
|
defaultOpen ?? false,
|
|
6469
|
-
|
|
6501
|
+
useCallback27((value) => onOpenChange?.(value), [onOpenChange])
|
|
6470
6502
|
);
|
|
6471
|
-
return /* @__PURE__ */
|
|
6503
|
+
return /* @__PURE__ */ React51.createElement(ClickAwayListener5, { onClickAway: () => setOpen(false) }, /* @__PURE__ */ React51.createElement("div", null, /* @__PURE__ */ React51.createElement(Dropdown2, { open }, /* @__PURE__ */ React51.createElement(
|
|
6472
6504
|
ProfileMenuButton,
|
|
6473
6505
|
{
|
|
6474
6506
|
size,
|
|
@@ -6478,7 +6510,7 @@ function ProfileMenu(props) {
|
|
|
6478
6510
|
getInitial
|
|
6479
6511
|
},
|
|
6480
6512
|
profile.name
|
|
6481
|
-
), /* @__PURE__ */
|
|
6513
|
+
), /* @__PURE__ */ React51.createElement(ProfileMenuRoot, { size, placement: "bottom-end", ...innerProps, onClose: () => setOpen(false) }, /* @__PURE__ */ React51.createElement(ProfileCard, { size, caption: profile.caption, chip: profile.chip }, profile.name), !!menuItems.length && /* @__PURE__ */ React51.createElement(ListDivider, null), menuItems.map(({ label, ...menuProps }) => /* @__PURE__ */ React51.createElement(
|
|
6482
6514
|
MenuItem,
|
|
6483
6515
|
{
|
|
6484
6516
|
key: label,
|
|
@@ -6494,7 +6526,7 @@ function ProfileMenu(props) {
|
|
|
6494
6526
|
ProfileMenu.displayName = "ProfileMenu";
|
|
6495
6527
|
|
|
6496
6528
|
// src/components/RadioTileGroup/RadioTileGroup.tsx
|
|
6497
|
-
import
|
|
6529
|
+
import React52 from "react";
|
|
6498
6530
|
import { styled as styled27, radioClasses, sheetClasses } from "@mui/joy";
|
|
6499
6531
|
var RadioTileGroupRoot = styled27(RadioGroup, {
|
|
6500
6532
|
name: "RadioTileGroup",
|
|
@@ -6582,7 +6614,7 @@ function RadioTileGroup(props) {
|
|
|
6582
6614
|
error,
|
|
6583
6615
|
required
|
|
6584
6616
|
} = props;
|
|
6585
|
-
const radioGroup = /* @__PURE__ */
|
|
6617
|
+
const radioGroup = /* @__PURE__ */ React52.createElement(
|
|
6586
6618
|
RadioTileGroupRoot,
|
|
6587
6619
|
{
|
|
6588
6620
|
overlay: true,
|
|
@@ -6593,7 +6625,7 @@ function RadioTileGroup(props) {
|
|
|
6593
6625
|
flex,
|
|
6594
6626
|
columns
|
|
6595
6627
|
},
|
|
6596
|
-
options.map((option) => /* @__PURE__ */
|
|
6628
|
+
options.map((option) => /* @__PURE__ */ React52.createElement(
|
|
6597
6629
|
RadioTileSheet,
|
|
6598
6630
|
{
|
|
6599
6631
|
key: option.value,
|
|
@@ -6603,7 +6635,7 @@ function RadioTileGroup(props) {
|
|
|
6603
6635
|
flex,
|
|
6604
6636
|
textAlign
|
|
6605
6637
|
},
|
|
6606
|
-
/* @__PURE__ */
|
|
6638
|
+
/* @__PURE__ */ React52.createElement(
|
|
6607
6639
|
Radio,
|
|
6608
6640
|
{
|
|
6609
6641
|
id: `${option.value}`,
|
|
@@ -6631,7 +6663,7 @@ function RadioTileGroup(props) {
|
|
|
6631
6663
|
}
|
|
6632
6664
|
}
|
|
6633
6665
|
),
|
|
6634
|
-
option.startDecorator && /* @__PURE__ */
|
|
6666
|
+
option.startDecorator && /* @__PURE__ */ React52.createElement(
|
|
6635
6667
|
Box_default,
|
|
6636
6668
|
{
|
|
6637
6669
|
sx: {
|
|
@@ -6652,20 +6684,20 @@ function RadioTileGroup(props) {
|
|
|
6652
6684
|
)
|
|
6653
6685
|
))
|
|
6654
6686
|
);
|
|
6655
|
-
return /* @__PURE__ */
|
|
6687
|
+
return /* @__PURE__ */ React52.createElement(FormControl_default, { required, disabled: allDisabled, error, size, sx, className }, label && /* @__PURE__ */ React52.createElement(FormLabel_default, null, label), radioGroup, helperText && /* @__PURE__ */ React52.createElement(FormHelperText_default, null, helperText));
|
|
6656
6688
|
}
|
|
6657
6689
|
RadioTileGroup.displayName = "RadioTileGroup";
|
|
6658
6690
|
|
|
6659
6691
|
// src/components/RadioList/RadioList.tsx
|
|
6660
|
-
import
|
|
6692
|
+
import React53 from "react";
|
|
6661
6693
|
function RadioList(props) {
|
|
6662
6694
|
const { items, ...innerProps } = props;
|
|
6663
|
-
return /* @__PURE__ */
|
|
6695
|
+
return /* @__PURE__ */ React53.createElement(RadioGroup, { ...innerProps }, items.map((item) => /* @__PURE__ */ React53.createElement(Radio, { key: `${item.value}`, value: item.value, label: item.label })));
|
|
6664
6696
|
}
|
|
6665
6697
|
RadioList.displayName = "RadioList";
|
|
6666
6698
|
|
|
6667
6699
|
// src/components/Stepper/Stepper.tsx
|
|
6668
|
-
import
|
|
6700
|
+
import React54 from "react";
|
|
6669
6701
|
import {
|
|
6670
6702
|
Stepper as JoyStepper,
|
|
6671
6703
|
Step as JoyStep,
|
|
@@ -6701,7 +6733,7 @@ function Stepper(props) {
|
|
|
6701
6733
|
stepOrientation = "horizontal"
|
|
6702
6734
|
} = props;
|
|
6703
6735
|
const effectiveStepOrientation = orientation === "vertical" ? "horizontal" : stepOrientation;
|
|
6704
|
-
return /* @__PURE__ */
|
|
6736
|
+
return /* @__PURE__ */ React54.createElement(
|
|
6705
6737
|
MotionStepper,
|
|
6706
6738
|
{
|
|
6707
6739
|
orientation,
|
|
@@ -6740,23 +6772,23 @@ function Stepper(props) {
|
|
|
6740
6772
|
const completed = activeStep > i + 1;
|
|
6741
6773
|
const disabled = activeStep < i + 1;
|
|
6742
6774
|
const hasContent = step.label || step.extraContent;
|
|
6743
|
-
return /* @__PURE__ */
|
|
6775
|
+
return /* @__PURE__ */ React54.createElement(
|
|
6744
6776
|
Step,
|
|
6745
6777
|
{
|
|
6746
6778
|
key: `step-${i}`,
|
|
6747
|
-
indicator: /* @__PURE__ */
|
|
6779
|
+
indicator: /* @__PURE__ */ React54.createElement(StepIndicator, { variant: disabled ? "outlined" : "solid", color: disabled ? "neutral" : "primary" }, completed ? /* @__PURE__ */ React54.createElement(CheckIcon, null) : step.indicatorContent),
|
|
6748
6780
|
active,
|
|
6749
6781
|
completed,
|
|
6750
6782
|
disabled,
|
|
6751
6783
|
orientation: effectiveStepOrientation
|
|
6752
6784
|
},
|
|
6753
|
-
hasContent && /* @__PURE__ */
|
|
6785
|
+
hasContent && /* @__PURE__ */ React54.createElement(
|
|
6754
6786
|
Stack_default,
|
|
6755
6787
|
{
|
|
6756
6788
|
sx: orientation === "horizontal" && effectiveStepOrientation === "vertical" ? { alignItems: "center" } : {}
|
|
6757
6789
|
},
|
|
6758
|
-
step.label && /* @__PURE__ */
|
|
6759
|
-
step.extraContent && /* @__PURE__ */
|
|
6790
|
+
step.label && /* @__PURE__ */ React54.createElement(Typography_default, { level: "title-sm" }, step.label),
|
|
6791
|
+
step.extraContent && /* @__PURE__ */ React54.createElement(Typography_default, { level: "body-xs" }, step.extraContent)
|
|
6760
6792
|
)
|
|
6761
6793
|
);
|
|
6762
6794
|
})
|
|
@@ -6765,7 +6797,7 @@ function Stepper(props) {
|
|
|
6765
6797
|
Stepper.displayName = "Stepper";
|
|
6766
6798
|
|
|
6767
6799
|
// src/components/Switch/Switch.tsx
|
|
6768
|
-
import
|
|
6800
|
+
import React55 from "react";
|
|
6769
6801
|
import { Switch as JoySwitch, styled as styled29, switchClasses } from "@mui/joy";
|
|
6770
6802
|
import { motion as motion27 } from "framer-motion";
|
|
6771
6803
|
var MotionSwitch = motion27(JoySwitch);
|
|
@@ -6787,14 +6819,14 @@ var StyledThumb = styled29(motion27.div)({
|
|
|
6787
6819
|
right: "var(--Switch-thumbOffset)"
|
|
6788
6820
|
}
|
|
6789
6821
|
});
|
|
6790
|
-
var Thumb = (props) => /* @__PURE__ */
|
|
6822
|
+
var Thumb = (props) => /* @__PURE__ */ React55.createElement(StyledThumb, { ...props, layout: true, transition: spring });
|
|
6791
6823
|
var spring = {
|
|
6792
6824
|
type: "spring",
|
|
6793
6825
|
stiffness: 700,
|
|
6794
6826
|
damping: 30
|
|
6795
6827
|
};
|
|
6796
6828
|
var Switch = (props) => {
|
|
6797
|
-
return /* @__PURE__ */
|
|
6829
|
+
return /* @__PURE__ */ React55.createElement(
|
|
6798
6830
|
MotionSwitch,
|
|
6799
6831
|
{
|
|
6800
6832
|
...props,
|
|
@@ -6808,7 +6840,7 @@ var Switch = (props) => {
|
|
|
6808
6840
|
Switch.displayName = "Switch";
|
|
6809
6841
|
|
|
6810
6842
|
// src/components/Tabs/Tabs.tsx
|
|
6811
|
-
import
|
|
6843
|
+
import React56, { forwardRef as forwardRef11 } from "react";
|
|
6812
6844
|
import {
|
|
6813
6845
|
Tabs as JoyTabs,
|
|
6814
6846
|
Tab as JoyTab,
|
|
@@ -6832,14 +6864,14 @@ var StyledTab = styled30(JoyTab)(({ theme }) => ({
|
|
|
6832
6864
|
}
|
|
6833
6865
|
}));
|
|
6834
6866
|
var Tab = forwardRef11(function Tab2({ startDecorator, endDecorator, children, ...props }, ref) {
|
|
6835
|
-
return /* @__PURE__ */
|
|
6867
|
+
return /* @__PURE__ */ React56.createElement(StyledTab, { ...props, ref }, startDecorator, children, endDecorator);
|
|
6836
6868
|
});
|
|
6837
6869
|
Tab.displayName = "Tab";
|
|
6838
6870
|
var TabList = JoyTabList;
|
|
6839
6871
|
var TabPanel = JoyTabPanel;
|
|
6840
6872
|
|
|
6841
6873
|
// src/components/ThemeProvider/ThemeProvider.tsx
|
|
6842
|
-
import
|
|
6874
|
+
import React57 from "react";
|
|
6843
6875
|
import { CssBaseline, CssVarsProvider, checkboxClasses, extendTheme, inputClasses } from "@mui/joy";
|
|
6844
6876
|
var colorScheme = {
|
|
6845
6877
|
palette: {
|
|
@@ -7118,7 +7150,7 @@ var defaultTheme = extendTheme({
|
|
|
7118
7150
|
});
|
|
7119
7151
|
function ThemeProvider(props) {
|
|
7120
7152
|
const theme = props.theme || defaultTheme;
|
|
7121
|
-
return /* @__PURE__ */
|
|
7153
|
+
return /* @__PURE__ */ React57.createElement(React57.Fragment, null, /* @__PURE__ */ React57.createElement(CssVarsProvider, { theme }, /* @__PURE__ */ React57.createElement(CssBaseline, null), props.children));
|
|
7122
7154
|
}
|
|
7123
7155
|
ThemeProvider.displayName = "ThemeProvider";
|
|
7124
7156
|
export {
|