@1771technologies/lytenyte-pro 1.0.19 → 1.0.20

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.
Files changed (2) hide show
  1. package/main.css +16 -4
  2. package/package.json +3 -3
package/main.css CHANGED
@@ -7,6 +7,8 @@
7
7
  --lng1771-primary-70: #053f9e;
8
8
  --lng1771-primary-90: #012259;
9
9
 
10
+ --lng1771-mix-value: black;
11
+
10
12
  --lng1771-row-selected: #d6e4fe;
11
13
  --lng1771-focus-outline: var(--lng1771-primary-50);
12
14
  --lng1771-gradient-shadow: linear-gradient(90deg, var(--lng1771-gray-50), var(--lng1771-gray-50));
@@ -51,6 +53,7 @@
51
53
  --lng1771-primary-70: #004dcc;
52
54
  --lng1771-primary-90: #00307d;
53
55
 
56
+ --lng1771-mix-value: white;
54
57
  --lng1771-row-selected: #1c2b44;
55
58
  --lng1771-focus-outline: var(--lng1771-primary-50);
56
59
 
@@ -87,6 +90,7 @@
87
90
  --lng1771-primary-70: #278177;
88
91
  --lng1771-primary-90: #278177;
89
92
 
93
+ --lng1771-mix-value: white;
90
94
  --lng1771-focus-outline: var(--lng1771-primary-50);
91
95
  --lng1771-row-selected: #192b2d;
92
96
 
@@ -125,6 +129,7 @@
125
129
  --lng1771-cell-font-typeface: var(--lng1771-typeface);
126
130
  --lng1771-menu-item-font-typeface: var(--lng1771-typeface);
127
131
 
132
+ --lng1771-mix-value: white;
128
133
  --lng1771-primary-05: rgba(87, 255, 255, 0.07);
129
134
  --lng1771-primary-10: rgba(87, 255, 255, 0.07);
130
135
  --lng1771-primary-30: rgba(87, 255, 255, 0.3);
@@ -168,7 +173,8 @@
168
173
  --lng1771-primary-70: rgba(240, 48, 230, 1);
169
174
  --lng1771-primary-90: rgba(194, 0, 184, 1);
170
175
 
171
- --lng1771-row-selected: color-mix(in srgb, var(--color-accent) 30%, transparent);
176
+ --lng1771-mix-value: black;
177
+ --lng1771-row-selected: color-mix(in srgb, var(--color-accent) 95%, black 5%);
172
178
  --lng1771-focus-outline: var(--color-primary);
173
179
 
174
180
  --lng1771-gray-00: #cff8ff;
@@ -204,7 +210,8 @@
204
210
  --lng1771-primary-70: color-mix(in srgb, var(--color-accent) 70%, black);
205
211
  --lng1771-primary-90: color-mix(in srgb, var(--color-accent) 90%, black);
206
212
 
207
- --lng1771-row-selected: color-mix(in srgb, var(--color-accent) 30%, transparent);
213
+ --lng1771-mix-value: black;
214
+ --lng1771-row-selected: color-mix(in srgb, var(--color-accent) 95%, black 5%);
208
215
  --lng1771-focus-outline: var(--color-primary);
209
216
 
210
217
  --lng1771-gray-00: var(--color-background);
@@ -240,7 +247,8 @@
240
247
  --lng1771-primary-70: color-mix(in srgb, var(--color-accent) 70%, white);
241
248
  --lng1771-primary-90: color-mix(in srgb, var(--color-accent) 90%, white);
242
249
 
243
- --lng1771-row-selected: color-mix(in srgb, var(--color-accent) 30%, transparent);
250
+ --lng1771-mix-value: white;
251
+ --lng1771-row-selected: color-mix(in srgb, var(--color-accent) 95%, white 5%);
244
252
  --lng1771-focus-outline: var(--color-primary);
245
253
 
246
254
  --lng1771-gray-00: var(--color-background);
@@ -324,7 +332,11 @@
324
332
  background-color: var(--lng1771-gray-10);
325
333
  }
326
334
  [data-ln-row-selected="true"][data-ln-row="true"]:hover [data-ln-cell="true"] {
327
- background-color: var(--lng1771-primary-30);
335
+ background-color: color-mix(
336
+ in srgb,
337
+ var(--lng1771-row-selected) 95%,
338
+ var(--lng1771-mix-value) 5%
339
+ );
328
340
  }
329
341
  [data-ln-rowtype="full-width"][data-ln-row="true"] > div:hover {
330
342
  background-color: var(--lng1771-gray-10);
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@1771technologies/lytenyte-pro",
3
3
  "description": "Blazingly fast headless React data grid with 100s of features.",
4
- "version": "1.0.19",
4
+ "version": "1.0.20",
5
5
  "type": "module",
6
6
  "license": "COMMERCIAL",
7
7
  "files": [
@@ -48,8 +48,8 @@
48
48
  "access": "public"
49
49
  },
50
50
  "dependencies": {
51
- "@1771technologies/lytenyte-shared": "1.0.19",
52
- "@1771technologies/lytenyte-core": "1.0.19"
51
+ "@1771technologies/lytenyte-core": "1.0.20",
52
+ "@1771technologies/lytenyte-shared": "1.0.20"
53
53
  },
54
54
  "peerDependencies": {
55
55
  "react": "^18.0.0 || ^19.0.0",