@innovaccer/design-system 4.7.0 → 4.9.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.
Files changed (33) hide show
  1. package/CHANGELOG.md +86 -0
  2. package/css/dist/index.css +333 -158
  3. package/css/dist/index.css.map +1 -1
  4. package/css/src/ai-components/button.module.css +32 -47
  5. package/css/src/components/chatInput.module.css +83 -0
  6. package/css/src/components/checkbox.module.css +1 -1
  7. package/css/src/components/grid.module.css +175 -93
  8. package/css/src/components/select.module.css +0 -1
  9. package/css/src/components/verticalNav.module.css +1 -0
  10. package/dist/brotli/index.js +1 -1
  11. package/dist/brotli/index.js.br +0 -0
  12. package/dist/cjs/index.js +1 -1
  13. package/dist/core/ai-components/AIButton/index.d.ts +2 -1
  14. package/dist/core/components/atoms/paragraph/Paragraph.d.ts +1 -1
  15. package/dist/core/components/atoms/subheading/Subheading.d.ts +1 -1
  16. package/dist/core/components/molecules/chat/Chat.d.ts +1 -0
  17. package/dist/core/components/molecules/chat/chatInput/ChatInput.d.ts +18 -0
  18. package/dist/core/components/molecules/chat/chatInput/index.d.ts +2 -0
  19. package/dist/core/components/organisms/grid/Grid.d.ts +1 -0
  20. package/dist/core/components/organisms/grid/rowUtility.d.ts +1 -0
  21. package/dist/core/components/organisms/table/Table.d.ts +2 -0
  22. package/dist/core/index.type.d.ts +1 -0
  23. package/dist/core/utils/navigationHelper.d.ts +1 -1
  24. package/dist/esm/index.js +1022 -808
  25. package/dist/figma/ChatInput.figma.d.ts +1 -0
  26. package/dist/gzip/index.js +1 -1
  27. package/dist/gzip/index.js.gz +0 -0
  28. package/dist/index.js +837 -636
  29. package/dist/index.js.map +1 -1
  30. package/dist/index.umd.css +333 -158
  31. package/dist/index.umd.js +1 -1
  32. package/dist/types/tsconfig.type.tsbuildinfo +72 -25
  33. package/package.json +1 -1
@@ -4397,7 +4397,6 @@ body {
4397
4397
  }
4398
4398
 
