@innovaccer/design-system 2.13.5 → 2.13.6
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 +40 -1
- package/css/dist/index.css +13 -6
- package/css/dist/index.css.map +1 -1
- package/css/src/components/dropdown.css +0 -4
- package/css/src/components/grid.css +5 -0
- package/css/src/components/inlineMessage.css +8 -2
- package/dist/.lib/tsconfig.type.tsbuildinfo +18 -18
- package/dist/core/components/atoms/metricInput/MetricInput.d.ts +1 -0
- package/dist/core/components/organisms/grid/Grid.d.ts +1 -0
- package/dist/core/components/organisms/grid/rowUtility.d.ts +2 -1
- package/dist/core/components/organisms/grid/utility.d.ts +1 -1
- package/dist/core/components/organisms/table/Header.d.ts +1 -0
- package/dist/core/components/organisms/table/Table.d.ts +1 -0
- package/dist/index.esm.js +91 -49
- package/dist/index.js +100 -59
- package/dist/index.js.map +1 -1
- package/dist/index.umd.js +1 -1
- package/dist/index.umd.js.br +0 -0
- package/dist/index.umd.js.gz +0 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,44 @@
|
|
|
1
1
|
|
|
2
|
-
## 2.13.
|
|
2
|
+
## 2.13.6 (2022-12-07)
|
|
3
|
+
|
|
4
|
+
### Highlights
|
|
5
|
+
|
|
6
|
+
NA
|
|
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(Table): nested row alignment on column drag (1f44df89)
|
|
27
|
+
- fix(dropdown): update height of dropdown on search event (75ef2b3b)
|
|
28
|
+
- feat(table): add option for custom label on row selection (fa1d31a5)
|
|
29
|
+
|
|
30
|
+
### Improvements
|
|
31
|
+
|
|
32
|
+
NA
|
|
33
|
+
|
|
34
|
+
### Documentation
|
|
35
|
+
|
|
36
|
+
- docs(docs): update documentation in breadcrumb component (cca763a9)
|
|
37
|
+
- docs(docs): update documentation in tabs component (3259d2d3)
|
|
38
|
+
|
|
39
|
+
---
|
|
40
|
+
|
|
41
|
+
## 2.13.5 (2022-11-16)
|
|
3
42
|
|
|
4
43
|
### Highlights
|
|
5
44
|
|
package/css/dist/index.css
CHANGED
|
@@ -2303,10 +2303,6 @@ body {
|
|
|
2303
2303
|
border-top: var(--spacing-xs) solid var(--secondary-light);
|
|
2304
2304
|
}
|
|
2305
2305
|
|
|
2306
|
-
.Dropdown-errorWrapper {
|
|
2307
|
-
min-height: var(--spacing-7);
|
|
2308
|
-
}
|
|
2309
|
-
|
|
2310
2306
|
.Dropdown-buttonWrapper {
|
|
2311
2307
|
display: flex;
|
|
2312
2308
|
justify-content: flex-end;
|
|
@@ -3261,6 +3257,11 @@ body {
|
|
|
3261
3257
|
border-right: var(--border);
|
|
3262
3258
|
} */
|
|
3263
3259
|
|
|
3260
|
+
.Grid-row--disabled {
|
|
3261
|
+
opacity: 0.4;
|
|
3262
|
+
pointer-events: none;
|
|
3263
|
+
}
|
|
3264
|
+
|
|
3264
3265
|
.Grid-cell--head.Grid-cell--selected {
|
|
3265
3266
|
background: var(--primary-light);
|
|
3266
3267
|
}
|
|
@@ -3795,10 +3796,16 @@ body {
|
|
|
3795
3796
|
align-items: center;
|
|
3796
3797
|
}
|
|
3797
3798
|
|
|
3798
|
-
.InlineMessage-icon {
|
|
3799
|
-
margin-right: var(--spacing);
|
|
3799
|
+
.InlineMessage-icon--regular {
|
|
3800
3800
|
padding-top: var(--spacing-s);
|
|
3801
3801
|
padding-bottom: var(--spacing-s);
|
|
3802
|
+
margin-right: var(--spacing);
|
|
3803
|
+
}
|
|
3804
|
+
|
|
3805
|
+
.InlineMessage-icon--small {
|
|
3806
|
+
padding-top: var(--spacing-xs);
|
|
3807
|
+
padding-bottom: var(--spacing-xs);
|
|
3808
|
+
margin-right: var(--spacing-m);
|
|
3802
3809
|
}
|
|
3803
3810
|
|
|
3804
3811
|
.InlineMessage-text--warning,
|