@coveo/atomic 3.55.1 → 3.55.2

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
  ]
@@ -12291,19 +12291,19 @@
12291
12291
  },
12292
12292
  {
12293
12293
  "kind": "javascript-module",
12294
- "path": "src/components/commerce/product-template-component-utils/error.ts",
12294
+ "path": "src/components/commerce/sort/option.ts",
12295
12295
  "declarations": [],
12296
12296
  "exports": []
12297
12297
  },
12298
12298
  {
12299
12299
  "kind": "javascript-module",
12300
- "path": "src/components/commerce/product-template-component-utils/product-utils.ts",
12300
+ "path": "src/components/commerce/product-template-component-utils/error.ts",
12301
12301
  "declarations": [],
12302
12302
  "exports": []
12303
12303
  },
12304
12304
  {
12305
12305
  "kind": "javascript-module",
12306
- "path": "src/components/commerce/sort/option.ts",
12306
+ "path": "src/components/commerce/product-template-component-utils/product-utils.ts",
12307
12307
  "declarations": [],
12308
12308
  "exports": []
12309
12309
  },
@@ -33792,124 +33792,6 @@
33792
33792
  }
33793
33793
  ]
33794
33794
  },
33795
- {
33796
- "kind": "javascript-module",
33797
- "path": "src/components/search/atomic-query-summary/atomic-query-summary.ts",
33798
- "declarations": [
33799
- {
33800
- "kind": "class",
33801
- "description": "The `atomic-query-summary` component displays information about the current range of results and the request duration (for example, \"Results 1-10 of 123 in 0.47 seconds\").",
33802
- "name": "AtomicQuerySummary",
33803
- "cssParts": [
33804
- {
33805
- "description": "The container for the whole summary.",
33806
- "name": "container"
33807
- },
33808
- {
33809
- "description": "The container for the duration.",
33810
- "name": "duration"
33811
- },
33812
- {
33813
- "description": "The summary highlights.",
33814
- "name": "highlight"
33815
- },
33816
- {
33817
- "description": "The summary highlighted query.",
33818
- "name": "query"
33819
- },
33820
- {
33821
- "description": "The query summary placeholder used while the search interface is initializing.",
33822
- "name": "placeholder"
33823
- }
33824
- ],
33825
- "members": [
33826
- {
33827
- "kind": "field",
33828
- "name": "bindings",
33829
- "type": {
33830
- "text": "Bindings"
33831
- },
33832
- "privacy": "private"
33833
- },
33834
- {
33835
- "kind": "field",
33836
- "name": "error",
33837
- "type": {
33838
- "text": "Error"
33839
- },
33840
- "privacy": "private"
33841
- },
33842
- {
33843
- "kind": "field",
33844
- "name": "querySummaryState",
33845
- "type": {
33846
- "text": "QuerySummaryState"
33847
- },
33848
- "privacy": "private"
33849
- },
33850
- {
33851
- "kind": "field",
33852
- "name": "querySummary",
33853
- "type": {
33854
- "text": "QuerySummary"
33855
- },
33856
- "privacy": "private"
33857
- },
33858
- {
33859
- "kind": "field",
33860
- "name": "ariaMessage",
33861
- "privacy": "protected",
33862
- "default": "new AriaLiveRegionController(this, 'query-summary')"
33863
- },
33864
- {
33865
- "kind": "method",
33866
- "name": "initialize",
33867
- "privacy": "public"
33868
- },
33869
- {
33870
- "kind": "method",
33871
- "name": "initBindings",
33872
- "privacy": "private",
33873
- "inheritedFrom": {
33874
- "name": "InitializeBindingsMixin",
33875
- "module": "src/mixins/bindings-mixin.ts"
33876
- }
33877
- }
33878
- ],
33879
- "mixins": [
33880
- {
33881
- "name": "InitializeBindingsMixin",
33882
- "package": "@/src/mixins/bindings-mixin"
33883
- }
33884
- ],
33885
- "superclass": {
33886
- "name": "LitElement",
33887
- "package": "lit"
33888
- },
33889
- "events": [],
33890
- "tagName": "atomic-query-summary",
33891
- "customElement": true
33892
- }
33893
- ],
33894
- "exports": [
33895
- {
33896
- "kind": "js",
33897
- "name": "AtomicQuerySummary",
33898
- "declaration": {
33899
- "name": "AtomicQuerySummary",
33900
- "module": "src/components/search/atomic-query-summary/atomic-query-summary.ts"
33901
- }
33902
- },
33903
- {
33904
- "kind": "custom-element-definition",
33905
- "name": "atomic-query-summary",
33906
- "declaration": {
33907
- "name": "AtomicQuerySummary",
33908
- "module": "src/components/search/atomic-query-summary/atomic-query-summary.ts"
33909
- }
33910
- }
33911
- ]
33912
- },
33913
33795
  {
33914
33796
  "kind": "javascript-module",
33915
33797
  "path": "src/components/search/atomic-quickview/atomic-quickview.ts",
@@ -34102,6 +33984,124 @@
34102
33984
  }
