@innovaccer/design-system 2.13.6 → 2.14.0-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 +51 -0
- package/css/dist/index.css +15 -0
- package/css/dist/index.css.map +1 -1
- package/css/src/components/breadcrumbs.css +12 -0
- package/css/src/components/link.css +3 -0
- package/dist/.lib/tsconfig.type.tsbuildinfo +3040 -1804
- package/dist/core/components/atoms/_chip/index.d.ts +2 -1
- package/dist/core/components/atoms/breadcrumbs/Breadcrumbs.d.ts +1 -0
- package/dist/core/components/atoms/chip/Chip.d.ts +3 -2
- package/dist/core/components/atoms/dropdown/utility.d.ts +1 -1
- package/dist/core/utils/backdropHelper.d.ts +2 -0
- package/dist/index.esm.js +185 -57
- package/dist/index.js +183 -62
- 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 +11 -11
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,54 @@
|
|
|
1
|
+
## 2.14.0-0 (2023-01-02)
|
|
2
|
+
|
|
3
|
+
### Highlights
|
|
4
|
+
|
|
5
|
+
- docs(site): tabs on page stick under top navigation bar while scrolling the page, which provides ability to switch tabs quickly. (f00e7669) (0a7bdafc)
|
|
6
|
+
- docs(stories): 50% of the stories containig a style tag in example code are refactored to use utility css or custom css.
|
|
7
|
+
- fix(security): fixes done to achieve better secure packages.
|
|
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(breadcrumb): add capability to truncate long labels (dfabc05f)
|
|
23
|
+
- feat(chip): add capability to customize chip labels (d9a55db1)
|
|
24
|
+
|
|
25
|
+
### Fixes
|
|
26
|
+
- fix(workflow): remove redundent storybook build stage to reduce pipeline build time on Pull requests. (ba03e645)
|
|
27
|
+
- fix(storybook): fix style of prop table for storybook docs page. (e411d5ec)
|
|
28
|
+
- fix(security): upgrade version of dependencies for security (2e84cfe5)
|
|
29
|
+
- fix(security): actions/check-release-commit/package.json & actions/check-release-commit/package-lock.json to reduce vulnerabilities (b117bbb7)
|
|
30
|
+
- fix(dropdown): disable action buttons on option loading state (5e5b4858)
|
|
31
|
+
- fix(link): update link style to avoid flickering issue (12f60c5f)
|
|
32
|
+
- fix(popover, sidesheet, modal): fix layering of nested components (45a702a9) (6b1a1138) (aa59e294)
|
|
33
|
+
- fix(choiceList): update spacing between label and choices (500d6567)
|
|
34
|
+
|
|
35
|
+
### Improvements
|
|
36
|
+
|
|
37
|
+
- test(docs): add E2E testing for components page on documentation site. (2d5a43cf)
|
|
38
|
+
|
|
39
|
+
### Documentation
|
|
40
|
+
- fix(stories): remove all the style tags used in stories and use utility classnames or custom styling through css file. (card, grid, list, message, avatarGroup, emptyState, button, text, collapsible, table, checkbox, modal, pagination, placeholder, calendar, dateRangePicker, popover) (c7c69b9d) (e3bcd647) (3f0e6a5e) (148635dd) (16afbfaf) (059ca284) (ff3eb78c) (a5159319) (517314c8) (3b96d9a0) (53bb1ed8) (cd76e0e4) (311c5db0) (9b84365f) (bff9b690) (c37982c5) (69d910c0)
|
|
41
|
+
- docs(docs): remove irrelevant images from email in patterns (b1f7e98f)
|
|
42
|
+
- docs(docs): add email in patterns tab (af0b5279)
|
|
43
|
+
- docs(backdrop): add trigger button to show backdrop in story (2b5a8cc8)
|
|
44
|
+
- docs(dropdown): update description of fetchOptions prop in proptable (b75d502f)
|
|
45
|
+
- docs(docs): update layout documnetation in foundations (43958e11)
|
|
46
|
+
- docs(dropzone): update format label as per the accept prop in stories (fb6d4f43)
|
|
47
|
+
- docs(docs): update image in states page of doc site (f56dba13)
|
|
48
|
+
- docs(docs): update images in inline editable fields component (1b0f206f)
|
|
49
|
+
- docs(site): pinning tabs on the top while scrolling (f00e7669) (0a7bdafc)
|
|
50
|
+
|
|
51
|
+
---
|
|
1
52
|
|
|
2
53
|
## 2.13.6 (2022-12-07)
|
|
3
54
|
|
package/css/dist/index.css
CHANGED
|
@@ -1131,6 +1131,18 @@ body {
|
|
|
1131
1131
|
|
|
1132
1132
|
.Breadcrumbs-link {
|
|
1133
1133
|
margin: var(--spacing-m);
|
|
1134
|
+
/* 160px */
|
|
1135
|
+
max-width: calc(var(--spacing-2) * 10);
|
|
1136
|
+
line-height: var(--font-height);
|
|
1137
|
+
color: var(--inverse-lighter);
|
|
1138
|
+
}
|
|
1139
|
+
|
|
1140
|
+
.Breadcrumbs-link:hover {
|
|
1141
|
+
color: var(--inverse-light);
|
|
1142
|
+
}
|
|
1143
|
+
|
|
1144
|
+
.Breadcrumbs-link:active {
|
|
1145
|
+
color: var(--inverse);
|
|
1134
1146
|
}
|
|
1135
1147
|
|
|
1136
1148
|
.Breadcrumbs-item:first-child .Breadcrumbs-link {
|
|
@@ -3979,6 +3991,7 @@ body {
|
|
|
3979
3991
|
text-decoration: none;
|
|
3980
3992
|
font-weight: var(--font-weight-medium);
|
|
3981
3993
|
transition: var(--duration--fast-01) var(--standard-productive-curve);
|
|
3994
|
+
box-sizing: border-box;
|
|
3982
3995
|
}
|
|
3983
3996
|
|
|
3984
3997
|
.Link:focus-visible {
|
|
@@ -3987,10 +4000,12 @@ body {
|
|
|
3987
4000
|
|
|
3988
4001
|
.Link--regular {
|
|
3989
4002
|
font-size: var(--font-size);
|
|
4003
|
+
height: var(--font-size-l);
|
|
3990
4004
|
}
|
|
3991
4005
|
|
|
3992
4006
|
.Link--tiny {
|
|
3993
4007
|
font-size: var(--font-size-s);
|
|
4008
|
+
height: var(--font-size-m);
|
|
3994
4009
|
}
|
|
3995
4010
|
|
|
3996
4011
|
.Link--default {
|