@opencloning/ui 1.4.8 → 1.4.9

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/CHANGELOG.md CHANGED
@@ -1,5 +1,15 @@
1
1
  # @opencloning/ui
2
2
 
3
+ ## 1.4.9
4
+
5
+ ### Patch Changes
6
+
7
+ - [#640](https://github.com/manulera/OpenCloning_frontend/pull/640) [`2a8015b`](https://github.com/manulera/OpenCloning_frontend/commit/2a8015b63534c56dc7a7ae38b5fab7f14db1262d) Thanks [@manulera](https://github.com/manulera)! - Improve width of assembler plasmids dropdowns
8
+
9
+ - Updated dependencies []:
10
+ - @opencloning/store@1.4.9
11
+ - @opencloning/utils@1.4.9
12
+
3
13
  ## 1.4.8
4
14
 
5
15
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@opencloning/ui",
3
- "version": "1.4.8",
3
+ "version": "1.4.9",
4
4
  "type": "module",
5
5
  "main": "./src/index.js",
6
6
  "scripts": {
@@ -25,8 +25,8 @@
25
25
  "@emotion/styled": "^11.14.0",
26
26
  "@mui/icons-material": "^5.15.17",
27
27
  "@mui/material": "^5.15.17",
28
- "@opencloning/store": "1.4.8",
29
- "@opencloning/utils": "1.4.8",
28
+ "@opencloning/store": "1.4.9",
29
+ "@opencloning/utils": "1.4.9",
30
30
  "@teselagen/bio-parsers": "^0.4.34",
31
31
  "@teselagen/ove": "^0.8.34",
32
32
  "@teselagen/range-utils": "^0.3.20",
@@ -105,6 +105,11 @@ function AssemblerBox({ item, index, setCategory, setId, categories, plasmids, a
105
105
  options={allowedPlasmids.map((item) => item.id)}
106
106
  getOptionLabel={(id) => formatItemName(plasmids.find((d) => d.id === id))}
107
107
  renderInput={(params) => <TextField {...params} label="Plasmids" />}
108
+ componentsProps={{
109
+ popper: {
110
+ sx: { minWidth: 'max-content' },
111
+ },
112
+ }}
108
113
  renderOption={(props, option) => {
109
114
  const { key, ...restProps } = props
110
115
  const plasmid = plasmids.find((d) => d.id === option)
package/src/version.js CHANGED
@@ -1,2 +1,2 @@
1
1
  // Version placeholder - replaced at publish time via prepack script
2
- export const version = "1.4.8";
2
+ export const version = "1.4.9";