@teselagen/ui 0.7.34 → 0.7.35

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.
@@ -29,3 +29,4 @@ export const isBeingCalledExcessively = ({ uniqName }) => {
29
29
  throw new Error(`isBeingCalledExcessively: ${uniqName}`);
30
30
  }
31
31
  };
32
+
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@teselagen/ui",
3
- "version": "0.7.34",
3
+ "version": "0.7.35",
4
4
  "main": "./src/index.js",
5
5
  "type": "module",
6
6
  "exports": {
package/style.css CHANGED
@@ -1,13 +1,29 @@
1
- .tag-select-popover {
2
- padding: 10px;
1
+ /* Copyright (C) 2018 TeselaGen Biotechnology, Inc. */
2
+ .tg-timeline {
3
+ position: relative;
4
+ white-space: nowrap;
3
5
  }
4
6
 
5
- .tag-select-popover-inner {
6
- max-height: 150px;
7
- overflow: auto;
8
- display: grid;
9
- padding-top: 10px;
10
- grid-column-gap: 5px;
11
- row-gap: 8px;
12
- grid-template-columns: max-content max-content;
7
+ .tg-timeline-line {
8
+ position: absolute;
9
+ height: 90%;
10
+ border-left: 2px solid #bfccd6;
11
+ top: 3px;
12
+ left: 5px;
13
+ }
14
+
15
+ .tg-timeline-event {
16
+ margin-bottom: 15px;
17
+ }
18
+
19
+ .tg-timeline-circle {
20
+ width: 12px;
21
+ min-width: 12px;
22
+ height: 12px;
23
+ min-height: 12px;
24
+ z-index: 1;
25
+ margin-right: 10px;
26
+ border-radius: 100px;
27
+ background: #e1e8ed;
28
+ border: 2px solid #137cbd;
13
29
  }