@yuneta/gobj-ui 7.19.2 → 7.19.3

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yuneta/gobj-ui",
3
- "version": "7.19.2",
3
+ "version": "7.19.3",
4
4
  "type": "module",
5
5
  "main": "dist/gobj-ui.cjs.js",
6
6
  "module": "dist/gobj-ui.es.js",
package/src/lib_graph.css CHANGED
@@ -42,7 +42,12 @@
42
42
  *
43
43
  * Except what IS there to be read or typed into. The popovers this
44
44
  * gclass appends to the same container carry record data an operator
45
- * may well want to copy, and inputs need a caret.
45
+ * may well want to copy, and inputs need a caret. `g6-node-detail`
46
+ * above all: that one exists ONLY to be read.
47
+ *
48
+ * The list is every class `create_popover_base()` is called with. A
49
+ * new popover that forgets to join it is unreadable in a way nothing
50
+ * reports -- so add it here in the same commit.
46
51
  */
47
52
  .graph-container {
48
53
  -webkit-user-select: none;
@@ -55,7 +60,8 @@
55
60
  .graph-container .g6-confirm-popover,
56
61
  .graph-container .g6-create-popover,
57
62
  .graph-container .g6-node-popover,
58
- .graph-container .g6-edge-popover {
63
+ .graph-container .g6-edge-popover,
64
+ .graph-container .g6-node-detail {
59
65
  -webkit-user-select: text;
60
66
  user-select: text;
61
67
  }