@innovaccer/design-system 4.9.0 → 4.10.0

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/CHANGELOG.md CHANGED
@@ -1,3 +1,44 @@
1
+ ## 4.10.0 (2025-06-25)
2
+
3
+ ### Highlights
4
+
5
+ - feat(table): add highlight search term feature in table (591abcca)
6
+ - fix(table): fix grid head and body sync issue on scroll event (e3255270)
7
+ - fix(select): fix auto position update for select popover (42734e64)
8
+ - fix(select): fix selection state of pre-selected option (f7aca262)
9
+
10
+ ### Breaking changes
11
+
12
+ NA
13
+
14
+ ### Migration guide
15
+
16
+ NA
17
+
18
+ ### Deprecations
19
+
20
+ NA
21
+
22
+ ### Features
23
+
24
+ - feat(table): add highlight search term feature in table (591abcca)
25
+
26
+ ### Fixes
27
+
28
+ - fix(table): fix grid head and body sync issue on scroll event (e3255270)
29
+ - fix(select): fix auto position update for select popover (42734e64)
30
+ - fix(select): fix selection state of pre-selected option (f7aca262)
31
+
32
+ ### Improvements
33
+
34
+ NA
35
+
36
+ ### Documentation
37
+
38
+ NA
39
+
40
+ ---
41
+
1
42
  ## 4.9.0 (2025-06-16)
2
43
 
3
44
  ### Highlights
@@ -4410,7 +4410,7 @@ body {
4410
4410
  align-items: center;
4411
4411
  }
4412
4412
 
4413
- .GridCell-metaList .Text::before {
4413
+ .GridCell-metaSeparator {
4414
4414
  content: '';
4415
4415
  display: inline-flex;
4416
4416
  align-items: center;
@@ -4418,12 +4418,21 @@ body {
4418
4418
  width: var(--spacing-10);
4419
4419
  height: var(--spacing-10);
4420
4420
  border-radius: var(--border-radius-full);
4421
- background: var(--secondary);
4421
+ background: var(--inverse-lightest);
4422
4422
  margin: 0 var(--spacing-20);
4423
4423
  }
4424
4424
 
4425
- .GridCell-metaList .Text:first-child::before {
4426
- display: none;
4425
+ .GridCell-mark--default {
4426
+ background: var(--warning-light);
4427
+ border-radius: var(--border-radius-05);
4428
+ }
4429
+
4430
+ .GridCell-mark--metaList {
4431
+ font-size: var(--font-size-s);
4432
+ line-height: var(--font-height-normal);
4433
+ color: var(--text-subtle);
4434
+ background: var(--warning-light);
4435
+ border-radius: var(--border-radius-05);
4427
4436
  }
4428
4437
 
4429
4438
  .GridCell--metaList ul li:first-child {
@@ -10728,6 +10737,10 @@ body {
10728
10737
  white-space: nowrap;
10729
10738
  }
10730
10739
 
10740
+ .white-space-pre {
10741
+ white-space: pre;
10742
+ }
10743
+
10731
10744
  .bottom-0 {
10732
10745
  bottom: 0;
10733
10746
  }