@innovaccer/design-system 2.13.6 → 2.14.1-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 +98 -0
- package/css/dist/index.css +57 -6
- package/css/dist/index.css.map +1 -1
- package/css/src/components/breadcrumbs.css +12 -0
- package/css/src/components/button.css +3 -2
- package/css/src/components/dropdown.css +7 -1
- package/css/src/components/grid.css +2 -2
- package/css/src/components/horizontalNav.css +6 -1
- package/css/src/components/link.css +3 -0
- package/css/src/utils/sizing.css +24 -0
- package/dist/.lib/tsconfig.type.tsbuildinfo +3047 -1811
- 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/core/utils/navigationHelper.d.ts +1 -0
- package/dist/index.esm.js +207 -77
- package/dist/index.js +205 -82
- 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,101 @@
|
|
|
1
|
+
## 2.14.1-0 (2023-01-18)
|
|
2
|
+
|
|
3
|
+
### Highlights
|
|
4
|
+
|
|
5
|
+
- feat(sizing): add classes of height and width (c6f8a266)
|
|
6
|
+
- docs(stories): 50% of the stories containing 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 in docs site. (ac4f6ccf)
|
|
8
|
+
|
|
9
|
+
### Breaking changes
|
|
10
|
+
|
|
11
|
+
NA
|
|
12
|
+
|
|
13
|
+
### Migration guide
|
|
14
|
+
|
|
15
|
+
NA
|
|
16
|
+
|
|
17
|
+
### Deprecations
|
|
18
|
+
|
|
19
|
+
- chore(navigation): deprecate navigation component (b3d39694)
|
|
20
|
+
|
|
21
|
+
### Features
|
|
22
|
+
|
|
23
|
+
- feat(sizing): add classes of height and width (c6f8a266)
|
|
24
|
+
|
|
25
|
+
### Fixes
|
|
26
|
+
|
|
27
|
+
- fix(dropdown): update callback function call on selected value in menu variant (56e94168)
|
|
28
|
+
- fix(tabs): center alignment of icons in tabs (46cc2be5)
|
|
29
|
+
- fix(grid): update zIndex of pinned column (53a026cc)
|
|
30
|
+
- fix(datepicker): update snapshots for current date (ef159f3f)
|
|
31
|
+
|
|
32
|
+
### Improvements
|
|
33
|
+
|
|
34
|
+
- fix(horizontalNav): update active state of selected nav item (3e3dbc6e)
|
|
35
|
+
- fix(dropdown): update state of dropdown option (4ea89199)
|
|
36
|
+
- fix(button): update active state of selected button (a663621c)
|
|
37
|
+
- fix(security): fix vulnerability in docs site (ac4f6ccf)
|
|
38
|
+
- fix(actions): add test job for docs site after deployment (8d6bbe31)
|
|
39
|
+
- fix(actions): move test job to release workflow (cb5e102f)
|
|
40
|
+
|
|
41
|
+
### Documentation
|
|
42
|
+
|
|
43
|
+
- docs(docs): update documentation for forms (6d18cf63)
|
|
44
|
+
- fix(stories): remove all the style tags used in stories and use utility classnames or custom styling through css file. (table, popover, dropdown, metricInput, editableInput, pageHeader, editableDropdown, chipInput, textarea, icon, verticalNav, horizontalNav, fullScreenModal, editableChipInput, placeholderImage, outsideClick, input) (92c90326), (31c4193b), (5093578c), (31321607), (70cdce77), (a560bf1c), (aa29e6b4), (2ae42136), (0534ba66), (82171633), (e9ab9446), (314bf858), (2741559e), (4c946538), (aa6b63da), (fc9b4892), (bee675c7)
|
|
45
|
+
|
|
46
|
+
---
|
|
47
|
+
|
|
48
|
+
## 2.14.0-0 (2023-01-02)
|
|
49
|
+
|
|
50
|
+
### Highlights
|
|
51
|
+
|
|
52
|
+
- docs(site): tabs on page stick under top navigation bar while scrolling the page, which provides ability to switch tabs quickly. (f00e7669) (0a7bdafc)
|
|
53
|
+
- docs(stories): 50% of the stories containing a style tag in example code are refactored to use utility css or custom css.
|
|
54
|
+
- fix(security): fixes done to achieve better secure packages.
|
|
55
|
+
### Breaking changes
|
|
56
|
+
|
|
57
|
+
NA
|
|
58
|
+
|
|
59
|
+
### Migration guide
|
|
60
|
+
|
|
61
|
+
NA
|
|
62
|
+
|
|
63
|
+
### Deprecations
|
|
64
|
+
|
|
65
|
+
NA
|
|
66
|
+
|
|
67
|
+
### Features
|
|
68
|
+
|
|
69
|
+
- feat(breadcrumb): add capability to truncate long labels (dfabc05f)
|
|
70
|
+
- feat(chip): add capability to customize chip labels (d9a55db1)
|
|
71
|
+
|
|
72
|
+
### Fixes
|
|
73
|
+
- fix(workflow): remove redundant storybook build stage to reduce pipeline build time on Pull requests. (ba03e645)
|
|
74
|
+
- fix(storybook): fix style of prop table for storybook docs page. (e411d5ec)
|
|
75
|
+
- fix(security): upgrade version of dependencies for security (2e84cfe5)
|
|
76
|
+
- fix(security): actions/check-release-commit/package.json & actions/check-release-commit/package-lock.json to reduce vulnerabilities (b117bbb7)
|
|
77
|
+
- fix(dropdown): disable action buttons on option loading state (5e5b4858)
|
|
78
|
+
- fix(link): update link style to avoid flickering issue (12f60c5f)
|
|
79
|
+
- fix(popover, sidesheet, modal): fix layering of nested components (45a702a9) (6b1a1138) (aa59e294)
|
|
80
|
+
- fix(choiceList): update spacing between label and choices (500d6567)
|
|
81
|
+
|
|
82
|
+
### Improvements
|
|
83
|
+
|
|
84
|
+
- test(docs): add E2E testing for components page on documentation site. (2d5a43cf)
|
|
85
|
+
|
|
86
|
+
### Documentation
|
|
87
|
+
- 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)
|
|
88
|
+
- docs(docs): remove irrelevant images from email in patterns (b1f7e98f)
|
|
89
|
+
- docs(docs): add email in patterns tab (af0b5279)
|
|
90
|
+
- docs(backdrop): add trigger button to show backdrop in story (2b5a8cc8)
|
|
91
|
+
- docs(dropdown): update description of fetchOptions prop in proptable (b75d502f)
|
|
92
|
+
- docs(docs): update layout documnetation in foundations (43958e11)
|
|
93
|
+
- docs(dropzone): update format label as per the accept prop in stories (fb6d4f43)
|
|
94
|
+
- docs(docs): update image in states page of doc site (f56dba13)
|
|
95
|
+
- docs(docs): update images in inline editable fields component (1b0f206f)
|
|
96
|
+
- docs(site): pinning tabs on the top while scrolling (f00e7669) (0a7bdafc)
|
|
97
|
+
|
|
98
|
+
---
|
|
1
99
|
|
|
2
100
|
## 2.13.6 (2022-12-07)
|
|
3
101
|
|
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 {
|
|
@@ -1398,7 +1410,8 @@ body {
|
|
|
1398
1410
|
}
|
|
1399
1411
|
|
|
1400
1412
|
.Button--selected:active {
|
|
1401
|
-
background: var(--primary-
|
|
1413
|
+
background: var(--primary-lighter);
|
|
1414
|
+
color: var(--primary-darker);
|
|
1402
1415
|
}
|
|
1403
1416
|
|
|
1404
1417
|
.Button--selected:focus {
|
|
@@ -1407,7 +1420,7 @@ body {
|
|
|
1407
1420
|
}
|
|
1408
1421
|
|
|
1409
1422
|
.Button--selected:focus:active {
|
|
1410
|
-
background: var(--primary-
|
|
1423
|
+
background: var(--primary-lighter);
|
|
1411
1424
|
}
|
|
1412
1425
|
|
|
1413
1426
|
.Button--selected:disabled {
|
|
@@ -2381,7 +2394,13 @@ body {
|
|
|
2381
2394
|
}
|
|
2382
2395
|
|
|
2383
2396
|
.Option--selected:active {
|
|
2384
|
-
background-color: var(--primary-
|
|
2397
|
+
background-color: var(--primary-lighter);
|
|
2398
|
+
color: var(--primary-darker);
|
|
2399
|
+
}
|
|
2400
|
+
|
|
2401
|
+
.Option--selected:active .Option-text,
|
|
2402
|
+
.Option--selected:active .Option-subInfo {
|
|
2403
|
+
color: var(--primary-darker);
|
|
2385
2404
|
}
|
|
2386
2405
|
|
|
2387
2406
|
.Option--disabled,
|
|
@@ -3065,7 +3084,7 @@ body {
|
|
|
3065
3084
|
.Grid--pinned {
|
|
3066
3085
|
position: absolute;
|
|
3067
3086
|
height: 100%;
|
|
3068
|
-
z-index:
|
|
3087
|
+
z-index: 5;
|
|
3069
3088
|
overflow-x: hidden;
|
|
3070
3089
|
-ms-overflow-style: none;
|
|
3071
3090
|
border-right: 3px solid var(--secondary);
|
|
@@ -3345,7 +3364,7 @@ body {
|
|
|
3345
3364
|
.Grid-cellGroup--pinned {
|
|
3346
3365
|
position: -webkit-sticky;
|
|
3347
3366
|
position: sticky;
|
|
3348
|
-
z-index:
|
|
3367
|
+
z-index: 4;
|
|
3349
3368
|
}
|
|
3350
3369
|
|
|
3351
3370
|
.Grid-cellGroup--pinned-left {
|
|
@@ -3606,7 +3625,12 @@ body {
|
|
|
3606
3625
|
}
|
|
3607
3626
|
|
|
3608
3627
|
.HorizontalNav-menu--active:active {
|
|
3609
|
-
background-color: var(--primary-
|
|
3628
|
+
background-color: var(--primary-lighter);
|
|
3629
|
+
color: var(--primary-darker);
|
|
3630
|
+
}
|
|
3631
|
+
|
|
3632
|
+
.HorizontalNav-menu--active:active .HorizontalNav-menuText {
|
|
3633
|
+
color: var(--primary-darker);
|
|
3610
3634
|
}
|
|
3611
3635
|
|
|
3612
3636
|
.HorizontalNav-menuText {
|
|
@@ -3979,6 +4003,7 @@ body {
|
|
|
3979
4003
|
text-decoration: none;
|
|
3980
4004
|
font-weight: var(--font-weight-medium);
|
|
3981
4005
|
transition: var(--duration--fast-01) var(--standard-productive-curve);
|
|
4006
|
+
box-sizing: border-box;
|
|
3982
4007
|
}
|
|
3983
4008
|
|
|
3984
4009
|
.Link:focus-visible {
|
|
@@ -3987,10 +4012,12 @@ body {
|
|
|
3987
4012
|
|
|
3988
4013
|
.Link--regular {
|
|
3989
4014
|
font-size: var(--font-size);
|
|
4015
|
+
height: var(--font-size-l);
|
|
3990
4016
|
}
|
|
3991
4017
|
|
|
3992
4018
|
.Link--tiny {
|
|
3993
4019
|
font-size: var(--font-size-s);
|
|
4020
|
+
height: var(--font-size-m);
|
|
3994
4021
|
}
|
|
3995
4022
|
|
|
3996
4023
|
.Link--default {
|
|
@@ -7199,6 +7226,18 @@ body {
|
|
|
7199
7226
|
max-width: 100% !important;
|
|
7200
7227
|
}
|
|
7201
7228
|
|
|
7229
|
+
.vw-25 {
|
|
7230
|
+
width: 25vw !important;
|
|
7231
|
+
}
|
|
7232
|
+
|
|
7233
|
+
.vw-50 {
|
|
7234
|
+
width: 50vw !important;
|
|
7235
|
+
}
|
|
7236
|
+
|
|
7237
|
+
.vw-75 {
|
|
7238
|
+
width: 75vw !important;
|
|
7239
|
+
}
|
|
7240
|
+
|
|
7202
7241
|
.vw-100 {
|
|
7203
7242
|
width: 100vw !important;
|
|
7204
7243
|
}
|
|
@@ -7231,6 +7270,18 @@ body {
|
|
|
7231
7270
|
max-height: 100% !important;
|
|
7232
7271
|
}
|
|
7233
7272
|
|
|
7273
|
+
.vh-25 {
|
|
7274
|
+
height: 25vh !important;
|
|
7275
|
+
}
|
|
7276
|
+
|
|
7277
|
+
.vh-50 {
|
|
7278
|
+
height: 50vh !important;
|
|
7279
|
+
}
|
|
7280
|
+
|
|
7281
|
+
.vh-75 {
|
|
7282
|
+
height: 75vh !important;
|
|
7283
|
+
}
|
|
7284
|
+
|
|
7234
7285
|
.vh-100 {
|
|
7235
7286
|
height: 100vh !important;
|
|
7236
7287
|
}
|