@coveo/atomic 3.55.3 → 3.56.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 (27) hide show
  1. package/custom-elements.json +955 -943
  2. package/dist/cjs/components/commerce/atomic-commerce-search-box/atomic-commerce-search-box.cjs +1 -1
  3. package/dist/cjs/components/common/atomic-citation/atomic-citation.cjs +1 -1
  4. package/dist/cjs/components/common/atomic-icon/atomic-icon.cjs +2 -16
  5. package/dist/cjs/components/common/atomic-icon/fetch-icon.cjs +63 -0
  6. package/dist/cjs/components/common/search-box/search-text-area.cjs +1 -1
  7. package/dist/cjs/components/insight/atomic-insight-search-box/atomic-insight-search-box.cjs +1 -1
  8. package/dist/cjs/components/search/atomic-search-box/atomic-search-box.cjs +1 -1
  9. package/dist/cjs/global/environment.cjs +1 -1
  10. package/dist/cjs/index.cjs +12 -24
  11. package/dist/cjs/utils/memoize.cjs +63 -0
  12. package/dist/cjs/versions.cjs +1 -1
  13. package/dist/esm/components/commerce/atomic-commerce-search-box/atomic-commerce-search-box.js +1 -1
  14. package/dist/esm/components/common/atomic-citation/atomic-citation.js +1 -1
  15. package/dist/esm/components/common/atomic-icon/atomic-icon.js +2 -16
  16. package/dist/esm/components/common/atomic-icon/fetch-icon.js +26 -0
  17. package/dist/esm/components/common/search-box/search-text-area.js +1 -1
  18. package/dist/esm/components/insight/atomic-insight-search-box/atomic-insight-search-box.js +1 -1
  19. package/dist/esm/components/search/atomic-search-box/atomic-search-box.js +1 -1
  20. package/dist/esm/global/environment.js +1 -1
  21. package/dist/esm/index.js +1 -2
  22. package/dist/esm/utils/memoize.js +29 -0
  23. package/dist/esm/versions.js +1 -1
  24. package/dist/types/components/common/atomic-icon/fetch-icon.d.ts +2 -0
  25. package/dist/types/index.d.ts +2 -2
  26. package/dist/types/utils/memoize.d.ts +22 -0
  27. package/package.json +6 -6
@@ -998,6 +998,12 @@
998
998
  "declarations": [],
999
999
  "exports": []
1000
1000
  },
1001
+ {
1002
+ "kind": "javascript-module",
1003
+ "path": "src/utils/memoize.ts",
1004
+ "declarations": [],
1005
+ "exports": []
1006
+ },
1001
1007
  {
1002
1008
  "kind": "javascript-module",
1003
1009
  "path": "src/utils/object-utils.ts",
@@ -8925,12 +8931,12 @@
8925
8931
  },
8926
8932
  {
8927
8933
  "kind": "javascript-module",
8928
- "path": "src/components/commerce/atomic-product-description/atomic-product-description.ts",
8934
+ "path": "src/components/commerce/atomic-product-excerpt/atomic-product-excerpt.ts",
8929
8935
  "declarations": [
8930
8936
  {
8931
8937
  "kind": "class",
8932
- "description": "The `atomic-product-description` component renders the description of a product.",
8933
- "name": "AtomicProductDescription",
8938
+ "description": "The `atomic-product-excerpt` component renders the excerpt of a product.",
8939
+ "name": "AtomicProductExcerpt",
8934
8940
  "members": [
8935
8941
  {
8936
8942
  "kind": "field",
@@ -8978,11 +8984,11 @@
8978
8984
  "text": "ResizeObserver"
8979
8985
  },
8980
8986
  "privacy": "private",
8981
- "default": "new ResizeObserver(() => { if (this.descriptionRef.value) { this.isTruncated = this.descriptionRef.value.scrollHeight > this.descriptionRef.value.clientHeight; } })"
8987
+ "default": "new ResizeObserver(() => { if (this.excerptRef.value) { this.isTruncated = this.excerptRef.value.scrollHeight > this.excerptRef.value.clientHeight; } })"
8982
8988
  },
8983
8989
  {
8984
8990
  "kind": "field",
8985
- "name": "descriptionRef",
8991
+ "name": "excerptRef",
8986
8992
  "privacy": "private"
8987
8993
  },
8988
8994
  {
@@ -8993,20 +8999,9 @@
8993
8999
  },
8994
9000
  "privacy": "public",
8995
9001
  "default": "'2'",
8996
- "description": "The number of lines after which the product description should be truncated. A value of \"none\" will disable truncation.",
9002
+ "description": "The number of lines after which the product excerpt should be truncated. A value of \"none\" will disable truncation.",
8997
9003
  "attribute": "truncate-after"
8998
9004
  },
8999
- {
9000
- "kind": "field",
9001
- "name": "field",
9002
- "type": {
9003
- "text": "'ec_description' | 'ec_shortdesc'"
9004
- },
9005
- "privacy": "public",
9006
- "default": "'ec_shortdesc'",
9007
- "description": "The name of the description field to use.",
9008
- "attribute": "field"
9009
- },
9010
9005
  {
9011
9006
  "kind": "field",
9012
9007
  "name": "isCollapsible",
@@ -9015,12 +9010,13 @@
9015
9010
  },
9016
9011
  "privacy": "public",
9017
9012
  "default": "false",
9018
- "description": "Whether the description should be collapsible after being expanded.",
9013
+ "description": "Whether the excerpt should be collapsible after being expanded.",
9019
9014
  "attribute": "is-collapsible"
9020
9015
  },
9021
9016
  {
9022
9017
  "kind": "method",
9023
- "name": "initialize"
9018
+ "name": "initialize",
9019
+ "privacy": "public"
9024
9020
  },
9025
9021
  {
9026
9022
  "kind": "method",
@@ -9028,9 +9024,18 @@
9028
9024
  "privacy": "private"
9029
9025
  },
9030
9026
  {
9031
- "kind": "field",
9027
+ "kind": "method",
9032
9028
  "name": "onToggleExpand",
9033
- "privacy": "private"
9029
+ "privacy": "private",
9030
+ "parameters": [
9031
+ {
9032
+ "name": "e",
9033
+ "optional": true,
9034
+ "type": {
9035
+ "text": "MouseEvent"
9036
+ }
9037
+ }
9038
+ ]
9034
9039
  },
9035
9040
  {
9036
9041
  "kind": "field",
@@ -9090,32 +9095,23 @@
9090
9095
  "text": "TruncateAfter"
9091
9096
  },
9092
9097
  "default": "'2'",
9093
- "description": "The number of lines after which the product description should be truncated. A value of \"none\" will disable truncation.",
9098
+ "description": "The number of lines after which the product excerpt should be truncated. A value of \"none\" will disable truncation.",
9094
9099
  "fieldName": "truncateAfter"
9095
9100
  },
9096
- {
9097
- "name": "field",
9098
- "type": {
9099
- "text": "'ec_description' | 'ec_shortdesc'"
9100
- },
9101
- "default": "'ec_shortdesc'",
9102
- "description": "The name of the description field to use.",
9103
- "fieldName": "field"
9104
- },
9105
9101
  {
9106
9102
  "name": "is-collapsible",
9107
9103
  "type": {
9108
9104
  "text": "boolean"
9109
9105
  },
9110
9106
  "default": "false",
9111
- "description": "Whether the description should be collapsible after being expanded.",
9107
+ "description": "Whether the excerpt should be collapsible after being expanded.",
9112
9108
  "fieldName": "isCollapsible"
9113
9109
  }
9114
9110
  ],
9115
9111
  "mixins": [
9116
9112
  {
9117
9113
  "name": "LightDomMixin",
9118
- "package": "@/src/mixins/light-dom.js"
9114
+ "package": "@/src/mixins/light-dom"
9119
9115
  }
9120
9116
  ],
9121
9117
  "superclass": {
@@ -9123,37 +9119,37 @@
9123
9119
  "package": "lit"
9124
9120
  },
9125
9121
  "events": [],
9126
- "tagName": "atomic-product-description",
9122
+ "tagName": "atomic-product-excerpt",
9127
9123
  "customElement": true
9128
9124
  }
9129
9125
  ],
9130
9126
  "exports": [
9131
9127
  {
9132
9128
  "kind": "js",
9133
- "name": "AtomicProductDescription",
9129
+ "name": "AtomicProductExcerpt",
9134
9130
  "declaration": {
9135
- "name": "AtomicProductDescription",
9136
- "module": "src/components/commerce/atomic-product-description/atomic-product-description.ts"
9131
+ "name": "AtomicProductExcerpt",
9132
+ "module": "src/components/commerce/atomic-product-excerpt/atomic-product-excerpt.ts"
9137
9133
  }
9138
9134
  },
9139
9135
  {
9140
9136
  "kind": "custom-element-definition",
9141
- "name": "atomic-product-description",
9137
+ "name": "atomic-product-excerpt",
9142
9138
  "declaration": {
9143
- "name": "AtomicProductDescription",
9144
- "module": "src/components/commerce/atomic-product-description/atomic-product-description.ts"
9139
+ "name": "AtomicProductExcerpt",
9140
+ "module": "src/components/commerce/atomic-product-excerpt/atomic-product-excerpt.ts"
9145
9141
  }
9146
9142
  }
9147
9143
  ]
9148
9144
  },
