@coveo/atomic 3.55.1 → 3.55.3

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.
@@ -9148,18 +9148,12 @@
9148
9148
  },
9149
9149
  {
9150
9150
  "kind": "javascript-module",
9151
- "path": "src/components/commerce/atomic-product-field-condition/atomic-product-field-condition.ts",
9151
+ "path": "src/components/commerce/atomic-product-excerpt/atomic-product-excerpt.ts",
9152
9152
  "declarations": [
9153
9153
  {
9154
9154
  "kind": "class",
9155
- "description": "The `atomic-product-field-condition` component renders its children only when all of the conditions specified through its props are satisfied.\nThe condition properties can be based on any top-level product property of the `product` object, not restricted to fields (for example, `ec_name`).",
9156
- "name": "AtomicProductFieldCondition",
9157
- "slots": [
9158
- {
9159
- "description": "The content to render if the conditions are met.",
9160
- "name": "default"
9161
- }
9162
- ],
9155
+ "description": "The `atomic-product-excerpt` component renders the excerpt of a product.",
9156
+ "name": "AtomicProductExcerpt",
9163
9157
  "members": [
9164
9158
  {
9165
9159
  "kind": "field",
@@ -9184,47 +9178,87 @@
9184
9178
  },
9185
9179
  {
9186
9180
  "kind": "field",
9187
- "name": "ifDefined",
9181
+ "name": "isExpanded",
9188
9182
  "type": {
9189
- "text": "string"
9183
+ "text": "boolean"
9190
9184
  },
9191
- "description": "A condition that is satisfied when the specified field is defined on a product (for example, `if-defined=\"cat_gender\"` is satisfied when a product has the `cat_gender` field).",
9192
- "attribute": "if-defined"
9185
+ "privacy": "private",
9186
+ "default": "false"
9193
9187
  },
9194
9188
  {
9195
9189
  "kind": "field",
9196
- "name": "ifNotDefined",
9190
+ "name": "isTruncated",
9197
9191
  "type": {
9198
- "text": "string"
9192
+ "text": "boolean"
9199
9193
  },
9200
- "description": "A condition that is satisfied when the specified field is not defined on a product (for example, `if-not-defined=\"cat_gender\"` is satisfied when a product does not have the `cat_gender` field).",
9201
- "attribute": "if-not-defined"
9194
+ "privacy": "private",
9195
+ "default": "false"
9202
9196
  },
9203
9197
  {
9204
9198
  "kind": "field",
9205
- "name": "mustMatch",
9199
+ "name": "resizeObserver",
9206
9200
  "type": {
9207
- "text": "Record<string, string[]>"
9201
+ "text": "ResizeObserver"
9208
9202
  },
9209
- "description": "A condition that is satisfied when the specified field matches one of the specified values on a product (for example, `must-match-ec_color=\"Pink,Purple\"` is satisfied when a product is either pink or purple)."
9203
+ "privacy": "private",
9204
+ "default": "new ResizeObserver(() => { if (this.excerptRef.value) { this.isTruncated = this.excerptRef.value.scrollHeight > this.excerptRef.value.clientHeight; } })"
9210
9205
  },
9211
9206
  {
9212
9207
  "kind": "field",
9213
- "name": "mustNotMatch",
9208
+ "name": "excerptRef",
9209
+ "privacy": "private"
9210
+ },
9211
+ {
9212
+ "kind": "field",
9213
+ "name": "truncateAfter",
9214
9214
  "type": {
9215
- "text": "Record<string, string[]>"
9215
+ "text": "TruncateAfter"
9216
9216
  },
9217
- "description": "A condition that is satisfied when the specified field does not match any of the specified values on a product (for example, `must-not-match-ec_color=\"Green,Black\"` is satisfied when a product is neither green nor black)."
9217
+ "privacy": "public",
9218
+ "default": "'2'",
9219
+ "description": "The number of lines after which the product excerpt should be truncated. A value of \"none\" will disable truncation.",
9220
+ "attribute": "truncate-after"
9221
+ },
9222
+ {
9223
+ "kind": "field",
9224
+ "name": "isCollapsible",
9225
+ "type": {
9226
+ "text": "boolean"
9227
+ },
9228
+ "privacy": "public",
9229
+ "default": "false",
9230
+ "description": "Whether the excerpt should be collapsible after being expanded.",
9231
+ "attribute": "is-collapsible"
9218
9232
  },
9219
9233
  {
9220
9234
  "kind": "method",
9221
- "name": "initialize"
9235
+ "name": "initialize",
9236
+ "privacy": "public"
9237
+ },
9238
+ {
9239
+ "kind": "method",
9240
+ "name": "validateProps",
9241
+ "privacy": "private"
9242
+ },
9243
+ {
9244
+ "kind": "method",
9245
+ "name": "onToggleExpand",
9246
+ "privacy": "private",
9247
+ "parameters": [
9248
+ {
9249
+ "name": "e",
9250
+ "optional": true,
9251
+ "type": {
9252
+ "text": "MouseEvent"
9253
+ }
9254
+ }
9255
+ ]
9222
9256
  },
9223
9257
  {
9224
9258
  "kind": "field",
9225
- "name": "conditions",
9259
+ "name": "product",
9226
9260
  "type": {
9227
- "text": "ProductTemplateCondition[]"
9261
+ "text": "Product | null"
9228
9262
  },
9229
9263
  "privacy": "private",
9230
9264
  "readonly": true
@@ -9273,28 +9307,22 @@
9273
9307
  ],
9274
9308
  "attributes": [
9275
9309
  {
9276
- "name": "if-defined",
9310
+ "name": "truncate-after",
9277
9311
  "type": {
9278
- "text": "string"
9312
+ "text": "TruncateAfter"
9279
9313
  },
9280
- "description": "A condition that is satisfied when the specified field is defined on a product (for example, `if-defined=\"cat_gender\"` is satisfied when a product has the `cat_gender` field).",
9281
- "fieldName": "ifDefined"
9314
+ "default": "'2'",
9315
+ "description": "The number of lines after which the product excerpt should be truncated. A value of \"none\" will disable truncation.",
9316
+ "fieldName": "truncateAfter"
9282
9317
  },
9283
9318
  {
9284
- "name": "if-not-defined",
9319
+ "name": "is-collapsible",
9285
9320
  "type": {
9286
- "text": "string"
9321
+ "text": "boolean"
9287
9322
  },
9288
- "description": "A condition that is satisfied when the specified field is not defined on a product (for example, `if-not-defined=\"cat_gender\"` is satisfied when a product does not have the `cat_gender` field).",
9289
- "fieldName": "ifNotDefined"
9290
- },
9291
- {
9292
- "name": "must-match",
9293
- "fieldName": "mustMatch"
9294
- },
9295
- {
9296
- "name": "must-not-match",
9297
- "fieldName": "mustNotMatch"
9323
+ "default": "false",
9324
+ "description": "Whether the excerpt should be collapsible after being expanded.",
9325
+ "fieldName": "isCollapsible"
9298
9326
  }
9299
9327
  ],
9300
9328
  "mixins": [
@@ -9308,37 +9336,43 @@
9308
9336
  "package": "lit"
9309
9337
  },
9310
9338
  "events": [],
9311
- "tagName": "atomic-product-field-condition",
9339
+ "tagName": "atomic-product-excerpt",
9312
9340
  "customElement": true
9313
9341
  }
9314
9342
  ],
9315
9343
  "exports": [
9316
9344
  {
9317
9345
  "kind": "js",
9318
- "name": "AtomicProductFieldCondition",
9346
+ "name": "AtomicProductExcerpt",
9319
9347
  "declaration": {
9320
- "name": "AtomicProductFieldCondition",
9321
- "module": "src/components/commerce/atomic-product-field-condition/atomic-product-field-condition.ts"
9348
+ "name": "AtomicProductExcerpt",
9349
+ "module": "src/components/commerce/atomic-product-excerpt/atomic-product-excerpt.ts"
9322
9350
  }
9323
9351
  },
9324
9352
  {
9325
9353
  "kind": "custom-element-definition",
9326
- "name": "atomic-product-field-condition",
9354
+ "name": "atomic-product-excerpt",
9327
9355
  "declaration": {
9328
- "name": "AtomicProductFieldCondition",
9329
- "module": "src/components/commerce/atomic-product-field-condition/atomic-product-field-condition.ts"
9356
+ "name": "AtomicProductExcerpt",
9357
+ "module": "src/components/commerce/atomic-product-excerpt/atomic-product-excerpt.ts"
9330
9358
  }
9331
9359
  }
9332
9360
  ]
9333
9361
  },
9334
9362
  {
9335
9363
  "kind": "javascript-module",
9336
- "path": "src/components/commerce/atomic-product-excerpt/atomic-product-excerpt.ts",
9364
+ "path": "src/components/commerce/atomic-product-field-condition/atomic-product-field-condition.ts",
9337
9365
  "declarations": [
9338
9366
  {
9339
9367
  "kind": "class",
9340
- "description": "The `atomic-product-excerpt` component renders the excerpt of a product.",
9341
- "name": "AtomicProductExcerpt",
9368
+ "description": "The `atomic-product-field-condition` component renders its children only when all of the conditions specified through its props are satisfied.\nThe condition properties can be based on any top-level product property of the `product` object, not restricted to fields (for example, `ec_name`).",
9369
+ "name": "AtomicProductFieldCondition",
9370
+ "slots": [
9371
+ {
9372
+ "description": "The content to render if the conditions are met.",
9373
+ "name": "default"
9374
+ }
9375
+ ],
9342
9376
  "members": [
9343
9377
  {
9344
9378
  "kind": "field",
@@ -9363,87 +9397,47 @@
9363
9397
  },
9364
9398
  {
9365
9399
  "kind": "field",
9366
- "name": "isExpanded",
9367
- "type": {
9368
- "text": "boolean"
9369
- },
9370
- "privacy": "private",
9371
- "default": "false"
9372
- },
9373
- {
9374
- "kind": "field",
9375
- "name": "isTruncated",
9400
+ "name": "ifDefined",
9376
9401
  "type": {
9377
- "text": "boolean"
9402
+ "text": "string"
9378
9403
  },
9379
- "privacy": "private",
9380
- "default": "false"
9404
+ "description": "A condition that is satisfied when the specified field is defined on a product (for example, `if-defined=\"cat_gender\"` is satisfied when a product has the `cat_gender` field).",
9405
+ "attribute": "if-defined"
9381
9406
  },
9382
9407
  {
9383
9408
  "kind": "field",
9384
- "name": "resizeObserver",
9409
+ "name": "ifNotDefined",
9385
9410
  "type": {
9386
- "text": "ResizeObserver"
9411
+ "text": "string"
9387
9412
  },
9388
- "privacy": "private",
9389
- "default": "new ResizeObserver(() => { if (this.excerptRef.value) { this.isTruncated = this.excerptRef.value.scrollHeight > this.excerptRef.value.clientHeight; } })"
9390
- },
9391
- {
9392
- "kind": "field",
9393
- "name": "excerptRef",
9394
- "privacy": "private"
9413
+ "description": "A condition that is satisfied when the specified field is not defined on a product (for example, `if-not-defined=\"cat_gender\"` is satisfied when a product does not have the `cat_gender` field).",
9414
+ "attribute": "if-not-defined"
9395
9415
  },
9396
9416
  {
9397
9417
  "kind": "field",
9398
- "name": "truncateAfter",
9418
+ "name": "mustMatch",
9399
9419
  "type": {
9400
- "text": "TruncateAfter"
9420
+ "text": "Record<string, string[]>"
9401
9421
  },
9402
- "privacy": "public",
9403
- "default": "'2'",
9404
- "description": "The number of lines after which the product excerpt should be truncated. A value of \"none\" will disable truncation.",
9405
- "attribute": "truncate-after"
9422
+ "description": "A condition that is satisfied when the specified field matches one of the specified values on a product (for example, `must-match-ec_color=\"Pink,Purple\"` is satisfied when a product is either pink or purple)."
9406
9423
  },
9407
9424
  {
9408
9425
  "kind": "field",
9409
- "name": "isCollapsible",
9426
+ "name": "mustNotMatch",
9410
9427
  "type": {
9411
- "text": "boolean"
9428
+ "text": "Record<string, string[]>"
9412
9429
  },
9413
- "privacy": "public",
9414
- "default": "false",
9415
- "description": "Whether the excerpt should be collapsible after being expanded.",
9416
- "attribute": "is-collapsible"
9417
- },
9418
- {
9419
- "kind": "method",
9420
- "name": "initialize",
9421
- "privacy": "public"
9422
- },
9423
- {
9424
- "kind": "method",
9425
- "name": "validateProps",
9426
- "privacy": "private"
9430
+ "description": "A condition that is satisfied when the specified field does not match any of the specified values on a product (for example, `must-not-match-ec_color=\"Green,Black\"` is satisfied when a product is neither green nor black)."
9427
9431
  },
9428
9432
  {
9429
9433
  "kind": "method",
9430
- "name": "onToggleExpand",
9431
- "privacy": "private",
9432
- "parameters": [
9433
- {
9434
- "name": "e",
9435
- "optional": true,
9436
- "type": {
9437
- "text": "MouseEvent"
9438
- }
9439
- }
9440
- ]
9434
+ "name": "initialize"
9441
9435
  },
9442
9436
  {
9443
9437
  "kind": "field",
9444
- "name": "product",
9438
+ "name": "conditions",
9445
9439
  "type": {
9446
- "text": "Product | null"
9440
+ "text": "ProductTemplateCondition[]"
9447
9441
  },
9448
9442
  "privacy": "private",
9449
9443
  "readonly": true
@@ -9492,22 +9486,28 @@
9492
9486
  ],
9493
9487
  "attributes": [
9494
9488
  {
9495
- "name": "truncate-after",
9489
+ "name": "if-defined",
9496
9490
  "type": {
9497
- "text": "TruncateAfter"
9491
+ "text": "string"
9498
9492
  },
9499
- "default": "'2'",
9500
- "description": "The number of lines after which the product excerpt should be truncated. A value of \"none\" will disable truncation.",
9501
- "fieldName": "truncateAfter"
9493
+ "description": "A condition that is satisfied when the specified field is defined on a product (for example, `if-defined=\"cat_gender\"` is satisfied when a product has the `cat_gender` field).",
9494
+ "fieldName": "ifDefined"
9502
9495
  },
9503
9496
  {
9504
- "name": "is-collapsible",
9497
+ "name": "if-not-defined",
9505
9498
  "type": {
9506
- "text": "boolean"
9499
+ "text": "string"
9507
9500
  },
9508
- "default": "false",
9509
- "description": "Whether the excerpt should be collapsible after being expanded.",
9510
- "fieldName": "isCollapsible"
9501
+ "description": "A condition that is satisfied when the specified field is not defined on a product (for example, `if-not-defined=\"cat_gender\"` is satisfied when a product does not have the `cat_gender` field).",
9502
+ "fieldName": "ifNotDefined"
9503
+ },
9504
+ {
9505
+ "name": "must-match",
9506
+ "fieldName": "mustMatch"
9507
+ },
9508
+ {
9509
+ "name": "must-not-match",
9510
+ "fieldName": "mustNotMatch"
9511
9511
  }
9512
9512
  ],
9513
9513
  "mixins": [
@@ -9521,25 +9521,25 @@
9521
9521
  "package": "lit"
9522
9522
  },
9523
9523
  "events": [],
9524
- "tagName": "atomic-product-excerpt",
9524
+ "tagName": "atomic-product-field-condition",
9525
9525
  "customElement": true
9526
9526
  }
9527
9527
  ],
9528
9528
  "exports": [
9529
9529
  {
9530
9530
  "kind": "js",
9531
- "name": "AtomicProductExcerpt",
9531
+ "name": "AtomicProductFieldCondition",
9532
9532
  "declaration": {
9533
- "name": "AtomicProductExcerpt",
9534
- "module": "src/components/commerce/atomic-product-excerpt/atomic-product-excerpt.ts"
9533
+ "name": "AtomicProductFieldCondition",
9534
+ "module": "src/components/commerce/atomic-product-field-condition/atomic-product-field-condition.ts"
9535
9535
  }
9536
9536
  },
9537
9537
  {
9538
9538
  "kind": "custom-element-definition",
9539
- "name": "atomic-product-excerpt",
9539
+ "name": "atomic-product-field-condition",
9540
9540
  "declaration": {
9541
- "name": "AtomicProductExcerpt",
9542
- "module": "src/components/commerce/atomic-product-excerpt/atomic-product-excerpt.ts"
9541
+ "name": "AtomicProductFieldCondition",
9542
+ "module": "src/components/commerce/atomic-product-field-condition/atomic-product-field-condition.ts"
9543
9543
  }
9544
9544
  }
9545
9545
  ]
@@ -14108,12 +14108,6 @@
14108
14108
  "declarations": [],
14109
14109
  "exports": []
14110
14110
  },
14111
- {
14112
- "kind": "javascript-module",
14113
- "path": "src/components/common/expandable-text/expandable-text.ts",
14114
- "declarations": [],
14115
- "exports": []
14116
- },
14117
14111
  {
14118
14112
  "kind": "javascript-module",
14119
14113
  "path": "src/components/common/facets/depends-on.ts",
@@ -14150,6 +14144,12 @@
14150
14144
  "declarations": [],
14151
14145
  "exports": []
14152
14146
  },
14147
+ {
14148
+ "kind": "javascript-module",
14149
+ "path": "src/components/common/expandable-text/expandable-text.ts",
14150
+ "declarations": [],
14151
+ "exports": []
14152
+ },
14153
14153
  {
14154
14154
  "kind": "javascript-module",
14155
14155
  "path": "src/components/common/formats/format-common.ts",
@@ -14560,115 +14560,115 @@
14560
14560
  },
14561
14561
  {
14562
14562
  "kind": "javascript-module",
14563
- "path": "src/components/common/query-error/container.ts",
14563
+ "path": "src/components/common/query-summary/container.ts",
14564
14564
  "declarations": [],
14565
14565
  "exports": []
14566
14566
  },
14567
14567
  {
14568
14568
  "kind": "javascript-module",
14569
- "path": "src/components/common/query-error/description.ts",
14569
+ "path": "src/components/common/query-summary/guard.ts",
14570
14570
  "declarations": [],
14571
14571
  "exports": []
14572
14572
  },
14573
14573
  {
14574
14574
  "kind": "javascript-module",
14575
- "path": "src/components/common/query-error/details.ts",
14575
+ "path": "src/components/common/query-summary/utils.ts",
14576
14576
  "declarations": [],
14577
14577
  "exports": []
14578
14578
  },
14579
14579
  {
14580
14580
  "kind": "javascript-module",
14581
- "path": "src/components/common/query-error/icon.ts",
14581
+ "path": "src/components/common/refine-modal/body.ts",
14582
14582
  "declarations": [],
14583
14583
  "exports": []
14584
14584
  },
14585
14585
  {
14586
14586
  "kind": "javascript-module",
14587
- "path": "src/components/common/query-error/known-error-types.ts",
14587
+ "path": "src/components/common/refine-modal/button.ts",
14588
14588
  "declarations": [],
14589
14589
  "exports": []
14590
14590
  },
14591
14591
  {
14592
14592
  "kind": "javascript-module",
14593
- "path": "src/components/common/query-error/link.ts",
14593
+ "path": "src/components/common/refine-modal/cloned-facet-elements.ts",
14594
14594
  "declarations": [],
14595
14595
  "exports": []
14596
14596
  },
14597
14597
  {
14598
14598
  "kind": "javascript-module",
14599
- "path": "src/components/common/query-error/show-more.ts",
14599
+ "path": "src/components/common/refine-modal/filters.ts",
14600
14600
  "declarations": [],
14601
14601
  "exports": []
14602
14602
  },
14603
14603
  {
14604
14604
  "kind": "javascript-module",
14605
- "path": "src/components/common/query-error/title.ts",
14605
+ "path": "src/components/common/refine-modal/guard.ts",
14606
14606
  "declarations": [],
14607
14607
  "exports": []
14608
14608
  },
14609
14609
  {
14610
14610
  "kind": "javascript-module",
14611
- "path": "src/components/common/query-error/utils.ts",
14611
+ "path": "src/components/common/refine-modal/modal.ts",
14612
14612
  "declarations": [],
14613
14613
  "exports": []
14614
14614
  },
14615
14615
  {
14616
14616
  "kind": "javascript-module",
14617
- "path": "src/components/common/query-summary/container.ts",
14617
+ "path": "src/components/common/refine-modal/sort.ts",
14618
14618
  "declarations": [],
14619
14619
  "exports": []
14620
14620
  },
14621
14621
  {
14622
14622
  "kind": "javascript-module",
14623
- "path": "src/components/common/query-summary/guard.ts",
14623
+ "path": "src/components/common/query-error/container.ts",
14624
14624
  "declarations": [],
14625
14625
  "exports": []
14626
14626
  },
14627
14627
  {
14628
14628
  "kind": "javascript-module",
14629
- "path": "src/components/common/query-summary/utils.ts",
14629
+ "path": "src/components/common/query-error/description.ts",
14630
14630
  "declarations": [],
14631
14631
  "exports": []
14632
14632
  },
14633
14633
  {
14634
14634
  "kind": "javascript-module",
14635
- "path": "src/components/common/refine-modal/body.ts",
14635
+ "path": "src/components/common/query-error/details.ts",
14636
14636
  "declarations": [],
14637
14637
  "exports": []
14638
14638
  },
14639
14639
  {
14640
14640
  "kind": "javascript-module",
14641
- "path": "src/components/common/refine-modal/button.ts",
14641
+ "path": "src/components/common/query-error/icon.ts",
14642
14642
  "declarations": [],
14643
14643
  "exports": []
14644
14644
  },
14645
14645
  {
14646
14646
  "kind": "javascript-module",
14647
- "path": "src/components/common/refine-modal/cloned-facet-elements.ts",
14647
+ "path": "src/components/common/query-error/known-error-types.ts",
14648
14648
  "declarations": [],
14649
14649
  "exports": []
14650
14650
  },
14651
14651
  {
14652
14652
  "kind": "javascript-module",
14653
- "path": "src/components/common/refine-modal/filters.ts",
14653
+ "path": "src/components/common/query-error/link.ts",
14654
14654
  "declarations": [],
14655
14655
  "exports": []
14656
14656
  },
14657
14657
  {
14658
14658
  "kind": "javascript-module",
14659
- "path": "src/components/common/refine-modal/guard.ts",
14659
+ "path": "src/components/common/query-error/show-more.ts",
14660
14660
  "declarations": [],
14661
14661
  "exports": []
14662
14662
  },
14663
14663
  {
14664
14664
  "kind": "javascript-module",
14665
- "path": "src/components/common/refine-modal/modal.ts",
14665
+ "path": "src/components/common/query-error/title.ts",
14666
14666
  "declarations": [],
14667
14667
  "exports": []
14668
14668
  },
14669
14669
  {
14670
14670
  "kind": "javascript-module",
14671
- "path": "src/components/common/refine-modal/sort.ts",
14671
+ "path": "src/components/common/query-error/utils.ts",
14672
14672
  "declarations": [],
14673
14673
  "exports": []
14674
14674
  },
@@ -40537,12 +40537,12 @@
40537
40537
  },
40538
40538
  {
40539
40539
  "kind": "javascript-module",
40540
- "path": "src/components/search/atomic-result-section-children/atomic-result-section-children.ts",
40540
+ "path": "src/components/search/atomic-result-section-emphasized/atomic-result-section-emphasized.ts",
40541
40541
  "declarations": [
40542
40542
  {
40543
40543
  "kind": "class",
40544
- "description": "This section displays the folded results, available when using the <atomic-result-children> component.\n\nBehavior:\n* Shows children at the bottom of the result, indented and wrapped in a border.",
40545
- "name": "AtomicResultSectionChildren",
40544
+ "description": "This section is intended to display the field that's important for its search criteria\nFor example, in Commerce, a product's price is often more important than the title itself.\n\nBehavior:\n* Has a very large font size.\n* Is the second closest element beneath the title section.",
40545
+ "name": "AtomicResultSectionEmphasized",
40546
40546
  "mixins": [
40547
40547
  {
40548
40548
  "name": "ItemSectionMixin",
@@ -40553,7 +40553,7 @@
40553
40553
  "name": "LitElement",
40554
40554
  "package": "lit"
40555
40555
  },
40556
- "tagName": "atomic-result-section-children",
40556
+ "tagName": "atomic-result-section-emphasized",
40557
40557
  "customElement": true,
40558
40558
  "members": [
40559
40559
  {
@@ -40613,30 +40613,30 @@
40613
40613
  "exports": [
40614
40614
  {
40615
40615
  "kind": "js",
40616
- "name": "AtomicResultSectionChildren",
40616
+ "name": "AtomicResultSectionEmphasized",
40617
40617
  "declaration": {
40618
- "name": "AtomicResultSectionChildren",
40619
- "module": "src/components/search/atomic-result-section-children/atomic-result-section-children.ts"
40618
+ "name": "AtomicResultSectionEmphasized",
40619
+ "module": "src/components/search/atomic-result-section-emphasized/atomic-result-section-emphasized.ts"
40620
40620
  }
40621
40621
  },
40622
40622
  {
40623
40623
  "kind": "custom-element-definition",
40624
- "name": "atomic-result-section-children",
40624
+ "name": "atomic-result-section-emphasized",
40625
40625
  "declaration": {
40626
- "name": "AtomicResultSectionChildren",
40627
- "module": "src/components/search/atomic-result-section-children/atomic-result-section-children.ts"
40626
+ "name": "AtomicResultSectionEmphasized",
40627
+ "module": "src/components/search/atomic-result-section-emphasized/atomic-result-section-emphasized.ts"
40628
40628
  }
40629
40629
  }
40630
40630
  ]
40631
40631
  },
40632
40632
  {
40633
40633
  "kind": "javascript-module",
40634
- "path": "src/components/search/atomic-result-section-emphasized/atomic-result-section-emphasized.ts",
40634
+ "path": "src/components/search/atomic-result-section-excerpt/atomic-result-section-excerpt.ts",
40635
40635
  "declarations": [
40636
40636
  {
40637
40637
  "kind": "class",
40638
- "description": "This section is intended to display the field that's important for its search criteria\nFor example, in Commerce, a product's price is often more important than the title itself.\n\nBehavior:\n* Has a very large font size.\n* Is the second closest element beneath the title section.",
40639
- "name": "AtomicResultSectionEmphasized",
40638
+ "description": "This section is intended to render an informative summary of the result's content\n\nBehavior:\n* Has a fixed height of one to three lines, depending on the layout and density.\n* Ellipses overflowing text.\n* Exposes the `--line-height` CSS variable so child elements can adjust to the current line height.\n* Has a defined CSS `color` property for text.",
40639
+ "name": "AtomicResultSectionExcerpt",
40640
40640
  "mixins": [
40641
40641
  {
40642
40642
  "name": "ItemSectionMixin",
@@ -40647,7 +40647,7 @@
40647
40647
  "name": "LitElement",
40648
40648
  "package": "lit"
40649
40649
  },
40650
- "tagName": "atomic-result-section-emphasized",
40650
+ "tagName": "atomic-result-section-excerpt",
40651
40651
  "customElement": true,
40652
40652
  "members": [
40653
40653
  {
@@ -40707,30 +40707,30 @@
40707
40707
  "exports": [
40708
40708
  {
40709
40709
  "kind": "js",
40710
- "name": "AtomicResultSectionEmphasized",
40710
+ "name": "AtomicResultSectionExcerpt",
40711
40711
  "declaration": {
40712
- "name": "AtomicResultSectionEmphasized",
40713
- "module": "src/components/search/atomic-result-section-emphasized/atomic-result-section-emphasized.ts"
40712
+ "name": "AtomicResultSectionExcerpt",
40713
+ "module": "src/components/search/atomic-result-section-excerpt/atomic-result-section-excerpt.ts"
40714
40714
  }
40715
40715
  },
40716
40716
  {
40717
40717
  "kind": "custom-element-definition",
40718
- "name": "atomic-result-section-emphasized",
40718
+ "name": "atomic-result-section-excerpt",
40719
40719
  "declaration": {
40720
- "name": "AtomicResultSectionEmphasized",
40721
- "module": "src/components/search/atomic-result-section-emphasized/atomic-result-section-emphasized.ts"
40720
+ "name": "AtomicResultSectionExcerpt",
40721
+ "module": "src/components/search/atomic-result-section-excerpt/atomic-result-section-excerpt.ts"
40722
40722
  }
40723
40723
  }
40724
40724
  ]
40725
40725
  },
40726
40726
  {
40727
40727
  "kind": "javascript-module",
40728
- "path": "src/components/search/atomic-result-section-excerpt/atomic-result-section-excerpt.ts",
40728
+ "path": "src/components/search/atomic-result-section-children/atomic-result-section-children.ts",
40729
40729
  "declarations": [
40730
40730
  {
40731
40731
  "kind": "class",
40732
- "description": "This section is intended to render an informative summary of the result's content\n\nBehavior:\n* Has a fixed height of one to three lines, depending on the layout and density.\n* Ellipses overflowing text.\n* Exposes the `--line-height` CSS variable so child elements can adjust to the current line height.\n* Has a defined CSS `color` property for text.",
40733
- "name": "AtomicResultSectionExcerpt",
40732
+ "description": "This section displays the folded results, available when using the <atomic-result-children> component.\n\nBehavior:\n* Shows children at the bottom of the result, indented and wrapped in a border.",
40733
+ "name": "AtomicResultSectionChildren",
40734
40734
  "mixins": [
40735
40735
  {
40736
40736
  "name": "ItemSectionMixin",
@@ -40741,7 +40741,7 @@
40741
40741
  "name": "LitElement",
40742
40742
  "package": "lit"
40743
40743
  },
40744
- "tagName": "atomic-result-section-excerpt",
40744
+ "tagName": "atomic-result-section-children",
40745
40745
  "customElement": true,
40746
40746
  "members": [
40747
40747
  {
@@ -40801,18 +40801,18 @@
40801
40801
  "exports": [
40802
40802
  {
40803
40803
  "kind": "js",
40804
- "name": "AtomicResultSectionExcerpt",
40804
+ "name": "AtomicResultSectionChildren",
40805
40805
  "declaration": {
40806
- "name": "AtomicResultSectionExcerpt",
40807
- "module": "src/components/search/atomic-result-section-excerpt/atomic-result-section-excerpt.ts"
40806
+ "name": "AtomicResultSectionChildren",
40807
+ "module": "src/components/search/atomic-result-section-children/atomic-result-section-children.ts"
40808
40808
  }
40809
40809
  },
40810
40810
  {
40811
40811
  "kind": "custom-element-definition",
40812
- "name": "atomic-result-section-excerpt",
40812
+ "name": "atomic-result-section-children",
40813
40813
  "declaration": {
40814
- "name": "AtomicResultSectionExcerpt",
40815
- "module": "src/components/search/atomic-result-section-excerpt/atomic-result-section-excerpt.ts"
40814
+ "name": "AtomicResultSectionChildren",
40815
+ "module": "src/components/search/atomic-result-section-children/atomic-result-section-children.ts"
40816
40816
  }
40817
40817
  }
40818
40818
  ]
@@ -47337,37 +47337,37 @@
47337
47337
  },
47338
47338
  {
47339
47339
  "kind": "javascript-module",
47340
- "path": "src/components/commerce/atomic-commerce-recommendation-interface/e2e/atomic-commerce-recommendation-interface.e2e.ts",
47340
+ "path": "src/components/commerce/atomic-commerce-recommendation-list/e2e/atomic-commerce-recommendation-list.e2e.ts",
47341
47341
  "declarations": [],
47342
47342
  "exports": []
47343
47343
  },
47344
47344
  {
47345
47345
  "kind": "javascript-module",
47346
- "path": "src/components/commerce/atomic-commerce-recommendation-interface/e2e/fixture.ts",
47346
+ "path": "src/components/commerce/atomic-commerce-recommendation-list/e2e/fixture.ts",
47347
47347
  "declarations": [],
47348
47348
  "exports": []
47349
47349
  },
47350
47350
  {
47351
47351
  "kind": "javascript-module",
47352
- "path": "src/components/commerce/atomic-commerce-recommendation-interface/e2e/page-object.ts",
47352
+ "path": "src/components/commerce/atomic-commerce-recommendation-list/e2e/page-object.ts",
47353
47353
  "declarations": [],
47354
47354
  "exports": []
47355
47355
  },
47356
47356
  {
47357
47357
  "kind": "javascript-module",
47358
- "path": "src/components/commerce/atomic-commerce-recommendation-list/e2e/atomic-commerce-recommendation-list.e2e.ts",
47358
+ "path": "src/components/commerce/atomic-commerce-recommendation-interface/e2e/atomic-commerce-recommendation-interface.e2e.ts",
47359
47359
  "declarations": [],
47360
47360
  "exports": []
47361
47361
  },
47362
47362
  {
47363
47363
  "kind": "javascript-module",
47364
- "path": "src/components/commerce/atomic-commerce-recommendation-list/e2e/fixture.ts",
47364
+ "path": "src/components/commerce/atomic-commerce-recommendation-interface/e2e/fixture.ts",
47365
47365
  "declarations": [],
47366
47366
  "exports": []
47367
47367
  },
47368
47368
  {
47369
47369
  "kind": "javascript-module",
47370
- "path": "src/components/commerce/atomic-commerce-recommendation-list/e2e/page-object.ts",
47370
+ "path": "src/components/commerce/atomic-commerce-recommendation-interface/e2e/page-object.ts",
47371
47371
  "declarations": [],
47372
47372
  "exports": []
47373
47373
  },
@@ -47577,37 +47577,37 @@
47577
47577
  },
47578
47578
  {
47579
47579
  "kind": "javascript-module",
47580
- "path": "src/components/commerce/atomic-product-field-condition/e2e/atomic-product-field-condition.e2e.ts",
47580
+ "path": "src/components/commerce/atomic-product-excerpt/e2e/atomic-product-excerpt.e2e.ts",
47581
47581
  "declarations": [],
47582
47582
  "exports": []
47583
47583
  },
47584
47584
  {
47585
47585
  "kind": "javascript-module",
47586
- "path": "src/components/commerce/atomic-product-field-condition/e2e/fixture.ts",
47586
+ "path": "src/components/commerce/atomic-product-excerpt/e2e/fixture.ts",
47587
47587
  "declarations": [],
47588
47588
  "exports": []
47589
47589
  },
47590
47590
  {
47591
47591
  "kind": "javascript-module",
47592
- "path": "src/components/commerce/atomic-product-field-condition/e2e/page-object.ts",
47592
+ "path": "src/components/commerce/atomic-product-excerpt/e2e/page-object.ts",
47593
47593
  "declarations": [],
47594
47594
  "exports": []
47595
47595
  },
47596
47596
  {
47597
47597
  "kind": "javascript-module",
47598
- "path": "src/components/commerce/atomic-product-excerpt/e2e/atomic-product-excerpt.e2e.ts",
47598
+ "path": "src/components/commerce/atomic-product-field-condition/e2e/atomic-product-field-condition.e2e.ts",
47599
47599
  "declarations": [],
47600
47600
  "exports": []
47601
47601
  },
47602
47602
  {
47603
47603
  "kind": "javascript-module",
47604
- "path": "src/components/commerce/atomic-product-excerpt/e2e/fixture.ts",
47604
+ "path": "src/components/commerce/atomic-product-field-condition/e2e/fixture.ts",
47605
47605
  "declarations": [],
47606
47606
  "exports": []
47607
47607
  },
47608
47608
  {
47609
47609
  "kind": "javascript-module",
47610
- "path": "src/components/commerce/atomic-product-excerpt/e2e/page-object.ts",
47610
+ "path": "src/components/commerce/atomic-product-field-condition/e2e/page-object.ts",
47611
47611
  "declarations": [],
47612
47612
  "exports": []
47613
47613
  },
@@ -49713,37 +49713,37 @@
49713
49713
  },
49714
49714
  {
49715
49715
  "kind": "javascript-module",
49716
- "path": "src/components/search/atomic-results-per-page/e2e/atomic-results-per-page.e2e.ts",
49716
+ "path": "src/components/search/atomic-search-box/e2e/atomic-search-box.e2e.ts",
49717
49717
  "declarations": [],
49718
49718
  "exports": []
49719
49719
  },
49720
49720
  {
49721
49721
  "kind": "javascript-module",
49722
- "path": "src/components/search/atomic-results-per-page/e2e/fixture.ts",
49722
+ "path": "src/components/search/atomic-search-box/e2e/fixture.ts",
49723
49723
  "declarations": [],
49724
49724
  "exports": []
49725
49725
  },
49726
49726
  {
49727
49727
  "kind": "javascript-module",
49728
- "path": "src/components/search/atomic-results-per-page/e2e/page-object.ts",
49728
+ "path": "src/components/search/atomic-search-box/e2e/page-object.ts",
49729
49729
  "declarations": [],
49730
49730
  "exports": []
49731
49731
  },
49732
49732
  {
49733
49733
  "kind": "javascript-module",
49734
- "path": "src/components/search/atomic-search-box/e2e/atomic-search-box.e2e.ts",
49734
+ "path": "src/components/search/atomic-results-per-page/e2e/atomic-results-per-page.e2e.ts",
49735
49735
  "declarations": [],
49736
49736
  "exports": []
49737
49737
  },
49738
49738
  {
49739
49739
  "kind": "javascript-module",
49740
- "path": "src/components/search/atomic-search-box/e2e/fixture.ts",
49740
+ "path": "src/components/search/atomic-results-per-page/e2e/fixture.ts",
49741
49741
  "declarations": [],
49742
49742
  "exports": []
49743
49743
  },
49744
49744
  {
49745
49745
  "kind": "javascript-module",
49746
- "path": "src/components/search/atomic-search-box/e2e/page-object.ts",
49746
+ "path": "src/components/search/atomic-results-per-page/e2e/page-object.ts",
49747
49747
  "declarations": [],
49748
49748
  "exports": []
49749
49749
  },
@@ -49857,37 +49857,37 @@
49857
49857
  },
49858
49858
  {
49859
49859
  "kind": "javascript-module",
49860
- "path": "src/components/search/atomic-smart-snippet/e2e/atomic-smart-snippet.e2e.ts",
49860
+ "path": "src/components/search/atomic-smart-snippet-feedback-modal/e2e/atomic-smart-snippet-feedback-modal.e2e.ts",
49861
49861
  "declarations": [],
49862
49862
  "exports": []
49863
49863
  },
49864
49864
  {
49865
49865
  "kind": "javascript-module",
49866
- "path": "src/components/search/atomic-smart-snippet/e2e/fixture.ts",
49866
+ "path": "src/components/search/atomic-smart-snippet-feedback-modal/e2e/fixture.ts",
49867
49867
  "declarations": [],
49868
49868
  "exports": []
49869
49869
  },
49870
49870
  {
49871
49871
  "kind": "javascript-module",
49872
- "path": "src/components/search/atomic-smart-snippet/e2e/page-object.ts",
49872
+ "path": "src/components/search/atomic-smart-snippet-feedback-modal/e2e/page-object.ts",
49873
49873
  "declarations": [],
49874
49874
  "exports": []
49875
49875
  },
49876
49876
  {
49877
49877
  "kind": "javascript-module",
49878
- "path": "src/components/search/atomic-smart-snippet-feedback-modal/e2e/atomic-smart-snippet-feedback-modal.e2e.ts",
49878
+ "path": "src/components/search/atomic-smart-snippet/e2e/atomic-smart-snippet.e2e.ts",
49879
49879
  "declarations": [],
49880
49880
  "exports": []
49881
49881
  },
49882
49882
  {
49883
49883
  "kind": "javascript-module",
49884
- "path": "src/components/search/atomic-smart-snippet-feedback-modal/e2e/fixture.ts",
49884
+ "path": "src/components/search/atomic-smart-snippet/e2e/fixture.ts",
49885
49885
  "declarations": [],
49886
49886
  "exports": []
49887
49887
  },
49888
49888
  {
49889
49889
  "kind": "javascript-module",
49890
- "path": "src/components/search/atomic-smart-snippet-feedback-modal/e2e/page-object.ts",
49890
+ "path": "src/components/search/atomic-smart-snippet/e2e/page-object.ts",
49891
49891
  "declarations": [],
49892
49892
  "exports": []
49893
49893
  },
@@ -50001,31 +50001,31 @@
50001
50001
  },
50002
50002
  {
50003
50003
  "kind": "javascript-module",
50004
- "path": "src/components/search/result-template-components/atomic-quickview-sidebar/atomic-quickview-sidebar.ts",
50004
+ "path": "src/components/search/result-template-components/quickview-iframe/quickview-iframe.ts",
50005
50005
  "declarations": [],
50006
50006
  "exports": []
50007
50007
  },
50008
50008
  {
50009
50009
  "kind": "javascript-module",
50010
- "path": "src/components/search/result-template-components/atomic-quickview-sidebar/highlight-keywords-checkbox.ts",
50010
+ "path": "src/components/search/result-template-components/atomic-quickview-sidebar/atomic-quickview-sidebar.ts",
50011
50011
  "declarations": [],
50012
50012
  "exports": []
50013
50013
  },
50014
50014
  {
50015
50015
  "kind": "javascript-module",
50016
- "path": "src/components/search/result-template-components/atomic-quickview-sidebar/keywords.ts",
50016
+ "path": "src/components/search/result-template-components/atomic-quickview-sidebar/highlight-keywords-checkbox.ts",
50017
50017
  "declarations": [],
50018
50018
  "exports": []
50019
50019
  },
50020
50020
  {
50021
50021
  "kind": "javascript-module",
50022
- "path": "src/components/search/result-template-components/atomic-quickview-sidebar/minimize-button.ts",
50022
+ "path": "src/components/search/result-template-components/atomic-quickview-sidebar/keywords.ts",
50023
50023
  "declarations": [],
50024
50024
  "exports": []
50025
50025
  },
50026
50026
  {
50027
50027
  "kind": "javascript-module",
50028
- "path": "src/components/search/result-template-components/quickview-iframe/quickview-iframe.ts",
50028
+ "path": "src/components/search/result-template-components/atomic-quickview-sidebar/minimize-button.ts",
50029
50029
  "declarations": [],
50030
50030
  "exports": []
50031
50031
  },
@@ -118,7 +118,7 @@ class AtomicGeneratedAnswerThreadItem extends external_lit_namespaceObject.LitEl
118
118
  <div class="flex w-[10px] shrink-0 justify-center">
119
119
  ${(0, when_js_namespaceObject.when)(this.hideLine, ()=>(0, external_lit_namespaceObject.html)``, ()=>(0, external_lit_namespaceObject.html)`<span class=${timelineConnectorClasses}> </span>`)}
120
120
  </div>
121
- <div id=${this.contentId} class="pl-2 py-1.5">
121
+ <div id=${this.contentId} class="min-w-0 pl-2 py-1.5">
122
122
  <div
123
123
  class="mb-2"
124
124
  ?hidden=${!this.isExpanded}
@@ -51,11 +51,11 @@ const styles = (0, external_lit_namespaceObject.css)`
51
51
  [part='generated-text'] [part='answer-heading-4'],
52
52
  [part='generated-text'] [part='answer-heading-5'],
53
53
  [part='generated-text'] [part='answer-heading-6'] {
54
- @apply mt-4 mb-2 font-bold;
54
+ @apply mt-3 mb-2 font-bold;
55
55
  }
56
56
 
57
57
  [part='generated-text'] [part='answer-paragraph'] {
58
- @apply mb-6;
58
+ @apply mb-3;
59
59
  }
60
60
 
61
61
  [part='generated-text'] [part='answer-list-item'],
@@ -63,7 +63,7 @@ const styles = (0, external_lit_namespaceObject.css)`
63
63
  [part='generated-text'] [part='answer-quote-block'],
64
64
  [part='generated-text'] [part='answer-table-header'],
65
65
  [part='generated-text'] [part='answer-table-content'] {
66
- @apply leading-6;
66
+ @apply leading-5;
67
67
  }
68
68
 
69
69
  [part='generated-text'] [part='answer-strong'] {
@@ -28,9 +28,11 @@ __webpack_require__.d(__webpack_exports__, {
28
28
  });
29
29
  const external_lit_namespaceObject = require("lit");
30
30
  const styles = (0, external_lit_namespaceObject.css)`
31
+ @reference '../../../../utils/tailwind.global.tw.css';
32
+ @reference '../../../../utils/tailwind-utilities/set-font-size.css';
33
+
31
34
  [part='generated-text'] {
32
- font-size: 1.125rem;
33
- line-height: 1.75rem;
35
+ @apply set-font-size-base;
34
36
  }
35
37
 
36
38
  [part='generated-text'].cursor::after {
@@ -38,7 +40,7 @@ const styles = (0, external_lit_namespaceObject.css)`
38
40
  width: 8px;
39
41
  height: 1em;
40
42
  margin-left: 0.1em;
41
- background-color: var(--atomic-neutral-dark);
43
+ @apply bg-neutral-dark;
42
44
  display: inline-block;
43
45
  animation: cursor-blink 1.5s steps(2) infinite;
44
46
  vertical-align: text-bottom;
@@ -33,7 +33,7 @@ function getWindow() {
33
33
  }
34
34
  function getAtomicEnvironment(headlessVersion) {
35
35
  return {
36
- version: "3.55.1",
36
+ version: "3.55.3",
37
37
  headlessVersion
38
38
  };
39
39
  }
@@ -28,7 +28,7 @@ __webpack_require__.d(__webpack_exports__, {
28
28
  atomicVersion: ()=>atomicVersion
29
29
  });
30
30
  const package_json_namespaceObject = require("@coveo/headless/package.json");
31
- const atomicVersion = "3.55.1";
31
+ const atomicVersion = "3.55.3";
32
32
  exports.atomicVersion = __webpack_exports__.atomicVersion;
33
33
  exports.headlessVersion = __webpack_exports__.headlessVersion;
34
34
  for(var __rspack_i in __webpack_exports__)if (-1 === [
@@ -90,7 +90,7 @@ class AtomicGeneratedAnswerThreadItem extends LitElement {
90
90
  <div class="flex w-[10px] shrink-0 justify-center">
91
91
  ${when(this.hideLine, ()=>html``, ()=>html`<span class=${timelineConnectorClasses}> </span>`)}
92
92
  </div>
93
- <div id=${this.contentId} class="pl-2 py-1.5">
93
+ <div id=${this.contentId} class="min-w-0 pl-2 py-1.5">
94
94
  <div
95
95
  class="mb-2"
96
96
  ?hidden=${!this.isExpanded}
@@ -1,4 +1,4 @@
1
1
  import { css } from "lit";
2
- const styles = css`/*! tailwindcss v4.2.1 | MIT License | https://tailwindcss.com */@layer properties{@supports (((-webkit-hyphens:none)) and (not (margin-trim:inline))) or ((-moz-orient:inline) and (not (color:rgb(from red r g b)))){*,::backdrop,:after,:before{--tw-font-weight:initial;--tw-leading:initial;--tw-border-style:solid}}}[part=generated-text] [part=answer-heading-1]{font-size:var(--atomic-text-2xl);line-height:var(--tw-leading,var(--text-2xl--line-height,1.33333))}[part=generated-text] [part=answer-heading-2]{font-size:var(--atomic-text-xl);line-height:var(--tw-leading,var(--text-xl--line-height,1.4))}[part=generated-text] [part=answer-heading-3],[part=generated-text] [part=answer-heading-4],[part=generated-text] [part=answer-heading-5],[part=generated-text] [part=answer-heading-6]{font-size:var(--atomic-text-lg);line-height:var(--tw-leading,var(--text-lg--line-height,1.55556))}[part=generated-text] [part=answer-heading-1],[part=generated-text] [part=answer-heading-2],[part=generated-text] [part=answer-heading-3],[part=generated-text] [part=answer-heading-4],[part=generated-text] [part=answer-heading-5],[part=generated-text] [part=answer-heading-6]{margin-bottom:calc(var(--spacing,.25rem)*2);margin-top:calc(var(--spacing,.25rem)*4);--tw-font-weight:var(--atomic-font-bold);font-weight:var(--atomic-font-bold)}[part=generated-text] [part=answer-paragraph]{margin-bottom:calc(var(--spacing,.25rem)*6)}[part=generated-text] [part=answer-list-item],[part=generated-text] [part=answer-paragraph],[part=generated-text] [part=answer-quote-block],[part=generated-text] [part=answer-table-content],[part=generated-text] [part=answer-table-header]{--tw-leading:calc(var(--spacing,.25rem)*6);line-height:calc(var(--spacing,.25rem)*6)}[part=generated-text] [part=answer-strong]{--tw-font-weight:var(--atomic-font-bold);font-weight:var(--atomic-font-bold)}[part=generated-text] [part=answer-ordered-list]{list-style-type:decimal;margin-bottom:calc(var(--spacing,.25rem)*2);padding-inline-start:calc(var(--spacing,.25rem)*8)}[part=generated-text] [part=answer-unordered-list]{list-style-type:disc;margin-bottom:calc(var(--spacing,.25rem)*2);padding-inline-start:calc(var(--spacing,.25rem)*8)}[part=generated-text] [part=answer-inline-code]{border-color:var(--atomic-neutral);border-radius:var(--atomic-border-radius);border-style:solid;border-width:1px;color:var(--atomic-inline-code);padding-block:calc(var(--spacing,.25rem)*.5);padding-inline:calc(var(--spacing,.25rem)*1)}[part=generated-text] [part=answer-code-block],[part=generated-text] [part=answer-inline-code]{--tw-border-style:solid;background-color:var(--atomic-neutral-light);font-size:var(--atomic-text-sm);line-height:var(--tw-leading,var(--text-sm--line-height,1.42857))}[part=generated-text] [part=answer-code-block]{border-color:var(--atomic-neutral);border-radius:var(--atomic-border-radius-md);border-style:solid;border-width:1px;color:var(--atomic-on-background);margin-block:calc(var(--spacing,.25rem)*4);max-height:calc(var(--spacing,.25rem)*96);overflow:auto;padding:calc(var(--spacing,.25rem)*2);scrollbar-color:var(--atomic-neutral)}[part=generated-text] [part=answer-quote-block]{font-style:italic;margin-inline:calc(var(--spacing,.25rem)*16)}[part=generated-text] [part=answer-table-container]{border-radius:var(--atomic-border-radius-md);margin-bottom:calc(var(--spacing,.25rem)*6);max-height:calc(var(--spacing,.25rem)*96);--tw-border-style:solid;border-color:var(--atomic-neutral-dim);border-style:solid;border-width:1px;display:inline-block;max-width:100%;overflow:auto}[part=generated-text] [part=answer-table-container] [part=answer-table-header]{position:sticky;top:calc(var(--spacing,.25rem)*0)}[part=generated-text] [part=answer-table]{font-size:var(--atomic-text-base);line-height:var(--tw-leading,var(--text-base--line-height,1.5))}[part=generated-text] [part=answer-table] thead [part=answer-table-header]{background-color:var(--atomic-neutral);border-bottom-color:var(--atomic-neutral-dim);border-left-color:var(--atomic-neutral-dim);padding:calc(var(--spacing,.25rem)*4);text-align:left;--tw-font-weight:var(--atomic-font-bold);font-weight:var(--atomic-font-bold)}[part=generated-text] [part=answer-table] thead [part=answer-table-header]:first-of-type{border-left:none}[part=generated-text] [part=answer-table] tbody tr:nth-child(2n){background-color:var(--atomic-neutral-light)}[part=generated-text] [part=answer-table] tbody tr [part=answer-table-content]{border-bottom-color:var(--atomic-neutral-dim);border-left-color:var(--atomic-neutral-dim);border-style:var(--tw-border-style);border-width:1px;padding:calc(var(--spacing,.25rem)*4)}[part=generated-text] [part=answer-table] tbody tr [part=answer-table-content]:first-of-type{border-left:none}[part=generated-text] [part=answer-table] tbody tr:last-of-type [part=answer-table-content]{border-bottom:unset}@property --tw-font-weight{syntax:"*";inherits:false}@property --tw-leading{syntax:"*";inherits:false}@property --tw-border-style{syntax:"*";inherits:false;initial-value:solid}`;
2
+ const styles = css`/*! tailwindcss v4.2.1 | MIT License | https://tailwindcss.com */@layer properties{@supports (((-webkit-hyphens:none)) and (not (margin-trim:inline))) or ((-moz-orient:inline) and (not (color:rgb(from red r g b)))){*,::backdrop,:after,:before{--tw-font-weight:initial;--tw-leading:initial;--tw-border-style:solid}}}[part=generated-text] [part=answer-heading-1]{font-size:var(--atomic-text-2xl);line-height:var(--tw-leading,var(--text-2xl--line-height,1.33333))}[part=generated-text] [part=answer-heading-2]{font-size:var(--atomic-text-xl);line-height:var(--tw-leading,var(--text-xl--line-height,1.4))}[part=generated-text] [part=answer-heading-3],[part=generated-text] [part=answer-heading-4],[part=generated-text] [part=answer-heading-5],[part=generated-text] [part=answer-heading-6]{font-size:var(--atomic-text-lg);line-height:var(--tw-leading,var(--text-lg--line-height,1.55556))}[part=generated-text] [part=answer-heading-1],[part=generated-text] [part=answer-heading-2],[part=generated-text] [part=answer-heading-3],[part=generated-text] [part=answer-heading-4],[part=generated-text] [part=answer-heading-5],[part=generated-text] [part=answer-heading-6]{margin-bottom:calc(var(--spacing,.25rem)*2);margin-top:calc(var(--spacing,.25rem)*3);--tw-font-weight:var(--atomic-font-bold);font-weight:var(--atomic-font-bold)}[part=generated-text] [part=answer-paragraph]{margin-bottom:calc(var(--spacing,.25rem)*3)}[part=generated-text] [part=answer-list-item],[part=generated-text] [part=answer-paragraph],[part=generated-text] [part=answer-quote-block],[part=generated-text] [part=answer-table-content],[part=generated-text] [part=answer-table-header]{--tw-leading:calc(var(--spacing,.25rem)*5);line-height:calc(var(--spacing,.25rem)*5)}[part=generated-text] [part=answer-strong]{--tw-font-weight:var(--atomic-font-bold);font-weight:var(--atomic-font-bold)}[part=generated-text] [part=answer-ordered-list]{list-style-type:decimal;margin-bottom:calc(var(--spacing,.25rem)*2);padding-inline-start:calc(var(--spacing,.25rem)*8)}[part=generated-text] [part=answer-unordered-list]{list-style-type:disc;margin-bottom:calc(var(--spacing,.25rem)*2);padding-inline-start:calc(var(--spacing,.25rem)*8)}[part=generated-text] [part=answer-inline-code]{border-color:var(--atomic-neutral);border-radius:var(--atomic-border-radius);border-style:solid;border-width:1px;color:var(--atomic-inline-code);padding-block:calc(var(--spacing,.25rem)*.5);padding-inline:calc(var(--spacing,.25rem)*1)}[part=generated-text] [part=answer-code-block],[part=generated-text] [part=answer-inline-code]{--tw-border-style:solid;background-color:var(--atomic-neutral-light);font-size:var(--atomic-text-sm);line-height:var(--tw-leading,var(--text-sm--line-height,1.42857))}[part=generated-text] [part=answer-code-block]{border-color:var(--atomic-neutral);border-radius:var(--atomic-border-radius-md);border-style:solid;border-width:1px;color:var(--atomic-on-background);margin-block:calc(var(--spacing,.25rem)*4);max-height:calc(var(--spacing,.25rem)*96);overflow:auto;padding:calc(var(--spacing,.25rem)*2);scrollbar-color:var(--atomic-neutral)}[part=generated-text] [part=answer-quote-block]{font-style:italic;margin-inline:calc(var(--spacing,.25rem)*16)}[part=generated-text] [part=answer-table-container]{border-radius:var(--atomic-border-radius-md);margin-bottom:calc(var(--spacing,.25rem)*6);max-height:calc(var(--spacing,.25rem)*96);--tw-border-style:solid;border-color:var(--atomic-neutral-dim);border-style:solid;border-width:1px;display:inline-block;max-width:100%;overflow:auto}[part=generated-text] [part=answer-table-container] [part=answer-table-header]{position:sticky;top:calc(var(--spacing,.25rem)*0)}[part=generated-text] [part=answer-table]{font-size:var(--atomic-text-base);line-height:var(--tw-leading,var(--text-base--line-height,1.5))}[part=generated-text] [part=answer-table] thead [part=answer-table-header]{background-color:var(--atomic-neutral);border-bottom-color:var(--atomic-neutral-dim);border-left-color:var(--atomic-neutral-dim);padding:calc(var(--spacing,.25rem)*4);text-align:left;--tw-font-weight:var(--atomic-font-bold);font-weight:var(--atomic-font-bold)}[part=generated-text] [part=answer-table] thead [part=answer-table-header]:first-of-type{border-left:none}[part=generated-text] [part=answer-table] tbody tr:nth-child(2n){background-color:var(--atomic-neutral-light)}[part=generated-text] [part=answer-table] tbody tr [part=answer-table-content]{border-bottom-color:var(--atomic-neutral-dim);border-left-color:var(--atomic-neutral-dim);border-style:var(--tw-border-style);border-width:1px;padding:calc(var(--spacing,.25rem)*4)}[part=generated-text] [part=answer-table] tbody tr [part=answer-table-content]:first-of-type{border-left:none}[part=generated-text] [part=answer-table] tbody tr:last-of-type [part=answer-table-content]{border-bottom:unset}@property --tw-font-weight{syntax:"*";inherits:false}@property --tw-leading{syntax:"*";inherits:false}@property --tw-border-style{syntax:"*";inherits:false;initial-value:solid}`;
3
3
  const generated_markdown_content_tw_css = styles;
4
4
  export { generated_markdown_content_tw_css as default };
@@ -1,4 +1,4 @@
1
1
  import { css } from "lit";
2
- const styles = css`[part=generated-text]{font-size:1.125rem;line-height:1.75rem}[part=generated-text].cursor:after{animation:cursor-blink 1.5s steps(2) infinite;background-color:var(--atomic-neutral-dark);content:"";display:inline-block;height:1em;margin-left:.1em;vertical-align:text-bottom;width:8px}`;
2
+ const styles = css`/*! tailwindcss v4.2.1 | MIT License | https://tailwindcss.com */[part=generated-text]{--font-size:var(--atomic-text-base);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height)}[part=generated-text].cursor:after{animation:cursor-blink 1.5s steps(2) infinite;background-color:var(--atomic-neutral-dark);content:"";display:inline-block;height:1em;margin-left:.1em;vertical-align:text-bottom;width:8px}`;
3
3
  const generated_text_tw_css = styles;
4
4
  export { generated_text_tw_css as default };
@@ -3,7 +3,7 @@ function getWindow() {
3
3
  }
4
4
  function getAtomicEnvironment(headlessVersion) {
5
5
  return {
6
- version: "3.55.1",
6
+ version: "3.55.3",
7
7
  headlessVersion
8
8
  };
9
9
  }
@@ -1,3 +1,3 @@
1
1
  import { version } from "@coveo/headless/package.json";
2
- const atomicVersion = "3.55.1";
2
+ const atomicVersion = "3.55.3";
3
3
  export { atomicVersion, version as headlessVersion };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@coveo/atomic",
3
- "version": "3.55.1",
3
+ "version": "3.55.3",
4
4
  "description": "A web-component library for building modern UIs interfacing with the Coveo platform",
5
5
  "homepage": "https://docs.coveo.com/en/atomic/latest/",
6
6
  "license": "Apache-2.0",
@@ -69,21 +69,21 @@
69
69
  "i18next-http-backend": "3.0.2",
70
70
  "lit": "3.3.2",
71
71
  "marked": "12.0.2",
72
- "@coveo/atomic-legacy": "0.0.9",
72
+ "@coveo/atomic-legacy": "0.0.10",
73
73
  "@coveo/bueno": "1.1.9",
74
- "@coveo/headless": "3.49.0"
74
+ "@coveo/headless": "3.49.1"
75
75
  },
76
76
  "devDependencies": {
77
77
  "@custom-elements-manifest/analyzer": "0.10.4",
78
78
  "@playwright/test": "1.57.0",
79
79
  "@rollup/plugin-replace": "6.0.3",
80
80
  "@rslib/core": "0.19.6",
81
- "@storybook/addon-a11y": "10.0.8",
82
- "@storybook/addon-docs": "10.0.8",
83
- "@storybook/addon-mcp": "0.1.3",
84
- "@storybook/addon-vitest": "10.0.8",
81
+ "@storybook/addon-a11y": "10.3.0",
82
+ "@storybook/addon-docs": "10.3.0",
83
+ "@storybook/addon-mcp": "0.4.1",
84
+ "@storybook/addon-vitest": "10.3.0",
85
85
  "@storybook/icons": "2.0.1",
86
- "@storybook/web-components-vite": "10.0.8",
86
+ "@storybook/web-components-vite": "10.3.0",
87
87
  "@tailwindcss/postcss": "4.2.1",
88
88
  "@tailwindcss/vite": "4.2.1",
89
89
  "@types/escape-html": "1.0.4",
@@ -105,7 +105,7 @@
105
105
  "react": "19.2.4",
106
106
  "remark-gfm": "4.0.1",
107
107
  "shadow-dom-testing-library": "1.12.0",
108
- "storybook": "10.0.8",
108
+ "storybook": "10.3.0",
109
109
  "tailwindcss": "4.2.1",
110
110
  "ts-dedent": "2.2.0",
111
111
  "ts-lit-plugin": "2.0.2",
@@ -117,7 +117,7 @@
117
117
  "peerDependencies": {
118
118
  "typescript": ">=5.0.0",
119
119
  "@coveo/bueno": "1.1.9",
120
- "@coveo/headless": "3.49.0"
120
+ "@coveo/headless": "3.49.1"
121
121
  },
122
122
  "peerDependenciesMeta": {
123
123
  "typescript": {
@@ -153,11 +153,9 @@
153
153
  "test:watch": "vitest --project=atomic-default",
154
154
  "test:storybook": "vitest run --project=storybook",
155
155
  "generate-component": "node ./scripts/generate-component.mjs",
156
- "release:phase1": "pnpm --filter @coveo/ci bump",
157
156
  "validate:definitions": "tsc --noEmit --esModuleInterop --skipLibCheck ./dist/types/components.d.ts",
158
- "chromatic": "chromatic -d=dist-storybook",
157
+ "chromatic": "chromatic -d=dist-storybook --only-changed",
159
158
  "validate:light-dom-styles": "node ./scripts/check-light-dom-host-selectors.mjs",
160
- "validate:no-new-light-dom": "node ./scripts/check-no-new-light-dom-components.mjs",
161
- "npm:publish": "pnpm --filter @coveo/ci npm-publish"
159
+ "validate:no-new-light-dom": "node ./scripts/check-no-new-light-dom-components.mjs"
162
160
  }
163
161
  }