@plasmicpkgs/plasmic-chakra-ui 0.0.1 → 0.0.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.
@@ -1125,16 +1125,6 @@ function registerRadio(loader, customRadioMeta) {
1125
1125
  doRegisterComponent(react.Radio, customRadioMeta != null ? customRadioMeta : radioMeta);
1126
1126
  }
1127
1127
 
1128
- function Option(_ref) {
1129
- var value = _ref.value,
1130
- className = _ref.className,
1131
- children = _ref.children;
1132
- return React.createElement("option", {
1133
- className: className,
1134
- value: value
1135
- }, children);
1136
- }
1137
-
1138
1128
  var selectMeta = {
1139
1129
  name: "Select",
1140
1130
  importPath: "@chakra-ui/react",
@@ -1208,9 +1198,18 @@ function registerSelect(loader, customSelectMeta) {
1208
1198
 
1209
1199
  doRegisterComponent(react.Select, customSelectMeta != null ? customSelectMeta : selectMeta);
1210
1200
  }
1201
+ function Option(props) {
1202
+ var value = props.value,
1203
+ className = props.className,
1204
+ children = props.children;
1205
+ return React.createElement("option", {
1206
+ className: className,
1207
+ value: value
1208
+ }, children);
1209
+ }
1211
1210
  var optionMeta = {
1212
1211
  name: "Option",
1213
- importPath: "./components/option",
1212
+ importPath: "@plasmicpkgs/plasmic-chakra-ui",
1214
1213
  parentComponentName: "Select",
1215
1214
  props: {
1216
1215
  value: "string",
@@ -2602,6 +2601,7 @@ function registerAll(loader) {
2602
2601
  registerProgress(loader);
2603
2602
  }
2604
2603
 
2604
+ exports.Option = Option;
2605
2605
  exports.accordionButtonMeta = accordionButtonMeta;
2606
2606
  exports.accordionIconMeta = accordionIconMeta;
2607
2607
  exports.accordionItemMeta = accordionItemMeta;