@nocobase/plugin-multi-app-share-collection 0.10.0-alpha.4 → 0.10.1-alpha.1
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.
|
@@ -330,6 +330,7 @@ const TableTransfer = (0, _react().connect)(props => {
|
|
|
330
330
|
width: 360
|
|
331
331
|
}
|
|
332
332
|
}, _react2().default.createElement(_antd().Select, {
|
|
333
|
+
dropdownMatchSelectWidth: false,
|
|
333
334
|
onChange: value => {
|
|
334
335
|
removedDataSource.setCategoryFilter(value);
|
|
335
336
|
},
|
|
@@ -422,6 +423,7 @@ const TableTransfer = (0, _react().connect)(props => {
|
|
|
422
423
|
width: 360
|
|
423
424
|
}
|
|
424
425
|
}, _react2().default.createElement(_antd().Select, {
|
|
426
|
+
dropdownMatchSelectWidth: false,
|
|
425
427
|
onChange: value => {
|
|
426
428
|
addedDataSource.setCategoryFilter(value);
|
|
427
429
|
},
|
package/package.json
CHANGED
|
@@ -4,13 +4,13 @@
|
|
|
4
4
|
"displayName.zh-CN": "多应用数据共享",
|
|
5
5
|
"description": "multi app share collection",
|
|
6
6
|
"description.zh-CN": "多应用数据共享",
|
|
7
|
-
"version": "0.10.
|
|
7
|
+
"version": "0.10.1-alpha.1",
|
|
8
8
|
"main": "lib/server/index.js",
|
|
9
9
|
"devDependencies": {
|
|
10
|
-
"@nocobase/client": "0.10.
|
|
11
|
-
"@nocobase/plugin-multi-app-manager": "0.10.
|
|
12
|
-
"@nocobase/server": "0.10.
|
|
13
|
-
"@nocobase/test": "0.10.
|
|
10
|
+
"@nocobase/client": "0.10.1-alpha.1",
|
|
11
|
+
"@nocobase/plugin-multi-app-manager": "0.10.1-alpha.1",
|
|
12
|
+
"@nocobase/server": "0.10.1-alpha.1",
|
|
13
|
+
"@nocobase/test": "0.10.1-alpha.1"
|
|
14
14
|
},
|
|
15
|
-
"gitHead": "
|
|
15
|
+
"gitHead": "8f415f5e0ee2e72d681f9ab16af5911b52c374a9"
|
|
16
16
|
}
|
|
@@ -225,6 +225,7 @@ export const TableTransfer = connect((props) => {
|
|
|
225
225
|
<strong style={{ fontSize: 16 }}>{t('Unshared collections')}</strong>
|
|
226
226
|
<Input.Group compact style={{ width: 360 }}>
|
|
227
227
|
<Select
|
|
228
|
+
dropdownMatchSelectWidth={false}
|
|
228
229
|
onChange={(value) => {
|
|
229
230
|
removedDataSource.setCategoryFilter(value);
|
|
230
231
|
}}
|
|
@@ -309,6 +310,7 @@ export const TableTransfer = connect((props) => {
|
|
|
309
310
|
<strong style={{ fontSize: 16 }}>{t('Shared collections')}</strong>
|
|
310
311
|
<Input.Group compact style={{ width: 360 }}>
|
|
311
312
|
<Select
|
|
313
|
+
dropdownMatchSelectWidth={false}
|
|
312
314
|
onChange={(value) => {
|
|
313
315
|
addedDataSource.setCategoryFilter(value);
|
|
314
316
|
}}
|