@apexcura/ui-components 0.0.13-Beta23 → 0.0.13-Beta25
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 +1 -7
- package/dist/index.mjs +2 -8
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -885,13 +885,7 @@ var SingleCheckbox = (props) => {
|
|
|
885
885
|
var import_react27 = __toESM(require("react"));
|
|
886
886
|
var import_antd19 = require("antd");
|
|
887
887
|
var MultiSelect = (props) => {
|
|
888
|
-
|
|
889
|
-
console.log(e.target.value);
|
|
890
|
-
console.log(e);
|
|
891
|
-
};
|
|
892
|
-
const selectAfter = /* @__PURE__ */ import_react27.default.createElement(import_antd19.Select, { options: props.selectAfter, onChange: handleChange });
|
|
893
|
-
const selectBefore = /* @__PURE__ */ import_react27.default.createElement(import_antd19.Select, { options: props.selectAfter });
|
|
894
|
-
return /* @__PURE__ */ import_react27.default.createElement(import_antd19.Space, null, /* @__PURE__ */ import_react27.default.createElement(import_antd19.Input, { addonBefore: selectBefore, addonAfter: selectAfter }));
|
|
888
|
+
return /* @__PURE__ */ import_react27.default.createElement(import_antd19.Space, null, /* @__PURE__ */ import_react27.default.createElement(import_antd19.Select, { options: props.selectAfter }), /* @__PURE__ */ import_react27.default.createElement(import_antd19.Select, { options: props.selectAfter }));
|
|
895
889
|
};
|
|
896
890
|
// Annotate the CommonJS export names for ESM import in node:
|
|
897
891
|
0 && (module.exports = {
|
package/dist/index.mjs
CHANGED
|
@@ -827,15 +827,9 @@ var SingleCheckbox = (props) => {
|
|
|
827
827
|
|
|
828
828
|
// src/Components/MultiSelect.tsx
|
|
829
829
|
import React26 from "react";
|
|
830
|
-
import {
|
|
830
|
+
import { Select as Select4, Space as Space3 } from "antd";
|
|
831
831
|
var MultiSelect = (props) => {
|
|
832
|
-
|
|
833
|
-
console.log(e.target.value);
|
|
834
|
-
console.log(e);
|
|
835
|
-
};
|
|
836
|
-
const selectAfter = /* @__PURE__ */ React26.createElement(Select4, { options: props.selectAfter, onChange: handleChange });
|
|
837
|
-
const selectBefore = /* @__PURE__ */ React26.createElement(Select4, { options: props.selectAfter });
|
|
838
|
-
return /* @__PURE__ */ React26.createElement(Space3, null, /* @__PURE__ */ React26.createElement(Input3, { addonBefore: selectBefore, addonAfter: selectAfter }));
|
|
832
|
+
return /* @__PURE__ */ React26.createElement(Space3, null, /* @__PURE__ */ React26.createElement(Select4, { options: props.selectAfter }), /* @__PURE__ */ React26.createElement(Select4, { options: props.selectAfter }));
|
|
839
833
|
};
|
|
840
834
|
export {
|
|
841
835
|
AddMoreTable,
|