9149
9145
  {
9150
9146
  "kind": "javascript-module",
9151
- "path": "src/components/commerce/atomic-product-excerpt/atomic-product-excerpt.ts",
9147
+ "path": "src/components/commerce/atomic-product-description/atomic-product-description.ts",
9152
9148
  "declarations": [
9153
9149
  {
9154
9150
  "kind": "class",
9155
- "description": "The `atomic-product-excerpt` component renders the excerpt of a product.",
9156
- "name": "AtomicProductExcerpt",
9151
+ "description": "The `atomic-product-description` component renders the description of a product.",
9152
+ "name": "AtomicProductDescription",
9157
9153
  "members": [
9158
9154
  {
9159
9155
  "kind": "field",
@@ -9201,11 +9197,11 @@
9201
9197
  "text": "ResizeObserver"
9202
9198
  },
9203
9199
  "privacy": "private",
9204
- "default": "new ResizeObserver(() => { if (this.excerptRef.value) { this.isTruncated = this.excerptRef.value.scrollHeight > this.excerptRef.value.clientHeight; } })"
9200
+ "default": "new ResizeObserver(() => { if (this.descriptionRef.value) { this.isTruncated = this.descriptionRef.value.scrollHeight > this.descriptionRef.value.clientHeight; } })"
9205
9201
  },
9206
9202
  {
9207
9203
  "kind": "field",
9208
- "name": "excerptRef",
9204
+ "name": "descriptionRef",
9209
9205
  "privacy": "private"
9210
9206
  },
9211
9207
  {
@@ -9216,9 +9212,20 @@
9216
9212
  },
9217
9213
  "privacy": "public",
9218
9214
  "default": "'2'",
9219
- "description": "The number of lines after which the product excerpt should be truncated. A value of \"none\" will disable truncation.",
9215
+ "description": "The number of lines after which the product description should be truncated. A value of \"none\" will disable truncation.",
9220
9216
  "attribute": "truncate-after"
9221
9217
  },
9218
+ {
9219
+ "kind": "field",
9220
+ "name": "field",
9221
+ "type": {
9222
+ "text": "'ec_description' | 'ec_shortdesc'"
9223
+ },
9224
+ "privacy": "public",
9225
+ "default": "'ec_shortdesc'",
9226
+ "description": "The name of the description field to use.",
9227
+ "attribute": "field"
9228
+ },
9222
9229
  {
9223
9230
  "kind": "field",
9224
9231
  "name": "isCollapsible",
@@ -9227,13 +9234,12 @@
9227
9234
  },
9228
9235
  "privacy": "public",
9229
9236
  "default": "false",
9230
- "description": "Whether the excerpt should be collapsible after being expanded.",
9237
+ "description": "Whether the description should be collapsible after being expanded.",
9231
9238
  "attribute": "is-collapsible"
9232
9239
  },
9233
9240
  {
9234
9241
  "kind": "method",
9235
- "name": "initialize",
9236
- "privacy": "public"
9242
+ "name": "initialize"
9237
9243
  },
9238
9244
  {
9239
9245
  "kind": "method",
@@ -9241,203 +9247,203 @@
9241
9247
  "privacy": "private"
9242
9248
  },
9243
9249
  {
9244
- "kind": "method",
9250
+ "kind": "field",
9245
9251
  "name": "onToggleExpand",
9252
+ "privacy": "private"
9253
+ },
9254
+ {
9255
+ "kind": "field",
9256
+ "name": "product",
9257
+ "type": {
9258
+ "text": "Product | null"
9259
+ },
9246
9260
  "privacy": "private",
9261
+ "readonly": true
9262
+ },
9263
+ {
9264
+ "kind": "method",
9265
+ "name": "injectStyles",
9247
9266
  "parameters": [
9248
9267
  {
9249
- "name": "e",
9268
+ "name": "dynamicStyles",
9250
9269
  "optional": true,
9251
9270
  "type": {
9252
- "text": "MouseEvent"
9271
+ "text": "CSSResultGroup"
9272
+ },
9273
+ "description": "Optional dynamic styles to inject along with static styles"
9274
+ }
9275
+ ],
9276
+ "description": "Injects styles into the document or shadow root.\n\nWhen called without arguments, injects the component's static styles.\nWhen called with dynamic styles, injects both static and dynamic styles.",
9277
+ "inheritedFrom": {
9278
+ "name": "LightDomMixin",
9279
+ "module": "src/mixins/light-dom.ts"
9280
+ }
9281
+ },
9282
+ {
9283
+ "kind": "method",
9284
+ "name": "getStyleSheet",
9285
+ "privacy": "private",
9286
+ "return": {
9287
+ "type": {
9288
+ "text": "CSSStyleSheet | null"
9289
+ }
9290
+ },
9291
+ "parameters": [
9292
+ {
9293
+ "name": "style",
9294
+ "type": {
9295
+ "text": "CSSResultOrNative | CSSResultArray | null | undefined"
9253
9296
  }
9254
9297
  }
9255
- ]
9298
+ ],
9299
+ "inheritedFrom": {
9300
+ "name": "LightDomMixin",
9301
+ "module": "src/mixins/light-dom.ts"
9302
+ }
9303
+ }
9304
+ ],
9305
+ "attributes": [
9306
+ {
9307
+ "name": "truncate-after",
9308
+ "type": {
9309
+ "text": "TruncateAfter"
9310
+ },
9311
+ "default": "'2'",
9312
+ "description": "The number of lines after which the product description should be truncated. A value of \"none\" will disable truncation.",
9313
+ "fieldName": "truncateAfter"
9256
9314
  },
9315
+ {
9316
+ "name": "field",
9317
+ "type": {
9318
+ "text": "'ec_description' | 'ec_shortdesc'"
9319
+ },
9320
+ "default": "'ec_shortdesc'",
9321
+ "description": "The name of the description field to use.",
9322
+ "fieldName": "field"
9323
+ },
9324
+ {
9325
+ "name": "is-collapsible",
9326
+ "type": {
9327
+ "text": "boolean"
9328
+ },
9329
+ "default": "false",
9330
+ "description": "Whether the description should be collapsible after being expanded.",
9331
+ "fieldName": "isCollapsible"
9332
+ }
9333
+ ],
9334
+ "mixins": [
9335
+ {
9336
+ "name": "LightDomMixin",
9337
+ "package": "@/src/mixins/light-dom.js"
9338
+ }
9339
+ ],
9340
+ "superclass": {
9341
+ "name": "LitElement",
9342
+ "package": "lit"
9343
+ },
9344
+ "events": [],
9345
+ "tagName": "atomic-product-description",
9346
+ "customElement": true
9347
+ }
9348
+ ],
9349
+ "exports": [
9350
+ {
9351
+ "kind": "js",
9352
+ "name": "AtomicProductDescription",
9353
+ "declaration": {
9354
+ "name": "AtomicProductDescription",
9355
+ "module": "src/components/commerce/atomic-product-description/atomic-product-description.ts"
9356
+ }
9357
+ },
9358
+ {
9359
+ "kind": "custom-element-definition",
9360
+ "name": "atomic-product-description",
9361
+ "declaration": {
9362
+ "name": "AtomicProductDescription",
9363
+ "module": "src/components/commerce/atomic-product-description/atomic-product-description.ts"
9364
+ }
9365
+ }
9366
+ ]
9367
+ },
9368
+ {
9369
+ "kind": "javascript-module",
9370
+ "path": "src/components/commerce/atomic-product-field-condition/atomic-product-field-condition.ts",
9371
+ "declarations": [
9372
+ {
9373
+ "kind": "class",
9374
+ "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`).",
9375
+ "name": "AtomicProductFieldCondition",
9376
+ "slots": [
9377
+ {
9378
+ "description": "The content to render if the conditions are met.",
9379
+ "name": "default"
9380
+ }
9381
+ ],
9382
+ "members": [
9257
9383
  {
9258
9384
  "kind": "field",
9259
- "name": "product",
9385
+ "name": "bindings",
9260
9386
  "type": {
9261
- "text": "Product | null"
9262
- },
9263
- "privacy": "private",
9264
- "readonly": true
9265
- },
9266
- {
9267
- "kind": "method",
9268
- "name": "injectStyles",
9269
- "parameters": [
9270
- {
9271
- "name": "dynamicStyles",
9272
- "optional": true,
9273
- "type": {
9274
- "text": "CSSResultGroup"
9275
- },
9276
- "description": "Optional dynamic styles to inject along with static styles"
9277
- }
9278
- ],
9279
- "description": "Injects styles into the document or shadow root.\n\nWhen called without arguments, injects the component's static styles.\nWhen called with dynamic styles, injects both static and dynamic styles.",
9280
- "inheritedFrom": {
9281
- "name": "LightDomMixin",
9282
- "module": "src/mixins/light-dom.ts"
9283
- }
9284
- },
9285
- {
9286
- "kind": "method",
9287
- "name": "getStyleSheet",
9288
- "privacy": "private",
9289
- "return": {
9290
- "type": {
9291
- "text": "CSSStyleSheet | null"
9292
- }
9293
- },
9294
- "parameters": [
9295
- {
9296
- "name": "style",
9297
- "type": {
9298
- "text": "CSSResultOrNative | CSSResultArray | null | undefined"
9299
- }
9300
- }
9301
- ],
9302
- "inheritedFrom": {
9303
- "name": "LightDomMixin",
9304
- "module": "src/mixins/light-dom.ts"
9305
- }
9306
- }
9307
- ],
9308
- "attributes": [
9309
- {
9310
- "name": "truncate-after",
9311
- "type": {
9312
- "text": "TruncateAfter"
9313
- },
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"
9317
- },
9318
- {
9319
- "name": "is-collapsible",
9320
- "type": {
9321
- "text": "boolean"
9322
- },
9323
- "default": "false",
9324
- "description": "Whether the excerpt should be collapsible after being expanded.",
9325
- "fieldName": "isCollapsible"
9326
- }
9327
- ],
9328
- "mixins": [
9329
- {
9330
- "name": "LightDomMixin",
9331
- "package": "@/src/mixins/light-dom"
9332
- }
9333
- ],
9334
- "superclass": {
9335
- "name": "LitElement",
9336
- "package": "lit"
9337
- },
9338
- "events": [],
9339
- "tagName": "atomic-product-excerpt",
9340
- "customElement": true
9341
- }
9342
- ],
9343
- "exports": [
9344
- {
9345
- "kind": "js",
9346
- "name": "AtomicProductExcerpt",
9347
- "declaration": {
9348
- "name": "AtomicProductExcerpt",
9349
- "module": "src/components/commerce/atomic-product-excerpt/atomic-product-excerpt.ts"
9350
- }
9351
- },
9352
- {
9353
- "kind": "custom-element-definition",
9354
- "name": "atomic-product-excerpt",
9355
- "declaration": {
9356
- "name": "AtomicProductExcerpt",
9357
- "module": "src/components/commerce/atomic-product-excerpt/atomic-product-excerpt.ts"
9358
- }
9359
- }
9360
- ]
9361
- },
9362
- {
9363
- "kind": "javascript-module",
9364
- "path": "src/components/commerce/atomic-product-field-condition/atomic-product-field-condition.ts",
9365
- "declarations": [
9366
- {
9367
- "kind": "class",
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
- ],
9376
- "members": [
9377
- {
9378
- "kind": "field",
9379
- "name": "bindings",
9380
- "type": {
9381
- "text": "CommerceBindings"
9382
- },
9383
- "privacy": "private"
9384
- },
9385
- {
9386
- "kind": "field",
9387
- "name": "error",
9388
- "type": {
9389
- "text": "Error"
9390
- },
9391
- "privacy": "private"
9392
- },
9393
- {
9394
- "kind": "field",
9395
- "name": "productController",
9396
- "privacy": "private"
9397
- },
9398
- {
9399
- "kind": "field",
9400
- "name": "ifDefined",
9401
- "type": {
9402
- "text": "string"
9403
- },
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"
9406
- },
9407
- {
9408
- "kind": "field",
9409
- "name": "ifNotDefined",
9410
- "type": {
9411
- "text": "string"
9412
- },
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"
9415
- },
9416
- {
9417
- "kind": "field",
9418
- "name": "mustMatch",
9419
- "type": {
9420
- "text": "Record<string, string[]>"
9421
- },
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)."
9423
- },
9424
- {
9425
- "kind": "field",
9426
- "name": "mustNotMatch",
9427
- "type": {
9428
- "text": "Record<string, string[]>"
9429
- },
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)."
9431
- },
9432
- {
9433
- "kind": "method",
9434
- "name": "initialize"
9435
- },
9436
- {
9437
- "kind": "field",
9438
- "name": "conditions",
9439
- "type": {
9440
- "text": "ProductTemplateCondition[]"
9387
+ "text": "CommerceBindings"
9388
+ },
9389
+ "privacy": "private"
9390
+ },
9391
+ {
9392
+ "kind": "field",
9393
+ "name": "error",
9394
+ "type": {
9395
+ "text": "Error"
9396
+ },
9397
+ "privacy": "private"
9398
+ },
9399
+ {
9400
+ "kind": "field",
9401
+ "name": "productController",
9402
+ "privacy": "private"
9403
+ },
9404
+ {
9405
+ "kind": "field",
9406
+ "name": "ifDefined",
9407
+ "type": {
9408
+ "text": "string"
9409
+ },
9410
+ "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).",
9411
+ "attribute": "if-defined"
9412
+ },
9413
+ {
9414
+ "kind": "field",
9415
+ "name": "ifNotDefined",
9416
+ "type": {
9417
+ "text": "string"
9418
+ },
9419
+ "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).",
9420
+ "attribute": "if-not-defined"
9421
+ },
9422
+ {
9423
+ "kind": "field",
9424
+ "name": "mustMatch",
9425
+ "type": {
9426
+ "text": "Record<string, string[]>"
9427
+ },
9428
+ "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)."
9429
+ },
9430
+ {
9431
+ "kind": "field",
9432
+ "name": "mustNotMatch",
9433
+ "type": {
9434
+ "text": "Record<string, string[]>"
9435
+ },
9436
+ "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)."
9437
+ },
9438
+ {
9439
+ "kind": "method",
9440
+ "name": "initialize"
9441
+ },
9442
+ {
9443
+ "kind": "field",
9444
+ "name": "conditions",
9445
+ "type": {
9446
+ "text": "ProductTemplateCondition[]"
9441
9447
  },
9442
9448
  "privacy": "private",
9443
9449
  "readonly": true
@@ -12866,395 +12872,6 @@
12866
12872
  "declarations": [],
12867
12873
  "exports": []
12868
12874
  },
12869
- {
12870
- "kind": "javascript-module",
12871
- "path": "src/components/common/atomic-generated-answer-feedback-modal/atomic-generated-answer-feedback-modal.ts",
12872
- "declarations": [
12873
- {
12874
- "kind": "class",
12875
- "description": "Internal component, only to use through `atomic-generated-answer` or `atomic-insight-generated-answer`",
12876
- "name": "AtomicGeneratedAnswerFeedbackModal",
12877
- "cssParts": [
12878
- {
12879
- "description": "The transparent backdrop hiding the content behind the modal.",
12880
- "name": "backdrop"
12881
- },
12882
- {
12883
- "description": "The modal's outermost container with the outline and background.",
12884
- "name": "container"
12885
- },
12886
- {
12887
- "description": "The modal header container.",
12888
- "name": "modal-header"
12889
- },
12890
- {
12891
- "description": "The wrapper around the close button.",
12892
- "name": "close-button-wrapper"
12893
- },
12894
- {
12895
- "description": "The close button.",
12896
- "name": "close-button"
12897
- },
12898
- {
12899
- "description": "The feedback form.",
12900
- "name": "form"
12901
- },
12902
- {
12903
- "description": "The modal footer container.",
12904
- "name": "modal-footer"
12905
- },
12906
- {
12907
- "description": "The cancel/skip button.",
12908
- "name": "cancel-button"
12909
- },
12910
- {
12911
- "description": "The submit button.",
12912
- "name": "submit-button"
12913
- }
12914
- ],
12915
- "members": [
12916
- {
12917
- "kind": "field",
12918
- "name": "options",
12919
- "type": {
12920
- "text": "{\n localeKey: string;\n correspondingAnswer: keyof GeneratedAnswerFeedback;\n }[]"
12921
- },
12922
- "privacy": "private",
12923
- "static": true,
12924
- "default": "[ { localeKey: 'feedback-correct-topic', correspondingAnswer: 'correctTopic', }, { localeKey: 'feedback-hallucination-free', correspondingAnswer: 'hallucinationFree', }, { localeKey: 'feedback-documented', correspondingAnswer: 'documented', }, { localeKey: 'feedback-readable', correspondingAnswer: 'readable', }, ]"
12925
- },
12926
- {
12927
- "kind": "field",
12928
- "name": "isOpen",
12929
- "type": {
12930
- "text": "boolean"
12931
- },
12932
- "default": "false",
12933
- "description": "Indicates whether the modal is open.",
12934
- "attribute": "is-open",
12935
- "reflects": true
12936
- },
12937
- {
12938
- "kind": "field",
12939
- "name": "generatedAnswer",
12940
- "type": {
12941
- "text": "GeneratedAnswer"
12942
- },
12943
- "description": "A `GeneratedAnswer` controller instance. It is used when the user interacts with the modal."
12944
- },
12945
- {
12946
- "kind": "field",
12947
- "name": "helpful",
12948
- "type": {
12949
- "text": "boolean"
12950
- },
12951
- "default": "false",
12952
- "description": "Indicates whether the answer was helpful or not.",
12953
- "attribute": "helpful",
12954
- "reflects": true
12955
- },
12956
- {
12957
- "kind": "field",
12958
- "name": "bindings",
12959
- "type": {
12960
- "text": "AnyBindings"
12961
- },
12962
- "privacy": "private"
12963
- },
12964
- {
12965
- "kind": "field",
12966
- "name": "error",
12967
- "type": {
12968
- "text": "Error"
12969
- },
12970
- "privacy": "private"
12971
- },
12972
- {
12973
- "kind": "field",
12974
- "name": "currentAnswer",
12975
- "type": {
12976
- "text": "Partial<GeneratedAnswerFeedback>"
12977
- },
12978
- "privacy": "private"
12979
- },
12980
- {
12981
- "kind": "field",
12982
- "name": "feedbackSubmitted",
12983
- "type": {
12984
- "text": "boolean"
12985
- },
12986
- "privacy": "private",
12987
- "default": "false"
12988
- },
12989
- {
12990
- "kind": "field",
12991
- "name": "answerEvaluationRequired",
12992
- "type": {
12993
- "text": "boolean"
12994
- },
12995
- "privacy": "private",
12996
- "default": "false"
12997
- },
12998
- {
12999
- "kind": "field",
13000
- "name": "formId",
13001
- "privacy": "private",
13002
- "readonly": true
13003
- },
13004
- {
13005
- "kind": "field",
13006
- "name": "detailsInputRef",
13007
- "type": {
13008
- "text": "Ref<HTMLTextAreaElement>"
13009
- },
13010
- "privacy": "private"
13011
- },
13012
- {
13013
- "kind": "field",
13014
- "name": "linkInputRef",
13015
- "type": {
13016
- "text": "Ref<HTMLInputElement>"
13017
- },
13018
- "privacy": "private"
13019
- },
13020
- {
13021
- "kind": "field",
13022
- "name": "updateBreakpoints",
13023
- "privacy": "private"
13024
- },
13025
- {
13026
- "kind": "method",
13027
- "name": "initialize"
13028
- },
13029
- {
13030
- "kind": "method",
13031
- "name": "watchToggleOpen",
13032
- "parameters": [
13033
- {
13034
- "name": "_oldValue",
13035
- "type": {
13036
- "text": "boolean | undefined"
13037
- }
13038
- },
13039
- {
13040
- "name": "newValue",
13041
- "type": {
13042
- "text": "boolean | undefined"
13043
- }
13044
- }
13045
- ]
13046
- },
13047
- {
13048
- "kind": "method",
13049
- "name": "getInitialAnswerState",
13050
- "privacy": "private",
13051
- "return": {
13052
- "type": {
13053
- "text": "Partial<GeneratedAnswerFeedback>"
13054
- }
13055
- }
13056
- },
13057
- {
13058
- "kind": "method",
13059
- "name": "resetState",
13060
- "privacy": "private"
13061
- },
13062
- {
13063
- "kind": "method",
13064
- "name": "clearInputRefs",
13065
- "privacy": "private"
13066
- },
13067
- {
13068
- "kind": "method",
13069
- "name": "close",
13070
- "privacy": "private"
13071
- },
13072
- {
13073
- "kind": "method",
13074
- "name": "setCurrentAnswer",
13075
- "privacy": "private",
13076
- "parameters": [
13077
- {
13078
- "name": "key",
13079
- "type": {
13080
- "text": "keyof GeneratedAnswerFeedback"
13081
- }
13082
- },
13083
- {
13084
- "name": "value",
13085
- "type": {
13086
- "text": "GeneratedAnswerFeedbackOption | string"
13087
- }
13088
- }
13089
- ]
13090
- },
13091
- {
13092
- "kind": "method",
13093
- "name": "sendFeedback",
13094
- "privacy": "public"
13095
- },
13096
- {
13097
- "kind": "field",
13098
- "name": "isAnyAnswerEvaluationUndefined",
13099
- "privacy": "private"
13100
- },
13101
- {
13102
- "kind": "method",
13103
- "name": "handleSubmit",
13104
- "privacy": "private",
13105
- "parameters": [
13106
- {
13107
- "name": "e",
13108
- "type": {
13109
- "text": "Event"
13110
- }
13111
- }
13112
- ]
13113
- },
13114
- {
13115
- "kind": "method",
13116
- "name": "renderHeader",
13117
- "privacy": "private"
13118
- },
13119
- {
13120
- "kind": "method",
13121
- "name": "renderFeedbackOption",
13122
- "privacy": "private",
13123
- "parameters": [
13124
- {
13125
- "name": "option",
13126
- "type": {
13127
- "text": "GeneratedAnswerFeedbackOption"
13128
- }
13129
- },
13130
- {
13131
- "name": "correspondingAnswer",
13132
- "type": {
13133
- "text": "keyof GeneratedAnswerFeedback"
13134
- }
13135
- }
13136
- ]
13137
- },
13138
- {
13139
- "kind": "method",
13140
- "name": "renderAnswerEvaluation",
13141
- "privacy": "private",
13142
- "parameters": [
13143
- {
13144
- "name": "label",
13145
- "type": {
13146
- "text": "string"
13147
- }
13148
- },
13149
- {
13150
- "name": "correspondingAnswer",
13151
- "type": {
13152
- "text": "keyof GeneratedAnswerFeedback"
13153
- }
13154
- }
13155
- ]
13156
- },
13157
- {
13158
- "kind": "method",
13159
- "name": "renderFeedbackOptions",
13160
- "privacy": "private"
13161
- },
13162
- {
13163
- "kind": "method",
13164
- "name": "renderLinkToCorrectAnswerField",
13165
- "privacy": "private"
13166
- },
13167
- {
13168
- "kind": "method",
13169
- "name": "renderAddNotesField",
13170
- "privacy": "private"
13171
- },
13172
- {
13173
- "kind": "method",
13174
- "name": "renderFeedbackForm",
13175
- "privacy": "private"
13176
- },
13177
- {
13178
- "kind": "method",
13179
- "name": "renderSuccessMessage",
13180
- "privacy": "private"
13181
- },
13182
- {
13183
- "kind": "method",
13184
- "name": "renderBody",
13185
- "privacy": "private"
13186
- },
13187
- {
13188
- "kind": "method",
13189
- "name": "renderFeedbackFormFooter",
13190
- "privacy": "private"
13191
- },
13192
- {
13193
- "kind": "method",
13194
- "name": "renderSuccessFormFooter",
13195
- "privacy": "private"
13196
- },
13197
- {
13198
- "kind": "method",
13199
- "name": "renderFooter",
13200
- "privacy": "private"
13201
- }
13202
- ],
13203
- "events": [
13204
- {
13205
- "name": "feedbackSent",
13206
- "type": {
13207
- "text": "CustomEvent"
13208
- }
13209
- }
13210
- ],
13211
- "attributes": [
13212
- {
13213
- "name": "is-open",
13214
- "type": {
13215
- "text": "boolean"
13216
- },
13217
- "default": "false",
13218
- "description": "Indicates whether the modal is open.",
13219
- "fieldName": "isOpen"
13220
- },
13221
- {
13222
- "name": "helpful",
13223
- "type": {
13224
- "text": "boolean"
13225
- },
13226
- "default": "false",
13227
- "description": "Indicates whether the answer was helpful or not.",
13228
- "fieldName": "helpful"
13229
- }
13230
- ],
13231
- "superclass": {
13232
- "name": "LitElement",
13233
- "package": "lit"
13234
- },
13235
- "tagName": "atomic-generated-answer-feedback-modal",
13236
- "customElement": true
13237
- }
13238
- ],
13239
- "exports": [
13240
- {
13241
- "kind": "js",
13242
- "name": "AtomicGeneratedAnswerFeedbackModal",
13243
- "declaration": {
13244
- "name": "AtomicGeneratedAnswerFeedbackModal",
13245
- "module": "src/components/common/atomic-generated-answer-feedback-modal/atomic-generated-answer-feedback-modal.ts"
13246
- }
13247
- },
13248
- {
13249
- "kind": "custom-element-definition",
13250
- "name": "atomic-generated-answer-feedback-modal",
13251
- "declaration": {
13252
- "name": "AtomicGeneratedAnswerFeedbackModal",
13253
- "module": "src/components/common/atomic-generated-answer-feedback-modal/atomic-generated-answer-feedback-modal.ts"
13254
- }
13255
- }
13256
- ]
13257
- },
13258
12875
  {
13259
12876
  "kind": "javascript-module",
13260
12877
  "path": "src/components/common/atomic-generated-answer-thread/atomic-generated-answer-thread.ts",
@@ -13451,6 +13068,12 @@
13451
13068
  }
13452
13069
  ]
