sales-frontend-components 0.0.69 → 0.0.70
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.cjs.js +2 -8
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.esm.js +2 -8
- package/dist/index.esm.js.map +1 -1
- package/package.json +12 -12
package/dist/index.cjs.js
CHANGED
|
@@ -650,7 +650,6 @@ const FormSearchJobField = ({
|
|
|
650
650
|
name,
|
|
651
651
|
control,
|
|
652
652
|
disabled,
|
|
653
|
-
rootProps,
|
|
654
653
|
error,
|
|
655
654
|
size = "medium",
|
|
656
655
|
placeholder = "\uC9C1\uC885 \uAC80\uC0C9",
|
|
@@ -668,21 +667,16 @@ const FormSearchJobField = ({
|
|
|
668
667
|
}, [selectedJob]);
|
|
669
668
|
return /* @__PURE__ */ jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [
|
|
670
669
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
671
|
-
salesFrontendDesignSystem.FormField.
|
|
670
|
+
salesFrontendDesignSystem.FormField.ComboBox,
|
|
672
671
|
{
|
|
673
672
|
...props,
|
|
674
673
|
...field,
|
|
675
674
|
id: field.name,
|
|
676
675
|
error: fieldState.invalid || error,
|
|
677
676
|
value: selected?.occupationIndustryName ?? "",
|
|
678
|
-
|
|
679
|
-
...rootProps,
|
|
680
|
-
endElement: /* @__PURE__ */ jsxRuntime.jsx(salesFrontendDesignSystem.Icon, { name: "sub-ui/search" })
|
|
681
|
-
},
|
|
682
|
-
readOnly: true,
|
|
677
|
+
icon: "search",
|
|
683
678
|
size,
|
|
684
679
|
placeholder,
|
|
685
|
-
style: { background: "#fff", cursor: "pointer" },
|
|
686
680
|
autoComplete: "off",
|
|
687
681
|
onClick: openJobSearchModal
|
|
688
682
|
}
|