34103
33985
  ]
34104
33986
  },
33987
+ {
33988
+ "kind": "javascript-module",
33989
+ "path": "src/components/search/atomic-query-summary/atomic-query-summary.ts",
33990
+ "declarations": [
33991
+ {
33992
+ "kind": "class",
33993
+ "description": "The `atomic-query-summary` component displays information about the current range of results and the request duration (for example, \"Results 1-10 of 123 in 0.47 seconds\").",
33994
+ "name": "AtomicQuerySummary",
33995
+ "cssParts": [
33996
+ {
33997
+ "description": "The container for the whole summary.",
33998
+ "name": "container"
33999
+ },
34000
+ {
34001
+ "description": "The container for the duration.",
34002
+ "name": "duration"
34003
+ },
34004
+ {
34005
+ "description": "The summary highlights.",
34006
+ "name": "highlight"
34007
+ },
34008
+ {
34009
+ "description": "The summary highlighted query.",
34010
+ "name": "query"
34011
+ },
34012
+ {
34013
+ "description": "The query summary placeholder used while the search interface is initializing.",
34014
+ "name": "placeholder"
34015
+ }
34016
+ ],
34017
+ "members": [
34018
+ {
34019
+ "kind": "field",
34020
+ "name": "bindings",
34021
+ "type": {
34022
+ "text": "Bindings"
34023
+ },
34024
+ "privacy": "private"
34025
+ },
34026
+ {
34027
+ "kind": "field",
34028
+ "name": "error",
34029
+ "type": {
34030
+ "text": "Error"
34031
+ },
34032
+ "privacy": "private"
34033
+ },
34034
+ {
34035
+ "kind": "field",
34036
+ "name": "querySummaryState",
34037
+ "type": {
34038
+ "text": "QuerySummaryState"
34039
+ },
34040
+ "privacy": "private"
34041
+ },
34042
+ {
34043
+ "kind": "field",
34044
+ "name": "querySummary",
34045
+ "type": {
34046
+ "text": "QuerySummary"
34047
+ },
34048
+ "privacy": "private"
34049
+ },
34050
+ {
34051
+ "kind": "field",
34052
+ "name": "ariaMessage",
34053
+ "privacy": "protected",
34054
+ "default": "new AriaLiveRegionController(this, 'query-summary')"
34055
+ },
34056
+ {
34057
+ "kind": "method",
34058
+ "name": "initialize",
34059
+ "privacy": "public"
34060
+ },
34061
+ {
34062
+ "kind": "method",
34063
+ "name": "initBindings",
34064
+ "privacy": "private",
34065
+ "inheritedFrom": {
34066
+ "name": "InitializeBindingsMixin",
34067
+ "module": "src/mixins/bindings-mixin.ts"
34068
+ }
34069
+ }
34070
+ ],
34071
+ "mixins": [
34072
+ {
34073
+ "name": "InitializeBindingsMixin",
34074
+ "package": "@/src/mixins/bindings-mixin"
34075
+ }
34076
+ ],
34077
+ "superclass": {
34078
+ "name": "LitElement",
34079
+ "package": "lit"
34080
+ },
34081
+ "events": [],
34082
+ "tagName": "atomic-query-summary",
34083
+ "customElement": true
34084
+ }
34085
+ ],
34086
+ "exports": [
34087
+ {
34088
+ "kind": "js",
34089
+ "name": "AtomicQuerySummary",
34090
+ "declaration": {
34091
+ "name": "AtomicQuerySummary",
34092
+ "module": "src/components/search/atomic-query-summary/atomic-query-summary.ts"
34093
+ }
34094
+ },
34095
+ {
34096
+ "kind": "custom-element-definition",
34097
+ "name": "atomic-query-summary",
34098
+ "declaration": {
34099
+ "name": "AtomicQuerySummary",
34100
+ "module": "src/components/search/atomic-query-summary/atomic-query-summary.ts"
34101
+ }
34102
+ }
34103
+ ]
34104
+ },
34105
34105
  {
34106
34106
  "kind": "javascript-module",
34107
34107
  "path": "src/components/search/atomic-quickview-modal/atomic-quickview-modal.ts",
@@ -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
  },
@@ -48735,37 +48735,37 @@
48735
48735
  },
