@teselagen/ove 0.7.6 → 0.7.7

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.
@@ -1,7 +1,8 @@
1
- export function RotateCircularViewSlider({ setRotationRadians, zoomLevel, maxZoomLevel, bindOutsideChangeHelper, smallSlider }: {
1
+ export function RotateCircularViewSlider({ setRotationRadians, zoomLevel, maxZoomLevel, bindOutsideChangeHelper, smallSlider, editorName }: {
2
2
  setRotationRadians: any;
3
3
  zoomLevel: any;
4
4
  maxZoomLevel: any;
5
5
  bindOutsideChangeHelper: any;
6
6
  smallSlider: any;
7
+ editorName: any;
7
8
  }): import("react/jsx-runtime").JSX.Element;
package/Menlo.ttf ADDED
Binary file
package/Monaco.ttf ADDED
Binary file
package/README.md CHANGED
@@ -51,7 +51,7 @@ Congrats, you've made it to the repo for Teselagen's Open Source Vector Editor C
51
51
  - [Full Example:](#full-example)
52
52
  - [Code (Universal)](#code-universal)
53
53
  - [Accessing the editor state:](#accessing-the-editor-state)
54
- - [Demo (Universal): http://teselagen.github.io/openVectorEditor/](#demo-universal-httpteselagengithubioopenvectoreditor)
54
+ - [Demo (Universal): https://teselagen.github.io/tg-oss/ove/](#demo-universal-httpsteselagengithubiotg-ossove)
55
55
  - [editorProps](#editorprops)
56
56
  - [editorState](#editorstate)
57
57
  - [Setting Local Storage Persisted Values](#setting-local-storage-persisted-values)
@@ -86,7 +86,7 @@ Congrats, you've made it to the repo for Teselagen's Open Source Vector Editor C
86
86
  This repo follows semantic versioning (major/minor/patche)
87
87
 
88
88
  The commit log can be seen here:
89
- https://github.com/TeselaGen/openVectorEditor/commits/master
89
+ https://github.com/TeselaGen/tg-oss/commits/master/packages/ove
90
90
 
91
91
  Upgrade instructions for any major or minor change can be found here:
92
92
  [Upgrade instructions](UPGRADE_INSTRUCTIONS.md)
@@ -178,7 +178,7 @@ then add the links
178
178
 
179
179
  ```html
180
180
  <link rel="stylesheet" type="text/css" href="your-path-to-node-modules/@teselagen/ove/umd/style.css" />
181
- <script type="text/javascript" src="your-path-to-node-modules/@teselagen/ove/index.umd.js.js"></script>
181
+ <script type="text/javascript" src="your-path-to-node-modules/@teselagen/ove/index.umd.js"></script>
182
182
  ```
183
183
 
184
184
  ### Or via CDN:
@@ -190,8 +190,8 @@ then add the links
190
190
 
191
191
  ### Full Example:
192
192
 
193
- A full example of how to set up the unpkg/UMD demo can be seen here: https://github.com/TeselaGen/openVectorEditor/blob/master/demo/public/UMDDemo.html
194
- Demo here http://teselagen.github.io/openVectorEditor/UMDDemo.html
193
+ A full example of how to set up the unpkg/UMD demo can be seen here: https://github.com/TeselaGen/tg-oss/blob/master/packages/ove/public/UMDDemo.html
194
+ Demo here https://teselagen.github.io/tg-oss/ove/UMDDemo.html
195
195
 
196
196
  ## Code (Universal)
197
197
 
@@ -210,7 +210,7 @@ const currentEditorState = editor.getState();
210
210
  console.info(currentEditorState.selectionLayer);
211
211
  ```
212
212
 
213
- ## Demo (Universal): http://teselagen.github.io/openVectorEditor/
213
+ ## Demo (Universal): https://teselagen.github.io/tg-oss/ove/
214
214
 
215
215
  # editorProps
216
216
 
@@ -434,7 +434,7 @@ They look like this:
434
434
  # Protein Editor
435
435
 
436
436
  OVE can be set up to view and edit proteins (Amino Acid sequences) as first class citizens.
437
- The protein editor can be seen here: http://teselagen.github.io/openVectorEditor/#/Editor?moleculeType=Protein
437
+ The protein editor can be seen here: https://teselagen.github.io/tg-oss/ove/#/Editor?moleculeType=Protein
438
438
 
439
439
  The editor supports Amino Acid sequences as well as DNA sequences!
440
440
  Protein sequence mode is enabled by calling updateEditor with a protein sequenceData object:
@@ -675,7 +675,7 @@ window.createVectorEditor({
675
675
 
676
676
  ## Auto annotate addon:
677
677
 
678
- https://github.com/TeselaGen/openVectorEditor/tree/master/addons/AutoAnnotate
678
+ https://github.com/TeselaGen/tg-oss/blob/master/packages/ove/src/AutoAnnotate.js
679
679
 
680
680
  # Implementing Autosave functionality
681
681