@ceed/ads 0.0.15 → 0.0.17-2
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/Accordion/Accordion.d.ts +65 -0
- package/dist/components/Accordion/Accordion.js +83 -0
- package/dist/components/Accordion/index.d.ts +3 -0
- package/dist/components/Accordion/index.js +3 -0
- package/dist/components/DialogTitle/DialogTitle.d.ts +1 -1
- package/dist/components/FormControl/FormControl.d.ts +1 -1
- package/dist/components/Grid/Grid.d.ts +1 -1
- package/dist/components/Modal/Modal.d.ts +2 -2
- package/dist/components/Radio/Radio.d.ts +2 -2
- package/dist/components/RadioList/RadioList.d.ts +12 -0
- package/dist/components/RadioList/RadioList.js +38 -0
- package/dist/components/RadioList/index.d.ts +3 -0
- package/dist/components/RadioList/index.js +3 -0
- package/dist/components/Select/Select.d.ts +1 -1
- package/dist/components/Sheet/Sheet.d.ts +1 -1
- package/dist/components/Stack/Stack.d.ts +1 -1
- package/dist/components/Tabs/Tabs.d.ts +7 -7
- package/dist/components/index.d.ts +2 -0
- package/dist/components/index.js +2 -0
- package/dist/index.d.ts +2 -2
- package/dist/index.js +2 -2
- package/framer/index.js +874 -72
- package/package.json +4 -2
- package/dist/framer-entrypoint.d.ts +0 -1
- package/dist/framer-entrypoint.js +0 -1
package/framer/index.js
CHANGED
|
@@ -31747,14 +31747,13 @@ true ? Tooltip.propTypes = {
|
|
|
31747
31747
|
} : void 0;
|
|
31748
31748
|
var Tooltip_default = Tooltip;
|
|
31749
31749
|
|
|
31750
|
-
// src/components/
|
|
31750
|
+
// src/components/Accordion/Accordion.tsx
|
|
31751
|
+
import {
|
|
31752
|
+
createContext as createContext31,
|
|
31753
|
+
useContext as useContext51,
|
|
31754
|
+
useState as useState22
|
|
31755
|
+
} from "react";
|
|
31751
31756
|
import { motion } from "framer-motion";
|
|
31752
|
-
var MotionBox = motion(Box_default);
|
|
31753
|
-
var Box2 = MotionBox;
|
|
31754
|
-
Box2.displayName = "Box";
|
|
31755
|
-
|
|
31756
|
-
// src/components/Button/Button.tsx
|
|
31757
|
-
import { motion as motion2 } from "framer-motion";
|
|
31758
31757
|
|
|
31759
31758
|
// ../../node_modules/@emotion/react/jsx-runtime/dist/emotion-react-jsx-runtime.browser.esm.js
|
|
31760
31759
|
import * as ReactJSXRuntime from "react/jsx-runtime";
|
|
@@ -31774,8 +31773,70 @@ function jsxs2(type, props, key) {
|
|
|
31774
31773
|
return ReactJSXRuntime.jsxs(Emotion$1, createEmotionProps(type, props), key);
|
|
31775
31774
|
}
|
|
31776
31775
|
|
|
31776
|
+
// src/components/Accordion/Accordion.tsx
|
|
31777
|
+
var AccordionContext2 = createContext31({
|
|
31778
|
+
setExpandedIndex: () => {
|
|
31779
|
+
}
|
|
31780
|
+
});
|
|
31781
|
+
var MotionAccordionGroup = motion(AccordionGroup_default);
|
|
31782
|
+
function AccordionGroup3(props) {
|
|
31783
|
+
const { controlled, indicator, ...innerProps } = props;
|
|
31784
|
+
const [expandedIndex, setExpandedIndex] = useState22();
|
|
31785
|
+
return /* @__PURE__ */ jsx2(
|
|
31786
|
+
AccordionContext2.Provider,
|
|
31787
|
+
{
|
|
31788
|
+
value: {
|
|
31789
|
+
expandedIndex,
|
|
31790
|
+
setExpandedIndex,
|
|
31791
|
+
isControlled: controlled,
|
|
31792
|
+
indicator
|
|
31793
|
+
},
|
|
31794
|
+
children: /* @__PURE__ */ jsx2(MotionAccordionGroup, { ...innerProps })
|
|
31795
|
+
}
|
|
31796
|
+
);
|
|
31797
|
+
}
|
|
31798
|
+
AccordionGroup3.displayName = "AccordionGroup";
|
|
31799
|
+
var MotionAccordion = motion(Accordion_default);
|
|
31800
|
+
var MotionAccordionSummary = motion(AccordionSummary_default);
|
|
31801
|
+
var AccordionSummary3 = MotionAccordionSummary;
|
|
31802
|
+
AccordionSummary3.displayName = "AccordionSummary";
|
|
31803
|
+
var MotionAccordionDetails = motion(AccordionDetails_default);
|
|
31804
|
+
var AccordionDetails3 = MotionAccordionDetails;
|
|
31805
|
+
AccordionDetails3.displayName = "AccordionDetails";
|
|
31806
|
+
function Accordion3(props) {
|
|
31807
|
+
const { summary, details, indicator, index, ...innerProps } = props;
|
|
31808
|
+
const { expandedIndex, setExpandedIndex, isControlled, indicator: globalIndicator } = useContext51(AccordionContext2);
|
|
31809
|
+
return (
|
|
31810
|
+
// NOTE: AccordionGroup없이 단일로 사용하면 animation 적용이 안된다.(joy ui)
|
|
31811
|
+
/* @__PURE__ */ jsxs2(
|
|
31812
|
+
MotionAccordion,
|
|
31813
|
+
{
|
|
31814
|
+
...isControlled && {
|
|
31815
|
+
expanded: expandedIndex === index,
|
|
31816
|
+
onChange: (_4, expanded) => {
|
|
31817
|
+
setExpandedIndex(expanded ? index : void 0);
|
|
31818
|
+
}
|
|
31819
|
+
},
|
|
31820
|
+
...innerProps,
|
|
31821
|
+
children: [
|
|
31822
|
+
/* @__PURE__ */ jsx2(AccordionSummary3, { indicator: indicator || globalIndicator, children: summary }),
|
|
31823
|
+
/* @__PURE__ */ jsx2(AccordionDetails3, { children: details })
|
|
31824
|
+
]
|
|
31825
|
+
}
|
|
31826
|
+
)
|
|
31827
|
+
);
|
|
31828
|
+
}
|
|
31829
|
+
Accordion3.displayName = "Accordion";
|
|
31830
|
+
|
|
31831
|
+
// src/components/Box/Box.tsx
|
|
31832
|
+
import { motion as motion2 } from "framer-motion";
|
|
31833
|
+
var MotionBox = motion2(Box_default);
|
|
31834
|
+
var Box2 = MotionBox;
|
|
31835
|
+
Box2.displayName = "Box";
|
|
31836
|
+
|
|
31777
31837
|
// src/components/Button/Button.tsx
|
|
31778
|
-
|
|
31838
|
+
import { motion as motion3 } from "framer-motion";
|
|
31839
|
+
var MotionButton = motion3(Button_default);
|
|
31779
31840
|
var Button3 = (props) => {
|
|
31780
31841
|
return /* @__PURE__ */ jsx2(
|
|
31781
31842
|
MotionButton,
|
|
@@ -31787,8 +31848,8 @@ var Button3 = (props) => {
|
|
|
31787
31848
|
Button3.displayName = "Button";
|
|
31788
31849
|
|
|
31789
31850
|
// src/components/Checkbox/Checkbox.tsx
|
|
31790
|
-
import { motion as
|
|
31791
|
-
var MotionCheckbox =
|
|
31851
|
+
import { motion as motion4 } from "framer-motion";
|
|
31852
|
+
var MotionCheckbox = motion4(Checkbox_default);
|
|
31792
31853
|
var Checkbox3 = (props) => {
|
|
31793
31854
|
return /* @__PURE__ */ jsx2(MotionCheckbox, { ...props });
|
|
31794
31855
|
};
|
|
@@ -31839,8 +31900,8 @@ Container.displayName = "Container";
|
|
|
31839
31900
|
import { useMemo as useMemo32 } from "react";
|
|
31840
31901
|
|
|
31841
31902
|
// src/components/Sheet/Sheet.tsx
|
|
31842
|
-
import { motion as
|
|
31843
|
-
var MotionSheet =
|
|
31903
|
+
import { motion as motion5 } from "framer-motion";
|
|
31904
|
+
var MotionSheet = motion5(Sheet_default);
|
|
31844
31905
|
var Sheet3 = MotionSheet;
|
|
31845
31906
|
Sheet3.displayName = "Sheet";
|
|
31846
31907
|
|
|
@@ -32028,14 +32089,14 @@ function DataTable(props) {
|
|
|
32028
32089
|
DataTable.displayName = "DataTable";
|
|
32029
32090
|
|
|
32030
32091
|
// src/components/DialogActions/DialogActions.tsx
|
|
32031
|
-
import { motion as
|
|
32032
|
-
var MotionDialogActions =
|
|
32092
|
+
import { motion as motion6 } from "framer-motion";
|
|
32093
|
+
var MotionDialogActions = motion6(DialogActions_default);
|
|
32033
32094
|
var DialogActions3 = MotionDialogActions;
|
|
32034
32095
|
DialogActions3.displayName = "DialogActions";
|
|
32035
32096
|
|
|
32036
32097
|
// src/components/DialogContent/DialogContent.tsx
|
|
32037
|
-
import { motion as
|
|
32038
|
-
var MotionDialogContent =
|
|
32098
|
+
import { motion as motion7 } from "framer-motion";
|
|
32099
|
+
var MotionDialogContent = motion7(DialogContent_default);
|
|
32039
32100
|
var DialogContent3 = MotionDialogContent;
|
|
32040
32101
|
DialogContent3.displayName = "DialogContent";
|
|
32041
32102
|
|
|
@@ -32043,8 +32104,8 @@ DialogContent3.displayName = "DialogContent";
|
|
|
32043
32104
|
var DialogContent_default2 = DialogContent3;
|
|
32044
32105
|
|
|
32045
32106
|
// src/components/DialogTitle/DialogTitle.tsx
|
|
32046
|
-
import { motion as
|
|
32047
|
-
var MotionDialogTitle =
|
|
32107
|
+
import { motion as motion8 } from "framer-motion";
|
|
32108
|
+
var MotionDialogTitle = motion8(DialogTitle_default);
|
|
32048
32109
|
var DialogTitle3 = MotionDialogTitle;
|
|
32049
32110
|
DialogTitle3.displayName = "DialogTitle";
|
|
32050
32111
|
|
|
@@ -32052,16 +32113,16 @@ DialogTitle3.displayName = "DialogTitle";
|
|
|
32052
32113
|
var DialogTitle_default2 = DialogTitle3;
|
|
32053
32114
|
|
|
32054
32115
|
// src/components/Divider/Divider.tsx
|
|
32055
|
-
import { motion as
|
|
32056
|
-
var MotionDivider =
|
|
32116
|
+
import { motion as motion9 } from "framer-motion";
|
|
32117
|
+
var MotionDivider = motion9(Divider_default);
|
|
32057
32118
|
var Divider3 = (props) => {
|
|
32058
32119
|
return /* @__PURE__ */ jsx2(MotionDivider, { ...props });
|
|
32059
32120
|
};
|
|
32060
32121
|
Divider3.displayName = "Divider";
|
|
32061
32122
|
|
|
32062
32123
|
// src/components/InsetDrawer/InsetDrawer.tsx
|
|
32063
|
-
import { motion as
|
|
32064
|
-
var MotionDrawer =
|
|
32124
|
+
import { motion as motion10 } from "framer-motion";
|
|
32125
|
+
var MotionDrawer = motion10(Drawer_default);
|
|
32065
32126
|
var InsetDrawer = (props) => {
|
|
32066
32127
|
const { children, ...innerProps } = props;
|
|
32067
32128
|
return /* @__PURE__ */ jsx2(
|
|
@@ -32086,81 +32147,81 @@ var InsetDrawer = (props) => {
|
|
|
32086
32147
|
InsetDrawer.displayName = "InsetDrawer";
|
|
32087
32148
|
|
|
32088
32149
|
// src/components/Dropdown/Dropdown.tsx
|
|
32089
|
-
import { motion as
|
|
32090
|
-
var MotionDropdown =
|
|
32150
|
+
import { motion as motion11 } from "framer-motion";
|
|
32151
|
+
var MotionDropdown = motion11(Dropdown);
|
|
32091
32152
|
var Dropdown2 = MotionDropdown;
|
|
32092
32153
|
Dropdown2.displayName = "Dropdown";
|
|
32093
32154
|
|
|
32094
32155
|
// src/components/FormControl/FormControl.tsx
|
|
32095
|
-
import { motion as
|
|
32096
|
-
var MotionFormControl =
|
|
32156
|
+
import { motion as motion12 } from "framer-motion";
|
|
32157
|
+
var MotionFormControl = motion12(FormControl_default);
|
|
32097
32158
|
var FormControl3 = MotionFormControl;
|
|
32098
32159
|
FormControl3.displayName = "FormControl";
|
|
32099
32160
|
|
|
32100
32161
|
// src/components/FormHelperText/FormHelperText.tsx
|
|
32101
|
-
import { motion as
|
|
32102
|
-
var MotionFormHelperText =
|
|
32162
|
+
import { motion as motion13 } from "framer-motion";
|
|
32163
|
+
var MotionFormHelperText = motion13(FormHelperText_default);
|
|
32103
32164
|
var FormHelperText3 = MotionFormHelperText;
|
|
32104
32165
|
FormHelperText3.displayName = "FormHelperText";
|
|
32105
32166
|
|
|
32106
32167
|
// src/components/FormLabel/FormLabel.tsx
|
|
32107
|
-
import { motion as
|
|
32108
|
-
var MotionFormLabel =
|
|
32168
|
+
import { motion as motion14 } from "framer-motion";
|
|
32169
|
+
var MotionFormLabel = motion14(FormLabel_default);
|
|
32109
32170
|
var FormLabel3 = MotionFormLabel;
|
|
32110
32171
|
FormLabel3.displayName = "FormLabel";
|
|
32111
32172
|
|
|
32112
32173
|
// src/components/Grid/Grid.tsx
|
|
32113
|
-
import { motion as
|
|
32114
|
-
var MotionGrid =
|
|
32174
|
+
import { motion as motion15 } from "framer-motion";
|
|
32175
|
+
var MotionGrid = motion15(Grid_default);
|
|
32115
32176
|
var Grid2 = MotionGrid;
|
|
32116
32177
|
Grid2.displayName = "Grid";
|
|
32117
32178
|
|
|
32118
32179
|
// src/components/IconButton/IconButton.tsx
|
|
32119
|
-
import { motion as
|
|
32120
|
-
var MotionIconButton =
|
|
32180
|
+
import { motion as motion16 } from "framer-motion";
|
|
32181
|
+
var MotionIconButton = motion16(IconButton_default);
|
|
32121
32182
|
var IconButton3 = (props) => {
|
|
32122
32183
|
return /* @__PURE__ */ jsx2(MotionIconButton, { ...props });
|
|
32123
32184
|
};
|
|
32124
32185
|
IconButton3.displayName = "IconButton";
|
|
32125
32186
|
|
|
32126
32187
|
// src/components/Input/Input.tsx
|
|
32127
|
-
import { motion as
|
|
32128
|
-
var MotionInput =
|
|
32188
|
+
import { motion as motion17 } from "framer-motion";
|
|
32189
|
+
var MotionInput = motion17(Input_default);
|
|
32129
32190
|
var Input3 = (props) => {
|
|
32130
32191
|
return /* @__PURE__ */ jsx2(MotionInput, { ...props });
|
|
32131
32192
|
};
|
|
32132
32193
|
Input3.displayName = "Input";
|
|
32133
32194
|
|
|
32134
32195
|
// src/components/Menu/Menu.tsx
|
|
32135
|
-
import { motion as
|
|
32136
|
-
var MotionMenu =
|
|
32196
|
+
import { motion as motion18 } from "framer-motion";
|
|
32197
|
+
var MotionMenu = motion18(Menu_default);
|
|
32137
32198
|
var Menu3 = (props) => {
|
|
32138
32199
|
return /* @__PURE__ */ jsx2(MotionMenu, { ...props });
|
|
32139
32200
|
};
|
|
32140
32201
|
Menu3.displayName = "Menu";
|
|
32141
|
-
var MotionMenuButton =
|
|
32202
|
+
var MotionMenuButton = motion18(MenuButton_default);
|
|
32142
32203
|
var MenuButton3 = (props) => {
|
|
32143
32204
|
return /* @__PURE__ */ jsx2(MotionMenuButton, { ...props });
|
|
32144
32205
|
};
|
|
32145
32206
|
MenuButton3.displayName = "MenuButton";
|
|
32146
|
-
var MotionMenuItem =
|
|
32207
|
+
var MotionMenuItem = motion18(MenuItem_default);
|
|
32147
32208
|
var MenuItem3 = (props) => {
|
|
32148
32209
|
return /* @__PURE__ */ jsx2(MotionMenuItem, { ...props });
|
|
32149
32210
|
};
|
|
32150
32211
|
MenuItem3.displayName = "MenuItem";
|
|
32151
32212
|
|
|
32152
32213
|
// src/components/Modal/Modal.tsx
|
|
32153
|
-
import { motion as
|
|
32154
|
-
var MotionModal =
|
|
32214
|
+
import { motion as motion19 } from "framer-motion";
|
|
32215
|
+
var MotionModal = motion19(Modal_default);
|
|
32155
32216
|
var Modal3 = MotionModal;
|
|
32156
32217
|
Modal3.displayName = "Modal";
|
|
32157
|
-
var MotionModalDialog =
|
|
32218
|
+
var MotionModalDialog = motion19(ModalDialog_default);
|
|
32158
32219
|
var ModalDialog3 = MotionModalDialog;
|
|
32159
32220
|
ModalDialog3.displayName = "ModalDialog";
|
|
32160
|
-
var MotionModalClose =
|
|
32221
|
+
var MotionModalClose = motion19(ModalClose_default);
|
|
32161
32222
|
var ModalClose3 = MotionModalClose;
|
|
32162
32223
|
ModalClose3.displayName = "ModalClose";
|
|
32163
|
-
var MotionModalOverflow =
|
|
32224
|
+
var MotionModalOverflow = motion19(ModalOverflow_default);
|
|
32164
32225
|
var ModalOverflow3 = MotionModalOverflow;
|
|
32165
32226
|
ModalOverflow3.displayName = "ModalOverflow";
|
|
32166
32227
|
function ModalFrame(props) {
|
|
@@ -32174,33 +32235,40 @@ function ModalFrame(props) {
|
|
|
32174
32235
|
ModalFrame.displayName = "ModalFrame";
|
|
32175
32236
|
|
|
32176
32237
|
// src/components/Radio/Radio.tsx
|
|
32177
|
-
import { motion as
|
|
32178
|
-
var MotionRadio =
|
|
32238
|
+
import { motion as motion20 } from "framer-motion";
|
|
32239
|
+
var MotionRadio = motion20(Radio_default);
|
|
32179
32240
|
var Radio3 = MotionRadio;
|
|
32180
32241
|
Radio3.displayName = "Radio";
|
|
32181
|
-
var MotionRadioGroup =
|
|
32242
|
+
var MotionRadioGroup = motion20(RadioGroup_default);
|
|
32182
32243
|
var RadioGroup3 = MotionRadioGroup;
|
|
32183
32244
|
RadioGroup3.displayName = "RadioGroup";
|
|
32184
32245
|
|
|
32246
|
+
// src/components/RadioList/RadioList.tsx
|
|
32247
|
+
function RadioList(props) {
|
|
32248
|
+
const { items, ...innerProps } = props;
|
|
32249
|
+
return /* @__PURE__ */ jsx2(RadioGroup3, { ...innerProps, children: items.map((item) => /* @__PURE__ */ jsx2(Radio3, { value: item.value, label: item.label }, `${item.value}`)) });
|
|
32250
|
+
}
|
|
32251
|
+
RadioList.displayName = "RadioList";
|
|
32252
|
+
|
|
32185
32253
|
// src/components/Select/Select.tsx
|
|
32186
|
-
import { motion as
|
|
32187
|
-
var MotionSelect =
|
|
32254
|
+
import { motion as motion21 } from "framer-motion";
|
|
32255
|
+
var MotionSelect = motion21(Select_default);
|
|
32188
32256
|
var Select3 = MotionSelect;
|
|
32189
32257
|
Select3.displayName = "Select";
|
|
32190
|
-
var MotionOption =
|
|
32258
|
+
var MotionOption = motion21(Option_default);
|
|
32191
32259
|
var Option3 = MotionOption;
|
|
32192
32260
|
Option3.displayName = "Option";
|
|
32193
32261
|
|
|
32194
32262
|
// src/components/Stack/Stack.tsx
|
|
32195
|
-
import { motion as
|
|
32196
|
-
var MotionStack =
|
|
32263
|
+
import { motion as motion22 } from "framer-motion";
|
|
32264
|
+
var MotionStack = motion22(Stack_default);
|
|
32197
32265
|
var Stack2 = MotionStack;
|
|
32198
32266
|
Stack2.displayName = "Stack";
|
|
32199
32267
|
|
|
32200
32268
|
// src/components/Switch/Switch.tsx
|
|
32201
|
-
import { motion as
|
|
32202
|
-
var MotionSwitch =
|
|
32203
|
-
var StyledThumb = styled_default2(
|
|
32269
|
+
import { motion as motion23 } from "framer-motion";
|
|
32270
|
+
var MotionSwitch = motion23(Switch_default);
|
|
32271
|
+
var StyledThumb = styled_default2(motion23.div)({
|
|
32204
32272
|
"--Icon-fontSize": "calc(var(--Switch-thumbSize) * 0.75)",
|
|
32205
32273
|
display: "inline-flex",
|
|
32206
32274
|
justifyContent: "center",
|
|
@@ -32239,23 +32307,23 @@ var Switch3 = (props) => {
|
|
|
32239
32307
|
Switch3.displayName = "Switch";
|
|
32240
32308
|
|
|
32241
32309
|
// src/components/Tabs/Tabs.tsx
|
|
32242
|
-
import { motion as
|
|
32243
|
-
var MotionTabs =
|
|
32310
|
+
import { motion as motion24 } from "framer-motion";
|
|
32311
|
+
var MotionTabs = motion24(Tabs_default);
|
|
32244
32312
|
var Tabs3 = MotionTabs;
|
|
32245
32313
|
Tabs3.displayName = "Tabs";
|
|
32246
|
-
var MotionTab =
|
|
32314
|
+
var MotionTab = motion24(Tab_default);
|
|
32247
32315
|
var Tab3 = MotionTab;
|
|
32248
32316
|
Tab3.displayName = "Tab";
|
|
32249
|
-
var MotionTabList =
|
|
32317
|
+
var MotionTabList = motion24(TabList_default);
|
|
32250
32318
|
var TabList3 = MotionTabList;
|
|
32251
32319
|
TabList3.displayName = "TabList";
|
|
32252
|
-
var MotionTabPanel =
|
|
32320
|
+
var MotionTabPanel = motion24(TabPanel_default);
|
|
32253
32321
|
var TabPanel3 = MotionTabPanel;
|
|
32254
32322
|
TabPanel3.displayName = "TabPanel";
|
|
32255
32323
|
|
|
32256
32324
|
// src/components/Textarea/Textarea.tsx
|
|
32257
|
-
import { motion as
|
|
32258
|
-
var MotionTextarea =
|
|
32325
|
+
import { motion as motion25 } from "framer-motion";
|
|
32326
|
+
var MotionTextarea = motion25(Textarea_default);
|
|
32259
32327
|
var Textarea3 = (props) => {
|
|
32260
32328
|
return /* @__PURE__ */ jsx2(MotionTextarea, { ...props });
|
|
32261
32329
|
};
|
|
@@ -32298,25 +32366,739 @@ function ThemeProvider4(props) {
|
|
|
32298
32366
|
ThemeProvider4.displayName = "ThemeProvider";
|
|
32299
32367
|
|
|
32300
32368
|
// src/components/Tooltip/Tooltip.tsx
|
|
32301
|
-
import { motion as
|
|
32302
|
-
var MotionTooltip =
|
|
32369
|
+
import { motion as motion26 } from "framer-motion";
|
|
32370
|
+
var MotionTooltip = motion26(Tooltip_default);
|
|
32303
32371
|
var Tooltip3 = (props) => {
|
|
32304
32372
|
return /* @__PURE__ */ jsx2(MotionTooltip, { ...props });
|
|
32305
32373
|
};
|
|
32306
32374
|
Tooltip3.displayName = "Tooltip";
|
|
32307
32375
|
|
|
32308
32376
|
// src/components/Typography/Typography.tsx
|
|
32309
|
-
import { motion as
|
|
32310
|
-
var MotionTypography =
|
|
32377
|
+
import { motion as motion27 } from "framer-motion";
|
|
32378
|
+
var MotionTypography = motion27(Typography_default);
|
|
32311
32379
|
var Typography3 = (props) => {
|
|
32312
32380
|
return /* @__PURE__ */ jsx2(MotionTypography, { ...props });
|
|
32313
32381
|
};
|
|
32314
32382
|
Typography3.displayName = "Typography";
|
|
32383
|
+
|
|
32384
|
+
// src/components/Accordion/Accordion.framer.ts
|
|
32385
|
+
import { ControlType } from "framer";
|
|
32386
|
+
var accordionPropertyControls = {
|
|
32387
|
+
summary: {
|
|
32388
|
+
title: "Summary",
|
|
32389
|
+
// TODO: 디자이너와 합의 후 string으로 하든 componentInstance로 하든 결정
|
|
32390
|
+
type: ControlType.String
|
|
32391
|
+
},
|
|
32392
|
+
details: {
|
|
32393
|
+
title: "Details",
|
|
32394
|
+
type: ControlType.ComponentInstance
|
|
32395
|
+
},
|
|
32396
|
+
indicator: {
|
|
32397
|
+
title: "Indicator",
|
|
32398
|
+
type: ControlType.ComponentInstance
|
|
32399
|
+
}
|
|
32400
|
+
};
|
|
32401
|
+
|
|
32402
|
+
// src/components/AccordionGroup/AccordionGroup.framer.ts
|
|
32403
|
+
import { ControlType as ControlType2 } from "framer";
|
|
32404
|
+
var accordionGroupPropertyControls = {
|
|
32405
|
+
variant: {
|
|
32406
|
+
title: "Variant",
|
|
32407
|
+
type: ControlType2.Enum,
|
|
32408
|
+
options: ["outlined", "plain", "solid", "soft"],
|
|
32409
|
+
defaultValue: "plain"
|
|
32410
|
+
},
|
|
32411
|
+
color: {
|
|
32412
|
+
title: "Color",
|
|
32413
|
+
type: ControlType2.Enum,
|
|
32414
|
+
options: ["primary", "neutral", "danger", "success", "warning"],
|
|
32415
|
+
optionTitles: ["Primary", "Neutral", "Danger", "Success", "Warning"],
|
|
32416
|
+
defaultValue: "neutral"
|
|
32417
|
+
},
|
|
32418
|
+
size: {
|
|
32419
|
+
title: "Size",
|
|
32420
|
+
type: ControlType2.Enum,
|
|
32421
|
+
options: ["sm", "md", "lg"],
|
|
32422
|
+
defaultValue: "md"
|
|
32423
|
+
},
|
|
32424
|
+
disableDivider: {
|
|
32425
|
+
title: "Disable Divider",
|
|
32426
|
+
type: ControlType2.Boolean,
|
|
32427
|
+
defaultValue: false
|
|
32428
|
+
},
|
|
32429
|
+
indicator: {
|
|
32430
|
+
title: "Indicator",
|
|
32431
|
+
type: ControlType2.ComponentInstance
|
|
32432
|
+
},
|
|
32433
|
+
controlled: {
|
|
32434
|
+
title: "Controlled",
|
|
32435
|
+
type: ControlType2.Boolean,
|
|
32436
|
+
defaultValue: false
|
|
32437
|
+
},
|
|
32438
|
+
accordions: {
|
|
32439
|
+
title: "Accordions",
|
|
32440
|
+
type: ControlType2.Array,
|
|
32441
|
+
control: {
|
|
32442
|
+
type: ControlType2.ComponentInstance
|
|
32443
|
+
}
|
|
32444
|
+
}
|
|
32445
|
+
};
|
|
32446
|
+
|
|
32447
|
+
// src/components/Avatar/Avatar.framer.ts
|
|
32448
|
+
import { ControlType as ControlType3 } from "framer";
|
|
32449
|
+
var avatarPropertyControls = {
|
|
32450
|
+
text: {
|
|
32451
|
+
title: "Text",
|
|
32452
|
+
type: ControlType3.String,
|
|
32453
|
+
defaultValue: "Tim"
|
|
32454
|
+
},
|
|
32455
|
+
image: {
|
|
32456
|
+
title: "Image",
|
|
32457
|
+
type: ControlType3.ResponsiveImage
|
|
32458
|
+
},
|
|
32459
|
+
color: {
|
|
32460
|
+
title: "Color",
|
|
32461
|
+
type: ControlType3.Enum,
|
|
32462
|
+
options: ["primary", "neutral", "danger", "success", "warning"],
|
|
32463
|
+
optionTitles: ["Primary", "Neutral", "Danger", "Success", "Warning"],
|
|
32464
|
+
defaultValue: "neutral"
|
|
32465
|
+
},
|
|
32466
|
+
size: {
|
|
32467
|
+
title: "Size",
|
|
32468
|
+
type: ControlType3.Enum,
|
|
32469
|
+
options: ["sm", "md", "lg"],
|
|
32470
|
+
defaultValue: "md"
|
|
32471
|
+
},
|
|
32472
|
+
variant: {
|
|
32473
|
+
title: "Variant",
|
|
32474
|
+
type: ControlType3.Enum,
|
|
32475
|
+
options: ["outlined", "plain", "solid", "soft"],
|
|
32476
|
+
defaultValue: void 0
|
|
32477
|
+
}
|
|
32478
|
+
};
|
|
32479
|
+
|
|
32480
|
+
// src/components/Badge/Badge.framer.ts
|
|
32481
|
+
import { ControlType as ControlType4 } from "framer";
|
|
32482
|
+
var badgePropertyControls = {
|
|
32483
|
+
badgeContent: {
|
|
32484
|
+
type: ControlType4.String
|
|
32485
|
+
},
|
|
32486
|
+
color: {
|
|
32487
|
+
title: "Color",
|
|
32488
|
+
type: ControlType4.Enum,
|
|
32489
|
+
options: ["primary", "neutral", "danger", "success", "warning"],
|
|
32490
|
+
optionTitles: ["Primary", "Neutral", "Danger", "Success", "Warning"]
|
|
32491
|
+
},
|
|
32492
|
+
variant: {
|
|
32493
|
+
title: "Variant",
|
|
32494
|
+
type: ControlType4.Enum,
|
|
32495
|
+
options: ["solid", "outlined", "soft", "plain"],
|
|
32496
|
+
defaultValue: "outlined"
|
|
32497
|
+
},
|
|
32498
|
+
size: {
|
|
32499
|
+
title: "Size",
|
|
32500
|
+
type: ControlType4.Enum,
|
|
32501
|
+
options: ["sm", "md", "lg"],
|
|
32502
|
+
defaultValue: "md"
|
|
32503
|
+
}
|
|
32504
|
+
};
|
|
32505
|
+
|
|
32506
|
+
// src/components/Button/Button.framer.ts
|
|
32507
|
+
import { ControlType as ControlType5 } from "framer";
|
|
32508
|
+
var buttonPropertyControls = {
|
|
32509
|
+
// NOT working
|
|
32510
|
+
// children: {
|
|
32511
|
+
// type: ControlType.ComponentInstance,
|
|
32512
|
+
// },
|
|
32513
|
+
text: {
|
|
32514
|
+
title: "Text",
|
|
32515
|
+
type: ControlType5.String,
|
|
32516
|
+
defaultValue: "Press me"
|
|
32517
|
+
},
|
|
32518
|
+
onTap: {
|
|
32519
|
+
type: ControlType5.EventHandler
|
|
32520
|
+
},
|
|
32521
|
+
disabled: {
|
|
32522
|
+
title: "Disabled",
|
|
32523
|
+
type: ControlType5.Boolean,
|
|
32524
|
+
defaultValue: false
|
|
32525
|
+
},
|
|
32526
|
+
color: {
|
|
32527
|
+
title: "Color",
|
|
32528
|
+
type: ControlType5.Enum,
|
|
32529
|
+
options: ["primary", "neutral", "danger", "success", "warning"],
|
|
32530
|
+
optionTitles: ["Primary", "Neutral", "Danger", "Success", "Warning"]
|
|
32531
|
+
},
|
|
32532
|
+
variant: {
|
|
32533
|
+
title: "Variant",
|
|
32534
|
+
type: ControlType5.Enum,
|
|
32535
|
+
options: ["solid", "outlined", "soft", "plain"]
|
|
32536
|
+
},
|
|
32537
|
+
loading: {
|
|
32538
|
+
title: "Loading",
|
|
32539
|
+
type: ControlType5.Boolean,
|
|
32540
|
+
defaultValue: false
|
|
32541
|
+
},
|
|
32542
|
+
endDecorator: {
|
|
32543
|
+
title: "End Decorator",
|
|
32544
|
+
type: ControlType5.ComponentInstance
|
|
32545
|
+
},
|
|
32546
|
+
startDecorator: {
|
|
32547
|
+
title: "Start Decorator",
|
|
32548
|
+
type: ControlType5.ComponentInstance
|
|
32549
|
+
},
|
|
32550
|
+
size: {
|
|
32551
|
+
title: "Size",
|
|
32552
|
+
type: ControlType5.Enum,
|
|
32553
|
+
options: ["sm", "md", "lg"],
|
|
32554
|
+
defaultValue: "md"
|
|
32555
|
+
},
|
|
32556
|
+
// for withModal
|
|
32557
|
+
modalContents: {
|
|
32558
|
+
title: "Modal Contents",
|
|
32559
|
+
type: ControlType5.Array,
|
|
32560
|
+
control: {
|
|
32561
|
+
type: ControlType5.ComponentInstance
|
|
32562
|
+
}
|
|
32563
|
+
}
|
|
32564
|
+
};
|
|
32565
|
+
|
|
32566
|
+
// src/components/Checkbox/Checkbox.framer.ts
|
|
32567
|
+
import { ControlType as ControlType6 } from "framer";
|
|
32568
|
+
var checkboxPropertyControls = {
|
|
32569
|
+
onChange: {
|
|
32570
|
+
title: "onChange",
|
|
32571
|
+
type: ControlType6.EventHandler
|
|
32572
|
+
},
|
|
32573
|
+
defaultChecked: {
|
|
32574
|
+
title: "Checked",
|
|
32575
|
+
type: ControlType6.Boolean,
|
|
32576
|
+
defaultValue: false
|
|
32577
|
+
},
|
|
32578
|
+
disabled: {
|
|
32579
|
+
title: "Disabled",
|
|
32580
|
+
type: ControlType6.Boolean,
|
|
32581
|
+
defaultValue: false
|
|
32582
|
+
},
|
|
32583
|
+
label: {
|
|
32584
|
+
title: "Label",
|
|
32585
|
+
type: ControlType6.String,
|
|
32586
|
+
defaultValue: "Label"
|
|
32587
|
+
},
|
|
32588
|
+
color: {
|
|
32589
|
+
title: "Color",
|
|
32590
|
+
type: ControlType6.Enum,
|
|
32591
|
+
options: ["primary", "neutral", "danger", "success", "warning"],
|
|
32592
|
+
optionTitles: ["Primary", "Neutral", "Danger", "Success", "Warning"]
|
|
32593
|
+
},
|
|
32594
|
+
size: {
|
|
32595
|
+
title: "Size",
|
|
32596
|
+
type: ControlType6.Enum,
|
|
32597
|
+
options: ["sm", "md", "lg"],
|
|
32598
|
+
defaultValue: "md"
|
|
32599
|
+
},
|
|
32600
|
+
variant: {
|
|
32601
|
+
title: "Variant",
|
|
32602
|
+
type: ControlType6.Enum,
|
|
32603
|
+
options: ["outlined", "plain", "solid", "soft"],
|
|
32604
|
+
defaultValue: void 0
|
|
32605
|
+
}
|
|
32606
|
+
};
|
|
32607
|
+
|
|
32608
|
+
// src/components/Chip/Chip.framer.ts
|
|
32609
|
+
import { ControlType as ControlType7 } from "framer";
|
|
32610
|
+
var chipPropertyControls = {
|
|
32611
|
+
text: {
|
|
32612
|
+
title: "Text",
|
|
32613
|
+
type: ControlType7.String,
|
|
32614
|
+
defaultValue: "Chip"
|
|
32615
|
+
},
|
|
32616
|
+
color: {
|
|
32617
|
+
title: "Color",
|
|
32618
|
+
type: ControlType7.Enum,
|
|
32619
|
+
options: ["primary", "neutral", "danger", "success", "warning"],
|
|
32620
|
+
optionTitles: ["Primary", "Neutral", "Danger", "Success", "Warning"]
|
|
32621
|
+
},
|
|
32622
|
+
variant: {
|
|
32623
|
+
title: "Variant",
|
|
32624
|
+
type: ControlType7.Enum,
|
|
32625
|
+
options: ["solid", "outlined", "soft", "plain"]
|
|
32626
|
+
},
|
|
32627
|
+
size: {
|
|
32628
|
+
title: "Size",
|
|
32629
|
+
type: ControlType7.Enum,
|
|
32630
|
+
options: ["sm", "md", "lg"],
|
|
32631
|
+
defaultValue: "md"
|
|
32632
|
+
}
|
|
32633
|
+
};
|
|
32634
|
+
|
|
32635
|
+
// src/components/DataTable/DataTable.framer.ts
|
|
32636
|
+
import { ControlType as ControlType8 } from "framer";
|
|
32637
|
+
var dataTablePropertyControls = {
|
|
32638
|
+
csvUrl: {
|
|
32639
|
+
title: "CSV Data",
|
|
32640
|
+
type: ControlType8.File,
|
|
32641
|
+
allowedFileTypes: ["csv"]
|
|
32642
|
+
// NOT WORKING
|
|
32643
|
+
// defaultValue:
|
|
32644
|
+
// "https://sharadcodes.github.io/noob-cms/data/MOCK_DATA.csv",
|
|
32645
|
+
},
|
|
32646
|
+
showCheckbox: {
|
|
32647
|
+
type: ControlType8.Boolean,
|
|
32648
|
+
defaultValue: true
|
|
32649
|
+
},
|
|
32650
|
+
noWrap: {
|
|
32651
|
+
type: ControlType8.Boolean,
|
|
32652
|
+
defaultValue: false
|
|
32653
|
+
},
|
|
32654
|
+
hoverRow: {
|
|
32655
|
+
type: ControlType8.Boolean,
|
|
32656
|
+
defaultValue: true
|
|
32657
|
+
},
|
|
32658
|
+
stripe: {
|
|
32659
|
+
type: ControlType8.Enum,
|
|
32660
|
+
options: [void 0, "odd", "even"],
|
|
32661
|
+
optionTitles: ["None", "Odd", "Even"],
|
|
32662
|
+
defaultValue: void 0
|
|
32663
|
+
},
|
|
32664
|
+
headCells: {
|
|
32665
|
+
type: ControlType8.Array,
|
|
32666
|
+
control: {
|
|
32667
|
+
type: ControlType8.Object,
|
|
32668
|
+
controls: {
|
|
32669
|
+
label: {
|
|
32670
|
+
type: ControlType8.String
|
|
32671
|
+
},
|
|
32672
|
+
width: {
|
|
32673
|
+
type: ControlType8.String
|
|
32674
|
+
}
|
|
32675
|
+
// numeric: {
|
|
32676
|
+
// type: ControlType.Boolean,
|
|
32677
|
+
// defaultValue: false,
|
|
32678
|
+
// },
|
|
32679
|
+
}
|
|
32680
|
+
},
|
|
32681
|
+
defaultValue: []
|
|
32682
|
+
}
|
|
32683
|
+
};
|
|
32684
|
+
|
|
32685
|
+
// src/components/Divider/Divider.framer.ts
|
|
32686
|
+
import { ControlType as ControlType9 } from "framer";
|
|
32687
|
+
var dividerPropertyControls = {
|
|
32688
|
+
text: {
|
|
32689
|
+
type: ControlType9.String,
|
|
32690
|
+
defaultValue: void 0
|
|
32691
|
+
},
|
|
32692
|
+
orientation: {
|
|
32693
|
+
title: "Orientation",
|
|
32694
|
+
type: ControlType9.Enum,
|
|
32695
|
+
options: ["horizontal", "vertical"]
|
|
32696
|
+
}
|
|
32697
|
+
};
|
|
32698
|
+
|
|
32699
|
+
// src/components/IconButton/IconButton.framer.ts
|
|
32700
|
+
import { ControlType as ControlType10 } from "framer";
|
|
32701
|
+
var iconButtonPropertyControls = {
|
|
32702
|
+
icon: {
|
|
32703
|
+
title: "Icon",
|
|
32704
|
+
type: ControlType10.ComponentInstance
|
|
32705
|
+
},
|
|
32706
|
+
onClick: {
|
|
32707
|
+
title: "onClick",
|
|
32708
|
+
type: ControlType10.EventHandler
|
|
32709
|
+
},
|
|
32710
|
+
disabled: {
|
|
32711
|
+
title: "Disabled",
|
|
32712
|
+
type: ControlType10.Boolean,
|
|
32713
|
+
defaultValue: false
|
|
32714
|
+
},
|
|
32715
|
+
color: {
|
|
32716
|
+
title: "Color",
|
|
32717
|
+
type: ControlType10.Enum,
|
|
32718
|
+
options: ["primary", "neutral", "danger", "success", "warning"],
|
|
32719
|
+
optionTitles: ["Primary", "Neutral", "Danger", "Success", "Warning"]
|
|
32720
|
+
},
|
|
32721
|
+
variant: {
|
|
32722
|
+
title: "Variant",
|
|
32723
|
+
type: ControlType10.Enum,
|
|
32724
|
+
options: ["solid", "outlined", "soft", "plain"]
|
|
32725
|
+
},
|
|
32726
|
+
size: {
|
|
32727
|
+
title: "Size",
|
|
32728
|
+
type: ControlType10.Enum,
|
|
32729
|
+
options: ["sm", "md", "lg"],
|
|
32730
|
+
defaultValue: "md"
|
|
32731
|
+
}
|
|
32732
|
+
};
|
|
32733
|
+
|
|
32734
|
+
// src/components/Input/Input.framer.ts
|
|
32735
|
+
import { ControlType as ControlType11 } from "framer";
|
|
32736
|
+
var inputPropertyControls = {
|
|
32737
|
+
onChange: {
|
|
32738
|
+
type: ControlType11.EventHandler
|
|
32739
|
+
},
|
|
32740
|
+
disabled: {
|
|
32741
|
+
title: "Disabled",
|
|
32742
|
+
type: ControlType11.Boolean,
|
|
32743
|
+
defaultValue: false
|
|
32744
|
+
},
|
|
32745
|
+
color: {
|
|
32746
|
+
title: "Color",
|
|
32747
|
+
type: ControlType11.Enum,
|
|
32748
|
+
options: ["primary", "neutral", "danger", "success", "warning"],
|
|
32749
|
+
optionTitles: ["Primary", "Neutral", "Danger", "Success", "Warning"],
|
|
32750
|
+
defaultValue: "neutral"
|
|
32751
|
+
},
|
|
32752
|
+
variant: {
|
|
32753
|
+
title: "Variant",
|
|
32754
|
+
type: ControlType11.Enum,
|
|
32755
|
+
options: ["solid", "outlined", "soft", "plain"],
|
|
32756
|
+
defaultValue: "outlined"
|
|
32757
|
+
},
|
|
32758
|
+
defaultValue: {
|
|
32759
|
+
title: "Value",
|
|
32760
|
+
type: ControlType11.String,
|
|
32761
|
+
defaultValue: ""
|
|
32762
|
+
},
|
|
32763
|
+
placeholder: {
|
|
32764
|
+
title: "Placeholder",
|
|
32765
|
+
type: ControlType11.String,
|
|
32766
|
+
defaultValue: "Type in here..."
|
|
32767
|
+
},
|
|
32768
|
+
endDecorator: {
|
|
32769
|
+
title: "End Decorator",
|
|
32770
|
+
type: ControlType11.ComponentInstance
|
|
32771
|
+
},
|
|
32772
|
+
startDecorator: {
|
|
32773
|
+
title: "Start Decorator",
|
|
32774
|
+
type: ControlType11.ComponentInstance
|
|
32775
|
+
},
|
|
32776
|
+
size: {
|
|
32777
|
+
title: "Size",
|
|
32778
|
+
type: ControlType11.Enum,
|
|
32779
|
+
options: ["sm", "md", "lg"],
|
|
32780
|
+
defaultValue: "md"
|
|
32781
|
+
}
|
|
32782
|
+
};
|
|
32783
|
+
|
|
32784
|
+
// src/components/MenuButton/MenuButton.framer.ts
|
|
32785
|
+
import { ControlType as ControlType12 } from "framer";
|
|
32786
|
+
var menuButtonPropertyControls = {
|
|
32787
|
+
buttonText: {
|
|
32788
|
+
title: "Button Text",
|
|
32789
|
+
type: ControlType12.String,
|
|
32790
|
+
defaultValue: "text"
|
|
32791
|
+
},
|
|
32792
|
+
showIcon: {
|
|
32793
|
+
type: ControlType12.Boolean,
|
|
32794
|
+
defaultValue: false
|
|
32795
|
+
},
|
|
32796
|
+
items: {
|
|
32797
|
+
title: "Items",
|
|
32798
|
+
type: ControlType12.Array,
|
|
32799
|
+
control: {
|
|
32800
|
+
type: ControlType12.Object,
|
|
32801
|
+
controls: {
|
|
32802
|
+
text: {
|
|
32803
|
+
type: ControlType12.String
|
|
32804
|
+
}
|
|
32805
|
+
}
|
|
32806
|
+
},
|
|
32807
|
+
defaultValue: []
|
|
32808
|
+
}
|
|
32809
|
+
};
|
|
32810
|
+
|
|
32811
|
+
// src/components/Modal/Modal.framer.ts
|
|
32812
|
+
import { ControlType as ControlType13 } from "framer";
|
|
32813
|
+
var modalFramePropertyControls = {
|
|
32814
|
+
title: {
|
|
32815
|
+
type: ControlType13.String,
|
|
32816
|
+
defaultValue: "Title"
|
|
32817
|
+
},
|
|
32818
|
+
content: {
|
|
32819
|
+
title: "Content",
|
|
32820
|
+
type: ControlType13.ComponentInstance
|
|
32821
|
+
},
|
|
32822
|
+
size: {
|
|
32823
|
+
title: "Size",
|
|
32824
|
+
type: ControlType13.Enum,
|
|
32825
|
+
options: ["sm", "md", "lg"],
|
|
32826
|
+
defaultValue: "md"
|
|
32827
|
+
}
|
|
32828
|
+
};
|
|
32829
|
+
|
|
32830
|
+
// src/components/RadioList/RadioList.framer.ts
|
|
32831
|
+
import { ControlType as ControlType14 } from "framer";
|
|
32832
|
+
var radioListPropertyControls = {
|
|
32833
|
+
orientation: {
|
|
32834
|
+
title: "Orientation",
|
|
32835
|
+
type: ControlType14.Enum,
|
|
32836
|
+
options: ["vertical", "horizontal"],
|
|
32837
|
+
defaultValue: "vertical"
|
|
32838
|
+
},
|
|
32839
|
+
defaultValue: {
|
|
32840
|
+
title: "Checked Value",
|
|
32841
|
+
type: ControlType14.String,
|
|
32842
|
+
defaultValue: "value1"
|
|
32843
|
+
},
|
|
32844
|
+
items: {
|
|
32845
|
+
title: "Items",
|
|
32846
|
+
type: ControlType14.Array,
|
|
32847
|
+
control: {
|
|
32848
|
+
type: ControlType14.Object,
|
|
32849
|
+
controls: {
|
|
32850
|
+
displayName: {
|
|
32851
|
+
title: "Display Name",
|
|
32852
|
+
type: ControlType14.String
|
|
32853
|
+
},
|
|
32854
|
+
value: { title: "Value", type: ControlType14.String },
|
|
32855
|
+
color: {
|
|
32856
|
+
title: "Color",
|
|
32857
|
+
type: ControlType14.Enum,
|
|
32858
|
+
options: ["primary", "neutral", "danger", "success", "warning"],
|
|
32859
|
+
optionTitles: ["Primary", "Neutral", "Danger", "Success", "Warning"]
|
|
32860
|
+
}
|
|
32861
|
+
}
|
|
32862
|
+
},
|
|
32863
|
+
defaultValue: [
|
|
32864
|
+
{ displayName: "Value 1", value: "value1", color: "primary" },
|
|
32865
|
+
{ displayName: "Value 2", value: "value2", color: "primary" },
|
|
32866
|
+
{ displayName: "Value 3", value: "value3", color: "primary" },
|
|
32867
|
+
{ displayName: "Value 4", value: "value4", color: "primary" },
|
|
32868
|
+
{ displayName: "Value 5", value: "value5", color: "primary" },
|
|
32869
|
+
{ displayName: "Value 6", value: "value6", color: "primary" }
|
|
32870
|
+
]
|
|
32871
|
+
}
|
|
32872
|
+
};
|
|
32873
|
+
|
|
32874
|
+
// src/components/Select/Select.framer.ts
|
|
32875
|
+
import { ControlType as ControlType15 } from "framer";
|
|
32876
|
+
var selectPropertyControls = {
|
|
32877
|
+
onChange: {
|
|
32878
|
+
title: "onChange",
|
|
32879
|
+
type: ControlType15.EventHandler
|
|
32880
|
+
},
|
|
32881
|
+
defaultListboxOpen: {
|
|
32882
|
+
title: "Opened",
|
|
32883
|
+
type: ControlType15.Boolean,
|
|
32884
|
+
defaultValue: false
|
|
32885
|
+
},
|
|
32886
|
+
defaultValue: {
|
|
32887
|
+
title: "Selected Option",
|
|
32888
|
+
type: ControlType15.String
|
|
32889
|
+
},
|
|
32890
|
+
disabled: {
|
|
32891
|
+
title: "Disabled",
|
|
32892
|
+
type: ControlType15.Boolean,
|
|
32893
|
+
defaultValue: false
|
|
32894
|
+
},
|
|
32895
|
+
placeholder: {
|
|
32896
|
+
title: "Placeholder",
|
|
32897
|
+
type: ControlType15.String,
|
|
32898
|
+
defaultValue: "Choose one..."
|
|
32899
|
+
},
|
|
32900
|
+
color: {
|
|
32901
|
+
title: "Color",
|
|
32902
|
+
type: ControlType15.Enum,
|
|
32903
|
+
options: ["primary", "neutral", "danger", "success", "warning"],
|
|
32904
|
+
optionTitles: ["Primary", "Neutral", "Danger", "Success", "Warning"]
|
|
32905
|
+
},
|
|
32906
|
+
size: {
|
|
32907
|
+
title: "Size",
|
|
32908
|
+
type: ControlType15.Enum,
|
|
32909
|
+
options: ["sm", "md", "lg"],
|
|
32910
|
+
defaultValue: "md"
|
|
32911
|
+
},
|
|
32912
|
+
variant: {
|
|
32913
|
+
title: "Variant",
|
|
32914
|
+
type: ControlType15.Enum,
|
|
32915
|
+
options: ["outlined", "plain", "solid", "soft"],
|
|
32916
|
+
defaultValue: void 0
|
|
32917
|
+
},
|
|
32918
|
+
options: {
|
|
32919
|
+
title: "Options",
|
|
32920
|
+
type: ControlType15.Array,
|
|
32921
|
+
control: {
|
|
32922
|
+
type: ControlType15.Object,
|
|
32923
|
+
controls: {
|
|
32924
|
+
text: {
|
|
32925
|
+
title: "Text",
|
|
32926
|
+
type: ControlType15.String
|
|
32927
|
+
},
|
|
32928
|
+
value: { title: "Value", type: ControlType15.String }
|
|
32929
|
+
}
|
|
32930
|
+
},
|
|
32931
|
+
defaultValue: [
|
|
32932
|
+
{ text: "Option 1", value: "option1" },
|
|
32933
|
+
{ text: "Option 2", value: "option2" }
|
|
32934
|
+
]
|
|
32935
|
+
}
|
|
32936
|
+
};
|
|
32937
|
+
|
|
32938
|
+
// src/components/Sheet/Sheet.framer.ts
|
|
32939
|
+
import { ControlType as ControlType16 } from "framer";
|
|
32940
|
+
var sheetPropertyControls = {
|
|
32941
|
+
color: {
|
|
32942
|
+
title: "Color",
|
|
32943
|
+
type: ControlType16.Enum,
|
|
32944
|
+
options: ["primary", "neutral", "danger", "success", "warning"],
|
|
32945
|
+
optionTitles: ["Primary", "Neutral", "Danger", "Success", "Warning"]
|
|
32946
|
+
},
|
|
32947
|
+
variant: {
|
|
32948
|
+
title: "Variant",
|
|
32949
|
+
type: ControlType16.Enum,
|
|
32950
|
+
options: ["solid", "outlined", "soft", "plain"],
|
|
32951
|
+
defaultValue: "outlined"
|
|
32952
|
+
}
|
|
32953
|
+
};
|
|
32954
|
+
|
|
32955
|
+
// src/components/Switch/Switch.framer.ts
|
|
32956
|
+
import { ControlType as ControlType17 } from "framer";
|
|
32957
|
+
var switchPropertyControls = {
|
|
32958
|
+
onChange: {
|
|
32959
|
+
title: "onChange",
|
|
32960
|
+
type: ControlType17.EventHandler
|
|
32961
|
+
},
|
|
32962
|
+
disabled: {
|
|
32963
|
+
title: "Disabled",
|
|
32964
|
+
type: ControlType17.Boolean,
|
|
32965
|
+
defaultValue: false
|
|
32966
|
+
},
|
|
32967
|
+
color: {
|
|
32968
|
+
title: "Color",
|
|
32969
|
+
type: ControlType17.Enum,
|
|
32970
|
+
options: ["primary", "neutral", "danger", "success", "warning"],
|
|
32971
|
+
optionTitles: ["Primary", "Neutral", "Danger", "Success", "Warning"]
|
|
32972
|
+
},
|
|
32973
|
+
variant: {
|
|
32974
|
+
title: "Variant",
|
|
32975
|
+
type: ControlType17.Enum,
|
|
32976
|
+
options: ["solid", "outlined", "soft", "plain"],
|
|
32977
|
+
defaultValue: void 0
|
|
32978
|
+
},
|
|
32979
|
+
size: {
|
|
32980
|
+
title: "Size",
|
|
32981
|
+
type: ControlType17.Enum,
|
|
32982
|
+
options: ["sm", "md", "lg"],
|
|
32983
|
+
defaultValue: "md"
|
|
32984
|
+
}
|
|
32985
|
+
};
|
|
32986
|
+
|
|
32987
|
+
// src/components/Tabs/Tabs.framer.ts
|
|
32988
|
+
import { ControlType as ControlType18 } from "framer";
|
|
32989
|
+
var tabsPropertyControls = {
|
|
32990
|
+
color: {
|
|
32991
|
+
title: "Color",
|
|
32992
|
+
type: ControlType18.Enum,
|
|
32993
|
+
options: ["primary", "neutral", "danger", "success", "warning"],
|
|
32994
|
+
optionTitles: ["Primary", "Neutral", "Danger", "Success", "Warning"]
|
|
32995
|
+
},
|
|
32996
|
+
size: {
|
|
32997
|
+
title: "Size",
|
|
32998
|
+
type: ControlType18.Enum,
|
|
32999
|
+
options: ["sm", "md", "lg"],
|
|
33000
|
+
defaultValue: "md"
|
|
33001
|
+
},
|
|
33002
|
+
variant: {
|
|
33003
|
+
title: "Variant",
|
|
33004
|
+
type: ControlType18.Enum,
|
|
33005
|
+
options: ["outlined", "plain", "solid", "soft"],
|
|
33006
|
+
defaultValue: "plain"
|
|
33007
|
+
},
|
|
33008
|
+
orientation: {
|
|
33009
|
+
type: ControlType18.Enum,
|
|
33010
|
+
options: ["horizontal", "vertical"]
|
|
33011
|
+
},
|
|
33012
|
+
disableUnderline: {
|
|
33013
|
+
type: ControlType18.Boolean,
|
|
33014
|
+
defaultValue: false
|
|
33015
|
+
},
|
|
33016
|
+
disableIndicator: {
|
|
33017
|
+
type: ControlType18.Boolean,
|
|
33018
|
+
defaultValue: false
|
|
33019
|
+
},
|
|
33020
|
+
indicatorInset: {
|
|
33021
|
+
type: ControlType18.Boolean,
|
|
33022
|
+
defaultValue: false
|
|
33023
|
+
},
|
|
33024
|
+
tabs: {
|
|
33025
|
+
type: ControlType18.Array,
|
|
33026
|
+
control: {
|
|
33027
|
+
type: ControlType18.Object,
|
|
33028
|
+
controls: {
|
|
33029
|
+
title: {
|
|
33030
|
+
type: ControlType18.String
|
|
33031
|
+
},
|
|
33032
|
+
disabled: {
|
|
33033
|
+
type: ControlType18.Boolean,
|
|
33034
|
+
defaultValue: false
|
|
33035
|
+
}
|
|
33036
|
+
}
|
|
33037
|
+
}
|
|
33038
|
+
},
|
|
33039
|
+
contents: {
|
|
33040
|
+
title: "Contents",
|
|
33041
|
+
type: ControlType18.Array,
|
|
33042
|
+
control: {
|
|
33043
|
+
type: ControlType18.ComponentInstance
|
|
33044
|
+
}
|
|
33045
|
+
}
|
|
33046
|
+
};
|
|
33047
|
+
|
|
33048
|
+
// src/components/Typography/Typography.framer.ts
|
|
33049
|
+
import { ControlType as ControlType19 } from "framer";
|
|
33050
|
+
var typographyPropertyControls = {
|
|
33051
|
+
// color: {
|
|
33052
|
+
// title: "Color",
|
|
33053
|
+
// type: ControlType.Enum,
|
|
33054
|
+
// options: ["primary", "neutral", "danger", "success", "warning"],
|
|
33055
|
+
// optionTitles: ["Primary", "Neutral", "Danger", "Success", "Warning"],
|
|
33056
|
+
// },
|
|
33057
|
+
level: {
|
|
33058
|
+
title: "Level",
|
|
33059
|
+
type: ControlType19.Enum,
|
|
33060
|
+
options: [
|
|
33061
|
+
"h1",
|
|
33062
|
+
"h2",
|
|
33063
|
+
"h3",
|
|
33064
|
+
"h4",
|
|
33065
|
+
"title-lg",
|
|
33066
|
+
"title-md",
|
|
33067
|
+
"title-sm",
|
|
33068
|
+
"body-lg",
|
|
33069
|
+
"body-md",
|
|
33070
|
+
"body-sm",
|
|
33071
|
+
"body-xs",
|
|
33072
|
+
"inherit"
|
|
33073
|
+
],
|
|
33074
|
+
defaultValue: "body-md"
|
|
33075
|
+
},
|
|
33076
|
+
textColor: {
|
|
33077
|
+
title: "Text Color",
|
|
33078
|
+
type: ControlType19.Enum,
|
|
33079
|
+
options: ["text.tertiary", "inherit"],
|
|
33080
|
+
defaultValue: "inherit"
|
|
33081
|
+
},
|
|
33082
|
+
text: {
|
|
33083
|
+
title: "Text",
|
|
33084
|
+
type: ControlType19.String,
|
|
33085
|
+
defaultValue: "Typography",
|
|
33086
|
+
displayTextArea: true
|
|
33087
|
+
},
|
|
33088
|
+
endDecorator: {
|
|
33089
|
+
title: "End Decorator",
|
|
33090
|
+
type: ControlType19.ComponentInstance
|
|
33091
|
+
},
|
|
33092
|
+
startDecorator: {
|
|
33093
|
+
title: "Start Decorator",
|
|
33094
|
+
type: ControlType19.ComponentInstance
|
|
33095
|
+
}
|
|
33096
|
+
};
|
|
32315
33097
|
export {
|
|
32316
|
-
|
|
32317
|
-
|
|
32318
|
-
|
|
32319
|
-
|
|
33098
|
+
Accordion3 as Accordion,
|
|
33099
|
+
AccordionDetails3 as AccordionDetails,
|
|
33100
|
+
AccordionGroup3 as AccordionGroup,
|
|
33101
|
+
AccordionSummary3 as AccordionSummary,
|
|
32320
33102
|
AspectRatio_default as AspectRatio,
|
|
32321
33103
|
Avatar_default as Avatar,
|
|
32322
33104
|
AvatarGroup_default as AvatarGroup,
|
|
@@ -32367,6 +33149,7 @@ export {
|
|
|
32367
33149
|
Option3 as Option,
|
|
32368
33150
|
Radio3 as Radio,
|
|
32369
33151
|
RadioGroup3 as RadioGroup,
|
|
33152
|
+
RadioList,
|
|
32370
33153
|
Select3 as Select,
|
|
32371
33154
|
Sheet3 as Sheet,
|
|
32372
33155
|
Skeleton_default as Skeleton,
|
|
@@ -32391,33 +33174,44 @@ export {
|
|
|
32391
33174
|
accordionClasses_default as accordionClasses,
|
|
32392
33175
|
accordionDetailsClasses_default as accordionDetailsClasses,
|
|
32393
33176
|
accordionGroupClasses_default as accordionGroupClasses,
|
|
33177
|
+
accordionGroupPropertyControls,
|
|
33178
|
+
accordionPropertyControls,
|
|
32394
33179
|
accordionSummaryClasses_default as accordionSummaryClasses,
|
|
32395
33180
|
aspectRatioClasses_default as aspectRatioClasses,
|
|
32396
33181
|
avatarClasses_default as avatarClasses,
|
|
32397
33182
|
avatarGroupClasses_default as avatarGroupClasses,
|
|
33183
|
+
avatarPropertyControls,
|
|
32398
33184
|
badgeClasses_default as badgeClasses,
|
|
33185
|
+
badgePropertyControls,
|
|
32399
33186
|
boxClasses_default as boxClasses,
|
|
32400
33187
|
breadcrumbsClasses_default as breadcrumbsClasses,
|
|
32401
33188
|
buttonClasses_default as buttonClasses,
|
|
33189
|
+
buttonPropertyControls,
|
|
32402
33190
|
cardActionsClasses_default as cardActionsClasses,
|
|
32403
33191
|
cardClasses_default as cardClasses,
|
|
32404
33192
|
cardContentClasses_default as cardContentClasses,
|
|
32405
33193
|
cardCoverClasses_default as cardCoverClasses,
|
|
32406
33194
|
cardOverflowClasses_default as cardOverflowClasses,
|
|
32407
33195
|
checkboxClasses_default as checkboxClasses,
|
|
33196
|
+
checkboxPropertyControls,
|
|
32408
33197
|
chipClasses_default as chipClasses,
|
|
33198
|
+
chipPropertyControls,
|
|
32409
33199
|
circularProgressClasses_default as circularProgressClasses,
|
|
33200
|
+
dataTablePropertyControls,
|
|
32410
33201
|
dialogActionsClasses_default as dialogActionsClasses,
|
|
32411
33202
|
dialogContentClasses_default as dialogContentClasses,
|
|
32412
33203
|
dialogTitleClasses_default as dialogTitleClasses,
|
|
32413
33204
|
dividerClasses_default as dividerClasses,
|
|
33205
|
+
dividerPropertyControls,
|
|
32414
33206
|
drawerClasses_default as drawerClasses,
|
|
32415
33207
|
formControlClasses_default as formControlClasses,
|
|
32416
33208
|
formHelperTextClasses_default as formHelperTextClasses,
|
|
32417
33209
|
formLabelClasses_default as formLabelClasses,
|
|
32418
33210
|
gridClasses_default as gridClasses,
|
|
32419
33211
|
iconButtonClasses_default as iconButtonClasses,
|
|
33212
|
+
iconButtonPropertyControls,
|
|
32420
33213
|
inputClasses_default as inputClasses,
|
|
33214
|
+
inputPropertyControls,
|
|
32421
33215
|
linearProgressClasses_default as linearProgressClasses,
|
|
32422
33216
|
linkClasses_default as linkClasses,
|
|
32423
33217
|
listClasses_default as listClasses,
|
|
@@ -32428,17 +33222,22 @@ export {
|
|
|
32428
33222
|
listItemDecoratorClasses_default as listItemDecoratorClasses,
|
|
32429
33223
|
listSubheaderClasses_default as listSubheaderClasses,
|
|
32430
33224
|
menuButtonClasses_default as menuButtonClasses,
|
|
33225
|
+
menuButtonPropertyControls,
|
|
32431
33226
|
menuClasses_default as menuClasses,
|
|
32432
33227
|
menuItemClasses_default as menuItemClasses,
|
|
32433
33228
|
modalClasses_default as modalClasses,
|
|
32434
33229
|
modalCloseClasses_default as modalCloseClasses,
|
|
32435
33230
|
modalDialogClasses_default as modalDialogClasses,
|
|
33231
|
+
modalFramePropertyControls,
|
|
32436
33232
|
modalOverflowClasses_default as modalOverflowClasses,
|
|
32437
33233
|
optionClasses_default as optionClasses,
|
|
32438
33234
|
radioClasses_default as radioClasses,
|
|
32439
33235
|
radioGroupClasses_default as radioGroupClasses,
|
|
33236
|
+
radioListPropertyControls,
|
|
32440
33237
|
selectClasses_default as selectClasses,
|
|
33238
|
+
selectPropertyControls,
|
|
32441
33239
|
sheetClasses_default as sheetClasses,
|
|
33240
|
+
sheetPropertyControls,
|
|
32442
33241
|
skeletonClasses_default as skeletonClasses,
|
|
32443
33242
|
sliderClasses_default as sliderClasses,
|
|
32444
33243
|
stackClasses_default as stackClasses,
|
|
@@ -32446,13 +33245,16 @@ export {
|
|
|
32446
33245
|
stepClasses_default as stepClasses,
|
|
32447
33246
|
stepperClasses_default as stepperClasses,
|
|
32448
33247
|
switchClasses_default as switchClasses,
|
|
33248
|
+
switchPropertyControls,
|
|
32449
33249
|
tabListClasses_default as tabListClasses,
|
|
32450
33250
|
tabPanelClasses_default as tabPanelClasses,
|
|
32451
33251
|
tableClasses_default as tableClasses,
|
|
32452
33252
|
tabsClasses_default as tabsClasses,
|
|
33253
|
+
tabsPropertyControls,
|
|
32453
33254
|
textareaClasses_default as textareaClasses,
|
|
32454
33255
|
tooltipClasses_default as tooltipClasses,
|
|
32455
|
-
typographyClasses_default as typographyClasses
|
|
33256
|
+
typographyClasses_default as typographyClasses,
|
|
33257
|
+
typographyPropertyControls
|
|
32456
33258
|
};
|
|
32457
33259
|
/*! Bundled license information:
|
|
32458
33260
|
|