@innovaccer/design-system 2.16.1-0 → 2.16.1-1

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.
Files changed (31) hide show
  1. package/css/dist/index.css +163 -64
  2. package/css/dist/index.css.map +1 -1
  3. package/css/src/components/breadcrumbs.css +6 -13
  4. package/css/src/components/chip.css +5 -1
  5. package/css/src/components/collapsible.css +20 -0
  6. package/css/src/components/dropdown.css +3 -7
  7. package/css/src/components/dropdownButton.css +1 -0
  8. package/css/src/components/dropzone.css +48 -10
  9. package/css/src/components/inlineMessage.css +1 -1
  10. package/css/src/components/input.css +23 -15
  11. package/css/src/components/link.css +3 -2
  12. package/css/src/components/sidesheet.css +14 -5
  13. package/css/src/components/slider.css +1 -1
  14. package/css/src/components/statusHints.css +1 -1
  15. package/css/src/components/tabs.css +1 -1
  16. package/dist/.lib/tsconfig.type.tsbuildinfo +155 -156
  17. package/dist/core/components/atoms/dropdown/DropdownList.d.ts +1 -0
  18. package/dist/core/components/atoms/heading/Heading.d.ts +2 -1
  19. package/dist/core/components/atoms/metaList/Meta.d.ts +0 -3
  20. package/dist/core/components/atoms/paragraph/Paragraph.d.ts +2 -0
  21. package/dist/core/components/atoms/popperWrapper/PopperWrapper.d.ts +1 -1
  22. package/dist/core/components/atoms/statusHint/StatusHint.d.ts +1 -0
  23. package/dist/core/components/atoms/subheading/Subheading.d.ts +2 -1
  24. package/dist/core/components/organisms/calendar/utility.d.ts +1 -1
  25. package/dist/index.esm.js +4421 -4384
  26. package/dist/index.js +4221 -4195
  27. package/dist/index.js.map +1 -1
  28. package/dist/index.umd.js +1 -1
  29. package/dist/index.umd.js.br +0 -0
  30. package/dist/index.umd.js.gz +0 -0
  31. package/package.json +1 -1
@@ -1165,15 +1165,9 @@ body {
1165
1165
  }
1166
1166
 
1167
1167
  .Breadcrumbs-link {
1168
- margin: var(--spacing-m);
1169
1168
  /* 160px */
1170
1169
  max-width: calc(var(--spacing-2) * 10);
1171
- line-height: var(--font-height);
1172
- color: var(--inverse-lighter);
1173
- }
1174
-
1175
- .Breadcrumbs-link:hover {
1176
- color: var(--inverse-light);
1170
+ margin: var(--spacing-m) 0;
1177
1171
  }
1178
1172
 
