@innovaccer/design-system 2.42.0 → 2.43.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 +40 -0
- package/css/dist/index.css +10 -2
- package/css/dist/index.css.map +1 -1
- package/css/src/components/button.css +10 -2
- package/dist/.lib/tsconfig.type.tsbuildinfo +2 -2
- package/dist/index.esm.js +8 -7
- package/dist/index.js +8 -7
- 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,3 +1,43 @@
|
|
|
1
|
+
## 2.43.0 (2024-09-11)
|
|
2
|
+
|
|
3
|
+
### Highlights
|
|
4
|
+
|
|
5
|
+
- feat(Button): update spacing of icon with label (6d44f718)
|
|
6
|
+
- docs(browserTitle): add browser tab title documentation (1306e042)
|
|
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(Button): update spacing of icon with label (6d44f718)
|
|
23
|
+
|
|
24
|
+
### Fixes
|
|
25
|
+
|
|
26
|
+
- fix(popover): add check for element in getComputeStyle function (03f016ce)
|
|
27
|
+
|
|
28
|
+
### Improvements
|
|
29
|
+
|
|
30
|
+
NA
|
|
31
|
+
|
|
32
|
+
### Documentation
|
|
33
|
+
|
|
34
|
+
- docs(table): add table selection documentation (73a10d9d)
|
|
35
|
+
- docs(pageHeader): update images for icon with label button in pageHeader documentation (c8d8338d)
|
|
36
|
+
- docs(avatar): update image for square avatar in documentation (fc14cdad)
|
|
37
|
+
- docs(browserTitle): add browser tab title documentation (1306e042)
|
|
38
|
+
|
|
39
|
+
---
|
|
40
|
+
|
|
1
41
|
## 2.42.0 (2024-09-03)
|
|
2
42
|
|
|
3
43
|
### Highlights
|
package/css/dist/index.css
CHANGED
|
@@ -1450,6 +1450,14 @@ body {
|
|
|
1450
1450
|
flex-direction: row-reverse;
|
|
1451
1451
|
}
|
|
1452
1452
|
|
|
1453
|
+
.Button-regularIcon--left {
|
|
1454
|
+
margin-left: calc(-1 * var(--spacing-s));
|
|
1455
|
+
}
|
|
1456
|
+
|
|
1457
|
+
.Button-regularIcon--right {
|
|
1458
|
+
margin-right: calc(-1 * var(--spacing-s));
|
|
1459
|
+
}
|
|
1460
|
+
|
|
1453
1461
|
.Button--tiny {
|
|
1454
1462
|
height: var(--spacing-xl);
|
|
1455
1463
|
padding-right: var(--spacing);
|
|
@@ -1504,11 +1512,11 @@ body {
|
|
|
1504
1512
|
}
|
|
1505
1513
|
|
|
1506
1514
|
.Button-icon--left {
|
|
1507
|
-
margin-right: var(--spacing);
|
|
1515
|
+
margin-right: var(--spacing-0-75);
|
|
1508
1516
|
}
|
|
1509
1517
|
|
|
1510
1518
|
.Button-icon--right {
|
|
1511
|
-
margin-left: var(--spacing);
|
|
1519
|
+
margin-left: var(--spacing-0-75);
|
|
1512
1520
|
}
|
|
1513
1521
|
|
|
1514
1522
|
.Button--tiny .Button-icon--left {
|