13453
13070
  },
13071
+ {
13072
+ "kind": "javascript-module",
13073
+ "path": "src/components/common/atomic-icon/fetch-icon.ts",
13074
+ "declarations": [],
13075
+ "exports": []
13076
+ },
13454
13077
  {
13455
13078
  "kind": "javascript-module",
13456
13079
  "path": "src/components/common/atomic-layout-section/atomic-layout-section-utils.ts",
@@ -13787,6 +13410,395 @@
13787
13410
  }
13788
13411
  ]
13789
13412
  },
13413
+ {
13414
+ "kind": "javascript-module",
13415
+ "path": "src/components/common/atomic-generated-answer-feedback-modal/atomic-generated-answer-feedback-modal.ts",
13416
+ "declarations": [
13417
+ {
13418
+ "kind": "class",
13419
+ "description": "Internal component, only to use through `atomic-generated-answer` or `atomic-insight-generated-answer`",
13420
+ "name": "AtomicGeneratedAnswerFeedbackModal",
13421
+ "cssParts": [
13422
+ {
13423
+ "description": "The transparent backdrop hiding the content behind the modal.",
13424
+ "name": "backdrop"
13425
+ },
13426
+ {
13427
+ "description": "The modal's outermost container with the outline and background.",
13428
+ "name": "container"
13429
+ },
13430
+ {
13431
+ "description": "The modal header container.",
13432
+ "name": "modal-header"
13433
+ },
13434
+ {
13435
+ "description": "The wrapper around the close button.",
13436
+ "name": "close-button-wrapper"
13437
+ },
13438
+ {
13439
+ "description": "The close button.",
13440
+ "name": "close-button"
13441
+ },
13442
+ {
13443
+ "description": "The feedback form.",
13444
+ "name": "form"
13445
+ },
13446
+ {
13447
+ "description": "The modal footer container.",
13448
+ "name": "modal-footer"
13449
+ },
13450
+ {
13451
+ "description": "The cancel/skip button.",
13452
+ "name": "cancel-button"
13453
+ },
13454
+ {
13455
+ "description": "The submit button.",
13456
+ "name": "submit-button"
13457
+ }
13458
+ ],
13459
+ "members": [
13460
+ {
13461
+ "kind": "field",
13462
+ "name": "options",
13463
+ "type": {
13464
+ "text": "{\n localeKey: string;\n correspondingAnswer: keyof GeneratedAnswerFeedback;\n }[]"
13465
+ },
13466
+ "privacy": "private",
13467
+ "static": true,
13468
+ "default": "[ { localeKey: 'feedback-correct-topic', correspondingAnswer: 'correctTopic', }, { localeKey: 'feedback-hallucination-free', correspondingAnswer: 'hallucinationFree', }, { localeKey: 'feedback-documented', correspondingAnswer: 'documented', }, { localeKey: 'feedback-readable', correspondingAnswer: 'readable', }, ]"
13469
+ },
13470
+ {
13471
+ "kind": "field",
13472
+ "name": "isOpen",
13473
+ "type": {
13474
+ "text": "boolean"
13475
+ },
13476
+ "default": "false",
13477
+ "description": "Indicates whether the modal is open.",
13478
+ "attribute": "is-open",
13479
+ "reflects": true
13480
+ },
13481
+ {
13482
+ "kind": "field",
13483
+ "name": "generatedAnswer",
13484
+ "type": {
13485
+ "text": "GeneratedAnswer"
13486
+ },
13487
+ "description": "A `GeneratedAnswer` controller instance. It is used when the user interacts with the modal."
13488
+ },
13489
+ {
13490
+ "kind": "field",
13491
+ "name": "helpful",
13492
+ "type": {
13493
+ "text": "boolean"
13494
+ },
13495
+ "default": "false",
13496
+ "description": "Indicates whether the answer was helpful or not.",
13497
+ "attribute": "helpful",
13498
+ "reflects": true
13499
+ },
13500
+ {
13501
+ "kind": "field",
13502
+ "name": "bindings",
13503
+ "type": {
13504
+ "text": "AnyBindings"
13505
+ },
13506
+ "privacy": "private"
13507
+ },
13508
+ {
13509
+ "kind": "field",
13510
+ "name": "error",
13511
+ "type": {
13512
+ "text": "Error"
13513
+ },
13514
+ "privacy": "private"
13515
+ },
13516
+ {
13517
+ "kind": "field",
13518
+ "name": "currentAnswer",
13519
+ "type": {
13520
+ "text": "Partial<GeneratedAnswerFeedback>"
13521
+ },
13522
+ "privacy": "private"
13523
+ },
13524
+ {
13525
+ "kind": "field",
13526
+ "name": "feedbackSubmitted",
13527
+ "type": {
13528
+ "text": "boolean"
13529
+ },
13530
+ "privacy": "private",
13531
+ "default": "false"
13532
+ },
13533
+ {
13534
+ "kind": "field",
13535
+ "name": "answerEvaluationRequired",
13536
+ "type": {
13537
+ "text": "boolean"
13538
+ },
13539
+ "privacy": "private",
13540
+ "default": "false"
13541
+ },
13542
+ {
13543
+ "kind": "field",
13544
+ "name": "formId",
13545
+ "privacy": "private",
13546
+ "readonly": true
13547
+ },
13548
+ {
13549
+ "kind": "field",
13550
+ "name": "detailsInputRef",
13551
+ "type": {
13552
+ "text": "Ref<HTMLTextAreaElement>"
13553
+ },
13554
+ "privacy": "private"
13555
+ },
13556
+ {
13557
+ "kind": "field",
13558
+ "name": "linkInputRef",
13559
+ "type": {
13560
+ "text": "Ref<HTMLInputElement>"
13561
+ },
13562
+ "privacy": "private"
13563
+ },
13564
+ {
13565
+ "kind": "field",
13566
+ "name": "updateBreakpoints",
13567
+ "privacy": "private"
13568
+ },
13569
+ {
13570
+ "kind": "method",
13571
+ "name": "initialize"
13572
+ },
13573
+ {
13574
+ "kind": "method",
13575
+ "name": "watchToggleOpen",
13576
+ "parameters": [
13577
+ {
13578
+ "name": "_oldValue",
13579
+ "type": {
13580
+ "text": "boolean | undefined"
13581
+ }
13582
+ },
13583
+ {
13584
+ "name": "newValue",
13585
+ "type": {
13586
+ "text": "boolean | undefined"
13587
+ }
13588
+ }
13589
+ ]
13590
+ },
13591
+ {
13592
+ "kind": "method",
13593
+ "name": "getInitialAnswerState",
13594
+ "privacy": "private",
13595
+ "return": {
13596
+ "type": {
13597
+ "text": "Partial<GeneratedAnswerFeedback>"
13598
+ }
13599
+ }
13600
+ },
13601
+ {
13602
+ "kind": "method",
13603
+ "name": "resetState",
13604
+ "privacy": "private"
13605
+ },
13606
+ {
13607
+ "kind": "method",
13608
+ "name": "clearInputRefs",
13609
+ "privacy": "private"
13610
+ },
13611
+ {
13612
+ "kind": "method",
13613
+ "name": "close",
13614
+ "privacy": "private"
13615
+ },
13616
+ {
13617
+ "kind": "method",
13618
+ "name": "setCurrentAnswer",
13619
+ "privacy": "private",
13620
+ "parameters": [
13621
+ {
13622
+ "name": "key",
13623
+ "type": {
13624
+ "text": "keyof GeneratedAnswerFeedback"
13625
+ }
13626
+ },
13627
+ {
13628
+ "name": "value",
13629
+ "type": {
13630
+ "text": "GeneratedAnswerFeedbackOption | string"
13631
+ }
13632
+ }
13633
+ ]
13634
+ },
13635
+ {
13636
+ "kind": "method",
13637
+ "name": "sendFeedback",
13638
+ "privacy": "public"
13639
+ },
13640
+ {
13641
+ "kind": "field",
13642
+ "name": "isAnyAnswerEvaluationUndefined",
13643
+ "privacy": "private"
13644
+ },
13645
+ {
13646
+ "kind": "method",
13647
+ "name": "handleSubmit",
13648
+ "privacy": "private",
13649
+ "parameters": [
13650
+ {
13651
+ "name": "e",
13652
+ "type": {
13653
+ "text": "Event"
13654
+ }
13655
+ }
13656
+ ]
13657
+ },
13658
+ {
13659
+ "kind": "method",
13660
+ "name": "renderHeader",
13661
+ "privacy": "private"
13662
+ },
13663
+ {
13664
+ "kind": "method",
13665
+ "name": "renderFeedbackOption",
13666
+ "privacy": "private",
13667
+ "parameters": [
13668
+ {
13669
+ "name": "option",
13670
+ "type": {
13671
+ "text": "GeneratedAnswerFeedbackOption"
13672
+ }
13673
+ },
13674
+ {
13675
+ "name": "correspondingAnswer",
13676
+ "type": {
13677
+ "text": "keyof GeneratedAnswerFeedback"
13678
+ }
13679
+ }
13680
+ ]
13681
+ },
13682
+ {
13683
+ "kind": "method",
13684
+ "name": "renderAnswerEvaluation",
13685
+ "privacy": "private",
13686
+ "parameters": [
13687
+ {
13688
+ "name": "label",
13689
+ "type": {
13690
+ "text": "string"
13691
+ }
13692
+ },
13693
+ {
13694
+ "name": "correspondingAnswer",
13695
+ "type": {
13696
+ "text": "keyof GeneratedAnswerFeedback"
13697
+ }
13698
+ }
13699
+ ]
13700
+ },
13701
+ {
13702
+ "kind": "method",
13703
+ "name": "renderFeedbackOptions",
13704
+ "privacy": "private"
13705
+ },
13706
+ {
13707
+ "kind": "method",
13708
+ "name": "renderLinkToCorrectAnswerField",
13709
+ "privacy": "private"
13710
+ },
13711
+ {
13712
+ "kind": "method",
13713
+ "name": "renderAddNotesField",
13714
+ "privacy": "private"
13715
+ },
13716
+ {
13717
+ "kind": "method",
13718
+ "name": "renderFeedbackForm",
13719
+ "privacy": "private"
13720
+ },
13721
+ {
13722
+ "kind": "method",
13723
+ "name": "renderSuccessMessage",
13724
+ "privacy": "private"
13725
+ },
13726
+ {
13727
+ "kind": "method",
13728
+ "name": "renderBody",
13729
+ "privacy": "private"
13730
+ },
13731
+ {
13732
+ "kind": "method",
13733
+ "name": "renderFeedbackFormFooter",
13734
+ "privacy": "private"
13735
+ },
13736
+ {
13737
+ "kind": "method",
13738
+ "name": "renderSuccessFormFooter",
13739
+ "privacy": "private"
13740
+ },
13741
+ {
13742
+ "kind": "method",
13743
+ "name": "renderFooter",
13744
+ "privacy": "private"
13745
+ }
13746
+ ],
13747
+ "events": [
13748
+ {
13749
+ "name": "feedbackSent",
13750
+ "type": {
13751
+ "text": "CustomEvent"
13752
+ }
13753
+ }
13754
+ ],
13755
+ "attributes": [
13756
+ {
13757
+ "name": "is-open",
13758
+ "type": {
13759
+ "text": "boolean"
13760
+ },
13761
+ "default": "false",
13762
+ "description": "Indicates whether the modal is open.",
13763
+ "fieldName": "isOpen"
13764
+ },
13765
+ {
13766
+ "name": "helpful",
13767
+ "type": {
13768
+ "text": "boolean"
13769
+ },
13770
+ "default": "false",
13771
+ "description": "Indicates whether the answer was helpful or not.",
13772
+ "fieldName": "helpful"
13773
+ }
13774
+ ],
13775
+ "superclass": {
13776
+ "name": "LitElement",
13777
+ "package": "lit"
13778
+ },
13779
+ "tagName": "atomic-generated-answer-feedback-modal",
13780
+ "customElement": true
13781
+ }
13782
+ ],
13783
+ "exports": [
13784
+ {
13785
+ "kind": "js",
13786
+ "name": "AtomicGeneratedAnswerFeedbackModal",
13787
+ "declaration": {
13788
+ "name": "AtomicGeneratedAnswerFeedbackModal",
13789
+ "module": "src/components/common/atomic-generated-answer-feedback-modal/atomic-generated-answer-feedback-modal.ts"
13790
+ }
13791
+ },
13792
+ {
13793
+ "kind": "custom-element-definition",
13794
+ "name": "atomic-generated-answer-feedback-modal",
13795
+ "declaration": {
13796
+ "name": "AtomicGeneratedAnswerFeedbackModal",
13797
+ "module": "src/components/common/atomic-generated-answer-feedback-modal/atomic-generated-answer-feedback-modal.ts"
13798
+ }
13799
+ }
13800
+ ]
13801
+ },
13790
13802
  {
13791
13803
  "kind": "javascript-module",
13792
13804
  "path": "src/components/common/atomic-rating/atomic-rating.tw.css.ts",
@@ -14108,6 +14120,12 @@
14108
14120
  "declarations": [],
14109
14121
  "exports": []
14110
14122
  },
