@ceed/ads 0.0.44 → 0.0.45
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/index.js +14 -22
- package/framer/index.js +6 -6
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1401,12 +1401,7 @@ import { Popper } from "@mui/base/Popper";
|
|
|
1401
1401
|
|
|
1402
1402
|
// src/components/Input/Input.tsx
|
|
1403
1403
|
import React11 from "react";
|
|
1404
|
-
import {
|
|
1405
|
-
Input as JoyInput,
|
|
1406
|
-
FormControl,
|
|
1407
|
-
FormLabel,
|
|
1408
|
-
FormHelperText
|
|
1409
|
-
} from "@mui/joy";
|
|
1404
|
+
import { Input as JoyInput } from "@mui/joy";
|
|
1410
1405
|
import { motion as motion10 } from "framer-motion";
|
|
1411
1406
|
var MotionInput = motion10(JoyInput);
|
|
1412
1407
|
var Input = (props) => {
|
|
@@ -1432,21 +1427,21 @@ var DialogActions_default = DialogActions;
|
|
|
1432
1427
|
import { FormControl as JoyFormControl } from "@mui/joy";
|
|
1433
1428
|
import { motion as motion12 } from "framer-motion";
|
|
1434
1429
|
var MotionFormControl = motion12(JoyFormControl);
|
|
1435
|
-
var
|
|
1436
|
-
|
|
1430
|
+
var FormControl = MotionFormControl;
|
|
1431
|
+
FormControl.displayName = "FormControl";
|
|
1437
1432
|
|
|
1438
1433
|
// src/components/FormControl/index.ts
|
|
1439
|
-
var FormControl_default =
|
|
1434
|
+
var FormControl_default = FormControl;
|
|
1440
1435
|
|
|
1441
1436
|
// src/components/FormLabel/FormLabel.tsx
|
|
1442
1437
|
import { FormLabel as JoyFormLabel } from "@mui/joy";
|
|
1443
1438
|
import { motion as motion13 } from "framer-motion";
|
|
1444
1439
|
var MotionFormLabel = motion13(JoyFormLabel);
|
|
1445
|
-
var
|
|
1446
|
-
|
|
1440
|
+
var FormLabel = MotionFormLabel;
|
|
1441
|
+
FormLabel.displayName = "FormLabel";
|
|
1447
1442
|
|
|
1448
1443
|
// src/components/FormLabel/index.ts
|
|
1449
|
-
var FormLabel_default =
|
|
1444
|
+
var FormLabel_default = FormLabel;
|
|
1450
1445
|
|
|
1451
1446
|
// src/components/DatePicker/DatePicker.tsx
|
|
1452
1447
|
var StyledPopper = styled3(Popper, {
|
|
@@ -1911,8 +1906,8 @@ Dropdown.displayName = "Dropdown";
|
|
|
1911
1906
|
import { FormHelperText as JoyFormHelperText } from "@mui/joy";
|
|
1912
1907
|
import { motion as motion20 } from "framer-motion";
|
|
1913
1908
|
var MotionFormHelperText = motion20(JoyFormHelperText);
|
|
1914
|
-
var
|
|
1915
|
-
|
|
1909
|
+
var FormHelperText = MotionFormHelperText;
|
|
1910
|
+
FormHelperText.displayName = "FormHelperText";
|
|
1916
1911
|
|
|
1917
1912
|
// src/components/Grid/Grid.tsx
|
|
1918
1913
|
import { Grid as JoyGrid } from "@mui/joy";
|
|
@@ -1967,10 +1962,7 @@ RadioList.displayName = "RadioList";
|
|
|
1967
1962
|
import React20 from "react";
|
|
1968
1963
|
import {
|
|
1969
1964
|
Select as JoySelect,
|
|
1970
|
-
Option as JoyOption
|
|
1971
|
-
FormControl as FormControl3,
|
|
1972
|
-
FormLabel as FormLabel3,
|
|
1973
|
-
FormHelperText as FormHelperText3
|
|
1965
|
+
Option as JoyOption
|
|
1974
1966
|
} from "@mui/joy";
|
|
1975
1967
|
import { motion as motion24 } from "framer-motion";
|
|
1976
1968
|
var MotionSelect = motion24(JoySelect);
|
|
@@ -1979,7 +1971,7 @@ var Option = MotionOption;
|
|
|
1979
1971
|
Option.displayName = "Option";
|
|
1980
1972
|
function Select(props) {
|
|
1981
1973
|
const { label, helperText, error, ...innerProps } = props;
|
|
1982
|
-
return /* @__PURE__ */ React20.createElement(
|
|
1974
|
+
return /* @__PURE__ */ React20.createElement(FormControl, { error }, label && /* @__PURE__ */ React20.createElement(FormLabel, null, label), /* @__PURE__ */ React20.createElement(JoySelect, { ...innerProps }), helperText && /* @__PURE__ */ React20.createElement(FormHelperText, null, helperText));
|
|
1983
1975
|
}
|
|
1984
1976
|
Select.displayName = "Select";
|
|
1985
1977
|
|
|
@@ -2152,9 +2144,9 @@ export {
|
|
|
2152
2144
|
Divider,
|
|
2153
2145
|
Drawer,
|
|
2154
2146
|
Dropdown,
|
|
2155
|
-
|
|
2156
|
-
|
|
2157
|
-
|
|
2147
|
+
FormControl,
|
|
2148
|
+
FormHelperText,
|
|
2149
|
+
FormLabel,
|
|
2158
2150
|
Grid,
|
|
2159
2151
|
IconButton,
|
|
2160
2152
|
Input,
|
package/framer/index.js
CHANGED
|
@@ -40509,10 +40509,10 @@ import { motion as motion10 } from "framer-motion";
|
|
|
40509
40509
|
var MotionInput = motion10(Input_default);
|
|
40510
40510
|
var Input3 = (props) => {
|
|
40511
40511
|
const _a = props, { label, helperText, error, style: style4 } = _a, innerProps = __objRest(_a, ["label", "helperText", "error", "style"]);
|
|
40512
|
-
return /* @__PURE__ */ jsxs2(
|
|
40513
|
-
label && /* @__PURE__ */ jsx2(
|
|
40512
|
+
return /* @__PURE__ */ jsxs2(FormControl3, { error, children: [
|
|
40513
|
+
label && /* @__PURE__ */ jsx2(FormLabel3, { children: label }),
|
|
40514
40514
|
/* @__PURE__ */ jsx2(MotionInput, __spreadValues({}, innerProps)),
|
|
40515
|
-
helperText && /* @__PURE__ */ jsx2(
|
|
40515
|
+
helperText && /* @__PURE__ */ jsx2(FormHelperText3, { children: helperText })
|
|
40516
40516
|
] });
|
|
40517
40517
|
};
|
|
40518
40518
|
Input3.displayName = "Input";
|
|
@@ -41059,10 +41059,10 @@ var Option3 = MotionOption;
|
|
|
41059
41059
|
Option3.displayName = "Option";
|
|
41060
41060
|
function Select3(props) {
|
|
41061
41061
|
const _a = props, { label, helperText, error } = _a, innerProps = __objRest(_a, ["label", "helperText", "error"]);
|
|
41062
|
-
return /* @__PURE__ */ jsxs2(
|
|
41063
|
-
label && /* @__PURE__ */ jsx2(
|
|
41062
|
+
return /* @__PURE__ */ jsxs2(FormControl3, { error, children: [
|
|
41063
|
+
label && /* @__PURE__ */ jsx2(FormLabel3, { children: label }),
|
|
41064
41064
|
/* @__PURE__ */ jsx2(Select_default, __spreadValues({}, innerProps)),
|
|
41065
|
-
helperText && /* @__PURE__ */ jsx2(
|
|
41065
|
+
helperText && /* @__PURE__ */ jsx2(FormHelperText3, { children: helperText })
|
|
41066
41066
|
] });
|
|
41067
41067
|
}
|
|
41068
41068
|
Select3.displayName = "Select";
|