@opencloning/ui 1.1.1 → 1.1.2

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.1.2
4
+
5
+ ### Patch Changes
6
+
7
+ - [#592](https://github.com/manulera/OpenCloning_frontend/pull/592) [`57092ae`](https://github.com/manulera/OpenCloning_frontend/commit/57092ae54d96485e84191d6c20ade9e9a6838a65) Thanks [@manulera](https://github.com/manulera)! - Remove partial overlap option from restriction and ligation overlap, related to https://github.com/manulera/OpenCloning_backend/pull/389
8
+
9
+ - Updated dependencies []:
10
+ - @opencloning/store@1.1.2
11
+ - @opencloning/utils@1.1.2
12
+
3
13
  ## 1.1.1
4
14
 
5
15
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@opencloning/ui",
3
- "version": "1.1.1",
3
+ "version": "1.1.2",
4
4
  "type": "module",
5
5
  "main": "./src/index.js",
6
6
  "scripts": {
@@ -24,8 +24,8 @@
24
24
  "@emotion/styled": "^11.14.0",
25
25
  "@mui/icons-material": "^5.15.17",
26
26
  "@mui/material": "^5.15.17",
27
- "@opencloning/store": "1.1.1",
28
- "@opencloning/utils": "1.1.1",
27
+ "@opencloning/store": "1.1.2",
28
+ "@opencloning/utils": "1.1.2",
29
29
  "@teselagen/bio-parsers": "^0.4.32",
30
30
  "@teselagen/ove": "^0.8.18",
31
31
  "@teselagen/range-utils": "^0.3.13",
@@ -80,7 +80,6 @@ function SourceAssembly({ source, requestStatus, sendPostRequest }) {
80
80
  if (enzymes.length === 0) { return; }
81
81
  requestData.source.restriction_enzymes = enzymes;
82
82
  const config = { params: {
83
- allow_partial_overlap: allowPartialOverlap,
84
83
  circular_only: circularOnly,
85
84
  } };
86
85
  sendPostRequest({ endpoint: 'restriction_and_ligation', requestData, config, source });
@@ -176,7 +175,7 @@ function SourceAssembly({ source, requestStatus, sendPostRequest }) {
176
175
  <FormControlLabel control={<Checkbox checked={circularOnly} onChange={() => setCircularOnly(!circularOnly)} />} label="Circular assemblies only" />
177
176
  </FormControl>
178
177
  )}
179
- { ['RestrictionAndLigationSource', 'LigationSource'].includes(assemblyType) && (
178
+ { ['LigationSource'].includes(assemblyType) && (
180
179
  <FormControl fullWidth style={{ textAlign: 'left' }}>
181
180
  <FormControlLabel control={<Checkbox checked={allowPartialOverlap} onChange={flipAllowPartialOverlap} />} label="Allow partial overlaps" />
182
181
  </FormControl>
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.1.1";
2
+ export const version = "1.1.2";