14123
+ {
14124
+ "kind": "javascript-module",
14125
+ "path": "src/components/common/expandable-text/expandable-text.ts",
14126
+ "declarations": [],
14127
+ "exports": []
14128
+ },
14111
14129
  {
14112
14130
  "kind": "javascript-module",
14113
14131
  "path": "src/components/common/facets/depends-on.ts",
@@ -14144,12 +14162,6 @@
14144
14162
  "declarations": [],
14145
14163
  "exports": []
14146
14164
  },
14147
- {
14148
- "kind": "javascript-module",
14149
- "path": "src/components/common/expandable-text/expandable-text.ts",
14150
- "declarations": [],
14151
- "exports": []
14152
- },
14153
14165
  {
14154
14166
  "kind": "javascript-module",
14155
14167
  "path": "src/components/common/formats/format-common.ts",
@@ -14560,115 +14572,115 @@
14560
14572
  },
14561
14573
  {
14562
14574
  "kind": "javascript-module",
14563
- "path": "src/components/common/query-summary/container.ts",
14575
+ "path": "src/components/common/query-error/container.ts",
14564
14576
  "declarations": [],
14565
14577
  "exports": []
14566
14578
  },
14567
14579
  {
14568
14580
  "kind": "javascript-module",
14569
- "path": "src/components/common/query-summary/guard.ts",
14581
+ "path": "src/components/common/query-error/description.ts",
14570
14582
  "declarations": [],
14571
14583
  "exports": []
14572
14584
  },
14573
14585
  {
14574
14586
  "kind": "javascript-module",
14575
- "path": "src/components/common/query-summary/utils.ts",
14587
+ "path": "src/components/common/query-error/details.ts",
14576
14588
  "declarations": [],
14577
14589
  "exports": []
14578
14590
  },
14579
14591
  {
14580
14592
  "kind": "javascript-module",
14581
- "path": "src/components/common/refine-modal/body.ts",
14593
+ "path": "src/components/common/query-error/icon.ts",
14582
14594
  "declarations": [],
14583
14595
  "exports": []
14584
14596
  },
14585
14597
  {
14586
14598
  "kind": "javascript-module",
14587
- "path": "src/components/common/refine-modal/button.ts",
14599
+ "path": "src/components/common/query-error/known-error-types.ts",
14588
14600
  "declarations": [],
14589
14601
  "exports": []
14590
14602
  },
14591
14603
  {
14592
14604
  "kind": "javascript-module",
14593
- "path": "src/components/common/refine-modal/cloned-facet-elements.ts",
14605
+ "path": "src/components/common/query-error/link.ts",
14594
14606
  "declarations": [],
14595
14607
  "exports": []
14596
14608
  },
14597
14609
  {
14598
14610
  "kind": "javascript-module",
14599
- "path": "src/components/common/refine-modal/filters.ts",
14611
+ "path": "src/components/common/query-error/show-more.ts",
14600
14612
  "declarations": [],
14601
14613
  "exports": []
14602
14614
  },
14603
14615
  {
14604
14616
  "kind": "javascript-module",
14605
- "path": "src/components/common/refine-modal/guard.ts",
14617
+ "path": "src/components/common/query-error/title.ts",
14606
14618
  "declarations": [],
14607
14619
  "exports": []
14608
14620
  },
14609
14621
  {
14610
14622
  "kind": "javascript-module",
14611
- "path": "src/components/common/refine-modal/modal.ts",
14623
+ "path": "src/components/common/query-error/utils.ts",
14612
14624
  "declarations": [],
14613
14625
  "exports": []
14614
14626
  },
14615
14627
  {
14616
14628
  "kind": "javascript-module",
14617
- "path": "src/components/common/refine-modal/sort.ts",
14629
+ "path": "src/components/common/query-summary/container.ts",
14618
14630
  "declarations": [],
14619
14631
  "exports": []
14620
14632
  },
14621
14633
  {
14622
14634
  "kind": "javascript-module",
14623
- "path": "src/components/common/query-error/container.ts",
14635
+ "path": "src/components/common/query-summary/guard.ts",
14624
14636
  "declarations": [],
14625
14637
  "exports": []
14626
14638
  },
14627
14639
  {
14628
14640
  "kind": "javascript-module",
14629
- "path": "src/components/common/query-error/description.ts",
14641
+ "path": "src/components/common/query-summary/utils.ts",
14630
14642
  "declarations": [],
14631
14643
  "exports": []
14632
14644
  },
14633
14645
  {
14634
14646
  "kind": "javascript-module",
14635
- "path": "src/components/common/query-error/details.ts",
14647
+ "path": "src/components/common/refine-modal/body.ts",
14636
14648
  "declarations": [],
14637
14649
  "exports": []
14638
14650
  },
14639
14651
  {
14640
14652
  "kind": "javascript-module",
14641
- "path": "src/components/common/query-error/icon.ts",
14653
+ "path": "src/components/common/refine-modal/button.ts",
14642
14654
  "declarations": [],
14643
14655
  "exports": []
14644
14656
  },
14645
14657
  {
14646
14658
  "kind": "javascript-module",
14647
- "path": "src/components/common/query-error/known-error-types.ts",
14659
+ "path": "src/components/common/refine-modal/cloned-facet-elements.ts",
14648
14660
  "declarations": [],
14649
14661
  "exports": []
14650
14662
  },
14651
14663
  {
14652
14664
  "kind": "javascript-module",
14653
- "path": "src/components/common/query-error/link.ts",
14665
+ "path": "src/components/common/refine-modal/filters.ts",
14654
14666
  "declarations": [],
14655
14667
  "exports": []
14656
14668
  },
14657
14669
  {
14658
14670
  "kind": "javascript-module",
14659
- "path": "src/components/common/query-error/show-more.ts",
14671
+ "path": "src/components/common/refine-modal/guard.ts",
14660
14672
  "declarations": [],
14661
14673
  "exports": []
14662
14674
  },
14663
14675
  {
14664
14676
  "kind": "javascript-module",
14665
- "path": "src/components/common/query-error/title.ts",
14677
+ "path": "src/components/common/refine-modal/modal.ts",
14666
14678
  "declarations": [],
14667
14679
  "exports": []
14668
14680
  },
14669
14681
  {
14670
14682
  "kind": "javascript-module",
14671
- "path": "src/components/common/query-error/utils.ts",
14683
+ "path": "src/components/common/refine-modal/sort.ts",
14672
14684
  "declarations": [],
14673
14685
  "exports": []
14674
14686
  },
@@ -14698,43 +14710,43 @@
14698
14710
  },
14699
14711
  {
14700
14712
  "kind": "javascript-module",
14701
- "path": "src/components/common/result-templates/recs-result-template-controller.ts",
14713
+ "path": "src/components/common/search-box/redirection-payload.ts",
14702
14714
  "declarations": [],
14703
14715
  "exports": []
14704
14716
  },
14705
14717
  {
14706
14718
  "kind": "javascript-module",
14707
- "path": "src/components/common/result-templates/result-template-controller.ts",
14719
+ "path": "src/components/common/search-box/search-box-wrapper.ts",
14708
14720
  "declarations": [],
14709
14721
  "exports": []
14710
14722
  },
14711
14723
  {
14712
14724
  "kind": "javascript-module",
14713
- "path": "src/components/common/search-box/redirection-payload.ts",
14725
+ "path": "src/components/common/search-box/search-text-area.ts",
14714
14726
  "declarations": [],
14715
14727
  "exports": []
14716
14728
  },
14717
14729
  {
14718
14730
  "kind": "javascript-module",
14719
- "path": "src/components/common/search-box/search-box-wrapper.ts",
14731
+ "path": "src/components/common/search-box/submit-button.ts",
14720
14732
  "declarations": [],
14721
14733
  "exports": []
14722
14734
  },
