@innovaccer/design-system 4.24.0 → 4.25.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 +39 -0
- package/css/dist/index.css +154 -29
- package/css/dist/index.css.map +1 -1
- package/css/src/components/chip.module.css +31 -13
- package/css/src/components/datePicker.module.css +9 -0
- package/css/src/components/dateRangePicker.module.css +5 -0
- package/css/src/components/horizontalNav.module.css +4 -8
- package/css/src/components/input.module.css +1 -0
- package/css/src/components/pageHeader.module.css +103 -8
- package/dist/brotli/index.js +1 -1
- package/dist/brotli/index.js.br +0 -0
- package/dist/cjs/index.js +1 -1
- package/dist/core/components/atoms/heading/Heading.d.ts +1 -0
- package/dist/core/components/atoms/message/Message.d.ts +1 -0
- package/dist/core/components/atoms/subheading/Subheading.d.ts +1 -0
- package/dist/core/components/atoms/text/Text.d.ts +1 -0
- package/dist/core/components/molecules/emptyState/EmptyState.d.ts +1 -0
- package/dist/core/components/molecules/emptyState/EmptyStateTitle.d.ts +1 -0
- package/dist/core/components/molecules/modal/ModalHeader.d.ts +1 -0
- package/dist/core/components/molecules/overlayHeader/OverlayHeader.d.ts +1 -0
- package/dist/core/components/organisms/pageHeader/utils.d.ts +9 -9
- package/dist/esm/index.js +568 -370
- package/dist/gzip/index.js +1 -1
- package/dist/gzip/index.js.gz +0 -0
- package/dist/index.js +536 -375
- package/dist/index.js.map +1 -1
- package/dist/index.umd.css +154 -29
- package/dist/index.umd.js +1 -1
- package/dist/types/tsconfig.type.tsbuildinfo +30 -29
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,42 @@
|
|
|
1
|
+
## 4.25.0 (2026-05-19)
|
|
2
|
+
|
|
3
|
+
### Highlights
|
|
4
|
+
|
|
5
|
+
- Added responsive behavior to PageHeader and DatePicker patterns; improved Table interactions and refined a11y across Chip, Input, and Header components.
|
|
6
|
+
|
|
7
|
+
### Breaking changes
|
|
8
|
+
|
|
9
|
+
NA
|
|
10
|
+
|
|
11
|
+
### Migration guide
|
|
12
|
+
|
|
13
|
+
NA
|
|
14
|
+
|
|
15
|
+
### Deprecations
|
|
16
|
+
|
|
17
|
+
NA
|
|
18
|
+
|
|
19
|
+
### Features
|
|
20
|
+
|
|
21
|
+
- feat(table): update dropdown single click dragging movement in table component (da364d866)
|
|
22
|
+
- feat(pageheader): add responsive behavior for pageheader component (3a95c6c3e)
|
|
23
|
+
|
|
24
|
+
### Fixes
|
|
25
|
+
|
|
26
|
+
- fix(input): update alignment of input clear icon (7f85ab1e3)
|
|
27
|
+
- fix(chip): update a11y role for chip component (3f943673f)
|
|
28
|
+
- fix(table): update table resizable behaviour (4cbe3b253)
|
|
29
|
+
- fix(pattern): add responsive behavior in datepicker story pattern (4add940d5)
|
|
30
|
+
- fix(header): update heading hierarchy (eb7cbc1e0)
|
|
31
|
+
- fix(chip): update a11y attributes for nested interactive elements (6768fcc40)
|
|
32
|
+
- fix(chip): update a11y attributes for nested interactive elements (eb172bd7d)
|
|
33
|
+
|
|
34
|
+
### Improvements
|
|
35
|
+
|
|
36
|
+
- style(icons): change stroke color from #DD2D38 to #CA1822 in AISparkle (4bebed62e)
|
|
37
|
+
|
|
38
|
+
---
|
|
39
|
+
|
|
1
40
|
## 4.24.0 (2026-04-24)
|
|
2
41
|
|
|
3
42
|
### Highlights
|
package/css/dist/index.css
CHANGED
|
@@ -3459,9 +3459,6 @@ body {
|
|
|
3459
3459
|
display: flex;
|
|
3460
3460
|
box-sizing: border-box;
|
|
3461
3461
|
border-radius: var(--border-radius-30);
|
|
3462
|
-
padding-right: var(--spacing-20);
|
|
3463
|
-
padding-top: var(--spacing-05);
|
|
3464
|
-
padding-bottom: var(--spacing-05);
|
|
3465
3462
|
width: -moz-fit-content;
|
|
3466
3463
|
width: fit-content;
|
|
3467
3464
|
justify-content: space-between;
|
|
@@ -3475,11 +3472,9 @@ body {
|
|
|
3475
3472
|
|
|
3476
3473
|
.Chip-size--regular {
|
|
3477
3474
|
height: var(--spacing-60);
|
|
3478
|
-
padding-left: var(--spacing-20);
|
|
3479
3475
|
}
|
|
3480
3476
|
.Chip-size--small {
|
|
3481
3477
|
height: 20px;
|
|
3482
|
-
padding-left: var(--spacing-15);
|
|
3483
3478
|
}
|
|
3484
3479
|
|
|
3485
3480
|
.Chip-wrapper {
|
|
@@ -3487,6 +3482,29 @@ body {
|
|
|
3487
3482
|
align-items: center;
|
|
3488
3483
|
}
|
|
3489
3484
|
|
|
3485
|
+
.Chip-content {
|
|
3486
|
+
display: flex;
|
|
3487
|
+
align-items: center;
|
|
3488
|
+
min-width: 0;
|
|
3489
|
+
flex: 1;
|
|
3490
|
+
align-self: stretch;
|
|
3491
|
+
padding-top: var(--spacing-05);
|
|
3492
|
+
padding-bottom: var(--spacing-05);
|
|
3493
|
+
padding-right: var(--spacing-20);
|
|
3494
|
+
}
|
|
3495
|
+
|
|
3496
|
+
.Chip-content--regular {
|
|
3497
|
+
padding-left: var(--spacing-20);
|
|
3498
|
+
}
|
|
3499
|
+
|
|
3500
|
+
.Chip-content--small {
|
|
3501
|
+
padding-left: var(--spacing-15);
|
|
3502
|
+
}
|
|
3503
|
+
|
|
3504
|
+
.Chip-content:focus-visible {
|
|
3505
|
+
outline: none;
|
|
3506
|
+
}
|
|
3507
|
+
|
|
3490
3508
|
.Chip-icon--left {
|
|
3491
3509
|
margin-right: var(--spacing-10);
|
|
3492
3510
|
display: flex;
|
|
@@ -3520,7 +3538,7 @@ body {
|
|
|
3520
3538
|
background: var(--secondary);
|
|
3521
3539
|
}
|
|
3522
3540
|
|
|
3523
|
-
.Chip--action:focus-visible {
|
|
3541
|
+
.Chip--action:has(.Chip-content:focus-visible) {
|
|
3524
3542
|
outline: var(--border-width-05) solid var(--primary-focus);
|
|
3525
3543
|
outline-offset: var(--spacing-05);
|
|
3526
3544
|
}
|
|
@@ -3548,7 +3566,7 @@ body {
|
|
|
3548
3566
|
border-color: var(--secondary-dark);
|
|
3549
3567
|
}
|
|
3550
3568
|
|
|
3551
|
-
.Chip--selection:focus-visible {
|
|
3569
|
+
.Chip--selection:has(.Chip-content:focus-visible) {
|
|
3552
3570
|
outline: var(--border-width-05) solid var(--primary-focus);
|
|
3553
3571
|
outline-offset: var(--spacing-05);
|
|
3554
3572
|
}
|
|
@@ -3577,7 +3595,7 @@ body {
|
|
|
3577
3595
|
box-shadow: inset 0 0 0 1px var(--primary);
|
|
3578
3596
|
}
|
|
3579
3597
|
|
|
3580
|
-
.Chip-selection--selected:focus-visible {
|
|
3598
|
+
.Chip-selection--selected:has(.Chip-content:focus-visible) {
|
|
3581
3599
|
outline: var(--border-width-05) solid var(--primary-focus);
|
|
3582
3600
|
outline-offset: var(--spacing-05);
|
|
3583
3601
|
}
|
|
@@ -3618,7 +3636,7 @@ body {
|
|
|
3618
3636
|
background: var(--secondary);
|
|
3619
3637
|
}
|
|
3620
3638
|
|
|
3621
|
-
.Chip--input:focus-visible {
|
|
3639
|
+
.Chip--input:has(.Chip-content:focus-visible) {
|
|
3622
3640
|
outline: var(--border-width-05) solid var(--primary-focus);
|
|
3623
3641
|
outline-offset: var(--spacing-05);
|
|
3624
3642
|
}
|
|
@@ -3668,14 +3686,14 @@ body {
|
|
|
3668
3686
|
background-color: var(--primary-light);
|
|
3669
3687
|
}
|
|
3670
3688
|
|
|
3671
|
-
.Chip-selection--disabled:focus-visible,
|
|
3689
|
+
.Chip-selection--disabled:has(.Chip-content:focus-visible),
|
|
3672
3690
|
.Chip-icon-disabled--right:focus-visible,
|
|
3673
|
-
.Chip-selection--selectedDisabled:focus-visible,
|
|
3674
|
-
.Chip-input--disabled:focus-visible {
|
|
3691
|
+
.Chip-selection--selectedDisabled:has(.Chip-content:focus-visible),
|
|
3692
|
+
.Chip-input--disabled:has(.Chip-content:focus-visible) {
|
|
3675
3693
|
outline: none;
|
|
3676
3694
|
}
|
|
3677
3695
|
|
|
3678
|
-
.Chip-icon--clear {
|
|
3696
|
+
.Chip-icon--clear .Chip-content {
|
|
3679
3697
|
padding-right: 0;
|
|
3680
3698
|
}
|
|
3681
3699
|
|
|
@@ -4309,6 +4327,16 @@ body {
|
|
|
4309
4327
|
}
|
|
4310
4328
|
}
|
|
4311
4329
|
|
|
4330
|
+
.DatePicker-content {
|
|
4331
|
+
display: flex;
|
|
4332
|
+
}
|
|
4333
|
+
|
|
4334
|
+
@media (max-width: 576px) {
|
|
4335
|
+
.DatePicker-content {
|
|
4336
|
+
flex-direction: column;
|
|
4337
|
+
}
|
|
4338
|
+
}
|
|
4339
|
+
|
|
4312
4340
|
.DateRangePicker {
|
|
4313
4341
|
display: flex;
|
|
4314
4342
|
}
|
|
@@ -4334,6 +4362,11 @@ body {
|
|
|
4334
4362
|
}
|
|
4335
4363
|
|
|
4336
4364
|
@media (max-width: 576px) {
|
|
4365
|
+
.DateRangePicker--left,
|
|
4366
|
+
.DateRangePicker--right {
|
|
4367
|
+
flex-direction: column;
|
|
4368
|
+
}
|
|
4369
|
+
|
|
4337
4370
|
.DateRangePicker-input {
|
|
4338
4371
|
padding: 0;
|
|
4339
4372
|
}
|
|
@@ -6193,8 +6226,7 @@ body {
|
|
|
6193
6226
|
outline: none;
|
|
6194
6227
|
}
|
|
6195
6228
|
|
|
6196
|
-
.HorizontalNav-menu--default:focus-visible
|
|
6197
|
-
.HorizontalNav-menu--default:focus {
|
|
6229
|
+
.HorizontalNav-menu--default:focus-visible {
|
|
6198
6230
|
outline: var(--border-width-05) solid var(--primary-focus);
|
|
6199
6231
|
outline-offset: var(--spacing-05);
|
|
6200
6232
|
}
|
|
@@ -6212,8 +6244,7 @@ body {
|
|
|
6212
6244
|
box-shadow: 0 0 0 var(--border-width-05) var(--primary);
|
|
6213
6245
|
}
|
|
6214
6246
|
|
|
6215
|
-
.HorizontalNav-menu--active:focus-visible
|
|
6216
|
-
.HorizontalNav-menu--active:focus {
|
|
6247
|
+
.HorizontalNav-menu--active:focus-visible {
|
|
6217
6248
|
background-color: var(--primary-ultra-light);
|
|
6218
6249
|
outline: var(--border-width-05) solid var(--primary-focus);
|
|
6219
6250
|
outline-offset: var(--spacing-10);
|
|
@@ -6233,8 +6264,7 @@ body {
|
|
|
6233
6264
|
color: var(--primary-darker);
|
|
6234
6265
|
}
|
|
6235
6266
|
|
|
6236
|
-
.HorizontalNav-menu--active:focus-visible:active
|
|
6237
|
-
.HorizontalNav-menu--active:focus:active {
|
|
6267
|
+
.HorizontalNav-menu--active:focus-visible:active {
|
|
6238
6268
|
background-color: var(--primary-lighter);
|
|
6239
6269
|
box-shadow: 0 0 0 var(--border-width-05) var(--primary-dark);
|
|
6240
6270
|
}
|
|
@@ -6270,8 +6300,7 @@ body {
|
|
|
6270
6300
|
}
|
|
6271
6301
|
|
|
6272
6302
|
.HorizontalNav-menu--active:active,
|
|
6273
|
-
.HorizontalNav-menu--active:focus-visible:active
|
|
6274
|
-
.HorizontalNav-menu--active:focus:active {
|
|
6303
|
+
.HorizontalNav-menu--active:focus-visible:active {
|
|
6275
6304
|
border-color: Highlight;
|
|
6276
6305
|
box-shadow: none;
|
|
6277
6306
|
}
|
|
@@ -6660,6 +6689,7 @@ body {
|
|
|
6660
6689
|
cursor: pointer;
|
|
6661
6690
|
color: var(--inverse-lighter);
|
|
6662
6691
|
border-radius: var(--border-radius-full);
|
|
6692
|
+
box-sizing: content-box;
|
|
6663
6693
|
}
|
|
6664
6694
|
|
|
6665
6695
|
.Input-iconWrapper--right:focus-visible .Input-icon--right {
|
|
@@ -8444,6 +8474,10 @@ body {
|
|
|
8444
8474
|
border-bottom: none;
|
|
8445
8475
|
}
|
|
8446
8476
|
|
|
8477
|
+
.PageHeader-bottom--withTabs {
|
|
8478
|
+
margin-top: var(--spacing-30);
|
|
8479
|
+
}
|
|
8480
|
+
|
|
8447
8481
|
.PageHeader .Row {
|
|
8448
8482
|
width: 100%;
|
|
8449
8483
|
}
|
|
@@ -8471,16 +8505,11 @@ body {
|
|
|
8471
8505
|
}
|
|
8472
8506
|
|
|
8473
8507
|
.PageHeader-navigationWrapper {
|
|
8474
|
-
margin-top: var(--spacing-
|
|
8508
|
+
margin-top: var(--spacing-30);
|
|
8475
8509
|
}
|
|
8476
8510
|
|
|
8477
|
-
.PageHeader
|
|
8478
|
-
|
|
8479
|
-
align-items: center;
|
|
8480
|
-
margin-top: 0 !important;
|
|
8481
|
-
padding-right: var(--spacing-20);
|
|
8482
|
-
padding-left: var(--spacing-20);
|
|
8483
|
-
display: flex;
|
|
8511
|
+
.PageHeader-navigationWrapper--noMargin {
|
|
8512
|
+
margin-top: 0;
|
|
8484
8513
|
}
|
|
8485
8514
|
|
|
8486
8515
|
.PageHeader-title {
|
|
@@ -8495,6 +8524,102 @@ body {
|
|
|
8495
8524
|
padding-left: var(--spacing-20);
|
|
8496
8525
|
}
|
|
8497
8526
|
|
|
8527
|
+
/* =====================================================
|
|
8528
|
+
Responsive main header row
|
|
8529
|
+
===================================================== */
|
|
8530
|
+
|
|
8531
|
+
/* Base: flex layout — used by all variants */
|
|
8532
|
+
.PageHeader-row {
|
|
8533
|
+
display: flex;
|
|
8534
|
+
flex-wrap: wrap;
|
|
8535
|
+
align-items: start;
|
|
8536
|
+
width: 100%;
|
|
8537
|
+
}
|
|
8538
|
+
|
|
8539
|
+
.PageHeader-group--title {
|
|
8540
|
+
flex: 1 1 auto;
|
|
8541
|
+
min-width: 0;
|
|
8542
|
+
order: 1;
|
|
8543
|
+
}
|
|
8544
|
+
|
|
8545
|
+
/* Center-nav group — navigation/stepper in center position */
|
|
8546
|
+
.PageHeader-group--center {
|
|
8547
|
+
flex: 0 0 auto;
|
|
8548
|
+
display: flex;
|
|
8549
|
+
justify-content: center;
|
|
8550
|
+
align-items: center;
|
|
8551
|
+
padding: 0 var(--spacing-20);
|
|
8552
|
+
min-width: 0;
|
|
8553
|
+
order: 2;
|
|
8554
|
+
}
|
|
8555
|
+
|
|
8556
|
+
/* Actions / right-side group */
|
|
8557
|
+
.PageHeader-group--actions {
|
|
8558
|
+
flex: 0 0 auto;
|
|
8559
|
+
display: flex;
|
|
8560
|
+
flex-wrap: wrap;
|
|
8561
|
+
justify-content: flex-end;
|
|
8562
|
+
align-items: center;
|
|
8563
|
+
padding-left: var(--spacing-20);
|
|
8564
|
+
row-gap: var(--spacing-30);
|
|
8565
|
+
order: 3;
|
|
8566
|
+
}
|
|
8567
|
+
|
|
8568
|
+
/* Default (full): CSS Grid for true 3-col centering */
|
|
8569
|
+
.PageHeader-row--withCenter {
|
|
8570
|
+
display: grid;
|
|
8571
|
+
grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
|
|
8572
|
+
align-items: start;
|
|
8573
|
+
}
|
|
8574
|
+
|
|
8575
|
+
/* Ghost: center nav stays in the grid for measurement but is invisible and out of flow.
|
|
8576
|
+
Used when collision detection moves the nav to PageHeader-bottom. */
|
|
8577
|
+
.PageHeader-group--center--ghost {
|
|
8578
|
+
position: absolute;
|
|
8579
|
+
visibility: hidden;
|
|
8580
|
+
pointer-events: none;
|
|
8581
|
+
}
|
|
8582
|
+
|
|
8583
|
+
/* All stacked: flex marker on the row + full-width children */
|
|
8584
|
+
.PageHeader-row--allStacked {
|
|
8585
|
+
display: flex;
|
|
8586
|
+
flex-wrap: wrap;
|
|
8587
|
+
}
|
|
8588
|
+
|
|
8589
|
+
.PageHeader-group--title--stacked {
|
|
8590
|
+
flex: 0 0 100%;
|
|
8591
|
+
order: 1;
|
|
8592
|
+
}
|
|
8593
|
+
|
|
8594
|
+
.PageHeader-group--actions--stacked {
|
|
8595
|
+
flex: 0 0 100%;
|
|
8596
|
+
order: 2;
|
|
8597
|
+
padding-left: 0;
|
|
8598
|
+
padding-top: var(--spacing-10);
|
|
8599
|
+
justify-content: flex-start;
|
|
8600
|
+
}
|
|
8601
|
+
|
|
8602
|
+
/* =====================================================
|
|
8603
|
+
Level 1: inter-section spacing when right group wraps
|
|
8604
|
+
===================================================== */
|
|
8605
|
+
|
|
8606
|
+
/* At < 576 px, the actions group sits between title and nav/stepper/tabs.
|
|
8607
|
+
For level 1 headers that have actions, increase the gap to 12 px so all
|
|
8608
|
+
three sections (title, actions, nav) have consistent breathing room. */
|
|
8609
|
+
@media (max-width: 575px) {
|
|
8610
|
+
.PageHeader-group--actions--level1Responsive {
|
|
8611
|
+
padding-top: var(--spacing-30);
|
|
8612
|
+
}
|
|
8613
|
+
|
|
8614
|
+
.PageHeader-bottom--level1Responsive {
|
|
8615
|
+
margin-top: var(--spacing-30);
|
|
8616
|
+
}
|
|
8617
|
+
|
|
8618
|
+
.PageHeader-navigationWrapper--noMarginSm {
|
|
8619
|
+
margin-top: 0;
|
|
8620
|
+
}
|
|
8621
|
+
}
|
|
8622
|
+
|
|
8498
8623
|
/* pagination */
|
|
8499
8624
|
|
|
8500
8625
|
.Pagination {
|