48736
48736
  {
48737
48737
  "kind": "javascript-module",
48738
- "path": "src/components/ipx/atomic-ipx-embedded/e2e/atomic-ipx-embedded.e2e.ts",
48738
+ "path": "src/components/ipx/atomic-ipx-modal/e2e/atomic-ipx-modal.e2e.ts",
48739
48739
  "declarations": [],
48740
48740
  "exports": []
48741
48741
  },
48742
48742
  {
48743
48743
  "kind": "javascript-module",
48744
- "path": "src/components/ipx/atomic-ipx-embedded/e2e/fixture.ts",
48744
+ "path": "src/components/ipx/atomic-ipx-modal/e2e/fixture.ts",
48745
48745
  "declarations": [],
48746
48746
  "exports": []
48747
48747
  },
48748
48748
  {
48749
48749
  "kind": "javascript-module",
48750
- "path": "src/components/ipx/atomic-ipx-embedded/e2e/page-object.ts",
48750
+ "path": "src/components/ipx/atomic-ipx-modal/e2e/page-object.ts",
48751
48751
  "declarations": [],
48752
48752
  "exports": []
48753
48753
  },
48754
48754
  {
48755
48755
  "kind": "javascript-module",
48756
- "path": "src/components/ipx/atomic-ipx-modal/e2e/atomic-ipx-modal.e2e.ts",
48756
+ "path": "src/components/ipx/atomic-ipx-embedded/e2e/atomic-ipx-embedded.e2e.ts",
48757
48757
  "declarations": [],
48758
48758
  "exports": []
48759
48759
  },
48760
48760
  {
48761
48761
  "kind": "javascript-module",
48762
- "path": "src/components/ipx/atomic-ipx-modal/e2e/fixture.ts",
48762
+ "path": "src/components/ipx/atomic-ipx-embedded/e2e/fixture.ts",
48763
48763
  "declarations": [],
48764
48764
  "exports": []
48765
48765
  },
48766
48766
  {
48767
48767
  "kind": "javascript-module",
48768
- "path": "src/components/ipx/atomic-ipx-modal/e2e/page-object.ts",
48768
+ "path": "src/components/ipx/atomic-ipx-embedded/e2e/page-object.ts",
48769
48769
  "declarations": [],
48770
48770
  "exports": []
48771
48771
  },
@@ -49275,37 +49275,37 @@
49275
49275
  },
49276
49276
  {
49277
49277
  "kind": "javascript-module",
49278
- "path": "src/components/search/atomic-query-summary/e2e/atomic-query-summary.e2e.ts",
49278
+ "path": "src/components/search/atomic-quickview/e2e/atomic-quickview.e2e.ts",
49279
49279
  "declarations": [],
49280
49280
  "exports": []
49281
49281
  },
49282
49282
  {
49283
49283
  "kind": "javascript-module",
49284
- "path": "src/components/search/atomic-query-summary/e2e/fixture.ts",
49284
+ "path": "src/components/search/atomic-quickview/e2e/fixture.ts",
49285
49285
  "declarations": [],
49286
49286
  "exports": []
49287
49287
  },
49288
49288
  {
49289
49289
  "kind": "javascript-module",
49290
- "path": "src/components/search/atomic-query-summary/e2e/page-object.ts",
49290
+ "path": "src/components/search/atomic-quickview/e2e/page-object.ts",
49291
49291
  "declarations": [],
49292
49292
  "exports": []
49293
49293
  },
49294
49294
  {
49295
49295
  "kind": "javascript-module",
49296
- "path": "src/components/search/atomic-quickview/e2e/atomic-quickview.e2e.ts",
49296
+ "path": "src/components/search/atomic-query-summary/e2e/atomic-query-summary.e2e.ts",
49297
49297
  "declarations": [],
49298
49298
  "exports": []
49299
49299
  },
49300
49300
  {
49301
49301
  "kind": "javascript-module",
49302
- "path": "src/components/search/atomic-quickview/e2e/fixture.ts",
49302
+ "path": "src/components/search/atomic-query-summary/e2e/fixture.ts",
49303
49303
  "declarations": [],
49304
49304
  "exports": []
49305
49305
  },
49306
49306
  {
49307
49307
  "kind": "javascript-module",
49308
- "path": "src/components/search/atomic-quickview/e2e/page-object.ts",
49308
+ "path": "src/components/search/atomic-query-summary/e2e/page-object.ts",
49309
49309
  "declarations": [],
49310
49310
  "exports": []
49311
49311
  },
@@ -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}
@@ -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-lg;
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.2",
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.2";
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`[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-lg);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.2",
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.2";
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.2",
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,9 +69,9 @@
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",
@@ -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
157
  "chromatic": "chromatic -d=dist-storybook",
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
  }