14723
14735
  {
14724
14736
  "kind": "javascript-module",
14725
- "path": "src/components/common/search-box/search-text-area.ts",
14737
+ "path": "src/components/common/search-box/text-area-clear-button.ts",
14726
14738
  "declarations": [],
14727
14739
  "exports": []
14728
14740
  },
14729
14741
  {
14730
14742
  "kind": "javascript-module",
14731
- "path": "src/components/common/search-box/submit-button.ts",
14743
+ "path": "src/components/common/result-templates/recs-result-template-controller.ts",
14732
14744
  "declarations": [],
14733
14745
  "exports": []
14734
14746
  },
14735
14747
  {
14736
14748
  "kind": "javascript-module",
14737
- "path": "src/components/common/search-box/text-area-clear-button.ts",
14749
+ "path": "src/components/common/result-templates/result-template-controller.ts",
14738
14750
  "declarations": [],
14739
14751
  "exports": []
14740
14752
  },
@@ -33678,90 +33690,92 @@
33678
33690
  },
33679
33691
  {
33680
33692
  "kind": "javascript-module",
33681
- "path": "src/components/search/atomic-query-error/atomic-query-error.ts",
33693
+ "path": "src/components/search/atomic-query-summary/atomic-query-summary.ts",
33682
33694
  "declarations": [
33683
33695
  {
33684
33696
  "kind": "class",
33685
- "description": "The `atomic-query-error` component handles fatal errors when performing a query on the index or Search API. When the error is known, it displays a link to relevant documentation link for debugging purposes. When the error is unknown, it displays a small text area with the JSON content of the error.",
33686
- "name": "AtomicQueryError",
33697
+ "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\").",
33698
+ "name": "AtomicQuerySummary",
33687
33699
  "cssParts": [
33688
33700
  {
33689
- "description": "The svg related to the error.",
33690
- "name": "icon"
33691
- },
33692
- {
33693
- "description": "The title of the error.",
33694
- "name": "title"
33701
+ "description": "The container for the whole summary.",
33702
+ "name": "container"
33695
33703
  },
33696
33704
  {
33697
- "description": "A description of the error.",
33698
- "name": "description"
33705
+ "description": "The container for the duration.",
33706
+ "name": "duration"
33699
33707
  },
33700
33708
  {
33701
- "description": "A link to the relevant documentation.",
33702
- "name": "doc-link"
33709
+ "description": "The summary highlights.",
33710
+ "name": "highlight"
33703
33711
  },
33704
33712
  {
33705
- "description": "A button to request additional error information.",
33706
- "name": "more-info-btn"
33713
+ "description": "The summary highlighted query.",
33714
+ "name": "query"
33707
33715
  },
33708
33716
  {
33709
- "description": "Additional error information.",
33710
- "name": "error-info"
33717
+ "description": "The query summary placeholder used while the search interface is initializing.",
33718
+ "name": "placeholder"
33711
33719
  }
33712
33720
  ],
33713
33721
  "members": [
33714
33722
  {
33715
33723
  "kind": "field",
33716
- "name": "queryErrorState",
33724
+ "name": "bindings",
33717
33725
  "type": {
33718
- "text": "QueryErrorState"
33726
+ "text": "Bindings"
33719
33727
  },
33720
33728
  "privacy": "private"
33721
33729
  },
33722
33730
  {
33723
33731
  "kind": "field",
33724
- "name": "ariaMessage",
33725
- "privacy": "protected",
33726
- "default": "new AriaLiveRegionController(this, 'query-error')"
33727
- },
33728
- {
33729
- "kind": "field",
33730
- "name": "bindings",
33732
+ "name": "error",
33731
33733
  "type": {
33732
- "text": "Bindings"
33734
+ "text": "Error"
33733
33735
  },
33734
33736
  "privacy": "private"
33735
33737
  },
33736
33738
  {
33737
33739
  "kind": "field",
33738
- "name": "queryError",
33740
+ "name": "querySummaryState",
33739
33741
  "type": {
33740
- "text": "QueryError"
33742
+ "text": "QuerySummaryState"
33741
33743
  },
33742
33744
  "privacy": "private"
33743
33745
  },
33744
33746
  {
33745
33747
  "kind": "field",
33746
- "name": "error",
33748
+ "name": "querySummary",
33747
33749
  "type": {
33748
- "text": "Error"
33750
+ "text": "QuerySummary"
33749
33751
  },
33750
33752
  "privacy": "private"
33751
33753
  },
33752
33754
  {
33753
33755
  "kind": "field",
33754
- "name": "showMoreInfo",
33755
- "type": {
33756
- "text": "boolean"
33757
- },
33758
- "privacy": "public",
33759
- "default": "false"
33756
+ "name": "ariaMessage",
33757
+ "privacy": "protected",
33758
+ "default": "new AriaLiveRegionController(this, 'query-summary')"
33760
33759
  },
33761
33760
  {
33762
33761
  "kind": "method",
33763
33762
  "name": "initialize",
33764
33763
  "privacy": "public"
33764
+ },
33765
+ {
33766
+ "kind": "method",
33767
+ "name": "initBindings",
33768
+ "privacy": "private",
33769
+ "inheritedFrom": {
33770
+ "name": "InitializeBindingsMixin",
33771
+ "module": "src/mixins/bindings-mixin.ts"
33772
+ }
33773
+ }
33774
+ ],
33775
+ "mixins": [
33776
+ {
33777
+ "name": "InitializeBindingsMixin",
33778
+ "package": "@/src/mixins/bindings-mixin"
33765
33779
  }
33766
33780
  ],
33767
33781
  "superclass": {
@@ -33769,117 +33783,115 @@
33769
33783
  "package": "lit"
33770
33784
  },
33771
33785
  "events": [],
33772
- "tagName": "atomic-query-error",
33786
+ "tagName": "atomic-query-summary",
33773
33787
  "customElement": true
33774
33788
  }
33775
33789
  ],
33776
33790
  "exports": [
33777
33791
  {
33778
33792
  "kind": "js",
33779
- "name": "AtomicQueryError",
33793
+ "name": "AtomicQuerySummary",
33780
33794
  "declaration": {
33781
- "name": "AtomicQueryError",
33782
- "module": "src/components/search/atomic-query-error/atomic-query-error.ts"
33795
+ "name": "AtomicQuerySummary",
33796
+ "module": "src/components/search/atomic-query-summary/atomic-query-summary.ts"
33783
33797
  }
33784
33798
  },
33785
33799
  {
33786
33800
  "kind": "custom-element-definition",
33787
- "name": "atomic-query-error",
33801
+ "name": "atomic-query-summary",
33788
33802
  "declaration": {
33789
- "name": "AtomicQueryError",
33790
- "module": "src/components/search/atomic-query-error/atomic-query-error.ts"
33803
+ "name": "AtomicQuerySummary",
33804
+ "module": "src/components/search/atomic-query-summary/atomic-query-summary.ts"
33791
33805
  }
33792
33806
  }
33793
33807
  ]
33794
33808
  },
33795
33809
  {
33796
33810
  "kind": "javascript-module",
33797
- "path": "src/components/search/atomic-query-summary/atomic-query-summary.ts",
33811
+ "path": "src/components/search/atomic-query-error/atomic-query-error.ts",
33798
33812
  "declarations": [
33799
33813
  {
33800
33814
  "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",
33815
+ "description": "The `atomic-query-error` component handles fatal errors when performing a query on the index or Search API. When the error is known, it displays a link to relevant documentation link for debugging purposes. When the error is unknown, it displays a small text area with the JSON content of the error.",
33816
+ "name": "AtomicQueryError",
33803
33817
  "cssParts": [
33804
33818
  {
33805
- "description": "The container for the whole summary.",
33806
- "name": "container"
33819
+ "description": "The svg related to the error.",
33820
+ "name": "icon"
33807
33821
  },
33808
33822
  {
33809
- "description": "The container for the duration.",
33810
- "name": "duration"
33823
+ "description": "The title of the error.",
33824
+ "name": "title"
33811
33825
  },
33812
33826
  {
33813
- "description": "The summary highlights.",
33814
- "name": "highlight"
33827
+ "description": "A description of the error.",
33828
+ "name": "description"
33815
33829
  },
33816
33830
  {
33817
- "description": "The summary highlighted query.",
33818
- "name": "query"
33831
+ "description": "A link to the relevant documentation.",
33832
+ "name": "doc-link"
33819
33833
  },
33820
33834
  {
33821
- "description": "The query summary placeholder used while the search interface is initializing.",
33822
- "name": "placeholder"
33835
+ "description": "A button to request additional error information.",
33836
+ "name": "more-info-btn"
33837
+ },
33838
+ {
33839
+ "description": "Additional error information.",
33840
+ "name": "error-info"
33823
33841
  }
33824
33842
  ],
33825
33843
  "members": [
33826
33844
  {
33827
33845
  "kind": "field",
33828
- "name": "bindings",
33846
+ "name": "queryErrorState",
33829
33847
  "type": {
33830
- "text": "Bindings"
33848
+ "text": "QueryErrorState"
33831
33849
  },
33832
33850
  "privacy": "private"
33833
33851
  },
33834
33852
  {
33835
33853
  "kind": "field",
33836
- "name": "error",
33854
+ "name": "ariaMessage",
33855
+ "privacy": "protected",
33856
+ "default": "new AriaLiveRegionController(this, 'query-error')"
33857
+ },
33858
+ {
33859
+ "kind": "field",
33860
+ "name": "bindings",
33837
33861
  "type": {
33838
- "text": "Error"
33862
+ "text": "Bindings"
33839
33863
  },
33840
33864
  "privacy": "private"
33841
33865
  },
33842
33866
  {
33843
33867
  "kind": "field",
33844
- "name": "querySummaryState",
33868
+ "name": "queryError",
33845
33869
  "type": {
33846
- "text": "QuerySummaryState"
33870
+ "text": "QueryError"
33847
33871
  },
33848
33872
  "privacy": "private"
33849
33873
  },
33850
33874
  {
33851
33875
  "kind": "field",
33852
- "name": "querySummary",
33876
+ "name": "error",
33853
33877
  "type": {
33854
- "text": "QuerySummary"
33878
+ "text": "Error"
33855
33879
  },
33856
33880
  "privacy": "private"
33857
33881
  },
33858
33882
  {
33859
33883
  "kind": "field",
33860
- "name": "ariaMessage",
33861
- "privacy": "protected",
33862
- "default": "new AriaLiveRegionController(this, 'query-summary')"
33884
+ "name": "showMoreInfo",
33885
+ "type": {
33886
+ "text": "boolean"
33887
+ },
33888
+ "privacy": "public",
33889
+ "default": "false"
33863
33890
  },
33864
33891
  {
33865
33892
  "kind": "method",
33866
33893
  "name": "initialize",
33867
33894
  "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
33895
  }
33884
33896
  ],
33885
33897
  "superclass": {
@@ -33887,25 +33899,25 @@
33887
33899
  "package": "lit"
33888
33900
  },
33889
33901
  "events": [],
33890
- "tagName": "atomic-query-summary",
33902
+ "tagName": "atomic-query-error",
33891
33903
  "customElement": true
33892
33904
  }
33893
33905
  ],
33894
33906
  "exports": [
33895
33907
  {
33896
33908
  "kind": "js",
33897
- "name": "AtomicQuerySummary",
33909
+ "name": "AtomicQueryError",
33898
33910
  "declaration": {
33899
- "name": "AtomicQuerySummary",
33900
- "module": "src/components/search/atomic-query-summary/atomic-query-summary.ts"
33911
+ "name": "AtomicQueryError",
33912
+ "module": "src/components/search/atomic-query-error/atomic-query-error.ts"
33901
33913
  }
33902
33914
  },
33903
33915
  {
33904
33916
  "kind": "custom-element-definition",
33905
- "name": "atomic-query-summary",
33917
+ "name": "atomic-query-error",
33906
33918
  "declaration": {
33907
- "name": "AtomicQuerySummary",
33908
- "module": "src/components/search/atomic-query-summary/atomic-query-summary.ts"
33919
+ "name": "AtomicQueryError",
33920
+ "module": "src/components/search/atomic-query-error/atomic-query-error.ts"
33909
33921
  }
33910
33922
  }
33911
33923
  ]
@@ -40063,6 +40075,100 @@
40063
40075
  "declarations": [],
40064
40076
  "exports": []
40065
40077
  },
