@gisce/react-ooui 1.2.0-rc.84 → 1.2.0-rc.85
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/actionbar/SearchBar.d.ts.map +1 -1
- package/dist/react-ooui.es.js +14 -0
- package/dist/react-ooui.es.js.map +1 -1
- package/dist/react-ooui.umd.js +2 -2
- package/dist/react-ooui.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/actionbar/SearchBar.tsx +8 -4
- package/src/widgets/base/many2one/Many2one.tsx +2 -2
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SearchBar.d.ts","sourceRoot":"","sources":["SearchBar.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA0C,MAAM,OAAO,CAAC;AAK/D,aAAK,KAAK,GAAG;IACX,QAAQ,EAAE,CAAC,WAAW,CAAC,EAAE,MAAM,KAAK,IAAI,CAAC;IACzC,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,QAAQ,CAAC,EAAE,OAAO,CAAC;CACpB,CAAC;AAEF,iBAAS,SAAS,CAAC,KAAK,EAAE,KAAK,
|
|
1
|
+
{"version":3,"file":"SearchBar.d.ts","sourceRoot":"","sources":["SearchBar.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA0C,MAAM,OAAO,CAAC;AAK/D,aAAK,KAAK,GAAG;IACX,QAAQ,EAAE,CAAC,WAAW,CAAC,EAAE,MAAM,KAAK,IAAI,CAAC;IACzC,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,QAAQ,CAAC,EAAE,OAAO,CAAC;CACpB,CAAC;AAEF,iBAAS,SAAS,CAAC,KAAK,EAAE,KAAK,qBA2D9B;AAED,eAAe,SAAS,CAAC"}
|
package/dist/react-ooui.es.js
CHANGED
|
@@ -19195,6 +19195,9 @@ const SearchTree$1 = forwardRef(SearchTree), SearchModal = (e) => {
|
|
|
19195
19195
|
})
|
|
19196
19196
|
}), /* @__PURE__ */ jsx(Col, {
|
|
19197
19197
|
flex: "32px",
|
|
19198
|
+
style: {
|
|
19199
|
+
paddingRight: 0
|
|
19200
|
+
},
|
|
19198
19201
|
children: /* @__PURE__ */ jsx(Button$1, {
|
|
19199
19202
|
icon: /* @__PURE__ */ jsx(FolderOpenOutlined, {}),
|
|
19200
19203
|
disabled: L === void 0 || N === "" || $ === void 0,
|
|
@@ -19209,6 +19212,9 @@ const SearchTree$1 = forwardRef(SearchTree), SearchModal = (e) => {
|
|
|
19209
19212
|
})
|
|
19210
19213
|
}), /* @__PURE__ */ jsx(Col, {
|
|
19211
19214
|
flex: "32px",
|
|
19215
|
+
style: {
|
|
19216
|
+
paddingLeft: 0
|
|
19217
|
+
},
|
|
19212
19218
|
children: /* @__PURE__ */ jsx(Button$1, {
|
|
19213
19219
|
icon: h ? /* @__PURE__ */ jsx(LoadingOutlined, {}) : /* @__PURE__ */ jsx(SearchOutlined, {}),
|
|
19214
19220
|
disabled: s || h,
|
|
@@ -26831,6 +26837,10 @@ function SearchBar(e) {
|
|
|
26831
26837
|
onChange: (d) => {
|
|
26832
26838
|
l(d.target.value.length > 0);
|
|
26833
26839
|
},
|
|
26840
|
+
style: {
|
|
26841
|
+
borderTopRightRadius: 0,
|
|
26842
|
+
borderBottomRightRadius: 0
|
|
26843
|
+
},
|
|
26834
26844
|
suffix: (s || n && n.length > 0) && /* @__PURE__ */ jsx(Tooltip$3, {
|
|
26835
26845
|
title: o("clear"),
|
|
26836
26846
|
children: /* @__PURE__ */ jsx(CloseCircleFilled$4, {
|
|
@@ -26846,6 +26856,10 @@ function SearchBar(e) {
|
|
|
26846
26856
|
children: /* @__PURE__ */ jsx(Button$1, {
|
|
26847
26857
|
htmlType: "submit",
|
|
26848
26858
|
disabled: r,
|
|
26859
|
+
style: {
|
|
26860
|
+
borderTopLeftRadius: 0,
|
|
26861
|
+
borderBottomLeftRadius: 0
|
|
26862
|
+
},
|
|
26849
26863
|
children: o("search")
|
|
26850
26864
|
})
|
|
26851
26865
|
})]
|