4399
4399
  .Checkbox-labelWrapper {
4400
- padding-left: var(--spacing-20);
4401
4400
  display: flex;
4402
4401
  flex-direction: column;
4403
4402
  min-width: 0;
@@ -4415,6 +4414,7 @@ body {
4415
4414
  .Checkbox-outerWrapper {
4416
4415
  position: relative;
4417
4416
  margin-top: var(--spacing-05);
4417
+ margin-right: var(--spacing-20);
4418
4418
  }
4419
4419
 
4420
4420
  .Checkbox-outerWrapper--regular {
@@ -4735,15 +4735,6 @@ body {
4735
4735
  line-height: var(--font-height);
4736
4736
  }
4737
4737
 
4738
- /** Grid **/
4739
-
4740
- .Grid-wrapper {
4741
- display: flex;
4742
- position: relative;
4743
- overflow: hidden;
4744
- height: 100%;
4745
- }
4746
-
4747
4738
  .Grid {
4748
4739
  display: flex;
4749
4740
  flex-direction: column;
@@ -4753,20 +4744,11 @@ body {
4753
4744
  background: var(--white);
4754
4745
  }
4755
4746
 
4756
- .Grid--resource .Grid-row--body:hover,
4757
- .Grid--resource .Grid-row--body:hover .Grid-cellGroup {
4758
- cursor: pointer;
4759
- background: var(--secondary-lightest);
4760
- }
4761
-
4762
- .Grid--resource .Grid-row--body:active,
4763
- .Grid--resource .Grid-row--body:active .Grid-cellGroup {
4764
- background: var(--secondary-lighter);
4765
- }
4766
-
4767
- .Grid--resource .Grid-row--body:focus {
4768
- box-shadow: var(--shadow-spread) rgba(213, 213, 213, 0.16);
4769
- outline: none;
4747
+ .Grid-wrapper {
4748
+ display: flex;
4749
+ position: relative;
4750
+ overflow: hidden;
4751
+ height: 100%;
4770
4752
  }
4771
4753
 
4772
4754
  .Grid--pinned {
@@ -4869,42 +4851,6 @@ body {
4869
4851
  border-bottom: var(--border);
4870
4852
  }
4871
4853
 
4872
- .Grid-row {
4873
- display: flex;
4874
- flex-grow: 1;
4875
- flex-shrink: 0;
4876
- box-sizing: border-box;
4877
- background: var(--white);
4878
- transition: var(--duration--fast-02) var(--standard-productive-curve);
4879
- transition-delay: var(--duration--fast-01);
4880
- }
4881
-
4882
- .Grid-row--body {
4883
- border-color: var(--secondary-light);
4884
- }
4885
-
4886
- .Grid-row--selected,
4887
- .Grid-row--selected .Grid-cellGroup {
4888
- background: rgba(220, 236, 249, 0.48);
4889
- transition: var(--duration--fast-02) var(--standard-productive-curve);
4890
- }
4891
-
4892
- .Grid-row--selected:hover,
4893
- .Grid-row--selected .Grid-cellGroup:hover {
4894
- background: rgba(151, 197, 240, 0.48) !important;
4895
- }
4896
-
4897
- .Grid-row--selected:active,
4898
- .Grid-row--selected .Grid-cellGroup:active {
4899
- background: var(--primary-lighter) !important;
4900
- }
4901
-
4902
- .Grid-row--selected:focus,
4903
- .Grid-row--selected .Grid-cellGroup:focus {
4904
- outline: none;
4905
- box-shadow: var(--shadow-spread) rgba(0, 112, 221, 0.16);
4906
- }
4907
-
4908
4854
  .Grid-rowWrapper:last-child .Grid-row--body {
4909
4855
  border-bottom: 0;
4910
4856
  }
@@ -4941,6 +4887,7 @@ body {
4941
4887
  box-sizing: border-box;
4942
4888
  padding-left: var(--spacing-30);
4943
4889
  padding-right: var(--spacing-30);
4890
+ flex-grow: 1;
4944
4891
  }
4945
4892
 
4946
4893
  .Grid-cell--body {
@@ -4976,15 +4923,6 @@ body {
4976
4923
  border-left: none;
4977
4924
  }
4978
4925
 
4979
- /* .Grid .Grid-cellGroup--main .Grid-cell--head.Grid-cell:last-child {
4980
- border-right: var(--border);
4981
- } */
4982
-
4983
- .Grid-row--disabled {
4984
- opacity: var(--opacity-10);
4985
- pointer-events: none;
4986
- }
4987
-
4988
4926
  .Grid-cell--head.Grid-cell--selected {
4989
4927
  background: var(--primary-light);
4990
4928
  }
@@ -4999,6 +4937,15 @@ body {
4999
4937
  overflow: visible !important;
5000
4938
  }
5001
4939
 
4940
+ .Grid-cell--separator {
4941
+ border-left: var(--border);
4942
+ border-color: var(--secondary-light);
4943
+ }
4944
+
4945
+ .Grid-cell--selected {
4946
+ background: var(--primary-lightest);
4947
+ }
4948
+
5002
4949
  .Grid-sortingIcons {
5003
4950
  display: flex;
5004
4951
  align-items: center;
@@ -5060,7 +5007,7 @@ body {
5060
5007
  .Grid-cellGroup {
5061
5008
  display: flex;
5062
5009
  box-sizing: border-box;
5063
- background: var(--white);
5010
+ height: 100%;
5064
5011
  }
5065
5012
 
5066
5013
  .Grid-cellGroup--pinned {
@@ -5070,48 +5017,10 @@ body {
5070
5017
 
5071
5018
  .Grid-cellGroup--pinned-left {
5072
5019
  left: 0;
5073
- border-style: inset;
5074
- border-right: var(--spacing-2-5) solid rgba(213, 213, 213, var(--opacity-3));
5075
- border-right-width: var(--border-width-10);
5076
- -o-border-image: linear-gradient(
5077
- to right,
5078
- var(--secondary-light),
5079
- var(--secondary-light) 25%,
5080
- rgba(213, 213, 213, 0.1) 25%,
5081
- rgba(213, 213, 213, 0.1)
5082
- )
5083
- 1 100%;
5084
- border-image: linear-gradient(
5085
- to right,
5086
- var(--secondary-light),
5087
- var(--secondary-light) 25%,
5088
- rgba(213, 213, 213, 0.1) 25%,
5089
- rgba(213, 213, 213, 0.1)
5090
- )
5091
- 1 100%;
5092
5020
  }
5093
5021
 
5094
5022
  .Grid-cellGroup--pinned-right {
5095
5023
  right: 0;
5096
- border-style: inset;
5097
- border-left: var(--border-width-2-5) solid rgba(213, 213, 213, var(--opacity-3));
5098
- border-left-width: var(--border-width-10);
5099
- -o-border-image: linear-gradient(
5100
- to left,
5101
- var(--secondary-light),
5102
- var(--secondary-light) 25%,
5103
- rgba(213, 213, 213, 0.1) 25%,
5104
- rgba(213, 213, 213, 0.1)
5105
- )
5106
- 1 100%;
5107
- border-image: linear-gradient(
5108
- to left,
5109
- var(--secondary-light),
5110
- var(--secondary-light) 25%,
5111
- rgba(213, 213, 213, 0.1) 25%,
5112
- rgba(213, 213, 213, 0.1)
5113
- )
5114
- 1 100%;
5115
5024
  }
5116
5025
 
5117
5026
  .Grid .Checkbox-wrapper {
@@ -5128,13 +5037,11 @@ body {
5128
5037
  }
5129
5038
 
5130
5039
  .GridCell--align-left {
5131
- /* flex-direction: row; */
5132
5040
  justify-content: flex-start;
5133
5041
  text-align: left;
5134
5042
  }
5135
5043
 
5136
5044
  .GridCell--align-right {
5137
- /* flex-direction: row-reverse; */
5138
5045
  justify-content: flex-end;
5139
5046
  text-align: right;
5140
5047
  }
@@ -5144,6 +5051,9 @@ body {
5144
5051
  text-align: center;
5145
5052
  }
5146
5053
 
5054
+ .GridCell--default {
5055
+ }
5056
+
5147
5057
  .GridCell--metaList {
5148
5058
  display: flex;
5149
5059
  flex-direction: column;
@@ -5269,6 +5179,194 @@ body {
5269
5179
  margin-bottom: var(--spacing-40);
5270
5180
  }
5271
5181
 
5182
+ /* Grid row */
5183
+
5184
+ .Grid-row--disabled {
5185
+ opacity: var(--opacity-10);
5186
+ pointer-events: none;
5187
+ }
5188
+
5189
+ .Grid-row {
5190
+ display: flex;
5191
+ flex-grow: 1;
5192
+ flex-shrink: 0;
5193
+ box-sizing: border-box;
5194
+ background: var(--white);
5195
+ }
5196
+
5197
+ .Grid-row--body {
5198
+ border-color: var(--secondary-light);
5199
+ }
5200
+
5201
+ .Grid--resource .Grid-row--body:hover {
5202
+ cursor: pointer;
5203
+ background: var(--secondary-lightest);
5204
+ }
5205
+
5206
+ .Grid--resource .Grid-row--body:active {
5207
+ background: var(--secondary-lighter);
5208
+ }
5209
+
5210
+ .Grid--resource .Grid-row--body:focus {
5211
+ box-shadow: var(--shadow-spread) rgba(213, 213, 213, 0.16);
5212
+ outline: none;
5213
+ }
5214
+
5215
+ /* Selected States */
5216
+
5217
+ .Grid-row--selected {
5218
+ background: rgba(220, 236, 249, 0.48);
5219
+ }
5220
+
5221
+ .Grid-row--selected:hover {
5222
+ background: rgba(151, 197, 240, 0.48) !important;
5223
+ }
5224
+
5225
+ .Grid-row--selected:active {
5226
+ background: var(--primary-lighter) !important;
5227
+ }
5228
+
5229
+ .Grid-row--selected:focus {
5230
+ outline: none;
5231
+ box-shadow: var(--shadow-spread) rgba(0, 112, 221, 0.16);
5232
+ }
5233
+
5234
+ /* Activated States */
5235
+
5236
+ .Grid-row--activated {
5237
+ background: var(--primary-lightest);
5238
+ }
5239
+
5240
+ /* Pinned Columns Default State */
5241
+
5242
+ .Grid--resource .Grid-row--body:hover .Grid-cellWrapper--pinned {
5243
+ cursor: pointer;
5244
+ background: var(--secondary-lightest);
5245
+ }
5246
+
5247
+ .Grid--resource .Grid-row--body:active .Grid-cellWrapper--pinned {
5248
+ background: var(--secondary-lighter);
5249
+ }
5250
+
5251
+ .Grid--resource .Grid-row--body:focus .Grid-cellWrapper--pinned {
5252
+ box-shadow: var(--shadow-spread) rgba(213, 213, 213, 0.16);
5253
+ outline: none;
5254
+ }
5255
+
5256
+ /* Pinned Columns Selected State */
5257
+
5258
+ .Grid-row--selected .Grid-cellWrapper--pinned {
5259
+ background: rgba(220, 236, 249, 0.48);
5260
+ }
5261
+
5262
+ .Grid-row--selected:hover .Grid-cellWrapper--pinned {
5263
+ background: rgba(151, 197, 240, 0.48) !important;
5264
+ }
5265
+
5266
+ .Grid-row--selected:active .Grid-cellWrapper--pinned {
5267
+ background: var(--primary-lighter) !important;
5268
+ }
5269
+
5270
+ .Grid-row--selected:focus .Grid-cellWrapper--pinned {
5271
+ outline: none;
5272
+ box-shadow: var(--shadow-spread) rgba(0, 112, 221, 0.16);
5273
+ }
5274
+
5275
+ /* Grid header */
5276
+ .Grid-row--head .Grid-cellGroup--pinned {
5277
+ background: var(--white);
5278
+ }
5279
+
5280
+ .Grid-row--head .Grid-cellGroup--pinned-left {
5281
+ border-style: inset;
5282
+ border-right: var(--spacing-xs) solid rgba(213, 213, 213, var(--opacity-3));
5283
+ border-right-width: 4px;
5284
+ -o-border-image: linear-gradient(
5285
+ to right,
5286
+ var(--secondary-light),
5287
+ var(--secondary-light) 25%,
5288
+ rgba(213, 213, 213, 0.1) 25%,
5289
+ rgba(213, 213, 213, 0.1)
5290
+ )
5291
+ 1 100%;
5292
+ border-image: linear-gradient(
5293
+ to right,
5294
+ var(--secondary-light),
5295
+ var(--secondary-light) 25%,
5296
+ rgba(213, 213, 213, 0.1) 25%,
5297
+ rgba(213, 213, 213, 0.1)
5298
+ )
5299
+ 1 100%;
5300
+ }
5301
+
5302
+ .Grid-row--head .Grid-cellGroup--pinned-right {
5303
+ border-style: inset;
5304
+ border-left: var(--spacing-xs) solid rgba(213, 213, 213, var(--opacity-3));
5305
+ border-left-width: 4px;
5306
+ -o-border-image: linear-gradient(
5307
+ to left,
5308
+ var(--secondary-light),
5309
+ var(--secondary-light) 25%,
5310
+ rgba(213, 213, 213, 0.1) 25%,
5311
+ rgba(213, 213, 213, 0.1)
5312
+ )
5313
+ 1 100%;
5314
+ border-image: linear-gradient(
5315
+ to left,
5316
+ var(--secondary-light),
5317
+ var(--secondary-light) 25%,
5318
+ rgba(213, 213, 213, 0.1) 25%,
5319
+ rgba(213, 213, 213, 0.1)
5320
+ )
5321
+ 1 100%;
5322
+ }
5323
+
5324
+ /* Pinned Column Border */
5325
+
5326
+ .Grid-cellWrapper--pinned-left {
5327
+ border-style: inset;
5328
+ border-right: var(--spacing-xs) solid rgba(213, 213, 213, var(--opacity-3));
5329
+ border-right-width: 4px;
5330
+ -o-border-image: linear-gradient(
5331
+ to right,
5332
+ var(--secondary-light),
5333
+ var(--secondary-light) 25%,
5334
+ rgba(213, 213, 213, 0.1) 25%,
5335
+ rgba(213, 213, 213, 0.1)
5336
+ )
5337
+ 1 100%;
5338
+ border-image: linear-gradient(
5339
+ to right,
5340
+ var(--secondary-light),
5341
+ var(--secondary-light) 25%,
5342
+ rgba(213, 213, 213, 0.1) 25%,
5343
+ rgba(213, 213, 213, 0.1)
5344
+ )
5345
+ 1 100%;
5346
+ }
5347
+
5348
+ .Grid-cellWrapper--pinned-right {
5349
+ border-style: inset;
5350
+ border-left: var(--spacing-xs) solid rgba(213, 213, 213, var(--opacity-3));
5351
+ border-left-width: 4px;
5352
+ -o-border-image: linear-gradient(
5353
+ to left,
5354
+ var(--secondary-light),
5355
+ var(--secondary-light) 25%,
5356
+ rgba(213, 213, 213, 0.1) 25%,
5357
+ rgba(213, 213, 213, 0.1)
5358
+ )
5359
+ 1 100%;
5360
+ border-image: linear-gradient(
5361
+ to left,
5362
+ var(--secondary-light),
5363
+ var(--secondary-light) 25%,
5364
+ rgba(213, 213, 213, 0.1) 25%,
5365
+ rgba(213, 213, 213, 0.1)
5366
+ )
5367
+ 1 100%;
5368
+ }
5369
+
5272
5370
  .Row {
5273
5371
  display: flex;
5274
5372
  flex-wrap: wrap;
@@ -7935,6 +8033,7 @@ body {
7935
8033
 
7936
8034
  .MenuItem-count {
7937
8035
  margin-right: var(--spacing-10);
8036
+ flex-shrink: 0;
7938
8037
  }
7939
8038
 
7940
8039
  .MenuItem-count--disabled {
@@ -10071,7 +10170,6 @@ body {
10071
10170
  -moz-user-select: none;
10072
10171
  user-select: none;
10073
10172
  cursor: pointer;
10074
- color: var(--inverse);
10075
10173
  border-radius: var(--border-radius-full);
10076
10174
  padding: var(--spacing-05);
10077
10175
  }
@@ -10203,6 +10301,98 @@ body {
10203
10301
  flex: 0 0 auto;
10204
10302
  }
10205
10303
 
10304
+ .ChatInput {
10305
+ display: flex;
10306
+ flex-direction: row;
10307
+ align-items: center;
10308
+ border: var(--border-width-2-5) solid var(--secondary);
10309
+ padding: var(--spacing-20);
10310
+ border-radius: var(--border-radius-10);
10311
+ background: var(--white);
10312
+ max-width: 100%;
10313
+ min-width: var(--spacing-640);
10314
+ transition: all var(--duration--slow-01) var(--standard-productive-curve);
10315
+ max-height: var(--spacing-440);
10316
+ position: relative;
10317
+ box-sizing: border-box;
10318
+ line-height: var(--font-height-m);
10319
+ }
10320
+
10321
+ .ChatInput--expanded {
10322
+ flex-direction: column;
10323
+ align-items: flex-start;
10324
+ }
10325
+
10326
+ .ChatInput--disabled {
10327
+ background: var(--secondary-lightest);
10328
+ cursor: not-allowed;
10329
+ }
10330
+
10331
+ .ChatInput:hover {
10332
+ background: var(--secondary-lighter);
10333
+ }
10334
+
10335
+ .ChatInput:focus-within,
10336
+ .ChatInput:focus,
10337
+ .ChatInput:focus-visible {
10338
+ outline: none;
10339
+ border: var(--border-width-2-5) solid var(--primary);
10340
+ box-shadow: var(--shadow-spread) var(--primary-shadow);
10341
+ }
10342
+
10343
+ .ChatInput-textarea {
10344
+ flex: 1;
10345
+ /* height: 100%; */
10346
+ height: var(--spacing-60);
10347
+ width: 100%;
10348
+ resize: none;
10349
+ border: none;
10350
+ outline: none;
10351
+ transition-delay: var(--duration--slow-01);
10352
+ transition: width var(--duration--slow-01) var(--standard-productive-curve);
10353
+ box-sizing: border-box;
10354
+ cursor: auto;
10355
+ padding: var(--spacing-05) 0;
10356
+ background: none;
10357
+ word-break: break-all;
10358
+ overflow-y: scroll;
10359
+ font-family: var(--font-family);
10360
+ font-weight: var(--font-weight-normal);
10361
+ line-height: var(--font-height);
10362
+ font-size: var(--font-size);
10363
+ }
10364
+
10365
+ .ChatInput-textarea::-moz-placeholder {
10366
+ color: var(--inverse-lighter);
10367
+ }
10368
+
10369
+ .ChatInput-textarea::placeholder {
10370
+ color: var(--inverse-lighter);
10371
+ }
10372
+
10373
+ .ChatInput textarea:disabled::-moz-placeholder {
10374
+ color: var(--inverse-lightest);
10375
+ }
10376
+
10377
+ .ChatInput textarea:disabled::placeholder {
10378
+ color: var(--inverse-lightest);
10379
+ }
10380
+
10381
+ .ChatInput-actions {
10382
+ display: flex;
10383
+ flex-shrink: 0;
10384
+ transition: all var(--duration--slow-01) var(--standard-productive-curve);
10385
+ margin-left: var(--spacing-20);
10386
+ align-items: center;
10387
+ }
10388
+
10389
+ .ChatInput-actions--expanded {
10390
+ width: 100%;
10391
+ justify-content: flex-end;
10392
+ margin-top: var(--spacing-20);
10393
+ margin-left: 0;
10394
+ }
10395
+
10206
10396
  .Meter {
10207
10397
  display: flex;
10208
10398
  align-items: center;
@@ -10254,62 +10444,47 @@ body {
10254
10444
  line-height: var(--font-height-s);
10255
10445
  display: flex;
10256
10446
  align-items: center;
10257
- }
10258
-
10259
- .AIButton:disabled {
10260
- cursor: not-allowed;
10261
- pointer-events: none;
10262
- }
10263
-
10264
- .AIButton:focus {
10265
- outline: 0;
10266
- }
10267
-
10268
- /* Primary Button */
10269
-
10270
- .AIButton--primary {
10271
- background: var(--primary);
10272
- color: var(--white);
10273
- }
10274
-
10275
- .AIButton--primary:hover {
10276
- background: var(--primary-dark);
10277
- }
10278
-
10279
- .AIButton--primary:active {
10280
- background: var(--primary-darker);
10281
- }
10282
-
10283
- .AIButton--primary:disabled {
10284
- background: var(--primary-lighter);
10285
- }
10286
-
10287
- .AIButton--primary:focus {
10288
- box-shadow: var(--shadow-spread) var(--primary-shadow);
10289
- }
10290
-
10291
- /* Basic Button */
10292
-
10293
- .AIButton--basic {
10294
- background: var(--secondary-light);
10295
10447
  color: var(--inverse);
10448
+ background: linear-gradient(
10449
+ 277deg,
10450
+ rgba(227, 28, 121, 0.15) 0%,
10451
+ rgba(231, 56, 79, 0.24) 28%,
10452
+ rgba(240, 125, 0, 0.15) 100%
10453
+ );
10296
10454
  }
10297
10455
 
10298
- .AIButton--basic:hover {
10299
- background: var(--secondary);
10456
+ .AIButton:hover {
10457
+ background: linear-gradient(
10458
+ 277deg,
10459
+ rgba(227, 28, 121, 0.2) 0%,
10460
+ rgba(231, 56, 79, 0.32) 28%,
10461
+ rgba(240, 125, 0, 0.2) 100%
10462
+ );
10300
10463
  }
10301
10464
 
10302
- .AIButton--basic:active {
10303
- background: var(--secondary-dark);
10465
+ .AIButton:active {
10466
+ background: linear-gradient(
10467
+ 277deg,
10468
+ rgba(227, 28, 121, 0.31) 0%,
10469
+ rgba(231, 56, 79, 0.48) 28%,
10470
+ rgba(240, 125, 0, 0.31) 100%
10471
+ );
10304
10472
  }
10305
10473
 
10306
- .AIButton--basic:disabled {
10307
- background: var(--secondary-lighter);
10308
- color: var(--inverse-lightest);
10474
+ .AIButton:disabled {
10475
+ cursor: not-allowed;
10476
+ opacity: var(--opacity-10);
10477
+ background: linear-gradient(
10478
+ 277deg,
10479
+ rgba(227, 28, 121, 0.15) 0%,
10480
+ rgba(231, 56, 79, 0.24) 28%,
10481
+ rgba(240, 125, 0, 0.15) 100%
10482
+ );
10309
10483
  }
10310
10484
 
10311
- .AIButton--basic:focus {
10312
- box-shadow: var(--shadow-spread) var(--secondary-shadow);
10485
+ .AIButton:focus {
10486
+ outline: 0;
10487
+ box-shadow: var(--shadow-spread) var(--primary-shadow);
10313
10488
  }
10314
10489
 
10315
10490
  /* Button Icon */