40078
+ {
40079
+ "kind": "javascript-module",
40080
+ "path": "src/components/search/atomic-result-section-actions/atomic-result-section-actions.ts",
40081
+ "declarations": [
40082
+ {
40083
+ "kind": "class",
40084
+ "description": "This section is intended to display components that allow the user to perform an action on a result without having to view its details.\nIn commerce interface, the user can usually add the product to their cart or wish list.\n\nBehavior:\n* Exposes the `--line-height` CSS variable so child elements can adjust to the current line height.\n** You should ensure that elements inside of it have `height: var(--line-height)`.\n* Is a wrapping flexbox with a gap.\n* May appear over, next to, or beneath the visual section.",
40085
+ "name": "AtomicResultSectionActions",
40086
+ "mixins": [
40087
+ {
40088
+ "name": "ItemSectionMixin",
40089
+ "package": "@/src/mixins/item-section-mixin"
40090
+ }
40091
+ ],
40092
+ "superclass": {
40093
+ "name": "LitElement",
40094
+ "package": "lit"
40095
+ },
40096
+ "tagName": "atomic-result-section-actions",
40097
+ "customElement": true,
40098
+ "members": [
40099
+ {
40100
+ "kind": "field",
40101
+ "name": "styles",
40102
+ "static": true,
40103
+ "default": "styles",
40104
+ "inheritedFrom": {
40105
+ "name": "ItemSectionMixin",
40106
+ "module": "src/mixins/item-section-mixin.ts"
40107
+ }
40108
+ },
40109
+ {
40110
+ "kind": "method",
40111
+ "name": "injectStyles",
40112
+ "parameters": [
40113
+ {
40114
+ "name": "dynamicStyles",
40115
+ "optional": true,
40116
+ "type": {
40117
+ "text": "CSSResultGroup"
40118
+ },
40119
+ "description": "Optional dynamic styles to inject along with static styles"
40120
+ }
40121
+ ],
40122
+ "description": "Injects styles into the document or shadow root.\n\nWhen called without arguments, injects the component's static styles.\nWhen called with dynamic styles, injects both static and dynamic styles.",
40123
+ "inheritedFrom": {
40124
+ "name": "LightDomMixin",
40125
+ "module": "src/mixins/light-dom.ts"
40126
+ }
40127
+ },
40128
+ {
40129
+ "kind": "method",
40130
+ "name": "getStyleSheet",
40131
+ "privacy": "private",
40132
+ "return": {
40133
+ "type": {
40134
+ "text": "CSSStyleSheet | null"
40135
+ }
40136
+ },
40137
+ "parameters": [
40138
+ {
40139
+ "name": "style",
40140
+ "type": {
40141
+ "text": "CSSResultOrNative | CSSResultArray | null | undefined"
40142
+ }
40143
+ }
40144
+ ],
40145
+ "inheritedFrom": {
40146
+ "name": "LightDomMixin",
40147
+ "module": "src/mixins/light-dom.ts"
40148
+ }
40149
+ }
40150
+ ]
40151
+ }
40152
+ ],
40153
+ "exports": [
40154
+ {
40155
+ "kind": "js",
40156
+ "name": "AtomicResultSectionActions",
40157
+ "declaration": {
40158
+ "name": "AtomicResultSectionActions",
40159
+ "module": "src/components/search/atomic-result-section-actions/atomic-result-section-actions.ts"
40160
+ }
40161
+ },
40162
+ {
40163
+ "kind": "custom-element-definition",
40164
+ "name": "atomic-result-section-actions",
40165
+ "declaration": {
40166
+ "name": "AtomicResultSectionActions",
40167
+ "module": "src/components/search/atomic-result-section-actions/atomic-result-section-actions.ts"
40168
+ }
40169
+ }
40170
+ ]
40171
+ },
40066
40172
  {
40067
40173
  "kind": "javascript-module",
40068
40174
  "path": "src/components/search/atomic-result-rating/atomic-result-rating.ts",
@@ -40255,12 +40361,12 @@
40255
40361
  },