1179
1173
  .Breadcrumbs-link:active {
@@ -1186,15 +1180,14 @@ body {
1186
1180
 
1187
1181
  .Breadcrumbs-itemSeparator {
1188
1182
  color: var(--secondary);
1183
+ font-size: var(--font-size-s);
1184
+ line-height: var(--font-height-s);
1185
+ width: var(--spacing-m);
1186
+ margin: 0 var(--spacing-m);
1189
1187
  }
1190
1188
 
1191
1189
  .Breadcrumbs-dropdown {
1192
- display: flex;
1193
- align-items: center;
1194
- }
1195
-
1196
- .Breadcrumbs-Button {
1197
- margin: 0 var(--spacing-m);
1190
+ height: var(--font-height-m);
1198
1191
  }
1199
1192
 
1200
1193
  .Breadcrumbs-Button:focus {
@@ -2091,10 +2084,10 @@ body {
2091
2084
  }
2092
2085
 
2093
2086
  .Chip-icon--right {
2094
- margin-left: var(--spacing-m);
2095
2087
  display: flex;
2096
2088
  align-items: center;
2097
2089
  border-radius: 10px;
2090
+ margin-left: var(--spacing-s);
2098
2091
  }
2099
2092
 
2100
2093
  .Chip--action {
@@ -2243,6 +2236,10 @@ body {
2243
2236
  outline: none;
2244
2237
  }
2245
2238
 
2239
+ .Chip-icon--clear {
2240
+ padding-right: var(--spacing-s);
2241
+ }
2242
+
2246
2243
  .ChipGroup {
2247
2244
  display: inline-flex;
2248
2245
  }
@@ -2363,6 +2360,12 @@ body {
2363
2360
  position: absolute;
2364
2361
  }
2365
2362
 
2363
+ .Collapsible--shadow {
2364
+ box-shadow: var(--shadow-l);
2365
+ -webkit-clip-path: inset(0px -16px 0px 0px);
2366
+ clip-path: inset(0px -16px 0px 0px);
2367
+ }
2368
+
2366
2369
  .Collapsible-body {
2367
2370
  flex-grow: 1;
2368
2371
  overflow-y: auto;
@@ -2373,9 +2376,24 @@ body {
2373
2376
  padding-top: var(--spacing-m);
2374
2377
  padding-bottom: var(--spacing-m);
2375
2378
  box-sizing: border-box;
2379
+ cursor: pointer;
2376
2380
  display: flex;
2377
2381
  }
2378
2382
 
2383
+ .Collapsible-footer:hover {
2384
+ background-color: var(--secondary-lighter);
2385
+ }
2386
+
2387
+ .Collapsible-footer:focus,
2388
+ .Collapsible-footer:focus-visible {
2389
+ outline: none;
2390
+ box-shadow: var(--shadow-spread) var(--secondary-shadow);
2391
+ }
2392
+
2393
+ .Collapsible-footer:active {
2394
+ background-color: var(--secondary-light);
2395
+ }
2396
+
2379
2397
  .Collapsible-footer--seperator {
2380
2398
  border-top: var(--spacing-xs) solid var(--secondary-light);
2381
2399
  }
@@ -2469,19 +2487,15 @@ body {
2469
2487
  justify-content: space-between;
2470
2488
  align-items: center;
2471
2489
  margin-left: var(--spacing-l);
2472
- margin-top: var(--spacing);
2490
+ margin-top: var(--spacing-l);
2473
2491
  margin-bottom: 6px;
2474
2492
  }
2475
2493
 
2476
2494
  .Dropdown-section--withClear {
2477
- margin-top: var(--spacing-m);
2495
+ margin-top: var(--spacing);
2478
2496
  margin-bottom: var(--spacing-s);
2479
2497
  }
2480
2498
 
2481
- .Dropdown--border {
2482
- border-top: var(--spacing-xs) solid var(--secondary-light);
2483
- }
2484
-
2485
2499
  .Dropdown-buttonWrapper {
2486
2500
  display: flex;
2487
2501
  justify-content: flex-end;
@@ -2508,7 +2522,7 @@ body {
2508
2522
  padding-top: 6px;
2509
2523
  padding-bottom: 6px;
2510
2524
  padding-left: var(--spacing-l);
2511
- padding-right: var(--spacing-l);
2525
+ padding-right: var(--spacing);
2512
2526
  }
2513
2527
 
2514
2528
  .Option-checkbox .Checkbox-outerWrapper {
@@ -2630,6 +2644,7 @@ body {
2630
2644
  display: flex;
2631
2645
  flex-direction: row;
2632
2646
  overflow: hidden;
2647
+ align-items: center;
2633
2648
  }
2634
2649
 
2635
2650
  .DropdownButton-text {
@@ -2712,7 +2727,7 @@ body {
2712
2727
  linear-gradient(var(--secondary) 50%, rgba(255, 255, 255, 0) 0%);
2713
2728
  background-position: top, right, bottom, left;
2714
2729
  background-repeat: repeat-x, repeat-y;
2715
- background-size: 7px var(--spacing-xs), var(--spacing-xs) 7px;
2730
+ background-size: var(--spacing-2) var(--spacing-xs), var(--spacing-xs) var(--spacing-2);
2716
2731
  transition: background-color var(--duration--moderate-01) var(--standard-productive-curve);
2717
2732
  box-sizing: border-box;
2718
2733
  }
@@ -2725,21 +2740,24 @@ body {
2725
2740
  linear-gradient(var(--primary) 50%, rgba(255, 255, 255, 0) 0%);
2726
2741
  background-position: top, right, bottom, left;
2727
2742
  background-repeat: repeat-x, repeat-y;
2728
- background-size: 7px var(--spacing-xs), var(--spacing-xs) 7px;
2743
+ background-size: var(--spacing-2) var(--spacing-xs), var(--spacing-xs) var(--spacing-2);
2729
2744
  transition: background-color var(--duration--moderate-01) var(--standard-productive-curve);
2730
2745
  box-sizing: border-box;
2731
2746
  }
2732
2747
 
2733
- .DropzoneAnimation--default {
2748
+ .Dropzone-animation {
2734
2749
  -webkit-animation-delay: var(--duration--fast-02);
2735
2750
  animation-delay: var(--duration--fast-02);
2751
+ -webkit-animation-fill-mode: forwards;
2752
+ animation-fill-mode: forwards;
2753
+ }
2754
+
2755
+ .Dropzone-animation--default {
2736
2756
  -webkit-animation: dropzoneDefault var(--duration--moderate-01) var(--entrance-productive-curve);
2737
2757
  animation: dropzoneDefault var(--duration--moderate-01) var(--entrance-productive-curve);
2738
2758
  }
2739
2759
 
2740
- .DropzoneAnimation--active {
2741
- -webkit-animation-delay: var(--duration--fast-02);
2742
- animation-delay: var(--duration--fast-02);
2760
+ .Dropzone-animation--active {
2743
2761
  -webkit-animation: dropzoneActive var(--duration--moderate-01) var(--entrance-productive-curve);
2744
2762
  animation: dropzoneActive var(--duration--moderate-01) var(--entrance-productive-curve);
2745
2763
  }
@@ -2747,48 +2765,106 @@ body {
2747
2765
  @-webkit-keyframes dropzoneDefault {
2748
2766
  from {
2749
2767
  opacity: 0;
2750
- padding-top: var(--spacing);
2768
+ padding-top: 20px;
2751
2769
  }
2752
2770
 
2753
2771
  to {
2754
2772
  opacity: 1;
2755
- padding-top: 0;
2773
+ padding-top: var(--spacing-l);
2756
2774
  }
2757
2775
  }
2758
2776
 
2759
2777
  @keyframes dropzoneDefault {
2760
2778
  from {
2761
2779
  opacity: 0;
2762
- padding-top: var(--spacing);
2780
+ padding-top: 20px;
2763
2781
  }
2764
2782
 
2765
2783
  to {
2766
2784
  opacity: 1;
2767
- padding-top: 0;
2785
+ padding-top: var(--spacing-l);
2768
2786
  }
2769
2787
  }
2770
2788
 
2771
2789
  @-webkit-keyframes dropzoneActive {
2772
2790
  from {
2773
2791
  opacity: 0;
2774
- padding-top: var(--spacing);
2792
+ padding-top: 20px;
2775
2793
  }
2776
2794
 
2777
2795
  to {
2778
2796
  opacity: 1;
2779
- padding-top: 0;
2797
+ padding-top: var(--spacing-l);
2780
2798
  }
2781
2799
  }
2782
2800
 
2783
2801
  @keyframes dropzoneActive {
2784
2802
  from {
2785
2803
  opacity: 0;
2804
+ padding-top: 20px;
2805
+ }
2806
+
2807
+ to {
2808
+ opacity: 1;
2809
+ padding-top: var(--spacing-l);
2810
+ }
2811
+ }
2812
+
2813
+ .Dropzone-standard--default {
2814
+ -webkit-animation: dropzoneStandardDefault var(--duration--moderate-01) var(--entrance-productive-curve);
2815
+ animation: dropzoneStandardDefault var(--duration--moderate-01) var(--entrance-productive-curve);
2816
+ }
2817
+
2818
+ .Dropzone-standard--active {
2819
+ -webkit-animation: dropzoneStandardActive var(--duration--moderate-01) var(--entrance-productive-curve);
2820
+ animation: dropzoneStandardActive var(--duration--moderate-01) var(--entrance-productive-curve);
2821
+ }
2822
+
2823
+ @-webkit-keyframes dropzoneStandardDefault {
2824
+ from {
2825
+ opacity: 0;
2826
+ padding-top: var(--spacing-2);
2827
+ }
2828
+
2829
+ to {
2830
+ opacity: 1;
2786
2831
  padding-top: var(--spacing);
2787
2832
  }
2833
+ }
2834
+
2835
+ @keyframes dropzoneStandardDefault {
2836
+ from {
2837
+ opacity: 0;
2838
+ padding-top: var(--spacing-2);
2839
+ }
2840
+
2841
+ to {
2842
+ opacity: 1;
2843
+ padding-top: var(--spacing);
2844
+ }
2845
+ }
2846
+
2847
+ @-webkit-keyframes dropzoneStandardActive {
2848
+ from {
2849
+ opacity: 0;
2850
+ padding-top: var(--spacing-2);
2851
+ }
2852
+
2853
+ to {
2854
+ opacity: 1;
2855
+ padding-top: var(--spacing);
2856
+ }
2857
+ }
2858
+
2859
+ @keyframes dropzoneStandardActive {
2860
+ from {
2861
+ opacity: 0;
2862
+ padding-top: var(--spacing-2);
2863
+ }
2788
2864
 
2789
2865
  to {
2790
2866
  opacity: 1;
2791
- padding-top: 0;
2867
+ padding-top: var(--spacing);
2792
2868
  }
2793
2869
  }
2794
2870
 
@@ -2800,7 +2876,7 @@ body {
2800
2876
  linear-gradient(var(--alert) 50%, rgba(255, 255, 255, 0) 0%);
2801
2877
  background-position: top, right, bottom, left;
2802
2878
  background-repeat: repeat-x, repeat-y;
2803
- background-size: 7px var(--spacing-xs), var(--spacing-xs) 7px;
2879
+ background-size: var(--spacing-2) var(--spacing-xs), var(--spacing-xs) var(--spacing-2);
2804
2880
  }
2805
2881
 
2806
2882
  .Dropzone--disabled {
@@ -2810,24 +2886,27 @@ body {
2810
2886
  linear-gradient(var(--secondary) 50%, rgba(255, 255, 255, 0) 0%);
2811
2887
  background-position: top, right, bottom, left;
2812
2888
  background-repeat: repeat-x, repeat-y;
2813
- background-size: 7px var(--spacing-xs), var(--spacing-xs) 7px;
2889
+ background-size: var(--spacing-2) var(--spacing-xs), var(--spacing-xs) var(--spacing-2);
2814
2890
  }
2815
2891
 
2816
2892
  .Dropzone--standard {
2817
2893
  flex-direction: column;
2818
2894
  height: 196px;
2819
2895
  min-width: 480px;
2896
+ padding: var(--spacing) var(--spacing-xl) var(--spacing-2) var(--spacing-xl);
2820
2897
  }
2821
2898
 
2822
2899
  .Dropzone--compressed {
2823
2900
  flex-direction: row;
2824
2901
  height: 124px;
2825
2902
  min-width: 400px;
2903
+ padding: var(--spacing-l) var(--spacing-xl) var(--spacing-2) var(--spacing-xl);
2826
2904
  }
2827
2905
 
2828
2906
  .Dropzone--tight {
2829
2907
  height: 124px;
2830
2908
  min-width: 320px;
2909
+ padding: var(--spacing-l) var(--spacing-xl) var(--spacing-2) var(--spacing-xl);
2831
2910
  }
2832
2911
 
2833
2912
  .DropzoneWrapper {
@@ -3989,7 +4068,7 @@ body {
3989
4068
  overflow: hidden;
3990
4069
  border-radius: var(--spacing-m);
3991
4070
  background-color: var(--white);
3992
- align-items: center;
4071
+ align-items: flex-start;
3993
4072
  }
3994
4073
 
3995
4074
  .InlineMessage-icon--regular {
@@ -4042,15 +4121,15 @@ body {
4042
4121
  }
4043
4122
 
4044
4123
  .Input--tiny {
4045
- height: var(--spacing-xl);
4124
+ height: var(--font-height-m);
4046
4125
  padding-top: var(--spacing-m);
4047
4126
  padding-bottom: var(--spacing-m);
4048
4127
  }
4049
4128
 
4050
4129
  .Input--regular {
4051
- height: var(--spacing-3);
4052
- padding-top: var(--spacing);
4053
- padding-bottom: var(--spacing);
4130
+ height: var(--font-height-l);
4131
+ padding-top: 6px;
4132
+ padding-bottom: 6px;
4054
4133
  }
4055
4134
 
4056
4135
  .Input--large {
@@ -4059,11 +4138,6 @@ body {
4059
4138
  padding-bottom: var(--spacing);
4060
4139
  }
4061
4140
 
4062
- .Input--large .Input-input {
4063
- line-height: var(--font-height-m);
4064
- font-size: var(--font-size-m);
4065
- }
4066
-
4067
4141
  .Input:hover {
4068
4142
  background: var(--secondary-lighter);
4069
4143
  border-color: var(--secondary-dark);
@@ -4076,7 +4150,7 @@ body {
4076
4150
  box-shadow: var(--shadow-spread) var(--primary-shadow);
4077
4151
  }
4078
4152
 
4079
- .Input:focus-within .Input-icon--left .Icon {
4153
+ .Input:focus-within .Input-icon--left {
4080
4154
  color: var(--primary);
4081
4155
  }
4082
4156
 
@@ -4085,7 +4159,7 @@ body {
4085
4159
  box-shadow: var(--shadow-spread) var(--alert-shadow);
4086
4160
  }
4087
4161
 
4088
- .Input--error:focus-within .Input-icon--left .Icon {
4162
+ .Input--error:focus-within .Input-icon--left {
4089
4163
  color: var(--alert);
4090
4164
  }
4091
4165
 
@@ -4095,7 +4169,7 @@ body {
4095
4169
  pointer-events: none;
4096
4170
  }
4097
4171
 
4098
- .Input--disabled .Input-icon--left .Icon {
4172
+ .Input--disabled .Input-icon--left {
4099
4173
  color: var(--inverse-lightest);
4100
4174
  }
4101
4175
 
@@ -4146,21 +4220,34 @@ body {
4146
4220
  color: var(--inverse-lighter);
4147
4221
  }
4148
4222
 
4223
+ .Input-input--regular {
4224
+ line-height: var(--font-height);
4225
+ }
4226
+
4227
+ .Input-input--large {
4228
+ line-height: var(--font-height-m);
4229
+ font-size: var(--font-size-m);
4230
+ }
4231
+
4149
4232
  .Input-icon {
4150
4233
  display: flex;
4151
4234
  align-content: center;
4152
4235
  font-size: var(--font-size-m);
4153
4236
  }
4154
4237
 
4155
- .Input-icon--left .Icon {
4238
+ .Input-icon--left {
4156
4239
  margin-right: var(--spacing);
4157
- color: var(--inverse-lighter);
4240
+ color: var(--inverse);
4158
4241
  }
4159
4242
 
4160
- .Input-icon--disabled .Icon {
4243
+ .Input-icon--inputBlank {
4161
4244
  color: var(--inverse-lighter);
4162
4245
  }
4163
4246
 
4247
+ .Input-icon--error {
4248
+ color: var(--alert);
4249
+ }
4250
+
4164
4251
  .Input-icon--right {
4165
4252
  cursor: pointer;
4166
4253
  color: var(--inverse-lighter);
@@ -4205,12 +4292,13 @@ body {
4205
4292
 
4206
4293
  .Link--regular {
4207
4294
  font-size: var(--font-size);
4208
- height: var(--font-size-l);
4295
+ height: var(--font-height);
4209
4296
  }
4210
4297
 
4211
4298
  .Link--tiny {
4212
4299
  font-size: var(--font-size-s);
4213
- height: var(--font-size-m);
4300
+ height: var(--font-height-s);
4301
+ line-height: var(--font-height-s);
4214
4302
  }
4215
4303
 
4216
4304
  .Link--default {
@@ -5639,7 +5727,7 @@ body {
5639
5727
  }
5640
5728
 
5641
5729
  .Sidesheet-header--withSeperator {
5642
- border-bottom: var(--border);
5730
+ border-bottom: var(--spacing-xs) solid var(--secondary-light);
5643
5731
  }
5644
5732
 
5645
5733
  .Sidesheet-body {
@@ -5651,11 +5739,12 @@ body {
5651
5739
  }
5652
5740
 
5653
5741
  .Sidesheet-footer {
5654
- height: 80px;
5742
+ padding-top: var(--spacing-xl);
5743
+ padding-bottom: var(--spacing-xl);
5655
5744
  }
5656
5745
 
5657
5746
  .Sidesheet-footer--withSeperator {
5658
- border-top: var(--border);
5747
+ border-top: var(--spacing-xs) solid var(--secondary-light);
5659
5748
  }
5660
5749
 
5661
5750
  .Sidesheet-footer--stickToBottom {
@@ -5664,13 +5753,23 @@ body {
5664
5753
  }
5665
5754
 
5666
5755
  .Sidesheet-header--shiftRight {
5667
- -webkit-animation: shift-right-spacing-3 80ms cubic-bezier(0.2, 0, 0.38, 0.9);
5668
- animation: shift-right-spacing-3 80ms cubic-bezier(0.2, 0, 0.38, 0.9);
5756
+ -webkit-animation: shift-right-spacing-3 var(--duration--fast-01) var(--standard-productive-curve);
5757
+ animation: shift-right-spacing-3 var(--duration--fast-01) var(--standard-productive-curve);
5669
5758
  }
5670
5759
 
5671
5760
  .Sidesheet-header--shiftLeft {
5672
- -webkit-animation: shift-left-spacing-3 80ms cubic-bezier(0.2, 0, 0.38, 0.9);
5673
- animation: shift-left-spacing-3 80ms cubic-bezier(0.2, 0, 0.38, 0.9);
5761
+ -webkit-animation: shift-left-spacing-3 var(--duration--fast-01) var(--standard-productive-curve);
5762
+ animation: shift-left-spacing-3 var(--duration--fast-01) var(--standard-productive-curve);
5763
+ }
5764
+
5765
+ .Sidesheet-body--nextPage {
5766
+ -webkit-animation: fadeIn var(--duration--fast-02) var(--standard-productive-curve);
5767
+ animation: fadeIn var(--duration--fast-02) var(--standard-productive-curve);
5768
+ }
5769
+
5770
+ .Sidesheet-body--firstPage {
5771
+ -webkit-animation: fadeIn var(--duration--fast-02) var(--standard-expressive-curve);
5772
+ animation: fadeIn var(--duration--fast-02) var(--standard-expressive-curve);
5674
5773
  }
5675
5774
 
5676
5775
  .Slider {
@@ -5684,7 +5783,7 @@ body {
5684
5783
  }
5685
5784
 
5686
5785
  .Slider-wrapper--disabled {
5687
- pointer-events: none;
5786
+ cursor: not-allowed;
5688
5787
  }
5689
5788
 
5690
5789
  .Slider-track {
@@ -5878,7 +5977,6 @@ body {
5878
5977
  .StatusHint {
5879
5978
  display: flex;
5880
5979
  flex-direction: row;
5881
- align-items: center;
5882
5980
  width: -webkit-fit-content;
5883
5981
  width: -moz-fit-content;
5884
5982
  width: fit-content;
@@ -5890,6 +5988,7 @@ body {
5890
5988
  height: var(--spacing);
5891
5989
  width: var(--spacing);
5892
5990
  margin-right: var(--spacing);
5991
+ margin-top: 6px;
5893
5992
  }
5894
5993
 
5895
5994
  .StatusHint--alert {
@@ -6166,7 +6265,7 @@ body {
6166
6265
  flex-direction: row;
6167
6266
  cursor: pointer;
6168
6267
  min-width: 40px;
6169
- padding: var(--spacing-l);
6268
+ padding: var(--spacing-l) var(--spacing-l) var(--spacing-2);
6170
6269
  margin-bottom: calc(-1 * var(--spacing-xs));
6171
6270
  text-align: center;
6172
6271
  }