@innovaccer/design-system 4.7.0 → 4.8.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,40 @@
1
+ ## 4.8.0 (2025-05-01)
2
+
3
+ ### Highlights
4
+
5
+ - feat(aibutton): update appearance with sparkle variant in AI Button component (f8b613b4)
6
+ - fix(select): update disabled state for select trigger cross icon (c1dbad7f)
7
+
8
+ ### Breaking changes
9
+
10
+ NA
11
+
12
+ ### Migration guide
13
+
14
+ NA
15
+
16
+ ### Deprecations
17
+
18
+ NA
19
+
20
+ ### Features
21
+
22
+ - feat(aibutton): update appearance with sparkle variant in AI Button component (f8b613b4)
23
+
24
+ ### Fixes
25
+
26
+ - fix(select): update disabled state for select trigger cross icon (c1dbad7f)
27
+
28
+ ### Improvements
29
+
30
+ NA
31
+
32
+ ### Documentation
33
+
34
+ NA
35
+
36
+ ---
37
+
1
38
  ## 4.7.0 (2025-04-21)
2
39
 
3
40
  ### Highlights
@@ -6642,7 +6642,6 @@ body {
6642
6642
  -moz-user-select: none;
6643
6643
  user-select: none;
6644
6644
  cursor: pointer;
6645
- color: var(--inverse);
6646
6645
  border-radius: var(--border-radius-full);
6647
6646
  padding: var(--spacing-05);
6648
6647
  }
@@ -8074,62 +8073,47 @@ body {
8074
8073
  line-height: var(--font-height-s);
8075
8074
  display: flex;
8076
8075
  align-items: center;
8077
- }
8078
-
8079
- .AIButton:disabled {
8080
- cursor: not-allowed;
8081
- pointer-events: none;
8082
- }
8083
-
8084
- .AIButton:focus {
8085
- outline: 0;
8086
- }
8087
-
8088
- /* Primary Button */
8089
-
8090
- .AIButton--primary {
8091
- background: var(--primary);
8092
- color: var(--white);
8093
- }
8094
-
8095
- .AIButton--primary:hover {
8096
- background: var(--primary-dark);
8097
- }
8098
-
8099
- .AIButton--primary:active {
8100
- background: var(--primary-darker);
8101
- }
8102
-
8103
- .AIButton--primary:disabled {
8104
- background: var(--primary-lighter);
8105
- }
8106
-
8107
- .AIButton--primary:focus {
8108
- box-shadow: var(--shadow-spread) var(--primary-shadow);
8109
- }
8110
-
8111
- /* Basic Button */
8112
-
8113
- .AIButton--basic {
8114
- background: var(--secondary-light);
8115
8076
  color: var(--inverse);
8077
+ background: linear-gradient(
8078
+ 277deg,
8079
+ rgba(227, 28, 121, 0.15) 0%,
8080
+ rgba(231, 56, 79, 0.24) 28%,
8081
+ rgba(240, 125, 0, 0.15) 100%
8082
+ );
8116
8083
  }
8117
8084
 
8118
- .AIButton--basic:hover {
8119
- background: var(--secondary);
8085
+ .AIButton:hover {
8086
+ background: linear-gradient(
8087
+ 277deg,
8088
+ rgba(227, 28, 121, 0.2) 0%,
8089
+ rgba(231, 56, 79, 0.32) 28%,
8090
+ rgba(240, 125, 0, 0.2) 100%
8091
+ );
8120
8092
  }
8121
8093
 
8122
- .AIButton--basic:active {
8123
- background: var(--secondary-dark);
8094
+ .AIButton:active {
8095
+ background: linear-gradient(
8096
+ 277deg,
8097
+ rgba(227, 28, 121, 0.31) 0%,
8098
+ rgba(231, 56, 79, 0.48) 28%,
8099
+ rgba(240, 125, 0, 0.31) 100%
8100
+ );
8124
8101
  }
8125
8102
 
8126
- .AIButton--basic:disabled {
8127
- background: var(--secondary-lighter);
8128
- color: var(--inverse-lightest);
8103
+ .AIButton:disabled {
8104
+ cursor: not-allowed;
8105
+ opacity: var(--opacity-10);
8106
+ background: linear-gradient(
8107
+ 277deg,
8108
+ rgba(227, 28, 121, 0.15) 0%,
8109
+ rgba(231, 56, 79, 0.24) 28%,
8110
+ rgba(240, 125, 0, 0.15) 100%
8111
+ );
8129
8112
  }
8130
8113
 
8131
- .AIButton--basic:focus {
8132
- box-shadow: var(--shadow-spread) var(--secondary-shadow);
8114
+ .AIButton:focus {
8115
+ outline: 0;
8116
+ box-shadow: var(--shadow-spread) var(--primary-shadow);
8133
8117
  }
8134
8118
 
8135
8119
  /* Button Icon */