40256
40362
  {
40257
40363
  "kind": "javascript-module",
40258
- "path": "src/components/search/atomic-result-section-actions/atomic-result-section-actions.ts",
40364
+ "path": "src/components/search/atomic-result-section-badges/atomic-result-section-badges.ts",
40259
40365
  "declarations": [
40260
40366
  {
40261
40367
  "kind": "class",
40262
- "description": "This section is intended to display components that allow the user to perform an action on a result without having to view its details.\nIn commerce interface, the user can usually add the product to their cart or wish list.\n\nBehavior:\n* Exposes the `--line-height` CSS variable so child elements can adjust to the current line height.\n** You should ensure that elements inside of it have `height: var(--line-height)`.\n* Is a wrapping flexbox with a gap.\n* May appear over, next to, or beneath the visual section.",
40263
- "name": "AtomicResultSectionActions",
40368
+ "description": "This section is meant to render badges that highlight special features of the result.\n\nBehavior:\n* Exposes the `--line-height` CSS variable so child elements can adjust to the current line height.\n** You should ensure that elements inside of it have `height: var(--line-height)`.\n* Is a wrapping flexbox with a gap.\n* May appear over, next to, or beneath the visual section.",
40369
+ "name": "AtomicResultSectionBadges",
40264
40370
  "mixins": [
40265
40371
  {
40266
40372
  "name": "ItemSectionMixin",
@@ -40271,7 +40377,7 @@
40271
40377
  "name": "LitElement",
40272
40378
  "package": "lit"
40273
40379
  },
40274
- "tagName": "atomic-result-section-actions",
40380
+ "tagName": "atomic-result-section-badges",
40275
40381
  "customElement": true,
40276
40382
  "members": [
40277
40383
  {
@@ -40331,30 +40437,30 @@
40331
40437
  "exports": [
40332
40438
  {
40333
40439
  "kind": "js",
40334
- "name": "AtomicResultSectionActions",
40440
+ "name": "AtomicResultSectionBadges",
40335
40441
  "declaration": {
40336
- "name": "AtomicResultSectionActions",
40337
- "module": "src/components/search/atomic-result-section-actions/atomic-result-section-actions.ts"
40442
+ "name": "AtomicResultSectionBadges",
40443
+ "module": "src/components/search/atomic-result-section-badges/atomic-result-section-badges.ts"
40338
40444
  }
40339
40445
  },
40340
40446
  {
40341
40447
  "kind": "custom-element-definition",
40342
- "name": "atomic-result-section-actions",
40448
+ "name": "atomic-result-section-badges",
40343
40449
  "declaration": {
40344
- "name": "AtomicResultSectionActions",
40345
- "module": "src/components/search/atomic-result-section-actions/atomic-result-section-actions.ts"
40450
+ "name": "AtomicResultSectionBadges",
40451
+ "module": "src/components/search/atomic-result-section-badges/atomic-result-section-badges.ts"
40346
40452
  }
40347
40453
  }
40348
40454
  ]
40349
40455
  },
40350
40456
  {
40351
40457
  "kind": "javascript-module",
40352
- "path": "src/components/search/atomic-result-section-badges/atomic-result-section-badges.ts",
40458
+ "path": "src/components/search/atomic-result-section-bottom-metadata/atomic-result-section-bottom-metadata.ts",
40353
40459
  "declarations": [
40354
40460
  {
40355
40461
  "kind": "class",
40356
- "description": "This section is meant to render badges that highlight special features of the result.\n\nBehavior:\n* Exposes the `--line-height` CSS variable so child elements can adjust to the current line height.\n** You should ensure that elements inside of it have `height: var(--line-height)`.\n* Is a wrapping flexbox with a gap.\n* May appear over, next to, or beneath the visual section.",
40357
- "name": "AtomicResultSectionBadges",
40462
+ "description": "This section is meant to render additional descriptive information about the result.\n\nBehavior:\n* Has a maximum height of two lines.\n** We recommend that you use `atomic-result-fields-list` to ensure that the fields in this section don't overflow.\n* Exposes the `--line-height` variable so child elements can adjust to the current line height.\n* Has a defined CSS `color` property for text.\n* Has a font weight.",
40463
+ "name": "AtomicResultSectionBottomMetadata",
40358
40464
  "mixins": [
40359
40465
  {
40360
40466
  "name": "ItemSectionMixin",
@@ -40365,7 +40471,7 @@
40365
40471
  "name": "LitElement",
40366
40472
  "package": "lit"
40367
40473
  },
40368
- "tagName": "atomic-result-section-badges",
40474
+ "tagName": "atomic-result-section-bottom-metadata",
40369
40475
  "customElement": true,
40370
40476
  "members": [
40371
40477
  {
@@ -40425,30 +40531,30 @@
40425
40531
  "exports": [
40426
40532
  {
40427
40533
  "kind": "js",
40428
- "name": "AtomicResultSectionBadges",
40534
+ "name": "AtomicResultSectionBottomMetadata",
40429
40535
  "declaration": {
40430
- "name": "AtomicResultSectionBadges",
40431
- "module": "src/components/search/atomic-result-section-badges/atomic-result-section-badges.ts"
40536
+ "name": "AtomicResultSectionBottomMetadata",
40537
+ "module": "src/components/search/atomic-result-section-bottom-metadata/atomic-result-section-bottom-metadata.ts"
40432
40538
  }
40433
40539
  },
40434
40540
  {
40435
40541
  "kind": "custom-element-definition",
40436
- "name": "atomic-result-section-badges",
40542
+ "name": "atomic-result-section-bottom-metadata",
40437
40543
  "declaration": {
40438
- "name": "AtomicResultSectionBadges",
40439
- "module": "src/components/search/atomic-result-section-badges/atomic-result-section-badges.ts"
40544
+ "name": "AtomicResultSectionBottomMetadata",
40545
+ "module": "src/components/search/atomic-result-section-bottom-metadata/atomic-result-section-bottom-metadata.ts"
40440
40546
  }
40441
40547
  }
40442
40548
  ]
40443
40549
  },
40444
40550
  {
40445
40551
  "kind": "javascript-module",
40446
- "path": "src/components/search/atomic-result-section-bottom-metadata/atomic-result-section-bottom-metadata.ts",
40552
+ "path": "src/components/search/atomic-result-section-children/atomic-result-section-children.ts",
40447
40553
  "declarations": [
40448
40554
  {
40449
40555
  "kind": "class",
40450
- "description": "This section is meant to render additional descriptive information about the result.\n\nBehavior:\n* Has a maximum height of two lines.\n** We recommend that you use `atomic-result-fields-list` to ensure that the fields in this section don't overflow.\n* Exposes the `--line-height` variable so child elements can adjust to the current line height.\n* Has a defined CSS `color` property for text.\n* Has a font weight.",
40451
- "name": "AtomicResultSectionBottomMetadata",
40556
+ "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.",
40557
+ "name": "AtomicResultSectionChildren",
40452
40558
  "mixins": [
40453
40559
  {
40454
40560
  "name": "ItemSectionMixin",
@@ -40459,7 +40565,7 @@
40459
40565
  "name": "LitElement",
40460
40566
  "package": "lit"
40461
40567
  },
40462
- "tagName": "atomic-result-section-bottom-metadata",
40568
+ "tagName": "atomic-result-section-children",
40463
40569
  "customElement": true,
40464
40570
  "members": [
40465
40571
  {
@@ -40519,18 +40625,18 @@
40519
40625
  "exports": [
40520
40626
  {
40521
40627
  "kind": "js",
40522
- "name": "AtomicResultSectionBottomMetadata",
40628
+ "name": "AtomicResultSectionChildren",
40523
40629
  "declaration": {
40524
- "name": "AtomicResultSectionBottomMetadata",
40525
- "module": "src/components/search/atomic-result-section-bottom-metadata/atomic-result-section-bottom-metadata.ts"
40630
+ "name": "AtomicResultSectionChildren",
40631
+ "module": "src/components/search/atomic-result-section-children/atomic-result-section-children.ts"
40526
40632
  }
40527
40633
  },
40528
40634
  {
40529
40635
  "kind": "custom-element-definition",
40530
- "name": "atomic-result-section-bottom-metadata",
40636
+ "name": "atomic-result-section-children",
40531
40637
  "declaration": {
40532
- "name": "AtomicResultSectionBottomMetadata",
40533
- "module": "src/components/search/atomic-result-section-bottom-metadata/atomic-result-section-bottom-metadata.ts"
40638
+ "name": "AtomicResultSectionChildren",
40639
+ "module": "src/components/search/atomic-result-section-children/atomic-result-section-children.ts"
40534
40640
  }
40535
40641
  }
40536
40642
  ]
@@ -40723,100 +40829,6 @@
40723
40829
  }
40724
40830
  ]
40725
40831
  },
40726
- {
40727
- "kind": "javascript-module",
40728
- "path": "src/components/search/atomic-result-section-children/atomic-result-section-children.ts",
40729
- "declarations": [
40730
- {
40731
- "kind": "class",
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
- "mixins": [
40735
- {
40736
- "name": "ItemSectionMixin",
40737
- "package": "@/src/mixins/item-section-mixin"
40738
- }
40739
- ],
40740
- "superclass": {
40741
- "name": "LitElement",
40742
- "package": "lit"
40743
- },
40744
- "tagName": "atomic-result-section-children",
40745
- "customElement": true,
40746
- "members": [
40747
- {
40748
- "kind": "field",
40749
- "name": "styles",
40750
- "static": true,
40751
- "default": "styles",
40752
- "inheritedFrom": {
40753
- "name": "ItemSectionMixin",
40754
- "module": "src/mixins/item-section-mixin.ts"
40755
- }
40756
- },
40757
- {
40758
- "kind": "method",
40759
- "name": "injectStyles",
40760
- "parameters": [
40761
- {
40762
- "name": "dynamicStyles",
40763
- "optional": true,
40764
- "type": {
40765
- "text": "CSSResultGroup"
40766
- },
40767
- "description": "Optional dynamic styles to inject along with static styles"
40768
- }
40769
- ],
40770
- "description": "Injects styles into the document or shadow root.\n\nWhen called without arguments, injects the component's static styles.\nWhen called with dynamic styles, injects both static and dynamic styles.",
40771
- "inheritedFrom": {
40772
- "name": "LightDomMixin",
40773
- "module": "src/mixins/light-dom.ts"
40774
- }
40775
- },
40776
- {
40777
- "kind": "method",
40778
- "name": "getStyleSheet",
40779
- "privacy": "private",
40780
- "return": {
40781
- "type": {
40782
- "text": "CSSStyleSheet | null"
40783
- }
40784
- },
40785
- "parameters": [
40786
- {
40787
- "name": "style",
40788
- "type": {
40789
- "text": "CSSResultOrNative | CSSResultArray | null | undefined"
40790
- }
40791
- }
40792
- ],
40793
- "inheritedFrom": {
40794
- "name": "LightDomMixin",
40795
- "module": "src/mixins/light-dom.ts"
40796
- }
40797
- }
40798
- ]
40799
- }
40800
- ],
40801
- "exports": [
40802
- {
40803
- "kind": "js",
40804
- "name": "AtomicResultSectionChildren",
40805
- "declaration": {
40806
- "name": "AtomicResultSectionChildren",
40807
- "module": "src/components/search/atomic-result-section-children/atomic-result-section-children.ts"
40808
- }
40809
- },
40810
- {
40811
- "kind": "custom-element-definition",
40812
- "name": "atomic-result-section-children",
40813
- "declaration": {
40814
- "name": "AtomicResultSectionChildren",
40815
- "module": "src/components/search/atomic-result-section-children/atomic-result-section-children.ts"
40816
- }
40817
- }
40818
- ]
40819
- },
40820
40832
  {
40821
40833
  "kind": "javascript-module",
40822
40834
  "path": "src/components/search/atomic-result-section-title/atomic-result-section-title.ts",
@@ -47337,37 +47349,37 @@
47337
47349
  },
47338
47350
  {
47339
47351
  "kind": "javascript-module",
47340
- "path": "src/components/commerce/atomic-commerce-recommendation-list/e2e/atomic-commerce-recommendation-list.e2e.ts",
47352
+ "path": "src/components/commerce/atomic-commerce-recommendation-interface/e2e/atomic-commerce-recommendation-interface.e2e.ts",
47341
47353
  "declarations": [],
47342
47354
  "exports": []
47343
47355
  },
47344
47356
  {
47345
47357
  "kind": "javascript-module",
47346
- "path": "src/components/commerce/atomic-commerce-recommendation-list/e2e/fixture.ts",
47358
+ "path": "src/components/commerce/atomic-commerce-recommendation-interface/e2e/fixture.ts",
47347
47359
  "declarations": [],
47348
47360
  "exports": []
47349
47361
  },
47350
47362
  {
47351
47363
  "kind": "javascript-module",
47352
- "path": "src/components/commerce/atomic-commerce-recommendation-list/e2e/page-object.ts",
47364
+ "path": "src/components/commerce/atomic-commerce-recommendation-interface/e2e/page-object.ts",
47353
47365
  "declarations": [],
47354
47366
  "exports": []
47355
47367
  },
47356
47368
  {
47357
47369
  "kind": "javascript-module",
47358
- "path": "src/components/commerce/atomic-commerce-recommendation-interface/e2e/atomic-commerce-recommendation-interface.e2e.ts",
47370
+ "path": "src/components/commerce/atomic-commerce-recommendation-list/e2e/atomic-commerce-recommendation-list.e2e.ts",
47359
47371
  "declarations": [],
47360
47372
  "exports": []
47361
47373
  },
47362
47374
  {
47363
47375
  "kind": "javascript-module",
47364
- "path": "src/components/commerce/atomic-commerce-recommendation-interface/e2e/fixture.ts",
47376
+ "path": "src/components/commerce/atomic-commerce-recommendation-list/e2e/fixture.ts",
47365
47377
  "declarations": [],
47366
47378
  "exports": []
47367
47379
  },
47368
47380
  {
47369
47381
  "kind": "javascript-module",
47370
- "path": "src/components/commerce/atomic-commerce-recommendation-interface/e2e/page-object.ts",
47382
+ "path": "src/components/commerce/atomic-commerce-recommendation-list/e2e/page-object.ts",
47371
47383
  "declarations": [],
47372
47384
  "exports": []
47373
47385
  },
@@ -47559,37 +47571,37 @@
47559
47571
  },
47560
47572
  {
47561
47573
  "kind": "javascript-module",
47562
- "path": "src/components/commerce/atomic-product-description/e2e/atomic-product-description.e2e.ts",
47574
+ "path": "src/components/commerce/atomic-product-excerpt/e2e/atomic-product-excerpt.e2e.ts",
47563
47575
  "declarations": [],
47564
47576
  "exports": []
47565
47577
  },
47566
47578
  {
47567
47579
  "kind": "javascript-module",
47568
- "path": "src/components/commerce/atomic-product-description/e2e/fixture.ts",
47580
+ "path": "src/components/commerce/atomic-product-excerpt/e2e/fixture.ts",
47569
47581
  "declarations": [],
47570
47582
  "exports": []
47571
47583
  },
47572
47584
  {
47573
47585
  "kind": "javascript-module",
47574
- "path": "src/components/commerce/atomic-product-description/e2e/page-object.ts",
47586
+ "path": "src/components/commerce/atomic-product-excerpt/e2e/page-object.ts",
47575
47587
  "declarations": [],
47576
47588
  "exports": []
47577
47589
  },
47578
47590
  {
47579
47591
  "kind": "javascript-module",
47580
- "path": "src/components/commerce/atomic-product-excerpt/e2e/atomic-product-excerpt.e2e.ts",
47592
+ "path": "src/components/commerce/atomic-product-description/e2e/atomic-product-description.e2e.ts",
47581
47593
  "declarations": [],
47582
47594
  "exports": []
47583
47595
  },
47584
47596
  {
47585
47597
  "kind": "javascript-module",
47586
- "path": "src/components/commerce/atomic-product-excerpt/e2e/fixture.ts",
47598
+ "path": "src/components/commerce/atomic-product-description/e2e/fixture.ts",
47587
47599
  "declarations": [],
47588
47600
  "exports": []
47589
47601
  },
47590
47602
  {
47591
47603
  "kind": "javascript-module",
47592
- "path": "src/components/commerce/atomic-product-excerpt/e2e/page-object.ts",
47604
+ "path": "src/components/commerce/atomic-product-description/e2e/page-object.ts",
47593
47605
  "declarations": [],
47594
47606
  "exports": []
47595
47607
  },
@@ -48447,37 +48459,37 @@
48447
48459
  },
48448
48460
  {
48449
48461
  "kind": "javascript-module",
48450
- "path": "src/components/insight/atomic-insight-result-action/e2e/atomic-insight-result-action.e2e.ts",
48462
+ "path": "src/components/insight/atomic-insight-result-action-bar/e2e/atomic-insight-result-action-bar.e2e.ts",
48451
48463
  "declarations": [],
48452
48464
  "exports": []
48453
48465
  },
48454
48466
  {
48455
48467
  "kind": "javascript-module",
48456
- "path": "src/components/insight/atomic-insight-result-action/e2e/fixture.ts",
48468
+ "path": "src/components/insight/atomic-insight-result-action-bar/e2e/fixture.ts",
48457
48469
  "declarations": [],
48458
48470
  "exports": []
48459
48471
  },
48460
48472
  {
48461
48473
  "kind": "javascript-module",
48462
- "path": "src/components/insight/atomic-insight-result-action/e2e/page-object.ts",
48474
+ "path": "src/components/insight/atomic-insight-result-action-bar/e2e/page-object.ts",
48463
48475
  "declarations": [],
48464
48476
  "exports": []
48465
48477
  },
48466
48478
  {
48467
48479
  "kind": "javascript-module",
48468
- "path": "src/components/insight/atomic-insight-result-action-bar/e2e/atomic-insight-result-action-bar.e2e.ts",
48480
+ "path": "src/components/insight/atomic-insight-result-attach-to-case-indicator/e2e/atomic-insight-result-attach-to-case-indicator.e2e.ts",
48469
48481
  "declarations": [],
48470
48482
  "exports": []
48471
48483
  },
48472
48484
  {
48473
48485
  "kind": "javascript-module",
48474
- "path": "src/components/insight/atomic-insight-result-action-bar/e2e/fixture.ts",
48486
+ "path": "src/components/insight/atomic-insight-result-attach-to-case-indicator/e2e/fixture.ts",
48475
48487
  "declarations": [],
48476
48488
  "exports": []
48477
48489
  },
48478
48490
  {
48479
48491
  "kind": "javascript-module",
48480
- "path": "src/components/insight/atomic-insight-result-action-bar/e2e/page-object.ts",
48492
+ "path": "src/components/insight/atomic-insight-result-attach-to-case-indicator/e2e/page-object.ts",
48481
48493
  "declarations": [],
48482
48494
  "exports": []
48483
48495
  },
@@ -48501,19 +48513,19 @@
48501
48513
  },
48502
48514
  {
48503
48515
  "kind": "javascript-module",
48504
- "path": "src/components/insight/atomic-insight-result-attach-to-case-indicator/e2e/atomic-insight-result-attach-to-case-indicator.e2e.ts",
48516
+ "path": "src/components/insight/atomic-insight-result-action/e2e/atomic-insight-result-action.e2e.ts",
48505
48517
  "declarations": [],
48506
48518
  "exports": []
48507
48519
  },
48508
48520
  {
48509
48521
  "kind": "javascript-module",
48510
- "path": "src/components/insight/atomic-insight-result-attach-to-case-indicator/e2e/fixture.ts",
48522
+ "path": "src/components/insight/atomic-insight-result-action/e2e/fixture.ts",
48511
48523
  "declarations": [],
48512
48524
  "exports": []
48513
48525
  },
48514
48526
  {
48515
48527
  "kind": "javascript-module",
48516
- "path": "src/components/insight/atomic-insight-result-attach-to-case-indicator/e2e/page-object.ts",
48528
+ "path": "src/components/insight/atomic-insight-result-action/e2e/page-object.ts",
48517
48529
  "declarations": [],
48518
48530
  "exports": []
48519
48531
  },
@@ -48753,73 +48765,73 @@
48753
48765
  },
48754
48766
  {
48755
48767
  "kind": "javascript-module",
48756
- "path": "src/components/ipx/atomic-ipx-modal/e2e/atomic-ipx-modal.e2e.ts",
48768
+ "path": "src/components/ipx/atomic-ipx-recs-list/e2e/atomic-ipx-recs-list.e2e.ts",
48757
48769
  "declarations": [],
48758
48770
  "exports": []
48759
48771
  },
48760
48772
  {
48761
48773
  "kind": "javascript-module",
48762
- "path": "src/components/ipx/atomic-ipx-modal/e2e/fixture.ts",
48774
+ "path": "src/components/ipx/atomic-ipx-recs-list/e2e/fixture.ts",
48763
48775
  "declarations": [],
48764
48776
  "exports": []
48765
48777
  },
48766
48778
  {
48767
48779
  "kind": "javascript-module",
48768
- "path": "src/components/ipx/atomic-ipx-modal/e2e/page-object.ts",
48780
+ "path": "src/components/ipx/atomic-ipx-recs-list/e2e/page-object.ts",
48769
48781
  "declarations": [],
48770
48782
  "exports": []
48771
48783
  },
48772
48784
  {
48773
48785
  "kind": "javascript-module",
48774
- "path": "src/components/ipx/atomic-ipx-recs-list/e2e/atomic-ipx-recs-list.e2e.ts",
48786
+ "path": "src/components/ipx/atomic-ipx-refine-modal/e2e/atomic-ipx-refine-modal.e2e.ts",
48775
48787
  "declarations": [],
48776
48788
  "exports": []
48777
48789
  },
48778
48790
  {
48779
48791
  "kind": "javascript-module",
48780
- "path": "src/components/ipx/atomic-ipx-recs-list/e2e/fixture.ts",
48792
+ "path": "src/components/ipx/atomic-ipx-refine-modal/e2e/fixture.ts",
48781
48793
  "declarations": [],
48782
48794
  "exports": []
48783
48795
  },
48784
48796
  {
48785
48797
  "kind": "javascript-module",
48786
- "path": "src/components/ipx/atomic-ipx-recs-list/e2e/page-object.ts",
48798
+ "path": "src/components/ipx/atomic-ipx-refine-modal/e2e/page-object.ts",
48787
48799
  "declarations": [],
48788
48800
  "exports": []
48789
48801
  },
48790
48802
  {
48791
48803
  "kind": "javascript-module",
48792
- "path": "src/components/ipx/atomic-ipx-refine-modal/e2e/atomic-ipx-refine-modal.e2e.ts",
48804
+ "path": "src/components/ipx/atomic-ipx-refine-toggle/e2e/atomic-ipx-refine-toggle.e2e.ts",
48793
48805
  "declarations": [],
48794
48806
  "exports": []
48795
48807
  },
48796
48808
  {
48797
48809
  "kind": "javascript-module",
48798
- "path": "src/components/ipx/atomic-ipx-refine-modal/e2e/fixture.ts",
48810
+ "path": "src/components/ipx/atomic-ipx-refine-toggle/e2e/fixture.ts",
48799
48811
  "declarations": [],
48800
48812
  "exports": []
48801
48813
  },
48802
48814
  {
48803
48815
  "kind": "javascript-module",
48804
- "path": "src/components/ipx/atomic-ipx-refine-modal/e2e/page-object.ts",
48816
+ "path": "src/components/ipx/atomic-ipx-refine-toggle/e2e/page-object.ts",
48805
48817
  "declarations": [],
48806
48818
  "exports": []
48807
48819
  },
48808
48820
  {
48809
48821
  "kind": "javascript-module",
48810
- "path": "src/components/ipx/atomic-ipx-refine-toggle/e2e/atomic-ipx-refine-toggle.e2e.ts",
48822
+ "path": "src/components/ipx/atomic-ipx-modal/e2e/atomic-ipx-modal.e2e.ts",
48811
48823
  "declarations": [],
48812
48824
  "exports": []
48813
48825
  },
48814
48826
  {
48815
48827
  "kind": "javascript-module",
48816
- "path": "src/components/ipx/atomic-ipx-refine-toggle/e2e/fixture.ts",
48828
+ "path": "src/components/ipx/atomic-ipx-modal/e2e/fixture.ts",
48817
48829
  "declarations": [],
48818
48830
  "exports": []
48819
48831
  },
48820
48832
  {
48821
48833
  "kind": "javascript-module",
48822
- "path": "src/components/ipx/atomic-ipx-refine-toggle/e2e/page-object.ts",
48834
+ "path": "src/components/ipx/atomic-ipx-modal/e2e/page-object.ts",
48823
48835
  "declarations": [],
48824
48836
  "exports": []
48825
48837
  },
@@ -48843,37 +48855,37 @@
48843
48855
  },
48844
48856
  {
48845
48857
  "kind": "javascript-module",
48846
- "path": "src/components/recommendations/atomic-recs-error/e2e/atomic-recs-error.e2e.ts",
48858
+ "path": "src/components/recommendations/atomic-recs-interface/e2e/atomic-recs-interface.e2e.ts",
48847
48859
  "declarations": [],
48848
48860
  "exports": []
48849
48861
  },
48850
48862
  {
48851
48863
  "kind": "javascript-module",
48852
- "path": "src/components/recommendations/atomic-recs-error/e2e/fixture.ts",
48864
+ "path": "src/components/recommendations/atomic-recs-interface/e2e/fixture.ts",
48853
48865
  "declarations": [],
48854
48866
  "exports": []
48855
48867
  },
48856
48868
  {
48857
48869
  "kind": "javascript-module",
48858
- "path": "src/components/recommendations/atomic-recs-error/e2e/page-object.ts",
48870
+ "path": "src/components/recommendations/atomic-recs-interface/e2e/page-object.ts",
48859
48871
  "declarations": [],
48860
48872
  "exports": []
48861
48873
  },
48862
48874
  {
48863
48875
  "kind": "javascript-module",
48864
- "path": "src/components/recommendations/atomic-recs-interface/e2e/atomic-recs-interface.e2e.ts",
48876
+ "path": "src/components/recommendations/atomic-recs-error/e2e/atomic-recs-error.e2e.ts",
48865
48877
  "declarations": [],
48866
48878
  "exports": []
48867
48879
  },
48868
48880
  {
48869
48881
  "kind": "javascript-module",
48870
- "path": "src/components/recommendations/atomic-recs-interface/e2e/fixture.ts",
48882
+ "path": "src/components/recommendations/atomic-recs-error/e2e/fixture.ts",
48871
48883
  "declarations": [],
48872
48884
  "exports": []
48873
48885
  },
48874
48886
  {
48875
48887
  "kind": "javascript-module",
48876
- "path": "src/components/recommendations/atomic-recs-interface/e2e/page-object.ts",
48888
+ "path": "src/components/recommendations/atomic-recs-error/e2e/page-object.ts",
48877
48889
  "declarations": [],
48878
48890
  "exports": []
48879
48891
  },
@@ -49257,37 +49269,37 @@
49257
49269
  },
49258
49270
  {
49259
49271
  "kind": "javascript-module",
49260
- "path": "src/components/search/atomic-query-error/e2e/atomic-query-error.e2e.ts",
49272
+ "path": "src/components/search/atomic-query-summary/e2e/atomic-query-summary.e2e.ts",
49261
49273
  "declarations": [],
49262
49274
  "exports": []
49263
49275
  },
49264
49276
  {
49265
49277
  "kind": "javascript-module",
49266
- "path": "src/components/search/atomic-query-error/e2e/fixture.ts",
49278
+ "path": "src/components/search/atomic-query-summary/e2e/fixture.ts",
49267
49279
  "declarations": [],
49268
49280
  "exports": []
49269
49281
  },
49270
49282
  {
49271
49283
  "kind": "javascript-module",
49272
- "path": "src/components/search/atomic-query-error/e2e/page-object.ts",
49284
+ "path": "src/components/search/atomic-query-summary/e2e/page-object.ts",
49273
49285
  "declarations": [],
49274
49286
  "exports": []
49275
49287
  },
49276
49288
  {
49277
49289
  "kind": "javascript-module",
49278
- "path": "src/components/search/atomic-query-summary/e2e/atomic-query-summary.e2e.ts",
49290
+ "path": "src/components/search/atomic-query-error/e2e/atomic-query-error.e2e.ts",
49279
49291
  "declarations": [],
49280
49292
  "exports": []
49281
49293
  },
49282
49294
  {
49283
49295
  "kind": "javascript-module",
49284
- "path": "src/components/search/atomic-query-summary/e2e/fixture.ts",
49296
+ "path": "src/components/search/atomic-query-error/e2e/fixture.ts",
49285
49297
  "declarations": [],
49286
49298
  "exports": []
49287
49299
  },
49288
49300
  {
49289
49301
  "kind": "javascript-module",
49290
- "path": "src/components/search/atomic-query-summary/e2e/page-object.ts",
49302
+ "path": "src/components/search/atomic-query-error/e2e/page-object.ts",
49291
49303
  "declarations": [],
49292
49304
  "exports": []
49293
49305
  },
@@ -49443,55 +49455,55 @@
49443
49455
  },
49444
49456
  {
49445
49457
  "kind": "javascript-module",
49446
- "path": "src/components/search/atomic-result-children-template/e2e/atomic-result-children-template.e2e.ts",
49458
+ "path": "src/components/search/atomic-result-date/e2e/atomic-result-date.e2e.ts",
49447
49459
  "declarations": [],
49448
49460
  "exports": []
49449
49461
  },
49450
49462
  {
49451
49463
  "kind": "javascript-module",
49452
- "path": "src/components/search/atomic-result-children-template/e2e/fixture.ts",
49464
+ "path": "src/components/search/atomic-result-date/e2e/fixture.ts",
49453
49465
  "declarations": [],
49454
49466
  "exports": []
49455
49467
  },
49456
49468
  {
49457
49469
  "kind": "javascript-module",
49458
- "path": "src/components/search/atomic-result-children-template/e2e/page-object.ts",
49470
+ "path": "src/components/search/atomic-result-date/e2e/page-object.ts",
49459
49471
  "declarations": [],
49460
49472
  "exports": []
49461
49473
  },
49462
49474
  {
49463
49475
  "kind": "javascript-module",
49464
- "path": "src/components/search/atomic-result-date/e2e/atomic-result-date.e2e.ts",
49476
+ "path": "src/components/search/atomic-result-fields-list/e2e/atomic-result-fields-list.e2e.ts",
49465
49477
  "declarations": [],
49466
49478
  "exports": []
49467
49479
  },
49468
49480
  {
49469
49481
  "kind": "javascript-module",
49470
- "path": "src/components/search/atomic-result-date/e2e/fixture.ts",
49482
+ "path": "src/components/search/atomic-result-fields-list/e2e/fixture.ts",
49471
49483
  "declarations": [],
49472
49484
  "exports": []
49473
49485
  },
49474
49486
  {
49475
49487
  "kind": "javascript-module",
49476
- "path": "src/components/search/atomic-result-date/e2e/page-object.ts",
49488
+ "path": "src/components/search/atomic-result-fields-list/e2e/page-object.ts",
49477
49489
  "declarations": [],
49478
49490
  "exports": []
49479
49491
  },
49480
49492
  {
49481
49493
  "kind": "javascript-module",
49482
- "path": "src/components/search/atomic-result-fields-list/e2e/atomic-result-fields-list.e2e.ts",
49494
+ "path": "src/components/search/atomic-result-children-template/e2e/atomic-result-children-template.e2e.ts",
49483
49495
  "declarations": [],
49484
49496
  "exports": []
49485
49497
  },
49486
49498
  {
49487
49499
  "kind": "javascript-module",
49488
- "path": "src/components/search/atomic-result-fields-list/e2e/fixture.ts",
49500
+ "path": "src/components/search/atomic-result-children-template/e2e/fixture.ts",
49489
49501
  "declarations": [],
49490
49502
  "exports": []
49491
49503
  },
49492
49504
  {
49493
49505
  "kind": "javascript-module",
49494
- "path": "src/components/search/atomic-result-fields-list/e2e/page-object.ts",
49506
+ "path": "src/components/search/atomic-result-children-template/e2e/page-object.ts",
49495
49507
  "declarations": [],
49496
49508
  "exports": []
49497
49509
  },
@@ -49713,37 +49725,37 @@
49713
49725
  },
49714
49726
  {
49715
49727
  "kind": "javascript-module",
49716
- "path": "src/components/search/atomic-search-box/e2e/atomic-search-box.e2e.ts",
49728
+ "path": "src/components/search/atomic-results-per-page/e2e/atomic-results-per-page.e2e.ts",
49717
49729
  "declarations": [],
49718
49730
  "exports": []
49719
49731
  },
49720
49732
  {
49721
49733
  "kind": "javascript-module",
49722
- "path": "src/components/search/atomic-search-box/e2e/fixture.ts",
49734
+ "path": "src/components/search/atomic-results-per-page/e2e/fixture.ts",
49723
49735
  "declarations": [],
49724
49736
  "exports": []
49725
49737
  },
49726
49738
  {
49727
49739
  "kind": "javascript-module",
49728
- "path": "src/components/search/atomic-search-box/e2e/page-object.ts",
49740
+ "path": "src/components/search/atomic-results-per-page/e2e/page-object.ts",
49729
49741
  "declarations": [],
49730
49742
  "exports": []
49731
49743
  },
49732
49744
  {
49733
49745
  "kind": "javascript-module",
49734
- "path": "src/components/search/atomic-results-per-page/e2e/atomic-results-per-page.e2e.ts",
49746
+ "path": "src/components/search/atomic-search-box/e2e/atomic-search-box.e2e.ts",
49735
49747
  "declarations": [],
49736
49748
  "exports": []
49737
49749
  },
49738
49750
  {
49739
49751
  "kind": "javascript-module",
49740
- "path": "src/components/search/atomic-results-per-page/e2e/fixture.ts",
49752
+ "path": "src/components/search/atomic-search-box/e2e/fixture.ts",
49741
49753
  "declarations": [],
49742
49754
  "exports": []
49743
49755
  },
49744
49756
  {
49745
49757
  "kind": "javascript-module",
49746
- "path": "src/components/search/atomic-results-per-page/e2e/page-object.ts",
49758
+ "path": "src/components/search/atomic-search-box/e2e/page-object.ts",
49747
49759
  "declarations": [],
49748
49760
  "exports": []
49749
49761
  },
@@ -49857,37 +49869,37 @@
49857
49869
  },
49858
49870
  {
49859
49871
  "kind": "javascript-module",
49860
- "path": "src/components/search/atomic-smart-snippet-feedback-modal/e2e/atomic-smart-snippet-feedback-modal.e2e.ts",
49872
+ "path": "src/components/search/atomic-smart-snippet/e2e/atomic-smart-snippet.e2e.ts",
49861
49873
  "declarations": [],
49862
49874
  "exports": []
49863
49875
  },
49864
49876
  {
49865
49877
  "kind": "javascript-module",
49866
- "path": "src/components/search/atomic-smart-snippet-feedback-modal/e2e/fixture.ts",
49878
+ "path": "src/components/search/atomic-smart-snippet/e2e/fixture.ts",
49867
49879
  "declarations": [],
49868
49880
  "exports": []
49869
49881
  },
49870
49882
  {
49871
49883
  "kind": "javascript-module",
49872
- "path": "src/components/search/atomic-smart-snippet-feedback-modal/e2e/page-object.ts",
49884
+ "path": "src/components/search/atomic-smart-snippet/e2e/page-object.ts",
49873
49885
  "declarations": [],
49874
49886
  "exports": []
49875
49887
  },
49876
49888
  {
49877
49889
  "kind": "javascript-module",
49878
- "path": "src/components/search/atomic-smart-snippet/e2e/atomic-smart-snippet.e2e.ts",
49890
+ "path": "src/components/search/atomic-smart-snippet-feedback-modal/e2e/atomic-smart-snippet-feedback-modal.e2e.ts",
49879
49891
  "declarations": [],
49880
49892
  "exports": []
49881
49893
  },
49882
49894
  {
49883
49895
  "kind": "javascript-module",
49884
- "path": "src/components/search/atomic-smart-snippet/e2e/fixture.ts",
49896
+ "path": "src/components/search/atomic-smart-snippet-feedback-modal/e2e/fixture.ts",
49885
49897
  "declarations": [],
49886
49898
  "exports": []
49887
49899
  },
49888
49900
  {
49889
49901
  "kind": "javascript-module",
49890
- "path": "src/components/search/atomic-smart-snippet/e2e/page-object.ts",
49902
+ "path": "src/components/search/atomic-smart-snippet-feedback-modal/e2e/page-object.ts",
49891
49903
  "declarations": [],
49892
49904
  "exports": []
49893
49905
  },
@@ -49983,49 +49995,49 @@
49983
49995
  },
49984
49996
  {
49985
49997
  "kind": "javascript-module",
49986
- "path": "src/components/search/result-template-component-utils/context/fetch-result-context.ts",
49998
+ "path": "src/components/search/result-template-components/quickview-iframe/quickview-iframe.ts",
49987
49999
  "declarations": [],
49988
50000
  "exports": []
49989
50001
  },
49990
50002
  {
49991
50003
  "kind": "javascript-module",
49992
- "path": "src/components/search/result-template-component-utils/context/interactive-result-context-controller.ts",
50004
+ "path": "src/components/search/result-template-components/atomic-quickview-sidebar/atomic-quickview-sidebar.ts",
49993
50005
  "declarations": [],
49994
50006
  "exports": []
49995
50007
  },
49996
50008
  {
49997
50009
  "kind": "javascript-module",
49998
- "path": "src/components/search/result-template-component-utils/context/result-context-controller.ts",
50010
+ "path": "src/components/search/result-template-components/atomic-quickview-sidebar/highlight-keywords-checkbox.ts",
49999
50011
  "declarations": [],
50000
50012
  "exports": []
50001
50013
  },
50002
50014
  {
50003
50015
  "kind": "javascript-module",
50004
- "path": "src/components/search/result-template-components/quickview-iframe/quickview-iframe.ts",
50016
+ "path": "src/components/search/result-template-components/atomic-quickview-sidebar/keywords.ts",
50005
50017
  "declarations": [],
50006
50018
  "exports": []
50007
50019
  },
50008
50020
  {
50009
50021
  "kind": "javascript-module",
50010
- "path": "src/components/search/result-template-components/atomic-quickview-sidebar/atomic-quickview-sidebar.ts",
50022
+ "path": "src/components/search/result-template-components/atomic-quickview-sidebar/minimize-button.ts",
50011
50023
  "declarations": [],
50012
50024
  "exports": []
50013
50025
  },
50014
50026
  {
50015
50027
  "kind": "javascript-module",
50016
- "path": "src/components/search/result-template-components/atomic-quickview-sidebar/highlight-keywords-checkbox.ts",
50028
+ "path": "src/components/search/result-template-component-utils/context/fetch-result-context.ts",
50017
50029
  "declarations": [],
50018
50030
  "exports": []
50019
50031
  },
50020
50032
  {
50021
50033
  "kind": "javascript-module",
50022
- "path": "src/components/search/result-template-components/atomic-quickview-sidebar/keywords.ts",
50034
+ "path": "src/components/search/result-template-component-utils/context/interactive-result-context-controller.ts",
50023
50035
  "declarations": [],
50024
50036
  "exports": []
50025
50037
  },
50026
50038
  {
50027
50039
  "kind": "javascript-module",
50028
- "path": "src/components/search/result-template-components/atomic-quickview-sidebar/minimize-button.ts",
50040
+ "path": "src/components/search/result-template-component-utils/context/result-context-controller.ts",
50029
50041
  "declarations": [],
50030
50042
  "exports": []
50031
50043
  },