@innovaccer/design-system 2.18.0 → 2.19.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,43 @@
1
+ ## 2.19.0 (2023-08-25)
2
+
3
+ ### Highlights
4
+
5
+ - style(text): add text alignment css classes (f64a919)
6
+ - feat(timepicker): add error state support for timepicker (9b1078a5)
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
+ - style(text): add text alignment css classes (f64a919)
23
+ - feat(timepicker): add error state support for timepicker (9b1078a5)
24
+
25
+ ### Fixes
26
+
27
+ - fix(chipInput): update chipInput background of hover state (e330274)
28
+ - fix(toast): fix height of toast action icon (e73b5ef4)
29
+ - fix(toast): fix toast right icon spacing (bd9cfdb5)
30
+
31
+ ### Improvements
32
+
33
+ - fix(packages): update package-lock file (2b05ef23)
34
+
35
+ ### Documentation
36
+
37
+ - docs(toast): add usage guidelines for overuse and actions of toast (645be26)
38
+
39
+ ---
40
+
1
41
  ## 2.18.0 (2023-08-08)
2
42
 
3
43
  ### Highlights
@@ -2291,8 +2291,14 @@ body {
2291
2291
  outline: var(--spacing-xs) var(--primary);
2292
2292
  }
2293
2293
 
2294
+ .ChipInput:hover {
2295
+ background: var(--secondary-lighter);
2296
+ border-color: var(--secondary-dark);
2297
+ }
2298
+
2294
2299
  .ChipInput:focus-within {
2295
2300
  box-shadow: inset 0 0 0 var(--spacing-xs) var(--primary);
2301
+ background: var(--white);
2296
2302
  }
2297
2303
 
2298
2304
  .ChipInput--disabled {
@@ -2332,6 +2338,14 @@ body {
2332
2338
  font-size: var(--font-size);
2333
2339
  }
2334
2340
 
2341
+ .ChipInput:hover .ChipInput-input {
2342
+ background: var(--secondary-lighter);
2343
+ }
2344
+
2345
+ .ChipInput:focus-within .ChipInput-input {
2346
+ background: var(--white);
2347
+ }
2348
+
2335
2349
  .ChipInput-icon {
2336
2350
  height: var(--spacing-2);
2337
2351
  padding: var(--spacing-s);
@@ -6557,6 +6571,8 @@ body {
6557
6571
  align-items: center;
6558
6572
  padding-right: var(--spacing-m);
6559
6573
  padding-left: var(--spacing-m);
6574
+ height: var(--spacing-xl);
6575
+ box-sizing: initial;
6560
6576
  }
6561
6577
 
6562
6578
  .Toast-icon--info,
@@ -8851,6 +8867,30 @@ body {
8851
8867
  padding-left: auto !important;
8852
8868
  }
8853
8869
 
8870
+ .text-align-start {
8871
+ text-align: start !important;
8872
+ }
8873
+
8874
+ .text-align-end {
8875
+ text-align: end !important;
8876
+ }
8877
+
8878
+ .text-align-center {
8879
+ text-align: center !important;
8880
+ }
8881
+
8882
+ .text-align-justify {
8883
+ text-align: justify !important;
8884
+ }
8885
+
8886
+ .text-align-left {
8887
+ text-align: left !important;
8888
+ }
8889
+
8890
+ .text-align-right {
8891
+ text-align: right !important;
8892
+ }
8893
+
8854
8894
  .color-white {
8855
8895
  color: var(--white);
8856
8896
  }