@nivaro/react 0.1.82 → 0.1.84

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": "@nivaro/react",
3
- "version": "0.1.82",
3
+ "version": "0.1.84",
4
4
  "description": "React hooks and components for Nivaro CMS forms",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
package/styles.css CHANGED
@@ -122,3 +122,13 @@ table {
122
122
  background: linear-gradient(90deg, hsl(220 10% 16%) 25%, hsl(220 8% 21%) 50%, hsl(220 10% 16%) 75%);
123
123
  background-size: 200% 100%;
124
124
  }
125
+
126
+ /* Line-comment "bring me to the line" flash — a note's link scrolls the grid
127
+ row into view and pulses it. */
128
+ @keyframes nvr-row-flash-kf {
129
+ 0%, 60% { background-color: rgb(var(--nvr-cyan-rgb) / 0.18); }
130
+ 100% { background-color: transparent; }
131
+ }
132
+ tr.nvr-row-flash > td {
133
+ animation: nvr-row-flash-kf 2.4s ease-out;
134
+ }