@innovaccer/design-system 4.9.0 → 4.11.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,83 @@
1
+ ## 4.11.0 (2025-07-15)
2
+
3
+ ### Highlights
4
+
5
+ - feat(table): add prop to hide nested row trigger icon in table (0b7c18c9)
6
+ - fix(table): remove extra api call for infinite scroll in table (e150f784)
7
+ - fix(label): update label overflow behaviour (dfa340c2)
8
+
9
+ ### Breaking changes
10
+
11
+ NA
12
+
13
+ ### Migration guide
14
+
15
+ NA
16
+
17
+ ### Deprecations
18
+
19
+ NA
20
+
21
+ ### Features
22
+
23
+ - feat(table): add prop to hide nested row trigger icon in table (0b7c18c9)
24
+
25
+ ### Fixes
26
+
27
+ - fix(table): remove extra api call for infinite scroll in table (e150f784)
28
+ - fix(label): update label overflow behaviour (dfa340c2)
29
+
30
+ ### Improvements
31
+
32
+ NA
33
+
34
+ ### Documentation
35
+
36
+ NA
37
+
38
+ ---
39
+
40
+ ## 4.10.0 (2025-06-25)
41
+
42
+ ### Highlights
43
+
44
+ - feat(table): add highlight search term feature in table (591abcca)
45
+ - fix(table): fix grid head and body sync issue on scroll event (e3255270)
46
+ - fix(select): fix auto position update for select popover (42734e64)
47
+ - fix(select): fix selection state of pre-selected option (f7aca262)
48
+
49
+ ### Breaking changes
50
+
51
+ NA
52
+
53
+ ### Migration guide
54
+
55
+ NA
56
+
57
+ ### Deprecations
58
+
59
+ NA
60
+
61
+ ### Features
62
+
63
+ - feat(table): add highlight search term feature in table (591abcca)
64
+
65
+ ### Fixes
66
+
67
+ - fix(table): fix grid head and body sync issue on scroll event (e3255270)
68
+ - fix(select): fix auto position update for select popover (42734e64)
69
+ - fix(select): fix selection state of pre-selected option (f7aca262)
70
+
71
+ ### Improvements
72
+
73
+ NA
74
+
75
+ ### Documentation
76
+
77
+ NA
78
+
79
+ ---
80
+
1
81
  ## 4.9.0 (2025-06-16)
2
82
 
3
83
  ### Highlights
@@ -691,7 +691,7 @@ body {
691
691
  .Label-text {
692
692
  line-height: var(--font-height-s);
693
693
  font-weight: var(--font-weight-medium);
694
- word-break: break-all;
694
+ word-break: break-word;
695
695
  }
696
696
 
697
697
  .Label-optionalText {
@@ -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
  }