@ceed/ads 0.0.41 → 0.0.43
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.
|
@@ -9,6 +9,7 @@ interface DateRangePickerProps {
|
|
|
9
9
|
}) => void;
|
|
10
10
|
name?: string;
|
|
11
11
|
disabled?: boolean;
|
|
12
|
+
label?: React.ReactNode;
|
|
12
13
|
}
|
|
13
14
|
declare const DateRangePicker: React.ForwardRefExoticComponent<DateRangePickerProps & React.RefAttributes<HTMLDivElement>>;
|
|
14
15
|
export { DateRangePicker };
|
package/dist/index.js
CHANGED
|
@@ -288,7 +288,7 @@ var useCalendarProps = (inProps) => {
|
|
|
288
288
|
const today = /* @__PURE__ */ new Date();
|
|
289
289
|
today.setDate(1);
|
|
290
290
|
today.setHours(0, 0, 0, 0);
|
|
291
|
-
return inProps.value?.[0] || today;
|
|
291
|
+
return inProps.value?.[0] || inProps.defaultValue?.[0] || today;
|
|
292
292
|
});
|
|
293
293
|
const [[page, direction], setPage] = useState([0, 0]);
|
|
294
294
|
const resolvedView = inProps.view ?? uncontrolledView;
|
|
@@ -547,7 +547,7 @@ var CalendarDayCell = styled("td", {
|
|
|
547
547
|
// aria-current=date === range에 포함된 버튼
|
|
548
548
|
"&[aria-current=date]": {
|
|
549
549
|
position: "relative",
|
|
550
|
-
"& button[aria-current=date]:not([aria-selected=true])": {
|
|
550
|
+
"& button[aria-current=date]:not([aria-selected=true]):not(:hover):not(:active)": {
|
|
551
551
|
backgroundColor: `rgb(${theme.palette.primary.lightChannel})`
|
|
552
552
|
},
|
|
553
553
|
'& + td[aria-hidden] + td[aria-current="date"]::before': {
|
|
@@ -1422,6 +1422,26 @@ DialogActions.displayName = "DialogActions";
|
|
|
1422
1422
|
// src/components/DialogActions/index.ts
|
|
1423
1423
|
var DialogActions_default = DialogActions;
|
|
1424
1424
|
|
|
1425
|
+
// src/components/FormControl/FormControl.tsx
|
|
1426
|
+
import { FormControl as JoyFormControl } from "@mui/joy";
|
|
1427
|
+
import { motion as motion12 } from "framer-motion";
|
|
1428
|
+
var MotionFormControl = motion12(JoyFormControl);
|
|
1429
|
+
var FormControl = MotionFormControl;
|
|
1430
|
+
FormControl.displayName = "FormControl";
|
|
1431
|
+
|
|
1432
|
+
// src/components/FormControl/index.ts
|
|
1433
|
+
var FormControl_default = FormControl;
|
|
1434
|
+
|
|
1435
|
+
// src/components/FormLabel/FormLabel.tsx
|
|
1436
|
+
import { FormLabel as JoyFormLabel } from "@mui/joy";
|
|
1437
|
+
import { motion as motion13 } from "framer-motion";
|
|
1438
|
+
var MotionFormLabel = motion13(JoyFormLabel);
|
|
1439
|
+
var FormLabel = MotionFormLabel;
|
|
1440
|
+
FormLabel.displayName = "FormLabel";
|
|
1441
|
+
|
|
1442
|
+
// src/components/FormLabel/index.ts
|
|
1443
|
+
var FormLabel_default = FormLabel;
|
|
1444
|
+
|
|
1425
1445
|
// src/components/DatePicker/DatePicker.tsx
|
|
1426
1446
|
var StyledPopper = styled3(Popper, {
|
|
1427
1447
|
name: "DatePicker",
|
|
@@ -1496,7 +1516,7 @@ var TextMaskAdapter = React12.forwardRef(
|
|
|
1496
1516
|
);
|
|
1497
1517
|
var DatePicker = forwardRef4(
|
|
1498
1518
|
(props, ref) => {
|
|
1499
|
-
const { onChange, disabled } = props;
|
|
1519
|
+
const { onChange, disabled, label } = props;
|
|
1500
1520
|
const [value, setValue] = useState4(props.value || "");
|
|
1501
1521
|
const [anchorEl, setAnchorEl] = useState4(null);
|
|
1502
1522
|
const open = Boolean(anchorEl);
|
|
@@ -1513,7 +1533,7 @@ var DatePicker = forwardRef4(
|
|
|
1513
1533
|
},
|
|
1514
1534
|
[anchorEl, setAnchorEl]
|
|
1515
1535
|
);
|
|
1516
|
-
|
|
1536
|
+
const picker = /* @__PURE__ */ React12.createElement(React12.Fragment, null, /* @__PURE__ */ React12.createElement(
|
|
1517
1537
|
Input_default,
|
|
1518
1538
|
{
|
|
1519
1539
|
ref,
|
|
@@ -1576,6 +1596,10 @@ var DatePicker = forwardRef4(
|
|
|
1576
1596
|
)
|
|
1577
1597
|
)))
|
|
1578
1598
|
)));
|
|
1599
|
+
if (label) {
|
|
1600
|
+
return /* @__PURE__ */ React12.createElement(FormControl_default, { size: "sm" }, /* @__PURE__ */ React12.createElement(FormLabel_default, null, label), picker);
|
|
1601
|
+
}
|
|
1602
|
+
return picker;
|
|
1579
1603
|
}
|
|
1580
1604
|
);
|
|
1581
1605
|
DatePicker.displayName = "DatePicker";
|
|
@@ -1676,7 +1700,7 @@ var TextMaskAdapter3 = React13.forwardRef(
|
|
|
1676
1700
|
);
|
|
1677
1701
|
var DateRangePicker = forwardRef5(
|
|
1678
1702
|
(props, ref) => {
|
|
1679
|
-
const { onChange, disabled } = props;
|
|
1703
|
+
const { onChange, disabled, label } = props;
|
|
1680
1704
|
const [value, setValue] = useState5(props.value || "");
|
|
1681
1705
|
const [anchorEl, setAnchorEl] = useState5(null);
|
|
1682
1706
|
const open = Boolean(anchorEl);
|
|
@@ -1706,7 +1730,7 @@ var DateRangePicker = forwardRef5(
|
|
|
1706
1730
|
},
|
|
1707
1731
|
[setValue, setAnchorEl]
|
|
1708
1732
|
);
|
|
1709
|
-
|
|
1733
|
+
const picker = /* @__PURE__ */ React13.createElement(React13.Fragment, null, /* @__PURE__ */ React13.createElement(
|
|
1710
1734
|
Input_default,
|
|
1711
1735
|
{
|
|
1712
1736
|
ref,
|
|
@@ -1733,7 +1757,7 @@ var DateRangePicker = forwardRef5(
|
|
|
1733
1757
|
{
|
|
1734
1758
|
name: "offset",
|
|
1735
1759
|
options: {
|
|
1736
|
-
offset: [
|
|
1760
|
+
offset: [4, 4]
|
|
1737
1761
|
}
|
|
1738
1762
|
}
|
|
1739
1763
|
]
|
|
@@ -1767,14 +1791,18 @@ var DateRangePicker = forwardRef5(
|
|
|
1767
1791
|
)
|
|
1768
1792
|
)))
|
|
1769
1793
|
)));
|
|
1794
|
+
if (label) {
|
|
1795
|
+
return /* @__PURE__ */ React13.createElement(FormControl_default, { size: "sm" }, /* @__PURE__ */ React13.createElement(FormLabel_default, null, label), picker);
|
|
1796
|
+
}
|
|
1797
|
+
return picker;
|
|
1770
1798
|
}
|
|
1771
1799
|
);
|
|
1772
1800
|
DateRangePicker.displayName = "DateRangePicker";
|
|
1773
1801
|
|
|
1774
1802
|
// src/components/DialogContent/DialogContent.tsx
|
|
1775
1803
|
import { DialogContent as JoyDialogContent } from "@mui/joy";
|
|
1776
|
-
import { motion as
|
|
1777
|
-
var MotionDialogContent =
|
|
1804
|
+
import { motion as motion14 } from "framer-motion";
|
|
1805
|
+
var MotionDialogContent = motion14(JoyDialogContent);
|
|
1778
1806
|
var DialogContent = MotionDialogContent;
|
|
1779
1807
|
DialogContent.displayName = "DialogContent";
|
|
1780
1808
|
|
|
@@ -1783,8 +1811,8 @@ var DialogContent_default = DialogContent;
|
|
|
1783
1811
|
|
|
1784
1812
|
// src/components/DialogTitle/DialogTitle.tsx
|
|
1785
1813
|
import { DialogTitle as JoyDialogTitle } from "@mui/joy";
|
|
1786
|
-
import { motion as
|
|
1787
|
-
var MotionDialogTitle =
|
|
1814
|
+
import { motion as motion15 } from "framer-motion";
|
|
1815
|
+
var MotionDialogTitle = motion15(JoyDialogTitle);
|
|
1788
1816
|
var DialogTitle = MotionDialogTitle;
|
|
1789
1817
|
DialogTitle.displayName = "DialogTitle";
|
|
1790
1818
|
|
|
@@ -1802,17 +1830,17 @@ import {
|
|
|
1802
1830
|
ModalClose as JoyModalClose,
|
|
1803
1831
|
ModalOverflow as JoyModalOverflow
|
|
1804
1832
|
} from "@mui/joy";
|
|
1805
|
-
import { motion as
|
|
1806
|
-
var MotionModal =
|
|
1833
|
+
import { motion as motion16 } from "framer-motion";
|
|
1834
|
+
var MotionModal = motion16(JoyModal);
|
|
1807
1835
|
var Modal = MotionModal;
|
|
1808
1836
|
Modal.displayName = "Modal";
|
|
1809
|
-
var MotionModalDialog =
|
|
1837
|
+
var MotionModalDialog = motion16(JoyModalDialog);
|
|
1810
1838
|
var ModalDialog = MotionModalDialog;
|
|
1811
1839
|
ModalDialog.displayName = "ModalDialog";
|
|
1812
|
-
var MotionModalClose =
|
|
1840
|
+
var MotionModalClose = motion16(JoyModalClose);
|
|
1813
1841
|
var ModalClose = MotionModalClose;
|
|
1814
1842
|
ModalClose.displayName = "ModalClose";
|
|
1815
|
-
var MotionModalOverflow =
|
|
1843
|
+
var MotionModalOverflow = motion16(JoyModalOverflow);
|
|
1816
1844
|
var ModalOverflow = MotionModalOverflow;
|
|
1817
1845
|
ModalOverflow.displayName = "ModalOverflow";
|
|
1818
1846
|
function ModalFrame(props) {
|
|
@@ -1831,8 +1859,8 @@ DialogFrame.displayName = "DialogFrame";
|
|
|
1831
1859
|
// src/components/Divider/Divider.tsx
|
|
1832
1860
|
import React16 from "react";
|
|
1833
1861
|
import { Divider as JoyDivider } from "@mui/joy";
|
|
1834
|
-
import { motion as
|
|
1835
|
-
var MotionDivider =
|
|
1862
|
+
import { motion as motion17 } from "framer-motion";
|
|
1863
|
+
var MotionDivider = motion17(JoyDivider);
|
|
1836
1864
|
var Divider = (props) => {
|
|
1837
1865
|
return /* @__PURE__ */ React16.createElement(MotionDivider, { ...props });
|
|
1838
1866
|
};
|
|
@@ -1841,8 +1869,8 @@ Divider.displayName = "Divider";
|
|
|
1841
1869
|
// src/components/InsetDrawer/InsetDrawer.tsx
|
|
1842
1870
|
import React17 from "react";
|
|
1843
1871
|
import { Drawer as JoyDrawer } from "@mui/joy";
|
|
1844
|
-
import { motion as
|
|
1845
|
-
var MotionDrawer =
|
|
1872
|
+
import { motion as motion18 } from "framer-motion";
|
|
1873
|
+
var MotionDrawer = motion18(JoyDrawer);
|
|
1846
1874
|
var InsetDrawer = (props) => {
|
|
1847
1875
|
const { children, ...innerProps } = props;
|
|
1848
1876
|
return /* @__PURE__ */ React17.createElement(
|
|
@@ -1868,32 +1896,18 @@ InsetDrawer.displayName = "InsetDrawer";
|
|
|
1868
1896
|
|
|
1869
1897
|
// src/components/Dropdown/Dropdown.tsx
|
|
1870
1898
|
import { Dropdown as JoyDropdown } from "@mui/joy";
|
|
1871
|
-
import { motion as
|
|
1872
|
-
var MotionDropdown =
|
|
1899
|
+
import { motion as motion19 } from "framer-motion";
|
|
1900
|
+
var MotionDropdown = motion19(JoyDropdown);
|
|
1873
1901
|
var Dropdown = MotionDropdown;
|
|
1874
1902
|
Dropdown.displayName = "Dropdown";
|
|
1875
1903
|
|
|
1876
|
-
// src/components/FormControl/FormControl.tsx
|
|
1877
|
-
import { FormControl as JoyFormControl } from "@mui/joy";
|
|
1878
|
-
import { motion as motion18 } from "framer-motion";
|
|
1879
|
-
var MotionFormControl = motion18(JoyFormControl);
|
|
1880
|
-
var FormControl = MotionFormControl;
|
|
1881
|
-
FormControl.displayName = "FormControl";
|
|
1882
|
-
|
|
1883
1904
|
// src/components/FormHelperText/FormHelperText.tsx
|
|
1884
1905
|
import { FormHelperText as JoyFormHelperText } from "@mui/joy";
|
|
1885
|
-
import { motion as
|
|
1886
|
-
var MotionFormHelperText =
|
|
1906
|
+
import { motion as motion20 } from "framer-motion";
|
|
1907
|
+
var MotionFormHelperText = motion20(JoyFormHelperText);
|
|
1887
1908
|
var FormHelperText = MotionFormHelperText;
|
|
1888
1909
|
FormHelperText.displayName = "FormHelperText";
|
|
1889
1910
|
|
|
1890
|
-
// src/components/FormLabel/FormLabel.tsx
|
|
1891
|
-
import { FormLabel as JoyFormLabel } from "@mui/joy";
|
|
1892
|
-
import { motion as motion20 } from "framer-motion";
|
|
1893
|
-
var MotionFormLabel = motion20(JoyFormLabel);
|
|
1894
|
-
var FormLabel = MotionFormLabel;
|
|
1895
|
-
FormLabel.displayName = "FormLabel";
|
|
1896
|
-
|
|
1897
1911
|
// src/components/Grid/Grid.tsx
|
|
1898
1912
|
import { Grid as JoyGrid } from "@mui/joy";
|
|
1899
1913
|
import { motion as motion21 } from "framer-motion";
|
package/framer/index.js
CHANGED
|
@@ -37097,11 +37097,11 @@ var useCalendarProps = (inProps) => {
|
|
|
37097
37097
|
);
|
|
37098
37098
|
const [uncontrolledValue, setUncontrolledValue] = useState22(inProps.defaultValue);
|
|
37099
37099
|
const [viewMonth, setViewMonth] = useState22(() => {
|
|
37100
|
-
var _a2;
|
|
37100
|
+
var _a2, _b2;
|
|
37101
37101
|
const today = /* @__PURE__ */ new Date();
|
|
37102
37102
|
today.setDate(1);
|
|
37103
37103
|
today.setHours(0, 0, 0, 0);
|
|
37104
|
-
return ((_a2 = inProps.value) == null ? void 0 : _a2[0]) || today;
|
|
37104
|
+
return ((_a2 = inProps.value) == null ? void 0 : _a2[0]) || ((_b2 = inProps.defaultValue) == null ? void 0 : _b2[0]) || today;
|
|
37105
37105
|
});
|
|
37106
37106
|
const [[page, direction], setPage] = useState22([0, 0]);
|
|
37107
37107
|
const resolvedView = (_a = inProps.view) != null ? _a : uncontrolledView;
|
|
@@ -37367,7 +37367,7 @@ var CalendarDayCell = styled_default2("td", {
|
|
|
37367
37367
|
// aria-current=date === range에 포함된 버튼
|
|
37368
37368
|
"&[aria-current=date]": {
|
|
37369
37369
|
position: "relative",
|
|
37370
|
-
"& button[aria-current=date]:not([aria-selected=true])": {
|
|
37370
|
+
"& button[aria-current=date]:not([aria-selected=true]):not(:hover):not(:active)": {
|
|
37371
37371
|
backgroundColor: `rgb(${theme.palette.primary.lightChannel})`
|
|
37372
37372
|
},
|
|
37373
37373
|
'& + td[aria-hidden] + td[aria-current="date"]::before': {
|
|
@@ -41927,6 +41927,24 @@ DialogActions3.displayName = "DialogActions";
|
|
|
41927
41927
|
// src/components/DialogActions/index.ts
|
|
41928
41928
|
var DialogActions_default2 = DialogActions3;
|
|
41929
41929
|
|
|
41930
|
+
// src/components/FormControl/FormControl.tsx
|
|
41931
|
+
import { motion as motion12 } from "framer-motion";
|
|
41932
|
+
var MotionFormControl = motion12(FormControl_default);
|
|
41933
|
+
var FormControl3 = MotionFormControl;
|
|
41934
|
+
FormControl3.displayName = "FormControl";
|
|
41935
|
+
|
|
41936
|
+
// src/components/FormControl/index.ts
|
|
41937
|
+
var FormControl_default2 = FormControl3;
|
|
41938
|
+
|
|
41939
|
+
// src/components/FormLabel/FormLabel.tsx
|
|
41940
|
+
import { motion as motion13 } from "framer-motion";
|
|
41941
|
+
var MotionFormLabel = motion13(FormLabel_default);
|
|
41942
|
+
var FormLabel3 = MotionFormLabel;
|
|
41943
|
+
FormLabel3.displayName = "FormLabel";
|
|
41944
|
+
|
|
41945
|
+
// src/components/FormLabel/index.ts
|
|
41946
|
+
var FormLabel_default2 = FormLabel3;
|
|
41947
|
+
|
|
41930
41948
|
// src/components/DatePicker/DatePicker.tsx
|
|
41931
41949
|
var StyledPopper = styled_default2(Popper, {
|
|
41932
41950
|
name: "DatePicker",
|
|
@@ -42000,7 +42018,7 @@ var TextMaskAdapter = React180.forwardRef(
|
|
|
42000
42018
|
);
|
|
42001
42019
|
var DatePicker = forwardRef84(
|
|
42002
42020
|
(props, ref) => {
|
|
42003
|
-
const { onChange, disabled } = props;
|
|
42021
|
+
const { onChange, disabled, label } = props;
|
|
42004
42022
|
const [value, setValue] = useState26(props.value || "");
|
|
42005
42023
|
const [anchorEl, setAnchorEl] = useState26(null);
|
|
42006
42024
|
const open = Boolean(anchorEl);
|
|
@@ -42017,7 +42035,7 @@ var DatePicker = forwardRef84(
|
|
|
42017
42035
|
},
|
|
42018
42036
|
[anchorEl, setAnchorEl]
|
|
42019
42037
|
);
|
|
42020
|
-
|
|
42038
|
+
const picker = /* @__PURE__ */ jsxs2(Fragment16, { children: [
|
|
42021
42039
|
/* @__PURE__ */ jsx2(
|
|
42022
42040
|
Input_default2,
|
|
42023
42041
|
{
|
|
@@ -42086,6 +42104,13 @@ var DatePicker = forwardRef84(
|
|
|
42086
42104
|
}
|
|
42087
42105
|
) })
|
|
42088
42106
|
] });
|
|
42107
|
+
if (label) {
|
|
42108
|
+
return /* @__PURE__ */ jsxs2(FormControl_default2, { size: "sm", children: [
|
|
42109
|
+
/* @__PURE__ */ jsx2(FormLabel_default2, { children: label }),
|
|
42110
|
+
picker
|
|
42111
|
+
] });
|
|
42112
|
+
}
|
|
42113
|
+
return picker;
|
|
42089
42114
|
}
|
|
42090
42115
|
);
|
|
42091
42116
|
DatePicker.displayName = "DatePicker";
|
|
@@ -42179,7 +42204,7 @@ var TextMaskAdapter3 = React181.forwardRef(
|
|
|
42179
42204
|
);
|
|
42180
42205
|
var DateRangePicker = forwardRef85(
|
|
42181
42206
|
(props, ref) => {
|
|
42182
|
-
const { onChange, disabled } = props;
|
|
42207
|
+
const { onChange, disabled, label } = props;
|
|
42183
42208
|
const [value, setValue] = useState27(props.value || "");
|
|
42184
42209
|
const [anchorEl, setAnchorEl] = useState27(null);
|
|
42185
42210
|
const open = Boolean(anchorEl);
|
|
@@ -42209,7 +42234,7 @@ var DateRangePicker = forwardRef85(
|
|
|
42209
42234
|
},
|
|
42210
42235
|
[setValue, setAnchorEl]
|
|
42211
42236
|
);
|
|
42212
|
-
|
|
42237
|
+
const picker = /* @__PURE__ */ jsxs2(Fragment16, { children: [
|
|
42213
42238
|
/* @__PURE__ */ jsx2(
|
|
42214
42239
|
Input_default2,
|
|
42215
42240
|
{
|
|
@@ -42238,7 +42263,7 @@ var DateRangePicker = forwardRef85(
|
|
|
42238
42263
|
{
|
|
42239
42264
|
name: "offset",
|
|
42240
42265
|
options: {
|
|
42241
|
-
offset: [
|
|
42266
|
+
offset: [4, 4]
|
|
42242
42267
|
}
|
|
42243
42268
|
}
|
|
42244
42269
|
],
|
|
@@ -42276,13 +42301,20 @@ var DateRangePicker = forwardRef85(
|
|
|
42276
42301
|
}
|
|
42277
42302
|
) })
|
|
42278
42303
|
] });
|
|
42304
|
+
if (label) {
|
|
42305
|
+
return /* @__PURE__ */ jsxs2(FormControl_default2, { size: "sm", children: [
|
|
42306
|
+
/* @__PURE__ */ jsx2(FormLabel_default2, { children: label }),
|
|
42307
|
+
picker
|
|
42308
|
+
] });
|
|
42309
|
+
}
|
|
42310
|
+
return picker;
|
|
42279
42311
|
}
|
|
42280
42312
|
);
|
|
42281
42313
|
DateRangePicker.displayName = "DateRangePicker";
|
|
42282
42314
|
|
|
42283
42315
|
// src/components/DialogContent/DialogContent.tsx
|
|
42284
|
-
import { motion as
|
|
42285
|
-
var MotionDialogContent =
|
|
42316
|
+
import { motion as motion14 } from "framer-motion";
|
|
42317
|
+
var MotionDialogContent = motion14(DialogContent_default);
|
|
42286
42318
|
var DialogContent3 = MotionDialogContent;
|
|
42287
42319
|
DialogContent3.displayName = "DialogContent";
|
|
42288
42320
|
|
|
@@ -42290,8 +42322,8 @@ DialogContent3.displayName = "DialogContent";
|
|
|
42290
42322
|
var DialogContent_default2 = DialogContent3;
|
|
42291
42323
|
|
|
42292
42324
|
// src/components/DialogTitle/DialogTitle.tsx
|
|
42293
|
-
import { motion as
|
|
42294
|
-
var MotionDialogTitle =
|
|
42325
|
+
import { motion as motion15 } from "framer-motion";
|
|
42326
|
+
var MotionDialogTitle = motion15(DialogTitle_default);
|
|
42295
42327
|
var DialogTitle3 = MotionDialogTitle;
|
|
42296
42328
|
DialogTitle3.displayName = "DialogTitle";
|
|
42297
42329
|
|
|
@@ -42299,17 +42331,17 @@ DialogTitle3.displayName = "DialogTitle";
|
|
|
42299
42331
|
var DialogTitle_default2 = DialogTitle3;
|
|
42300
42332
|
|
|
42301
42333
|
// src/components/Modal/Modal.tsx
|
|
42302
|
-
import { motion as
|
|
42303
|
-
var MotionModal =
|
|
42334
|
+
import { motion as motion16 } from "framer-motion";
|
|
42335
|
+
var MotionModal = motion16(Modal_default);
|
|
42304
42336
|
var Modal3 = MotionModal;
|
|
42305
42337
|
Modal3.displayName = "Modal";
|
|
42306
|
-
var MotionModalDialog =
|
|
42338
|
+
var MotionModalDialog = motion16(ModalDialog_default);
|
|
42307
42339
|
var ModalDialog3 = MotionModalDialog;
|
|
42308
42340
|
ModalDialog3.displayName = "ModalDialog";
|
|
42309
|
-
var MotionModalClose =
|
|
42341
|
+
var MotionModalClose = motion16(ModalClose_default);
|
|
42310
42342
|
var ModalClose3 = MotionModalClose;
|
|
42311
42343
|
ModalClose3.displayName = "ModalClose";
|
|
42312
|
-
var MotionModalOverflow =
|
|
42344
|
+
var MotionModalOverflow = motion16(ModalOverflow_default);
|
|
42313
42345
|
var ModalOverflow3 = MotionModalOverflow;
|
|
42314
42346
|
ModalOverflow3.displayName = "ModalOverflow";
|
|
42315
42347
|
function ModalFrame(props) {
|
|
@@ -42334,16 +42366,16 @@ function DialogFrame(props) {
|
|
|
42334
42366
|
DialogFrame.displayName = "DialogFrame";
|
|
42335
42367
|
|
|
42336
42368
|
// src/components/Divider/Divider.tsx
|
|
42337
|
-
import { motion as
|
|
42338
|
-
var MotionDivider =
|
|
42369
|
+
import { motion as motion17 } from "framer-motion";
|
|
42370
|
+
var MotionDivider = motion17(Divider_default);
|
|
42339
42371
|
var Divider3 = (props) => {
|
|
42340
42372
|
return /* @__PURE__ */ jsx2(MotionDivider, __spreadValues({}, props));
|
|
42341
42373
|
};
|
|
42342
42374
|
Divider3.displayName = "Divider";
|
|
42343
42375
|
|
|
42344
42376
|
// src/components/InsetDrawer/InsetDrawer.tsx
|
|
42345
|
-
import { motion as
|
|
42346
|
-
var MotionDrawer =
|
|
42377
|
+
import { motion as motion18 } from "framer-motion";
|
|
42378
|
+
var MotionDrawer = motion18(Drawer_default);
|
|
42347
42379
|
var InsetDrawer = (props) => {
|
|
42348
42380
|
var _b;
|
|
42349
42381
|
const _a = props, { children } = _a, innerProps = __objRest(_a, ["children"]);
|
|
@@ -42366,29 +42398,17 @@ var InsetDrawer = (props) => {
|
|
|
42366
42398
|
InsetDrawer.displayName = "InsetDrawer";
|
|
42367
42399
|
|
|
42368
42400
|
// src/components/Dropdown/Dropdown.tsx
|
|
42369
|
-
import { motion as
|
|
42370
|
-
var MotionDropdown =
|
|
42401
|
+
import { motion as motion19 } from "framer-motion";
|
|
42402
|
+
var MotionDropdown = motion19(Dropdown);
|
|
42371
42403
|
var Dropdown2 = MotionDropdown;
|
|
42372
42404
|
Dropdown2.displayName = "Dropdown";
|
|
42373
42405
|
|
|
42374
|
-
// src/components/FormControl/FormControl.tsx
|
|
42375
|
-
import { motion as motion18 } from "framer-motion";
|
|
42376
|
-
var MotionFormControl = motion18(FormControl_default);
|
|
42377
|
-
var FormControl3 = MotionFormControl;
|
|
42378
|
-
FormControl3.displayName = "FormControl";
|
|
42379
|
-
|
|
42380
42406
|
// src/components/FormHelperText/FormHelperText.tsx
|
|
42381
|
-
import { motion as
|
|
42382
|
-
var MotionFormHelperText =
|
|
42407
|
+
import { motion as motion20 } from "framer-motion";
|
|
42408
|
+
var MotionFormHelperText = motion20(FormHelperText_default);
|
|
42383
42409
|
var FormHelperText3 = MotionFormHelperText;
|
|
42384
42410
|
FormHelperText3.displayName = "FormHelperText";
|
|
42385
42411
|
|
|
42386
|
-
// src/components/FormLabel/FormLabel.tsx
|
|
42387
|
-
import { motion as motion20 } from "framer-motion";
|
|
42388
|
-
var MotionFormLabel = motion20(FormLabel_default);
|
|
42389
|
-
var FormLabel3 = MotionFormLabel;
|
|
42390
|
-
FormLabel3.displayName = "FormLabel";
|
|
42391
|
-
|
|
42392
42412
|
// src/components/Grid/Grid.tsx
|
|
42393
42413
|
import { motion as motion21 } from "framer-motion";
|
|
42394
42414
|
var MotionGrid = motion21(Grid_default);
|
|
@@ -42955,6 +42975,11 @@ var datePickerPropertyControls = {
|
|
|
42955
42975
|
title: "Value",
|
|
42956
42976
|
type: ControlType10.String,
|
|
42957
42977
|
defaultValue: "2024/04/03"
|
|
42978
|
+
},
|
|
42979
|
+
label: {
|
|
42980
|
+
title: "Value",
|
|
42981
|
+
type: ControlType10.String,
|
|
42982
|
+
defaultValue: ""
|
|
42958
42983
|
}
|
|
42959
42984
|
// color: {
|
|
42960
42985
|
// title: "Color",
|
|
@@ -42992,6 +43017,11 @@ var dateRangePickerPropertyControls = {
|
|
|
42992
43017
|
title: "Value",
|
|
42993
43018
|
type: ControlType11.String,
|
|
42994
43019
|
defaultValue: "2024/04/03 - 2024/04/20"
|
|
43020
|
+
},
|
|
43021
|
+
label: {
|
|
43022
|
+
title: "Value",
|
|
43023
|
+
type: ControlType11.String,
|
|
43024
|
+
defaultValue: ""
|
|
42995
43025
|
}
|
|
42996
43026
|
// color: {
|
|
42997
43027
|
// title: "Color",
|