@innovaccer/design-system 3.2.0 → 3.4.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,95 @@
1
+ ## 3.4.0 (2024-11-18)
2
+
3
+ ### Highlights
4
+
5
+ - feat(progressBar): update small size from 2px to 4px (c5ed8a80)
6
+ - feat(progressRing): add large size support in progress ring component (2da8320b)
7
+ - feat(spinner): add extra small size for spinner (16ab49ff)
8
+ - feat(scrollbar): update scrollbar state (ca53ef74)
9
+ - feat(spinner): add secondary and white appearances (c1730ed5)
10
+ - feat(spinner): update figma code connect for extra small size of spinner (e4bdbb0f)
11
+
12
+ ### Breaking changes
13
+
14
+ - feat(progressBar): update small size from 2px to 4px (c5ed8a80)
15
+ - feat(scrollbar): update scrollbar state (ca53ef74)
16
+ - Revert "fix(table): fix selection state of resource table" (fc4f1739)
17
+
18
+ ### Migration guide
19
+
20
+ NA
21
+
22
+ ### Deprecations
23
+
24
+ NA
25
+
26
+ ### Features
27
+
28
+ - feat(progressBar): update small size from 2px to 4px (c5ed8a80)
29
+ - feat(progressRing): add large size support in progress ring component (2da8320b)
30
+ - feat(spinner): add extra small size for spinner (16ab49ff)
31
+ - feat(scrollbar): update scrollbar state (ca53ef74)
32
+ - feat(spinner): add secondary and white appearances (c1730ed5)
33
+ - feat(spinner): update figma code connect for extra small size of spinner (e4bdbb0f)
34
+
35
+ ### Fixes
36
+
37
+ - fix(docs): update active state for leftnav menu item (c07b00a3)
38
+ - fix(docs): synchronize active tab state with URL to prevent mismatch after navigation (c5bd00d8)
39
+ - Revert "fix(table): fix selection state of resource table" (fc4f1739)
40
+
41
+ ### Improvements
42
+
43
+ - fix(modal): update story of Modal component and replace Dropdown with Select component (60c93bb8)
44
+ - fix(Table): update stories of Resource table component and replace Dropdown with Menu component (95775d34)
45
+ - fix(HorizontalNav): update stories of HorizontalNav component and replace Dropdown with Select component (e6b9cfb8)
46
+ - fix(pageheader): replace dropdown with Menu component in Pageheader stories (dad8ae1d)
47
+ - chore: remove jira automation workflow for github issues (6b5ebb8e)
48
+
49
+ ### Documentation
50
+
51
+ - docs(docs): update progress indicator documentation (2788f9d5)
52
+
53
+ ---
54
+
55
+ ## 3.3.0 (2024-11-04)
56
+
57
+ ### Highlights
58
+
59
+ - fix(table): fix selection state of resource table (9e9fb824)
60
+ - fix(docs): remove js-beautify dependency (8e6cbac0)
61
+
62
+ ### Breaking changes
63
+
64
+ NA
65
+
66
+ ### Migration guide
67
+
68
+ NA
69
+
70
+ ### Deprecations
71
+
72
+ NA
73
+
74
+ ### Features
75
+
76
+ NA
77
+
78
+ ### Fixes
79
+
80
+ - fix(table): fix selection state of resource table (9e9fb824)
81
+ - fix(docs): remove js-beautify dependency (8e6cbac0)
82
+
83
+ ### Improvements
84
+
85
+ NA
86
+
87
+ ### Documentation
88
+
89
+ NA
90
+
91
+ ---
92
+
1
93
  ## 3.2.0 (2024-10-17)
2
94
 
3
95
  ### Highlights
@@ -705,14 +705,26 @@ body {
705
705
  }
706
706
 
707
707
  ::-webkit-scrollbar {
708
- width: var(--spacing-2);
708
+ width: 16px;
709
709
  }
710
710
 
711
711
  ::-webkit-scrollbar-thumb {
712
- border: var(--spacing-s) solid rgba(0, 0, 0, 0);
713
- background-clip: padding-box;
714
- border-radius: var(--spacing);
715
- background-color: var(--secondary);
712
+ background: #c5c5c5;
713
+ border-radius: 8px;
714
+ border: 2px solid transparent;
715
+ background-clip: content-box;
716
+ }
717
+
718
+ ::-webkit-scrollbar-thumb:hover {
719
+ background: #a6a6a6;
720
+ border: 2px solid transparent;
721
+ background-clip: content-box;
722
+ }
723
+
724
+ ::-webkit-scrollbar-thumb:active {
725
+ background: #707070;
726
+ border: 2px solid transparent;
727
+ background-clip: content-box;
716
728
  }
717
729
 
718
730
  .Legend {
@@ -741,7 +753,7 @@ body {
741
753
  }
742
754
 
743
755
  .ProgressBar-indicator--small {
744
- height: var(--spacing-s);
756
+ height: var(--spacing-m);
745
757
  }
746
758
 
747
759
  .ProgressBar-indicator--regular {
@@ -1511,16 +1523,6 @@ body {
1511
1523
  z-index: 1;
1512
1524
  }
1513
1525
 
1514
- .Button--tiny .Spinner--small {
1515
- height: var(--font-size-s);
1516
- width: var(--font-size-s);
1517
- }
1518
-
1519
- .Button--large .Spinner--small {
1520
- height: var(--font-size-l);
1521
- width: var(--font-size-l);
1522
- }
1523
-
1524
1526
  .Button--selected {
1525
1527
  background: var(--primary-lightest);
1526
1528
  color: var(--primary-dark);
@@ -5696,14 +5698,19 @@ body {
5696
5698
  transform: rotate(-90deg);
5697
5699
  }
5698
5700
 
5701
+ .Ring--small {
5702
+ height: var(--spacing-2);
5703
+ width: var(--spacing-2);
5704
+ }
5705
+
5699
5706
  .Ring--regular {
5700
5707
  height: var(--spacing-3);
5701
5708
  width: var(--spacing-3);
5702
5709
  }
5703
5710
 
5704
- .Ring--small {
5705
- height: var(--spacing-2);
5706
- width: var(--spacing-2);
5711
+ .Ring--large {
5712
+ height: var(--spacing-4);
5713
+ width: var(--spacing-4);
5707
5714
  }
5708
5715
 
5709
5716
  .Ring Circle {
@@ -6432,6 +6439,11 @@ body {
6432
6439
  animation: rotate 2s linear infinite;
6433
6440
  }
6434
6441
 
6442
+ .Spinner--xsmall {
6443
+ height: var(--spacing-l);
6444
+ width: var(--spacing-l);
6445
+ }
6446
+
6435
6447
  .Spinner--small {
6436
6448
  height: var(--spacing-2);
6437
6449
  width: var(--spacing-2);
@@ -6459,11 +6471,11 @@ body {
6459
6471
  }
6460
6472
 
6461
6473
  .Circle--secondary {
6462
- stroke: var(--primary);
6474
+ stroke: var(--secondary-dark);
6463
6475
  }
6464
6476
 
6465
6477
  .Circle--white {
6466
- stroke: var(--primary);
6478
+ stroke: var(--white);
6467
6479
  }
6468
6480
 
6469
6481
  .StatusHint {