@innovaccer/design-system 2.22.0 → 2.23.1

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,82 @@
1
+ ## 2.23.1 (2023-10-23)
2
+
3
+ ### Highlights
4
+
5
+ - fix(datepicker): update today date chip's disabled state in datepicker component (6c3e7dc6)
6
+ - fix(Icon): update material symbols classes and codesandbox link for migration from material icons to material symbols (99c20250)
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
+ NA
23
+
24
+ ### Fixes
25
+
26
+ - fix(datepicker): update today date chip's disabled state in datepicker component (6c3e7dc6)
27
+ - fix(Icon): update material symbols classes and codesandbox link for migration from material icons to material symbols (99c20250)
28
+
29
+ ### Improvements
30
+
31
+ NA
32
+
33
+ ### Documentation
34
+
35
+ - docs(docs): update pageheader with back button and spacing guidelines (3d1b8e9f)
36
+
37
+ ---
38
+
39
+ ## 2.23.0 (2023-10-17)
40
+
41
+ ### Highlights
42
+
43
+ - feat(pageheader): add back button option and optimize spacing (cddc4250)
44
+ - fix(icon): update mapping for outlined icon (f979c415)
45
+
46
+ ### Breaking changes
47
+
48
+ NA
49
+
50
+ ### Migration guide
51
+
52
+ NA
53
+
54
+ ### Deprecations
55
+
56
+ NA
57
+
58
+ ### Features
59
+
60
+ - feat(pageheader): add back button option and optimize spacing (cddc4250)
61
+
62
+ ### Fixes
63
+
64
+ - fix(icon): update mapping for outlined icon (f979c415)
65
+ - fix(dropdown): update error state for async dropdown (ebee4c37)
66
+
67
+ ### Improvements
68
+
69
+ NA
70
+
71
+ ### Documentation
72
+
73
+ - docs(docs): update interactions in foundations tab (b5d68681)
74
+ - docs(docs): add email preview image in overview page (e6aa3903)
75
+ - docs(dropdown): add error and empty states guidelines (23921525)
76
+ - docs(docs): add documentation for interactive cards (807e63d9)
77
+
78
+ ---
79
+
1
80
  ## 2.22.0 (2023-09-28)
2
81
 
3
82
  ### Highlights
@@ -24,6 +103,7 @@ NA
24
103
  - feat(card): add selection card component (c88947a8)
25
104
  - feat(Icon): migration to material symbols from material icons (55ea8882)
26
105
  - feat: add iconType prop in components to switch between icon types (16c567a1)
106
+ - feat(dropdown): add error and empty state template in dropdown component (3f84aa6b)
27
107
 
28
108
  ### Fixes
29
109
 
@@ -32,7 +112,6 @@ NA
32
112
  ### Improvements
33
113
 
34
114
  - feat(table): add story for column sorting for number type values (3dc74351)
35
- - feat(dropdown): add error and empty state template in dropdown component (3f84aa6b)
36
115
 
37
116
  ### Documentation
38
117
 
@@ -282,7 +282,7 @@
282
282
  src: url(MaterialSymbolsRounded.woff2) format('woff2');
283
283
  }
284
284
 
285
- .material-icons {
285
+ .material-symbols {
286
286
  font-family: 'Material Symbols Rounded';
287
287
  font-weight: normal;
288
288
  font-style: normal;
@@ -298,12 +298,38 @@
298
298
  -webkit-font-smoothing: antialiased;
299
299
  }
300
300
 
301
- .material-icons-rounded {
302
- font-variation-settings: "FILL" 1, "wght" 300, "GRAD" 0, "opsz" 24;
301
+ .material-symbols-rounded {
302
+ font-variation-settings: 'FILL' 1, 'wght' 300, 'GRAD' 0, 'opsz' 24;
303
+ font-family: 'Material Symbols Rounded';
304
+ font-weight: normal;
305
+ font-style: normal;
306
+ font-size: 24px;
307
+ line-height: 1;
308
+ letter-spacing: normal;
309
+ text-transform: none;
310
+ display: inline-block;
311
+ white-space: nowrap;
312
+ word-wrap: normal;
313
+ direction: ltr;
314
+ -webkit-font-feature-settings: 'liga';
315
+ -webkit-font-smoothing: antialiased;
303
316
  }
304
317
 
305
- .material-icons-outlined {
306
- font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 24;
318
+ .material-symbols-outlined {
319
+ font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
320
+ font-family: 'Material Symbols Rounded';
321
+ font-weight: normal;
322
+ font-style: normal;
323
+ font-size: 24px;
324
+ line-height: 1;
325
+ letter-spacing: normal;
326
+ text-transform: none;
327
+ display: inline-block;
328
+ white-space: nowrap;
329
+ word-wrap: normal;
330
+ direction: ltr;
331
+ -webkit-font-feature-settings: 'liga';
332
+ -webkit-font-smoothing: antialiased;
307
333
  }
308
334
 
309
335
  @-webkit-keyframes fadeIn {
@@ -5066,12 +5092,12 @@ body {
5066
5092
  padding-right: var(--spacing-xl);
5067
5093
  }
5068
5094
 
5069
- .PageHeader-wrapper {
5070
- padding: var(--spacing) var(--spacing-2);
5095
+ .PageHeader {
5096
+ width: 100%;
5071
5097
  }
5072
5098
 
5073
- .PageHeader-wrapper--separator {
5074
- border-bottom: var(--border);
5099
+ .PageHeader-wrapper {
5100
+ padding: var(--spacing) var(--spacing-2) var(--spacing) 0;
5075
5101
  }
5076
5102
 
5077
5103
  .PageHeader-wrapper--withTabs {
@@ -5104,12 +5130,12 @@ body {
5104
5130
  align-items: center;
5105
5131
  }
5106
5132
 
5107
- .PageHeader-statusWrapper .StatusHints {
5133
+ .PageHeader-statusWrapper .StatusHint {
5108
5134
  margin-right: var(--spacing);
5109
5135
  }
5110
5136
 
5111
5137
  .PageHeader-navigationWrapper {
5112
- margin-top: var(--spacing-l);
5138
+ margin-top: var(--spacing-m);
5113
5139
  }
5114
5140
 
5115
5141
  .PageHeader .PageHeader-navigationWrapper {
@@ -5118,6 +5144,7 @@ body {
5118
5144
  margin-top: 0 !important;
5119
5145
  padding-right: var(--spacing);
5120
5146
  padding-left: var(--spacing);
5147
+ display: flex;
5121
5148
  }
5122
5149
 
5123
5150
  .PageHeader-title {